diff --git a/resources/language-metavariables/tree-sitter-rust/grammar.js b/resources/language-metavariables/tree-sitter-rust/grammar.js index edba1474b..a3af56f8c 100644 --- a/resources/language-metavariables/tree-sitter-rust/grammar.js +++ b/resources/language-metavariables/tree-sitter-rust/grammar.js @@ -1055,13 +1055,15 @@ module.exports = grammar({ repeat($.attribute_item), choice( seq( - $._expression, + field('repeat', $._expression), ';', field('length', $._expression) ), - seq( - sepBy(',', $._expression), - optional(',') + field('elements', + seq( + sepBy(',', $._expression), + optional(',') + ) ) ), ']' diff --git a/resources/language-metavariables/tree-sitter-rust/src/grammar.json b/resources/language-metavariables/tree-sitter-rust/src/grammar.json index dbccfa3d1..65fe5648d 100644 --- a/resources/language-metavariables/tree-sitter-rust/src/grammar.json +++ b/resources/language-metavariables/tree-sitter-rust/src/grammar.json @@ -5936,8 +5936,12 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "_expression" + "type": "FIELD", + "name": "repeat", + "content": { + "type": "SYMBOL", + "name": "_expression" + } }, { "type": "STRING", @@ -5954,54 +5958,58 @@ ] }, { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_expression" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "_expression" - } - ] + "type": "FIELD", + "name": "elements", + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "_expression" + } + ] + } } - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "BLANK" - } - ] - } - ] + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "BLANK" + } + ] + } + ] + } } ] }, diff --git a/resources/language-metavariables/tree-sitter-rust/src/node-types.json b/resources/language-metavariables/tree-sitter-rust/src/node-types.json index 78ad6f00e..fca98969b 100644 --- a/resources/language-metavariables/tree-sitter-rust/src/node-types.json +++ b/resources/language-metavariables/tree-sitter-rust/src/node-types.json @@ -523,6 +523,20 @@ "type": "array_expression", "named": true, "fields": { + "elements": { + "multiple": true, + "required": false, + "types": [ + { + "type": ",", + "named": false + }, + { + "type": "_expression", + "named": true + } + ] + }, "length": { "multiple": false, "required": false, @@ -532,16 +546,22 @@ "named": true } ] + }, + "repeat": { + "multiple": false, + "required": false, + "types": [ + { + "type": "_expression", + "named": true + } + ] } }, "children": { "multiple": true, "required": false, "types": [ - { - "type": "_expression", - "named": true - }, { "type": "attribute_item", "named": true diff --git a/resources/language-metavariables/tree-sitter-rust/src/parser.c b/resources/language-metavariables/tree-sitter-rust/src/parser.c index 0e4510745..cbfb9b21f 100644 --- a/resources/language-metavariables/tree-sitter-rust/src/parser.c +++ b/resources/language-metavariables/tree-sitter-rust/src/parser.c @@ -6,15 +6,15 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 2770 -#define LARGE_STATE_COUNT 812 +#define STATE_COUNT 2774 +#define LARGE_STATE_COUNT 813 #define SYMBOL_COUNT 326 #define ALIAS_COUNT 4 #define TOKEN_COUNT 141 #define EXTERNAL_TOKEN_COUNT 4 -#define FIELD_COUNT 43 +#define FIELD_COUNT 45 #define MAX_ALIAS_SEQUENCE_LENGTH 10 -#define PRODUCTION_ID_COUNT 326 +#define PRODUCTION_ID_COUNT 332 enum { sym__primitive_identifier = 1, @@ -2358,34 +2358,36 @@ enum { field_declarations = 13, field_default_type = 14, field_element = 15, - field_expression = 16, - field_field = 17, - field_fields = 18, - field_function = 19, - field_identifier = 20, - field_index = 21, - field_left = 22, - field_length = 23, - field_list = 24, - field_macro = 25, - field_name = 26, - field_operator = 27, - field_parameters = 28, - field_params = 29, - field_path = 30, - field_pattern = 31, - field_patterns = 32, - field_return_type = 33, - field_right = 34, - field_statements = 35, - field_tokens = 36, - field_trait = 37, - field_type = 38, - field_type_arguments = 39, - field_type_parameters = 40, - field_value = 41, - field_variants = 42, - field_visibility = 43, + field_elements = 16, + field_expression = 17, + field_field = 18, + field_fields = 19, + field_function = 20, + field_identifier = 21, + field_index = 22, + field_left = 23, + field_length = 24, + field_list = 25, + field_macro = 26, + field_name = 27, + field_operator = 28, + field_parameters = 29, + field_params = 30, + field_path = 31, + field_pattern = 32, + field_patterns = 33, + field_repeat = 34, + field_return_type = 35, + field_right = 36, + field_statements = 37, + field_tokens = 38, + field_trait = 39, + field_type = 40, + field_type_arguments = 41, + field_type_parameters = 42, + field_value = 43, + field_variants = 44, + field_visibility = 45, }; static const char * const ts_field_names[] = { @@ -2405,6 +2407,7 @@ static const char * const ts_field_names[] = { [field_declarations] = "declarations", [field_default_type] = "default_type", [field_element] = "element", + [field_elements] = "elements", [field_expression] = "expression", [field_field] = "field", [field_fields] = "fields", @@ -2422,6 +2425,7 @@ static const char * const ts_field_names[] = { [field_path] = "path", [field_pattern] = "pattern", [field_patterns] = "patterns", + [field_repeat] = "repeat", [field_return_type] = "return_type", [field_right] = "right", [field_statements] = "statements", @@ -2452,310 +2456,316 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [17] = {.index = 8, .length = 2}, [18] = {.index = 15, .length = 2}, [19] = {.index = 17, .length = 1}, - [20] = {.index = 18, .length = 2}, - [21] = {.index = 20, .length = 2}, - [22] = {.index = 20, .length = 2}, - [23] = {.index = 22, .length = 2}, - [24] = {.index = 24, .length = 1}, - [25] = {.index = 25, .length = 2}, - [26] = {.index = 25, .length = 2}, - [27] = {.index = 27, .length = 2}, - [28] = {.index = 29, .length = 1}, + [20] = {.index = 18, .length = 1}, + [21] = {.index = 19, .length = 2}, + [22] = {.index = 21, .length = 2}, + [23] = {.index = 21, .length = 2}, + [24] = {.index = 23, .length = 2}, + [25] = {.index = 25, .length = 1}, + [26] = {.index = 26, .length = 2}, + [27] = {.index = 26, .length = 2}, + [28] = {.index = 28, .length = 2}, [29] = {.index = 30, .length = 1}, - [30] = {.index = 30, .length = 1}, + [30] = {.index = 31, .length = 1}, [31] = {.index = 31, .length = 1}, - [32] = {.index = 32, .length = 2}, - [33] = {.index = 34, .length = 2}, - [34] = {.index = 34, .length = 2}, - [35] = {.index = 36, .length = 2}, - [36] = {.index = 22, .length = 2}, - [37] = {.index = 38, .length = 1}, + [32] = {.index = 32, .length = 1}, + [33] = {.index = 33, .length = 2}, + [34] = {.index = 35, .length = 2}, + [35] = {.index = 35, .length = 2}, + [36] = {.index = 37, .length = 2}, + [37] = {.index = 23, .length = 2}, [38] = {.index = 39, .length = 1}, - [39] = {.index = 40, .length = 2}, - [40] = {.index = 42, .length = 1}, - [41] = {.index = 42, .length = 1}, + [39] = {.index = 40, .length = 1}, + [40] = {.index = 41, .length = 2}, + [41] = {.index = 43, .length = 1}, [42] = {.index = 43, .length = 1}, - [43] = {.index = 44, .length = 2}, - [44] = {.index = 20, .length = 2}, - [45] = {.index = 20, .length = 2}, - [46] = {.index = 46, .length = 1}, - [47] = {.index = 47, .length = 2}, - [48] = {.index = 20, .length = 2}, - [49] = {.index = 20, .length = 2}, - [50] = {.index = 49, .length = 3}, - [51] = {.index = 52, .length = 2}, - [52] = {.index = 54, .length = 2}, - [53] = {.index = 56, .length = 2}, - [54] = {.index = 56, .length = 2}, - [55] = {.index = 18, .length = 2}, - [56] = {.index = 58, .length = 2}, - [57] = {.index = 60, .length = 2}, - [58] = {.index = 60, .length = 2}, - [59] = {.index = 6, .length = 1}, - [60] = {.index = 62, .length = 2}, - [61] = {.index = 64, .length = 1}, + [43] = {.index = 44, .length = 1}, + [44] = {.index = 45, .length = 2}, + [45] = {.index = 21, .length = 2}, + [46] = {.index = 21, .length = 2}, + [47] = {.index = 47, .length = 1}, + [48] = {.index = 48, .length = 2}, + [49] = {.index = 21, .length = 2}, + [50] = {.index = 21, .length = 2}, + [51] = {.index = 50, .length = 3}, + [52] = {.index = 53, .length = 2}, + [53] = {.index = 55, .length = 2}, + [54] = {.index = 57, .length = 2}, + [55] = {.index = 57, .length = 2}, + [56] = {.index = 19, .length = 2}, + [57] = {.index = 59, .length = 2}, + [58] = {.index = 61, .length = 2}, + [59] = {.index = 61, .length = 2}, + [60] = {.index = 6, .length = 1}, + [61] = {.index = 63, .length = 2}, [62] = {.index = 65, .length = 2}, - [63] = {.index = 67, .length = 3}, - [64] = {.index = 70, .length = 2}, - [65] = {.index = 72, .length = 3}, - [66] = {.index = 75, .length = 1}, - [67] = {.index = 54, .length = 2}, - [68] = {.index = 54, .length = 2}, - [69] = {.index = 76, .length = 1}, - [70] = {.index = 54, .length = 2}, - [71] = {.index = 77, .length = 1}, - [72] = {.index = 64, .length = 1}, - [73] = {.index = 77, .length = 1}, - [74] = {.index = 78, .length = 2}, - [75] = {.index = 80, .length = 3}, - [76] = {.index = 83, .length = 1}, - [77] = {.index = 84, .length = 1}, - [78] = {.index = 85, .length = 2}, - [80] = {.index = 85, .length = 2}, - [81] = {.index = 87, .length = 1}, - [82] = {.index = 88, .length = 2}, - [83] = {.index = 90, .length = 3}, - [84] = {.index = 93, .length = 2}, - [85] = {.index = 95, .length = 2}, - [86] = {.index = 95, .length = 2}, - [87] = {.index = 97, .length = 1}, - [88] = {.index = 98, .length = 2}, - [89] = {.index = 100, .length = 3}, - [90] = {.index = 103, .length = 2}, - [91] = {.index = 105, .length = 2}, - [92] = {.index = 107, .length = 2}, - [93] = {.index = 109, .length = 2}, - [94] = {.index = 111, .length = 2}, - [95] = {.index = 109, .length = 2}, - [96] = {.index = 111, .length = 2}, - [97] = {.index = 113, .length = 2}, + [63] = {.index = 67, .length = 1}, + [64] = {.index = 68, .length = 1}, + [65] = {.index = 69, .length = 2}, + [66] = {.index = 71, .length = 3}, + [67] = {.index = 74, .length = 2}, + [68] = {.index = 76, .length = 3}, + [69] = {.index = 79, .length = 1}, + [70] = {.index = 55, .length = 2}, + [71] = {.index = 55, .length = 2}, + [72] = {.index = 80, .length = 1}, + [73] = {.index = 55, .length = 2}, + [74] = {.index = 81, .length = 1}, + [75] = {.index = 68, .length = 1}, + [76] = {.index = 81, .length = 1}, + [77] = {.index = 82, .length = 2}, + [78] = {.index = 84, .length = 3}, + [79] = {.index = 87, .length = 1}, + [80] = {.index = 88, .length = 1}, + [81] = {.index = 89, .length = 2}, + [83] = {.index = 89, .length = 2}, + [84] = {.index = 91, .length = 1}, + [85] = {.index = 92, .length = 2}, + [86] = {.index = 94, .length = 3}, + [87] = {.index = 97, .length = 2}, + [88] = {.index = 99, .length = 2}, + [89] = {.index = 99, .length = 2}, + [90] = {.index = 101, .length = 1}, + [91] = {.index = 102, .length = 2}, + [92] = {.index = 104, .length = 3}, + [93] = {.index = 107, .length = 2}, + [94] = {.index = 109, .length = 2}, + [95] = {.index = 111, .length = 2}, + [96] = {.index = 113, .length = 2}, + [97] = {.index = 115, .length = 2}, [98] = {.index = 113, .length = 2}, - [99] = {.index = 115, .length = 1}, - [100] = {.index = 116, .length = 1}, + [99] = {.index = 115, .length = 2}, + [100] = {.index = 117, .length = 2}, [101] = {.index = 117, .length = 2}, - [102] = {.index = 119, .length = 2}, - [103] = {.index = 121, .length = 2}, - [104] = {.index = 123, .length = 1}, - [105] = {.index = 124, .length = 3}, - [106] = {.index = 127, .length = 2}, - [107] = {.index = 124, .length = 3}, - [108] = {.index = 127, .length = 2}, - [109] = {.index = 129, .length = 2}, - [110] = {.index = 131, .length = 1}, - [111] = {.index = 132, .length = 2}, - [112] = {.index = 134, .length = 3}, - [113] = {.index = 137, .length = 1}, - [114] = {.index = 138, .length = 1}, - [115] = {.index = 139, .length = 2}, + [102] = {.index = 119, .length = 1}, + [103] = {.index = 120, .length = 1}, + [104] = {.index = 121, .length = 2}, + [105] = {.index = 123, .length = 2}, + [106] = {.index = 125, .length = 2}, + [107] = {.index = 127, .length = 1}, + [108] = {.index = 128, .length = 3}, + [109] = {.index = 131, .length = 2}, + [110] = {.index = 128, .length = 3}, + [111] = {.index = 131, .length = 2}, + [112] = {.index = 133, .length = 2}, + [113] = {.index = 135, .length = 1}, + [114] = {.index = 136, .length = 2}, + [115] = {.index = 138, .length = 3}, [116] = {.index = 141, .length = 1}, - [117] = {.index = 142, .length = 1}, - [118] = {.index = 143, .length = 2}, - [119] = {.index = 145, .length = 3}, - [120] = {.index = 148, .length = 1}, - [121] = {.index = 149, .length = 3}, - [122] = {.index = 152, .length = 4}, - [123] = {.index = 156, .length = 3}, - [124] = {.index = 159, .length = 2}, - [125] = {.index = 161, .length = 2}, - [126] = {.index = 6, .length = 1}, - [127] = {.index = 163, .length = 2}, - [128] = {.index = 165, .length = 1}, - [129] = {.index = 166, .length = 3}, - [130] = {.index = 163, .length = 2}, - [131] = {.index = 169, .length = 2}, - [132] = {.index = 171, .length = 2}, - [133] = {.index = 173, .length = 2}, - [134] = {.index = 173, .length = 2}, - [135] = {.index = 175, .length = 1}, - [136] = {.index = 176, .length = 3}, - [137] = {.index = 179, .length = 1}, - [138] = {.index = 180, .length = 2}, - [139] = {.index = 182, .length = 3}, - [140] = {.index = 185, .length = 3}, - [141] = {.index = 180, .length = 2}, - [142] = {.index = 182, .length = 3}, - [143] = {.index = 185, .length = 3}, - [144] = {.index = 188, .length = 2}, - [145] = {.index = 190, .length = 2}, - [146] = {.index = 192, .length = 1}, - [148] = {.index = 193, .length = 1}, - [149] = {.index = 194, .length = 3}, - [150] = {.index = 197, .length = 4}, - [151] = {.index = 139, .length = 2}, - [152] = {.index = 201, .length = 3}, - [153] = {.index = 204, .length = 2}, - [154] = {.index = 206, .length = 3}, - [155] = {.index = 209, .length = 2}, - [156] = {.index = 211, .length = 2}, - [157] = {.index = 213, .length = 3}, - [158] = {.index = 216, .length = 3}, - [159] = {.index = 219, .length = 2}, + [117] = {.index = 142, .length = 2}, + [118] = {.index = 144, .length = 3}, + [119] = {.index = 147, .length = 2}, + [120] = {.index = 149, .length = 2}, + [121] = {.index = 151, .length = 1}, + [122] = {.index = 152, .length = 1}, + [123] = {.index = 153, .length = 2}, + [124] = {.index = 155, .length = 3}, + [125] = {.index = 158, .length = 1}, + [126] = {.index = 159, .length = 3}, + [127] = {.index = 162, .length = 4}, + [128] = {.index = 166, .length = 3}, + [129] = {.index = 169, .length = 2}, + [130] = {.index = 171, .length = 2}, + [131] = {.index = 6, .length = 1}, + [132] = {.index = 173, .length = 2}, + [133] = {.index = 175, .length = 1}, + [134] = {.index = 176, .length = 3}, + [135] = {.index = 173, .length = 2}, + [136] = {.index = 179, .length = 2}, + [137] = {.index = 181, .length = 2}, + [138] = {.index = 183, .length = 2}, + [139] = {.index = 183, .length = 2}, + [140] = {.index = 185, .length = 1}, + [141] = {.index = 186, .length = 3}, + [142] = {.index = 189, .length = 1}, + [143] = {.index = 190, .length = 2}, + [144] = {.index = 192, .length = 3}, + [145] = {.index = 195, .length = 3}, + [146] = {.index = 190, .length = 2}, + [147] = {.index = 192, .length = 3}, + [148] = {.index = 195, .length = 3}, + [149] = {.index = 198, .length = 2}, + [150] = {.index = 200, .length = 2}, + [151] = {.index = 202, .length = 1}, + [153] = {.index = 203, .length = 1}, + [154] = {.index = 204, .length = 3}, + [155] = {.index = 207, .length = 4}, + [156] = {.index = 149, .length = 2}, + [157] = {.index = 211, .length = 3}, + [158] = {.index = 214, .length = 2}, + [159] = {.index = 216, .length = 3}, [160] = {.index = 219, .length = 2}, - [161] = {.index = 221, .length = 3}, - [162] = {.index = 224, .length = 2}, + [161] = {.index = 221, .length = 2}, + [162] = {.index = 223, .length = 3}, [163] = {.index = 226, .length = 3}, - [164] = {.index = 229, .length = 3}, - [165] = {.index = 232, .length = 4}, - [166] = {.index = 236, .length = 3}, - [167] = {.index = 239, .length = 4}, - [168] = {.index = 243, .length = 3}, - [169] = {.index = 246, .length = 4}, - [170] = {.index = 250, .length = 3}, - [171] = {.index = 253, .length = 2}, - [172] = {.index = 255, .length = 2}, - [173] = {.index = 257, .length = 2}, - [174] = {.index = 259, .length = 2}, - [175] = {.index = 261, .length = 2}, - [176] = {.index = 263, .length = 1}, - [177] = {.index = 264, .length = 2}, - [178] = {.index = 266, .length = 3}, - [179] = {.index = 257, .length = 2}, - [180] = {.index = 269, .length = 2}, - [181] = {.index = 271, .length = 4}, + [164] = {.index = 229, .length = 2}, + [165] = {.index = 229, .length = 2}, + [166] = {.index = 231, .length = 3}, + [167] = {.index = 234, .length = 2}, + [168] = {.index = 236, .length = 3}, + [169] = {.index = 239, .length = 3}, + [170] = {.index = 242, .length = 4}, + [171] = {.index = 246, .length = 3}, + [172] = {.index = 249, .length = 4}, + [173] = {.index = 253, .length = 3}, + [174] = {.index = 256, .length = 4}, + [175] = {.index = 260, .length = 3}, + [176] = {.index = 263, .length = 2}, + [177] = {.index = 265, .length = 2}, + [178] = {.index = 267, .length = 2}, + [179] = {.index = 269, .length = 2}, + [180] = {.index = 271, .length = 2}, + [181] = {.index = 273, .length = 2}, [182] = {.index = 275, .length = 3}, - [183] = {.index = 278, .length = 4}, - [184] = {.index = 282, .length = 3}, - [185] = {.index = 285, .length = 3}, - [186] = {.index = 116, .length = 1}, - [187] = {.index = 288, .length = 3}, - [188] = {.index = 291, .length = 2}, - [189] = {.index = 293, .length = 2}, - [190] = {.index = 295, .length = 2}, - [191] = {.index = 288, .length = 3}, - [192] = {.index = 297, .length = 2}, - [193] = {.index = 299, .length = 2}, - [194] = {.index = 301, .length = 3}, - [195] = {.index = 304, .length = 4}, - [196] = {.index = 301, .length = 3}, - [197] = {.index = 304, .length = 4}, - [198] = {.index = 308, .length = 3}, - [199] = {.index = 308, .length = 3}, - [200] = {.index = 311, .length = 3}, - [201] = {.index = 311, .length = 3}, - [202] = {.index = 314, .length = 2}, - [203] = {.index = 316, .length = 2}, - [204] = {.index = 318, .length = 2}, - [205] = {.index = 320, .length = 2}, - [206] = {.index = 322, .length = 2}, - [207] = {.index = 324, .length = 2}, - [208] = {.index = 326, .length = 2}, - [209] = {.index = 328, .length = 2}, - [210] = {.index = 330, .length = 2}, - [211] = {.index = 332, .length = 2}, - [212] = {.index = 295, .length = 2}, - [213] = {.index = 334, .length = 4}, - [214] = {.index = 338, .length = 3}, - [215] = {.index = 341, .length = 3}, + [183] = {.index = 278, .length = 2}, + [184] = {.index = 280, .length = 3}, + [185] = {.index = 267, .length = 2}, + [186] = {.index = 283, .length = 2}, + [187] = {.index = 285, .length = 4}, + [188] = {.index = 289, .length = 3}, + [189] = {.index = 292, .length = 4}, + [190] = {.index = 296, .length = 3}, + [191] = {.index = 299, .length = 3}, + [192] = {.index = 120, .length = 1}, + [193] = {.index = 302, .length = 3}, + [194] = {.index = 305, .length = 2}, + [195] = {.index = 307, .length = 2}, + [196] = {.index = 309, .length = 2}, + [197] = {.index = 302, .length = 3}, + [198] = {.index = 311, .length = 2}, + [199] = {.index = 313, .length = 2}, + [200] = {.index = 315, .length = 3}, + [201] = {.index = 318, .length = 4}, + [202] = {.index = 315, .length = 3}, + [203] = {.index = 318, .length = 4}, + [204] = {.index = 322, .length = 3}, + [205] = {.index = 322, .length = 3}, + [206] = {.index = 325, .length = 3}, + [207] = {.index = 325, .length = 3}, + [208] = {.index = 328, .length = 2}, + [209] = {.index = 330, .length = 2}, + [210] = {.index = 332, .length = 2}, + [211] = {.index = 334, .length = 2}, + [212] = {.index = 336, .length = 2}, + [213] = {.index = 338, .length = 2}, + [214] = {.index = 340, .length = 2}, + [215] = {.index = 342, .length = 2}, [216] = {.index = 344, .length = 2}, - [217] = {.index = 346, .length = 3}, - [218] = {.index = 344, .length = 2}, - [219] = {.index = 346, .length = 3}, - [220] = {.index = 349, .length = 3}, - [221] = {.index = 352, .length = 3}, - [222] = {.index = 355, .length = 4}, - [223] = {.index = 359, .length = 2}, - [224] = {.index = 361, .length = 3}, - [225] = {.index = 364, .length = 4}, - [226] = {.index = 368, .length = 3}, - [227] = {.index = 371, .length = 4}, - [228] = {.index = 375, .length = 4}, - [229] = {.index = 379, .length = 5}, - [230] = {.index = 384, .length = 4}, - [231] = {.index = 388, .length = 3}, - [232] = {.index = 391, .length = 4}, - [233] = {.index = 395, .length = 5}, - [234] = {.index = 388, .length = 3}, - [235] = {.index = 400, .length = 3}, - [236] = {.index = 403, .length = 4}, - [237] = {.index = 407, .length = 4}, - [238] = {.index = 411, .length = 3}, - [239] = {.index = 414, .length = 4}, - [240] = {.index = 418, .length = 3}, - [241] = {.index = 421, .length = 2}, - [242] = {.index = 423, .length = 3}, - [243] = {.index = 295, .length = 2}, - [244] = {.index = 426, .length = 3}, - [245] = {.index = 429, .length = 3}, + [217] = {.index = 346, .length = 2}, + [218] = {.index = 309, .length = 2}, + [219] = {.index = 348, .length = 4}, + [220] = {.index = 352, .length = 3}, + [221] = {.index = 355, .length = 3}, + [222] = {.index = 358, .length = 2}, + [223] = {.index = 360, .length = 3}, + [224] = {.index = 358, .length = 2}, + [225] = {.index = 360, .length = 3}, + [226] = {.index = 363, .length = 3}, + [227] = {.index = 366, .length = 3}, + [228] = {.index = 369, .length = 4}, + [229] = {.index = 373, .length = 2}, + [230] = {.index = 375, .length = 3}, + [231] = {.index = 378, .length = 4}, + [232] = {.index = 382, .length = 3}, + [233] = {.index = 385, .length = 4}, + [234] = {.index = 389, .length = 4}, + [235] = {.index = 393, .length = 5}, + [236] = {.index = 398, .length = 4}, + [237] = {.index = 402, .length = 3}, + [238] = {.index = 405, .length = 4}, + [239] = {.index = 409, .length = 5}, + [240] = {.index = 402, .length = 3}, + [241] = {.index = 414, .length = 3}, + [242] = {.index = 417, .length = 4}, + [243] = {.index = 421, .length = 4}, + [244] = {.index = 425, .length = 3}, + [245] = {.index = 428, .length = 4}, [246] = {.index = 432, .length = 3}, - [247] = {.index = 435, .length = 3}, - [248] = {.index = 438, .length = 3}, - [249] = {.index = 441, .length = 4}, - [250] = {.index = 445, .length = 5}, - [251] = {.index = 450, .length = 4}, - [252] = {.index = 454, .length = 4}, - [253] = {.index = 458, .length = 2}, - [254] = {.index = 460, .length = 3}, - [255] = {.index = 463, .length = 3}, - [256] = {.index = 466, .length = 4}, - [257] = {.index = 466, .length = 4}, - [258] = {.index = 470, .length = 2}, - [259] = {.index = 472, .length = 3}, - [260] = {.index = 475, .length = 3}, - [261] = {.index = 478, .length = 3}, - [262] = {.index = 481, .length = 2}, - [263] = {.index = 483, .length = 2}, - [264] = {.index = 485, .length = 3}, - [265] = {.index = 488, .length = 3}, - [266] = {.index = 491, .length = 3}, - [267] = {.index = 494, .length = 4}, - [268] = {.index = 491, .length = 3}, - [269] = {.index = 494, .length = 4}, - [270] = {.index = 498, .length = 3}, - [271] = {.index = 498, .length = 3}, - [272] = {.index = 501, .length = 4}, - [273] = {.index = 505, .length = 4}, - [274] = {.index = 509, .length = 3}, - [275] = {.index = 512, .length = 4}, - [276] = {.index = 516, .length = 5}, - [277] = {.index = 521, .length = 4}, - [278] = {.index = 525, .length = 5}, - [279] = {.index = 530, .length = 3}, - [280] = {.index = 533, .length = 5}, - [281] = {.index = 538, .length = 4}, - [282] = {.index = 542, .length = 4}, - [283] = {.index = 546, .length = 4}, - [284] = {.index = 550, .length = 5}, - [285] = {.index = 555, .length = 3}, - [286] = {.index = 558, .length = 4}, - [287] = {.index = 562, .length = 5}, - [288] = {.index = 567, .length = 4}, - [289] = {.index = 571, .length = 4}, - [290] = {.index = 575, .length = 3}, - [291] = {.index = 578, .length = 4}, - [292] = {.index = 582, .length = 4}, - [293] = {.index = 586, .length = 5}, - [294] = {.index = 591, .length = 2}, - [295] = {.index = 593, .length = 3}, - [296] = {.index = 596, .length = 3}, - [297] = {.index = 599, .length = 3}, - [298] = {.index = 602, .length = 3}, - [299] = {.index = 605, .length = 2}, - [300] = {.index = 607, .length = 4}, - [301] = {.index = 611, .length = 4}, - [302] = {.index = 611, .length = 4}, - [303] = {.index = 615, .length = 4}, - [304] = {.index = 619, .length = 5}, - [305] = {.index = 624, .length = 4}, - [306] = {.index = 628, .length = 5}, - [307] = {.index = 633, .length = 6}, - [308] = {.index = 639, .length = 5}, - [309] = {.index = 644, .length = 3}, - [310] = {.index = 647, .length = 4}, - [311] = {.index = 651, .length = 5}, - [312] = {.index = 656, .length = 5}, - [313] = {.index = 661, .length = 4}, - [314] = {.index = 665, .length = 5}, - [315] = {.index = 670, .length = 4}, - [316] = {.index = 674, .length = 3}, - [317] = {.index = 677, .length = 5}, - [318] = {.index = 682, .length = 6}, - [319] = {.index = 688, .length = 4}, - [320] = {.index = 692, .length = 5}, - [321] = {.index = 697, .length = 6}, - [322] = {.index = 703, .length = 5}, - [323] = {.index = 708, .length = 4}, - [324] = {.index = 712, .length = 4}, - [325] = {.index = 716, .length = 6}, + [247] = {.index = 435, .length = 2}, + [248] = {.index = 437, .length = 3}, + [249] = {.index = 309, .length = 2}, + [250] = {.index = 440, .length = 3}, + [251] = {.index = 443, .length = 3}, + [252] = {.index = 446, .length = 3}, + [253] = {.index = 449, .length = 3}, + [254] = {.index = 452, .length = 3}, + [255] = {.index = 455, .length = 4}, + [256] = {.index = 459, .length = 5}, + [257] = {.index = 464, .length = 4}, + [258] = {.index = 468, .length = 4}, + [259] = {.index = 472, .length = 2}, + [260] = {.index = 474, .length = 3}, + [261] = {.index = 477, .length = 3}, + [262] = {.index = 480, .length = 4}, + [263] = {.index = 480, .length = 4}, + [264] = {.index = 484, .length = 2}, + [265] = {.index = 486, .length = 3}, + [266] = {.index = 489, .length = 3}, + [267] = {.index = 492, .length = 3}, + [268] = {.index = 495, .length = 2}, + [269] = {.index = 497, .length = 2}, + [270] = {.index = 499, .length = 3}, + [271] = {.index = 502, .length = 3}, + [272] = {.index = 505, .length = 3}, + [273] = {.index = 508, .length = 4}, + [274] = {.index = 505, .length = 3}, + [275] = {.index = 508, .length = 4}, + [276] = {.index = 512, .length = 3}, + [277] = {.index = 512, .length = 3}, + [278] = {.index = 515, .length = 4}, + [279] = {.index = 519, .length = 4}, + [280] = {.index = 523, .length = 3}, + [281] = {.index = 526, .length = 4}, + [282] = {.index = 530, .length = 5}, + [283] = {.index = 535, .length = 4}, + [284] = {.index = 539, .length = 5}, + [285] = {.index = 544, .length = 3}, + [286] = {.index = 547, .length = 5}, + [287] = {.index = 552, .length = 4}, + [288] = {.index = 556, .length = 4}, + [289] = {.index = 560, .length = 4}, + [290] = {.index = 564, .length = 5}, + [291] = {.index = 569, .length = 3}, + [292] = {.index = 572, .length = 4}, + [293] = {.index = 576, .length = 5}, + [294] = {.index = 581, .length = 4}, + [295] = {.index = 585, .length = 4}, + [296] = {.index = 589, .length = 3}, + [297] = {.index = 592, .length = 4}, + [298] = {.index = 596, .length = 4}, + [299] = {.index = 600, .length = 5}, + [300] = {.index = 605, .length = 2}, + [301] = {.index = 607, .length = 3}, + [302] = {.index = 610, .length = 3}, + [303] = {.index = 613, .length = 3}, + [304] = {.index = 616, .length = 3}, + [305] = {.index = 619, .length = 2}, + [306] = {.index = 621, .length = 4}, + [307] = {.index = 625, .length = 4}, + [308] = {.index = 625, .length = 4}, + [309] = {.index = 629, .length = 4}, + [310] = {.index = 633, .length = 5}, + [311] = {.index = 638, .length = 4}, + [312] = {.index = 642, .length = 5}, + [313] = {.index = 647, .length = 6}, + [314] = {.index = 653, .length = 5}, + [315] = {.index = 658, .length = 3}, + [316] = {.index = 661, .length = 4}, + [317] = {.index = 665, .length = 5}, + [318] = {.index = 670, .length = 5}, + [319] = {.index = 675, .length = 4}, + [320] = {.index = 679, .length = 5}, + [321] = {.index = 684, .length = 4}, + [322] = {.index = 688, .length = 3}, + [323] = {.index = 691, .length = 5}, + [324] = {.index = 696, .length = 6}, + [325] = {.index = 702, .length = 4}, + [326] = {.index = 706, .length = 5}, + [327] = {.index = 711, .length = 6}, + [328] = {.index = 717, .length = 5}, + [329] = {.index = 722, .length = 4}, + [330] = {.index = 726, .length = 4}, + [331] = {.index = 730, .length = 6}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -2792,956 +2802,976 @@ static const TSFieldMapEntry ts_field_map_entries[] = { [17] = {field_content, 1}, [18] = + {field_elements, 1}, + [19] = {field_argument, 2}, {field_macro, 0}, - [20] = + [21] = {field_name, 2}, {field_path, 0}, - [22] = + [23] = {field_body, 2}, {field_name, 1}, - [24] = - {field_pattern, 1}, [25] = + {field_pattern, 1}, + [26] = {field_type, 0}, {field_type_arguments, 1}, - [27] = + [28] = {field_condition, 1}, {field_consequence, 2}, - [29] = - {field_parameters, 1}, [30] = - {field_trait, 1}, + {field_parameters, 1}, [31] = - {field_type, 1}, + {field_trait, 1}, [32] = + {field_type, 1}, + [33] = {field_body, 2}, {field_type, 1}, - [34] = + [35] = {field_parameters, 1}, {field_trait, 0}, - [36] = + [37] = {field_body, 2}, {field_value, 1}, - [38] = - {field_list, 1}, [39] = - {field_argument, 1}, + {field_list, 1}, [40] = + {field_argument, 1}, + [41] = {field_body, 2}, {field_condition, 1}, - [42] = - {field_path, 0}, [43] = - {field_value, 2}, + {field_path, 0}, [44] = + {field_value, 2}, + [45] = {field_body, 2}, {field_parameters, 1}, - [46] = - {field_visibility, 0}, [47] = + {field_visibility, 0}, + [48] = {field_body, 2}, {field_visibility, 0}, - [49] = + [50] = {field_left, 0}, {field_operator, 1}, {field_right, 2}, - [52] = + [53] = {field_type, 2}, {field_value, 0}, - [54] = + [55] = {field_left, 0}, {field_right, 2}, - [56] = + [57] = {field_field, 2}, {field_value, 0}, - [58] = + [59] = {field_function, 0}, {field_type_arguments, 2}, - [60] = + [61] = {field_type, 0}, {field_type_arguments, 2}, - [62] = + [63] = {field_content, 1}, {field_content, 2}, - [64] = - {field_name, 0}, [65] = + {field_elements, 1}, + {field_elements, 2}, + [67] = + {field_elements, 2}, + [68] = + {field_name, 0}, + [69] = {field_body, 3}, {field_name, 1}, - [67] = + [71] = {field_body, 3}, {field_name, 1}, {field_type_parameters, 2}, - [70] = + [74] = {field_name, 1}, {field_parameters, 2}, - [72] = + [76] = {field_body, 3}, {field_name, 1}, {field_parameters, 2}, - [75] = + [79] = {field_patterns, 1}, - [76] = + [80] = {field_pattern, 2}, - [77] = + [81] = {field_type, 0}, - [78] = + [82] = {field_identifier, 0}, {field_pattern, 2}, - [80] = + [84] = {field_alternative, 3}, {field_condition, 1}, {field_consequence, 2}, - [83] = + [87] = {field_element, 1}, - [84] = + [88] = {field_type, 2}, - [85] = + [89] = {field_bounds, 1}, {field_left, 0}, - [87] = + [91] = {field_parameters, 2}, - [88] = + [92] = {field_type, 2}, {field_type_parameters, 1}, - [90] = + [94] = {field_body, 3}, {field_type, 2}, {field_type_parameters, 1}, - [93] = + [97] = {field_body, 3}, {field_type, 1}, - [95] = + [99] = {field_parameters, 2}, {field_trait, 1}, - [97] = + [101] = {field_pattern, 0}, - [98] = + [102] = {field_name, 1}, {field_type_parameters, 2}, - [100] = + [104] = {field_body, 3}, {field_bounds, 2}, {field_name, 1}, - [103] = + [107] = {field_bounds, 2}, {field_name, 1}, - [105] = + [109] = {field_body, 3}, {field_type, 2}, - [107] = + [111] = {field_body, 3}, {field_name, 2}, - [109] = + [113] = {field_alias, 2}, {field_path, 0}, - [111] = + [115] = {field_list, 2}, {field_path, 0}, - [113] = + [117] = {field_arguments, 1}, {field_path, 0}, - [115] = + [119] = {field_attribute, 2}, - [116] = + [120] = {field_name, 2}, - [117] = + [121] = {field_alias, 2}, {field_type, 0}, - [119] = + [123] = {field_pattern, 0}, {field_type, 2}, - [121] = + [125] = {field_parameters, 1}, {field_parameters, 2}, - [123] = + [127] = {field_statements, 1}, - [124] = + [128] = {field_body, 3}, {field_name, 2}, {field_visibility, 0}, - [127] = + [131] = {field_name, 2}, {field_visibility, 0}, - [129] = + [133] = {field_argument, 2}, {field_visibility, 0}, - [131] = + [135] = {field_args, 1}, - [132] = + [136] = {field_expression, 0}, {field_index, 2}, - [134] = + [138] = {field_body, 3}, {field_parameters, 0}, {field_return_type, 2}, - [137] = + [141] = {field_body, 3}, - [138] = + [142] = {field_length, 3}, - [139] = + {field_repeat, 1}, + [144] = + {field_elements, 1}, + {field_elements, 2}, + {field_elements, 3}, + [147] = + {field_elements, 2}, + {field_elements, 3}, + [149] = {field_name, 1}, {field_type, 3}, - [141] = + [151] = {field_tokens, 1}, - [142] = + [152] = {field_variants, 1}, - [143] = + [153] = {field_name, 1}, {field_visibility, 0}, - [145] = + [155] = {field_body, 4}, {field_name, 1}, {field_type_parameters, 2}, - [148] = + [158] = {field_params, 1}, - [149] = + [159] = {field_name, 1}, {field_parameters, 3}, {field_type_parameters, 2}, - [152] = + [162] = {field_body, 4}, {field_name, 1}, {field_parameters, 3}, {field_type_parameters, 2}, - [156] = + [166] = {field_body, 4}, {field_name, 1}, {field_parameters, 2}, - [159] = + [169] = {field_patterns, 1}, {field_patterns, 2}, - [161] = + [171] = {field_patterns, 2}, {field_type, 0}, - [163] = + [173] = {field_fields, 2}, {field_type, 0}, - [165] = + [175] = {field_arguments, 1}, - [166] = + [176] = {field_body, 4}, {field_pattern, 1}, {field_value, 3}, - [169] = + [179] = {field_pattern, 1}, {field_value, 3}, - [171] = + [181] = {field_parameters, 1}, {field_return_type, 3}, - [173] = + [183] = {field_default_type, 2}, {field_name, 0}, - [175] = + [185] = {field_type, 3}, - [176] = + [186] = {field_body, 4}, {field_type, 2}, {field_type_parameters, 1}, - [179] = + [189] = {field_parameters, 3}, - [180] = + [190] = {field_trait, 1}, {field_type, 3}, - [182] = + [192] = {field_body, 4}, {field_trait, 1}, {field_type, 3}, - [185] = + [195] = {field_parameters, 1}, {field_return_type, 3}, {field_trait, 0}, - [188] = + [198] = {field_pattern, 1}, {field_type, 3}, - [190] = + [200] = {field_alternative, 3}, {field_pattern, 1}, - [192] = + [202] = {field_arms, 1}, - [193] = + [203] = {field_declarations, 1}, - [194] = + [204] = {field_body, 4}, {field_bounds, 2}, {field_name, 1}, - [197] = + [207] = {field_body, 4}, {field_bounds, 3}, {field_name, 1}, {field_type_parameters, 2}, - [201] = + [211] = {field_bounds, 3}, {field_name, 1}, {field_type_parameters, 2}, - [204] = + [214] = {field_type, 3}, {field_type_parameters, 2}, - [206] = + [216] = {field_body, 4}, {field_type, 3}, {field_type_parameters, 2}, - [209] = + [219] = {field_body, 4}, {field_type, 2}, - [211] = + [221] = {field_body, 4}, {field_name, 2}, - [213] = + [223] = {field_body, 4}, {field_bounds, 3}, {field_name, 2}, - [216] = + [226] = {field_body, 4}, {field_name, 2}, {field_type_parameters, 3}, - [219] = + [229] = {field_path, 0}, {field_value, 2}, - [221] = + [231] = {field_body, 4}, {field_parameters, 1}, {field_return_type, 3}, - [224] = + [234] = {field_name, 2}, {field_parameters, 3}, - [226] = + [236] = {field_body, 4}, {field_name, 2}, {field_parameters, 3}, - [229] = + [239] = {field_body, 4}, {field_name, 2}, {field_visibility, 0}, - [232] = + [242] = {field_body, 4}, {field_name, 2}, {field_type_parameters, 3}, {field_visibility, 0}, - [236] = + [246] = {field_name, 2}, {field_parameters, 3}, {field_visibility, 0}, - [239] = + [249] = {field_body, 4}, {field_name, 2}, {field_parameters, 3}, {field_visibility, 0}, - [243] = + [253] = {field_name, 2}, {field_type_parameters, 3}, {field_visibility, 0}, - [246] = + [256] = {field_body, 4}, {field_bounds, 3}, {field_name, 2}, {field_visibility, 0}, - [250] = + [260] = {field_body, 4}, {field_name, 3}, {field_visibility, 0}, - [253] = + [263] = {field_name, 3}, {field_visibility, 0}, - [255] = + [265] = {field_list, 1}, {field_list, 2}, - [257] = + [267] = {field_name, 0}, {field_value, 2}, - [259] = + [269] = {field_args, 1}, {field_args, 2}, - [261] = + [271] = {field_body, 4}, {field_condition, 3}, - [263] = + [273] = {field_length, 4}, - [264] = + {field_repeat, 2}, + [275] = + {field_elements, 2}, + {field_elements, 3}, + {field_elements, 4}, + [278] = {field_variants, 1}, {field_variants, 2}, - [266] = + [280] = {field_body, 2}, {field_name, 1}, {field_visibility, 0}, - [269] = + [283] = {field_params, 1}, {field_params, 2}, - [271] = + [285] = {field_body, 5}, {field_name, 1}, {field_parameters, 3}, {field_type_parameters, 2}, - [275] = + [289] = {field_name, 1}, {field_parameters, 2}, {field_return_type, 4}, - [278] = + [292] = {field_body, 5}, {field_name, 1}, {field_parameters, 2}, {field_return_type, 4}, - [282] = + [296] = {field_patterns, 1}, {field_patterns, 2}, {field_patterns, 3}, - [285] = + [299] = {field_patterns, 2}, {field_patterns, 3}, {field_type, 0}, - [288] = + [302] = {field_fields, 2}, {field_fields, 3}, {field_type, 0}, - [291] = + [305] = {field_name, 0}, {field_pattern, 2}, - [293] = + [307] = {field_arguments, 1}, {field_arguments, 2}, - [295] = + [309] = {field_name, 0}, {field_type, 2}, - [297] = + [311] = {field_element, 1}, {field_length, 3}, - [299] = + [313] = {field_parameters, 2}, {field_return_type, 4}, - [301] = + [315] = {field_trait, 2}, {field_type, 4}, {field_type_parameters, 1}, - [304] = + [318] = {field_body, 5}, {field_trait, 2}, {field_type, 4}, {field_type_parameters, 1}, - [308] = + [322] = {field_parameters, 2}, {field_return_type, 4}, {field_trait, 1}, - [311] = + [325] = {field_body, 5}, {field_trait, 1}, {field_type, 3}, - [314] = + [328] = {field_pattern, 2}, {field_type, 4}, - [316] = + [330] = {field_pattern, 2}, {field_value, 4}, - [318] = + [332] = {field_alternative, 4}, {field_pattern, 2}, - [320] = + [334] = {field_pattern, 0}, {field_value, 2}, - [322] = + [336] = {field_condition, 2}, {field_pattern, 0}, - [324] = + [338] = {field_arms, 1}, {field_arms, 2}, - [326] = + [340] = {field_name, 2}, {field_type, 4}, - [328] = + [342] = {field_type, 1}, {field_type, 2, .inherited = true}, - [330] = + [344] = {field_type, 0, .inherited = true}, {field_type, 1, .inherited = true}, - [332] = + [346] = {field_declarations, 1}, {field_declarations, 2}, - [334] = + [348] = {field_body, 5}, {field_bounds, 3}, {field_name, 1}, {field_type_parameters, 2}, - [338] = + [352] = {field_name, 1}, {field_type, 4}, {field_type_parameters, 2}, - [341] = + [355] = {field_body, 5}, {field_type, 3}, {field_type_parameters, 2}, - [344] = + [358] = {field_trait, 2}, {field_type, 4}, - [346] = + [360] = {field_body, 5}, {field_trait, 2}, {field_type, 4}, - [349] = + [363] = {field_body, 5}, {field_bounds, 3}, {field_name, 2}, - [352] = + [366] = {field_body, 5}, {field_name, 2}, {field_type_parameters, 3}, - [355] = + [369] = {field_body, 5}, {field_bounds, 4}, {field_name, 2}, {field_type_parameters, 3}, - [359] = + [373] = {field_alias, 4}, {field_name, 2}, - [361] = + [375] = {field_name, 2}, {field_parameters, 4}, {field_type_parameters, 3}, - [364] = + [378] = {field_body, 5}, {field_name, 2}, {field_parameters, 4}, {field_type_parameters, 3}, - [368] = + [382] = {field_body, 5}, {field_name, 2}, {field_parameters, 3}, - [371] = + [385] = {field_body, 5}, {field_name, 2}, {field_type_parameters, 3}, {field_visibility, 0}, - [375] = + [389] = {field_name, 2}, {field_parameters, 4}, {field_type_parameters, 3}, {field_visibility, 0}, - [379] = + [393] = {field_body, 5}, {field_name, 2}, {field_parameters, 4}, {field_type_parameters, 3}, {field_visibility, 0}, - [384] = + [398] = {field_body, 5}, {field_name, 2}, {field_parameters, 3}, {field_visibility, 0}, - [388] = + [402] = {field_name, 2}, {field_type, 4}, {field_visibility, 0}, - [391] = + [405] = {field_body, 5}, {field_bounds, 3}, {field_name, 2}, {field_visibility, 0}, - [395] = + [409] = {field_body, 5}, {field_bounds, 4}, {field_name, 2}, {field_type_parameters, 3}, {field_visibility, 0}, - [400] = + [414] = {field_body, 5}, {field_name, 3}, {field_visibility, 0}, - [403] = + [417] = {field_body, 5}, {field_bounds, 4}, {field_name, 3}, {field_visibility, 0}, - [407] = + [421] = {field_body, 5}, {field_name, 3}, {field_type_parameters, 4}, {field_visibility, 0}, - [411] = + [425] = {field_name, 3}, {field_parameters, 4}, {field_visibility, 0}, - [414] = + [428] = {field_body, 5}, {field_name, 3}, {field_parameters, 4}, {field_visibility, 0}, - [418] = + [432] = {field_list, 1}, {field_list, 2}, {field_list, 3}, - [421] = + [435] = {field_name, 1}, {field_value, 3}, - [423] = + [437] = {field_args, 1}, {field_args, 2}, {field_args, 3}, - [426] = + [440] = {field_name, 1}, {field_type, 3}, {field_value, 5}, - [429] = + [443] = {field_variants, 1}, {field_variants, 2}, {field_variants, 3}, - [432] = + [446] = {field_name, 1}, {field_value, 3}, {field_visibility, 0}, - [435] = + [449] = {field_body, 1}, {field_name, 0}, {field_value, 3}, - [438] = + [452] = {field_params, 1}, {field_params, 2}, {field_params, 3}, - [441] = + [455] = {field_name, 1}, {field_parameters, 3}, {field_return_type, 5}, {field_type_parameters, 2}, - [445] = + [459] = {field_body, 6}, {field_name, 1}, {field_parameters, 3}, {field_return_type, 5}, {field_type_parameters, 2}, - [450] = + [464] = {field_body, 6}, {field_name, 1}, {field_parameters, 2}, {field_return_type, 4}, - [454] = + [468] = {field_patterns, 2}, {field_patterns, 3}, {field_patterns, 4}, {field_type, 0}, - [458] = + [472] = {field_name, 1}, {field_pattern, 3}, - [460] = + [474] = {field_arguments, 1}, {field_arguments, 2}, {field_arguments, 3}, - [463] = + [477] = {field_name, 0}, {field_type, 3}, {field_type_arguments, 1}, - [466] = + [480] = {field_body, 6}, {field_trait, 2}, {field_type, 4}, {field_type_parameters, 1}, - [470] = + [484] = {field_parameters, 3}, {field_return_type, 5}, - [472] = + [486] = {field_pattern, 1}, {field_type, 3}, {field_value, 5}, - [475] = + [489] = {field_alternative, 5}, {field_pattern, 1}, {field_type, 3}, - [478] = + [492] = {field_alternative, 5}, {field_pattern, 1}, {field_value, 3}, - [481] = + [495] = {field_name, 3}, {field_type, 5}, - [483] = + [497] = {field_type, 2}, {field_type, 3, .inherited = true}, - [485] = + [499] = {field_declarations, 1}, {field_declarations, 2}, {field_declarations, 3}, - [488] = + [502] = {field_name, 1}, {field_type, 3}, {field_visibility, 0}, - [491] = + [505] = {field_trait, 3}, {field_type, 5}, {field_type_parameters, 2}, - [494] = + [508] = {field_body, 6}, {field_trait, 3}, {field_type, 5}, {field_type_parameters, 2}, - [498] = + [512] = {field_body, 6}, {field_trait, 2}, {field_type, 4}, - [501] = + [515] = {field_body, 6}, {field_bounds, 4}, {field_name, 2}, {field_type_parameters, 3}, - [505] = + [519] = {field_body, 6}, {field_name, 2}, {field_parameters, 4}, {field_type_parameters, 3}, - [509] = + [523] = {field_name, 2}, {field_parameters, 3}, {field_return_type, 5}, - [512] = + [526] = {field_body, 6}, {field_name, 2}, {field_parameters, 3}, {field_return_type, 5}, - [516] = + [530] = {field_body, 6}, {field_name, 2}, {field_parameters, 4}, {field_type_parameters, 3}, {field_visibility, 0}, - [521] = + [535] = {field_name, 2}, {field_parameters, 3}, {field_return_type, 5}, {field_visibility, 0}, - [525] = + [539] = {field_body, 6}, {field_name, 2}, {field_parameters, 3}, {field_return_type, 5}, {field_visibility, 0}, - [530] = + [544] = {field_name, 3}, {field_type, 5}, {field_visibility, 0}, - [533] = + [547] = {field_body, 6}, {field_bounds, 4}, {field_name, 2}, {field_type_parameters, 3}, {field_visibility, 0}, - [538] = + [552] = {field_name, 2}, {field_type, 5}, {field_type_parameters, 3}, {field_visibility, 0}, - [542] = + [556] = {field_body, 6}, {field_bounds, 4}, {field_name, 3}, {field_visibility, 0}, - [546] = + [560] = {field_body, 6}, {field_name, 3}, {field_type_parameters, 4}, {field_visibility, 0}, - [550] = + [564] = {field_body, 6}, {field_bounds, 5}, {field_name, 3}, {field_type_parameters, 4}, {field_visibility, 0}, - [555] = + [569] = {field_alias, 5}, {field_name, 3}, {field_visibility, 0}, - [558] = + [572] = {field_name, 3}, {field_parameters, 5}, {field_type_parameters, 4}, {field_visibility, 0}, - [562] = + [576] = {field_body, 6}, {field_name, 3}, {field_parameters, 5}, {field_type_parameters, 4}, {field_visibility, 0}, - [567] = + [581] = {field_body, 6}, {field_name, 3}, {field_parameters, 4}, {field_visibility, 0}, - [571] = + [585] = {field_args, 1}, {field_args, 2}, {field_args, 3}, {field_args, 4}, - [575] = + [589] = {field_body, 6}, {field_pattern, 3}, {field_value, 5}, - [578] = + [592] = {field_body, 2}, {field_name, 1}, {field_value, 4}, {field_visibility, 0}, - [582] = + [596] = {field_variants, 1}, {field_variants, 2}, {field_variants, 3}, {field_variants, 4}, - [586] = + [600] = {field_body, 7}, {field_name, 1}, {field_parameters, 3}, {field_return_type, 5}, {field_type_parameters, 2}, - [591] = + [605] = {field_name, 2}, {field_pattern, 4}, - [593] = + [607] = {field_pattern, 2}, {field_type, 4}, {field_value, 6}, - [596] = + [610] = {field_alternative, 6}, {field_pattern, 2}, {field_type, 4}, - [599] = + [613] = {field_alternative, 6}, {field_pattern, 2}, {field_value, 4}, - [602] = + [616] = {field_name, 2}, {field_type, 4}, {field_value, 6}, - [605] = + [619] = {field_type, 3}, {field_type, 4, .inherited = true}, - [607] = + [621] = {field_declarations, 1}, {field_declarations, 2}, {field_declarations, 3}, {field_declarations, 4}, - [611] = + [625] = {field_body, 7}, {field_trait, 3}, {field_type, 5}, {field_type_parameters, 2}, - [615] = + [629] = {field_name, 2}, {field_parameters, 4}, {field_return_type, 6}, {field_type_parameters, 3}, - [619] = + [633] = {field_body, 7}, {field_name, 2}, {field_parameters, 4}, {field_return_type, 6}, {field_type_parameters, 3}, - [624] = + [638] = {field_body, 7}, {field_name, 2}, {field_parameters, 3}, {field_return_type, 5}, - [628] = + [642] = {field_name, 2}, {field_parameters, 4}, {field_return_type, 6}, {field_type_parameters, 3}, {field_visibility, 0}, - [633] = + [647] = {field_body, 7}, {field_name, 2}, {field_parameters, 4}, {field_return_type, 6}, {field_type_parameters, 3}, {field_visibility, 0}, - [639] = + [653] = {field_body, 7}, {field_name, 2}, {field_parameters, 3}, {field_return_type, 5}, {field_visibility, 0}, - [644] = + [658] = {field_name, 4}, {field_type, 6}, {field_visibility, 0}, - [647] = + [661] = {field_name, 2}, {field_type, 4}, {field_value, 6}, {field_visibility, 0}, - [651] = + [665] = {field_body, 7}, {field_bounds, 5}, {field_name, 3}, {field_type_parameters, 4}, {field_visibility, 0}, - [656] = + [670] = {field_body, 7}, {field_name, 3}, {field_parameters, 5}, {field_type_parameters, 4}, {field_visibility, 0}, - [661] = + [675] = {field_name, 3}, {field_parameters, 4}, {field_return_type, 6}, {field_visibility, 0}, - [665] = + [679] = {field_body, 7}, {field_name, 3}, {field_parameters, 4}, {field_return_type, 6}, {field_visibility, 0}, - [670] = + [684] = {field_alternative, 7}, {field_pattern, 1}, {field_type, 3}, {field_value, 5}, - [674] = + [688] = {field_name, 3}, {field_type, 5}, {field_value, 7}, - [677] = + [691] = {field_body, 8}, {field_name, 2}, {field_parameters, 4}, {field_return_type, 6}, {field_type_parameters, 3}, - [682] = + [696] = {field_body, 8}, {field_name, 2}, {field_parameters, 4}, {field_return_type, 6}, {field_type_parameters, 3}, {field_visibility, 0}, - [688] = + [702] = {field_name, 3}, {field_type, 5}, {field_value, 7}, {field_visibility, 0}, - [692] = + [706] = {field_name, 3}, {field_parameters, 5}, {field_return_type, 7}, {field_type_parameters, 4}, {field_visibility, 0}, - [697] = + [711] = {field_body, 8}, {field_name, 3}, {field_parameters, 5}, {field_return_type, 7}, {field_type_parameters, 4}, {field_visibility, 0}, - [703] = + [717] = {field_body, 8}, {field_name, 3}, {field_parameters, 4}, {field_return_type, 6}, {field_visibility, 0}, - [708] = + [722] = {field_alternative, 8}, {field_pattern, 2}, {field_type, 4}, {field_value, 6}, - [712] = + [726] = {field_name, 4}, {field_type, 6}, {field_value, 8}, {field_visibility, 0}, - [716] = + [730] = {field_body, 9}, {field_name, 3}, {field_parameters, 5}, @@ -3767,292 +3797,292 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [17] = { [0] = alias_sym_type_identifier, }, - [20] = { - [0] = sym_identifier, - }, [21] = { [0] = sym_identifier, }, [22] = { [0] = sym_identifier, - [2] = alias_sym_type_identifier, }, [23] = { + [0] = sym_identifier, + [2] = alias_sym_type_identifier, + }, + [24] = { [1] = alias_sym_type_identifier, }, - [26] = { + [27] = { [0] = alias_sym_type_identifier, }, - [30] = { + [31] = { [1] = alias_sym_type_identifier, }, - [34] = { + [35] = { [0] = alias_sym_type_identifier, }, - [40] = { + [41] = { [0] = sym_identifier, }, - [45] = { + [46] = { [2] = alias_sym_type_identifier, }, - [48] = { + [49] = { [0] = sym_generic_type, }, - [49] = { + [50] = { [0] = sym_generic_type, [2] = alias_sym_type_identifier, }, - [54] = { + [55] = { [2] = alias_sym_field_identifier, }, - [58] = { + [59] = { [0] = alias_sym_type_identifier, }, - [59] = { + [60] = { [1] = sym_identifier, }, - [62] = { + [65] = { [1] = alias_sym_type_identifier, }, - [63] = { + [66] = { [1] = alias_sym_type_identifier, }, - [67] = { + [70] = { [0] = sym_identifier, [2] = sym_identifier, }, - [68] = { + [71] = { [0] = sym_identifier, }, - [70] = { + [73] = { [2] = sym_identifier, }, - [72] = { + [75] = { [0] = alias_sym_shorthand_field_identifier, }, - [73] = { + [76] = { [0] = alias_sym_type_identifier, }, - [79] = { + [82] = { [1] = alias_sym_type_identifier, }, - [80] = { + [83] = { [0] = alias_sym_type_identifier, }, - [86] = { + [89] = { [1] = alias_sym_type_identifier, }, - [88] = { + [91] = { [1] = alias_sym_type_identifier, }, - [89] = { + [92] = { [1] = alias_sym_type_identifier, }, - [90] = { + [93] = { [1] = alias_sym_type_identifier, }, - [92] = { + [95] = { [2] = alias_sym_type_identifier, }, - [93] = { + [96] = { [0] = sym_identifier, }, - [94] = { + [97] = { [0] = sym_identifier, }, - [97] = { + [100] = { [0] = sym_identifier, }, - [105] = { + [108] = { [2] = alias_sym_type_identifier, }, - [108] = { + [111] = { [2] = alias_sym_type_identifier, }, - [119] = { + [124] = { [1] = alias_sym_type_identifier, }, - [126] = { + [131] = { [1] = alias_sym_shorthand_field_identifier, }, - [130] = { + [135] = { [0] = alias_sym_type_identifier, }, - [134] = { + [139] = { [0] = alias_sym_type_identifier, }, - [141] = { + [146] = { [1] = alias_sym_type_identifier, }, - [142] = { + [147] = { [1] = alias_sym_type_identifier, }, - [143] = { + [148] = { [0] = alias_sym_type_identifier, }, - [147] = { + [152] = { [3] = sym_identifier, }, - [149] = { + [154] = { [1] = alias_sym_type_identifier, }, - [150] = { + [155] = { [1] = alias_sym_type_identifier, }, - [151] = { + [156] = { [1] = alias_sym_type_identifier, }, - [152] = { + [157] = { [1] = alias_sym_type_identifier, }, - [156] = { + [161] = { [2] = alias_sym_type_identifier, }, - [157] = { + [162] = { [2] = alias_sym_type_identifier, }, - [158] = { + [163] = { [2] = alias_sym_type_identifier, }, - [159] = { + [164] = { [0] = sym_identifier, }, - [164] = { + [169] = { [2] = alias_sym_type_identifier, }, - [165] = { + [170] = { [2] = alias_sym_type_identifier, }, - [168] = { + [173] = { [2] = alias_sym_type_identifier, }, - [169] = { + [174] = { [2] = alias_sym_type_identifier, }, - [170] = { + [175] = { [3] = alias_sym_type_identifier, }, - [173] = { + [178] = { [0] = alias_sym_field_identifier, }, - [186] = { + [192] = { [2] = alias_sym_shorthand_field_identifier, }, - [188] = { + [194] = { [0] = alias_sym_field_identifier, }, - [190] = { + [196] = { [0] = alias_sym_type_identifier, }, - [191] = { + [197] = { [0] = alias_sym_type_identifier, }, - [196] = { + [202] = { [2] = alias_sym_type_identifier, }, - [197] = { + [203] = { [2] = alias_sym_type_identifier, }, - [199] = { + [205] = { [1] = alias_sym_type_identifier, }, - [201] = { + [207] = { [1] = alias_sym_type_identifier, }, - [212] = { + [218] = { [0] = alias_sym_field_identifier, }, - [213] = { + [219] = { [1] = alias_sym_type_identifier, }, - [214] = { + [220] = { [1] = alias_sym_type_identifier, }, - [218] = { + [224] = { [2] = alias_sym_type_identifier, }, - [219] = { + [225] = { [2] = alias_sym_type_identifier, }, - [220] = { + [226] = { [2] = alias_sym_type_identifier, }, - [221] = { + [227] = { [2] = alias_sym_type_identifier, }, - [222] = { + [228] = { [2] = alias_sym_type_identifier, }, - [227] = { + [233] = { [2] = alias_sym_type_identifier, }, - [232] = { + [238] = { [2] = alias_sym_type_identifier, }, - [233] = { + [239] = { [2] = alias_sym_type_identifier, }, - [234] = { + [240] = { [2] = alias_sym_type_identifier, }, - [235] = { + [241] = { [3] = alias_sym_type_identifier, }, - [236] = { + [242] = { [3] = alias_sym_type_identifier, }, - [237] = { + [243] = { [3] = alias_sym_type_identifier, }, - [241] = { + [247] = { [1] = alias_sym_field_identifier, }, - [253] = { + [259] = { [1] = alias_sym_field_identifier, }, - [255] = { + [261] = { [0] = alias_sym_type_identifier, }, - [257] = { + [263] = { [2] = alias_sym_type_identifier, }, - [265] = { + [271] = { [1] = alias_sym_field_identifier, }, - [268] = { + [274] = { [3] = alias_sym_type_identifier, }, - [269] = { + [275] = { [3] = alias_sym_type_identifier, }, - [271] = { + [277] = { [2] = alias_sym_type_identifier, }, - [272] = { + [278] = { [2] = alias_sym_type_identifier, }, - [280] = { + [286] = { [2] = alias_sym_type_identifier, }, - [281] = { + [287] = { [2] = alias_sym_type_identifier, }, - [282] = { + [288] = { [3] = alias_sym_type_identifier, }, - [283] = { + [289] = { [3] = alias_sym_type_identifier, }, - [284] = { + [290] = { [3] = alias_sym_type_identifier, }, - [294] = { + [300] = { [2] = alias_sym_field_identifier, }, - [302] = { + [308] = { [3] = alias_sym_type_identifier, }, - [311] = { + [317] = { [3] = alias_sym_type_identifier, }, }; @@ -4083,32 +4113,32 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4] = 4, [5] = 5, [6] = 2, - [7] = 2, - [8] = 3, - [9] = 9, + [7] = 5, + [8] = 8, + [9] = 5, [10] = 2, - [11] = 3, + [11] = 2, [12] = 2, - [13] = 2, - [14] = 3, - [15] = 3, - [16] = 3, + [13] = 5, + [14] = 2, + [15] = 5, + [16] = 5, [17] = 17, [18] = 18, - [19] = 18, - [20] = 20, - [21] = 20, + [19] = 19, + [20] = 19, + [21] = 21, [22] = 22, - [23] = 23, + [23] = 22, [24] = 24, [25] = 17, - [26] = 22, + [26] = 19, [27] = 18, - [28] = 20, - [29] = 24, - [30] = 18, - [31] = 23, - [32] = 20, + [28] = 22, + [29] = 19, + [30] = 22, + [31] = 21, + [32] = 24, [33] = 33, [34] = 34, [35] = 35, @@ -4116,16 +4146,16 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [37] = 37, [38] = 38, [39] = 39, - [40] = 36, - [41] = 41, - [42] = 41, - [43] = 39, - [44] = 44, - [45] = 45, + [40] = 40, + [41] = 38, + [42] = 38, + [43] = 43, + [44] = 37, + [45] = 37, [46] = 46, - [47] = 36, - [48] = 41, - [49] = 39, + [47] = 43, + [48] = 48, + [49] = 43, [50] = 50, [51] = 51, [52] = 52, @@ -4134,31 +4164,31 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [55] = 55, [56] = 56, [57] = 57, - [58] = 58, + [58] = 55, [59] = 59, [60] = 60, [61] = 61, [62] = 60, - [63] = 54, + [63] = 63, [64] = 64, - [65] = 64, + [65] = 65, [66] = 66, [67] = 67, [68] = 68, [69] = 69, [70] = 70, [71] = 71, - [72] = 72, - [73] = 72, - [74] = 74, - [75] = 70, - [76] = 76, + [72] = 64, + [73] = 73, + [74] = 65, + [75] = 75, + [76] = 70, [77] = 77, [78] = 78, [79] = 79, [80] = 80, [81] = 81, - [82] = 82, + [82] = 77, [83] = 83, [84] = 84, [85] = 85, @@ -4175,181 +4205,181 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [96] = 96, [97] = 97, [98] = 98, - [99] = 95, + [99] = 99, [100] = 100, - [101] = 101, + [101] = 78, [102] = 102, [103] = 103, [104] = 104, [105] = 105, [106] = 106, - [107] = 107, - [108] = 108, + [107] = 88, + [108] = 85, [109] = 109, - [110] = 110, - [111] = 111, + [110] = 99, + [111] = 89, [112] = 112, [113] = 113, [114] = 114, [115] = 115, [116] = 116, - [117] = 117, + [117] = 87, [118] = 118, - [119] = 119, + [119] = 105, [120] = 120, - [121] = 115, - [122] = 90, - [123] = 117, + [121] = 121, + [122] = 122, + [123] = 123, [124] = 124, [125] = 125, [126] = 126, - [127] = 127, - [128] = 111, - [129] = 129, + [127] = 96, + [128] = 128, + [129] = 88, [130] = 130, [131] = 131, [132] = 132, [133] = 133, - [134] = 100, - [135] = 135, - [136] = 126, - [137] = 137, - [138] = 138, + [134] = 134, + [135] = 124, + [136] = 124, + [137] = 90, + [138] = 94, [139] = 139, [140] = 140, - [141] = 141, - [142] = 90, - [143] = 143, - [144] = 117, - [145] = 125, - [146] = 109, + [141] = 102, + [142] = 103, + [143] = 116, + [144] = 144, + [145] = 79, + [146] = 146, [147] = 147, - [148] = 127, - [149] = 102, - [150] = 104, - [151] = 151, - [152] = 105, - [153] = 106, - [154] = 107, - [155] = 108, - [156] = 95, - [157] = 117, - [158] = 118, - [159] = 119, - [160] = 124, - [161] = 129, - [162] = 130, - [163] = 141, + [148] = 148, + [149] = 149, + [150] = 88, + [151] = 132, + [152] = 120, + [153] = 139, + [154] = 146, + [155] = 155, + [156] = 156, + [157] = 147, + [158] = 158, + [159] = 155, + [160] = 160, + [161] = 156, + [162] = 160, + [163] = 163, [164] = 164, - [165] = 165, - [166] = 116, - [167] = 138, - [168] = 168, + [165] = 112, + [166] = 114, + [167] = 167, + [168] = 96, [169] = 169, - [170] = 133, - [171] = 132, - [172] = 143, - [173] = 85, - [174] = 91, - [175] = 175, + [170] = 170, + [171] = 171, + [172] = 172, + [173] = 173, + [174] = 134, + [175] = 115, [176] = 176, - [177] = 147, - [178] = 178, + [177] = 81, + [178] = 87, [179] = 179, - [180] = 116, - [181] = 164, - [182] = 182, - [183] = 183, - [184] = 103, - [185] = 80, + [180] = 180, + [181] = 181, + [182] = 121, + [183] = 133, + [184] = 100, + [185] = 92, [186] = 186, - [187] = 186, - [188] = 183, - [189] = 189, + [187] = 187, + [188] = 186, + [189] = 187, [190] = 190, - [191] = 189, - [192] = 192, - [193] = 190, - [194] = 192, - [195] = 195, + [191] = 191, + [192] = 190, + [193] = 193, + [194] = 191, + [195] = 193, [196] = 196, - [197] = 196, + [197] = 197, [198] = 198, - [199] = 199, + [199] = 197, [200] = 200, - [201] = 199, - [202] = 199, - [203] = 203, - [204] = 203, + [201] = 201, + [202] = 200, + [203] = 200, + [204] = 204, [205] = 205, [206] = 206, - [207] = 203, + [207] = 207, [208] = 208, - [209] = 209, - [210] = 209, - [211] = 205, - [212] = 212, - [213] = 206, - [214] = 206, - [215] = 215, + [209] = 204, + [210] = 205, + [211] = 211, + [212] = 207, + [213] = 204, + [214] = 208, + [215] = 208, [216] = 216, [217] = 217, - [218] = 216, - [219] = 55, + [218] = 218, + [219] = 218, [220] = 217, - [221] = 221, - [222] = 71, - [223] = 69, - [224] = 66, - [225] = 221, - [226] = 226, - [227] = 139, - [228] = 77, - [229] = 169, - [230] = 137, - [231] = 88, - [232] = 179, - [233] = 182, - [234] = 151, - [235] = 93, - [236] = 98, - [237] = 237, - [238] = 96, - [239] = 92, - [240] = 165, - [241] = 241, + [221] = 61, + [222] = 67, + [223] = 223, + [224] = 224, + [225] = 223, + [226] = 69, + [227] = 73, + [228] = 140, + [229] = 109, + [230] = 158, + [231] = 231, + [232] = 95, + [233] = 233, + [234] = 181, + [235] = 148, + [236] = 113, + [237] = 233, + [238] = 179, + [239] = 172, + [240] = 97, + [241] = 180, [242] = 242, - [243] = 101, - [244] = 237, + [243] = 243, + [244] = 86, [245] = 245, - [246] = 242, + [246] = 243, [247] = 247, - [248] = 94, - [249] = 249, - [250] = 113, - [251] = 251, - [252] = 251, - [253] = 251, - [254] = 254, + [248] = 122, + [249] = 167, + [250] = 126, + [251] = 106, + [252] = 252, + [253] = 252, + [254] = 252, [255] = 255, [256] = 256, [257] = 257, [258] = 258, [259] = 259, - [260] = 254, - [261] = 256, + [260] = 255, + [261] = 261, [262] = 262, [263] = 263, - [264] = 255, - [265] = 262, + [264] = 256, + [265] = 263, [266] = 266, - [267] = 267, - [268] = 268, - [269] = 259, + [267] = 257, + [268] = 261, + [269] = 258, [270] = 262, - [271] = 258, - [272] = 257, - [273] = 273, + [271] = 271, + [272] = 272, + [273] = 256, [274] = 274, [275] = 275, [276] = 276, @@ -4409,7 +4439,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [330] = 330, [331] = 331, [332] = 332, - [333] = 333, + [333] = 67, [334] = 334, [335] = 335, [336] = 336, @@ -4420,13 +4450,13 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [341] = 341, [342] = 342, [343] = 343, - [344] = 344, + [344] = 69, [345] = 345, [346] = 346, [347] = 347, [348] = 348, [349] = 349, - [350] = 350, + [350] = 73, [351] = 351, [352] = 352, [353] = 353, @@ -4580,9 +4610,9 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [501] = 501, [502] = 502, [503] = 503, - [504] = 66, - [505] = 69, - [506] = 71, + [504] = 504, + [505] = 505, + [506] = 506, [507] = 507, [508] = 508, [509] = 509, @@ -4612,51 +4642,51 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [533] = 533, [534] = 534, [535] = 535, - [536] = 535, + [536] = 536, [537] = 537, - [538] = 535, + [538] = 538, [539] = 539, [540] = 540, - [541] = 540, + [541] = 537, [542] = 542, - [543] = 540, - [544] = 544, - [545] = 537, - [546] = 539, + [543] = 537, + [544] = 540, + [545] = 545, + [546] = 546, [547] = 547, [548] = 548, - [549] = 549, - [550] = 550, - [551] = 551, - [552] = 552, - [553] = 539, - [554] = 537, - [555] = 544, - [556] = 542, - [557] = 540, - [558] = 542, + [549] = 536, + [550] = 547, + [551] = 538, + [552] = 548, + [553] = 536, + [554] = 554, + [555] = 548, + [556] = 547, + [557] = 537, + [558] = 538, [559] = 559, - [560] = 560, - [561] = 552, - [562] = 544, - [563] = 537, - [564] = 539, - [565] = 540, - [566] = 551, - [567] = 550, - [568] = 549, + [560] = 540, + [561] = 561, + [562] = 562, + [563] = 539, + [564] = 536, + [565] = 548, + [566] = 547, + [567] = 547, + [568] = 540, [569] = 548, - [570] = 570, - [571] = 547, - [572] = 535, - [573] = 573, - [574] = 542, - [575] = 542, - [576] = 544, + [570] = 538, + [571] = 545, + [572] = 536, + [573] = 559, + [574] = 561, + [575] = 562, + [576] = 576, [577] = 537, - [578] = 535, - [579] = 544, - [580] = 539, + [578] = 576, + [579] = 540, + [580] = 538, [581] = 581, [582] = 582, [583] = 583, @@ -4687,28 +4717,28 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [608] = 608, [609] = 609, [610] = 610, - [611] = 611, + [611] = 610, [612] = 612, [613] = 613, - [614] = 614, + [614] = 610, [615] = 615, - [616] = 616, - [617] = 611, - [618] = 607, - [619] = 612, + [616] = 609, + [617] = 617, + [618] = 618, + [619] = 619, [620] = 620, - [621] = 621, - [622] = 605, + [621] = 609, + [622] = 622, [623] = 623, [624] = 624, [625] = 625, - [626] = 611, + [626] = 624, [627] = 627, [628] = 628, [629] = 629, - [630] = 610, + [630] = 617, [631] = 631, - [632] = 605, + [632] = 631, [633] = 633, [634] = 634, [635] = 635, @@ -4717,48 +4747,48 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [638] = 638, [639] = 639, [640] = 640, - [641] = 640, + [641] = 211, [642] = 642, [643] = 643, [644] = 644, [645] = 645, - [646] = 646, + [646] = 640, [647] = 647, [648] = 648, [649] = 649, - [650] = 640, + [650] = 650, [651] = 651, - [652] = 640, - [653] = 212, + [652] = 652, + [653] = 653, [654] = 654, [655] = 655, [656] = 656, - [657] = 657, + [657] = 640, [658] = 658, - [659] = 659, + [659] = 640, [660] = 660, [661] = 661, - [662] = 656, + [662] = 662, [663] = 663, - [664] = 659, - [665] = 175, - [666] = 78, - [667] = 658, - [668] = 212, - [669] = 660, - [670] = 643, - [671] = 649, - [672] = 672, + [664] = 660, + [665] = 211, + [666] = 663, + [667] = 171, + [668] = 668, + [669] = 669, + [670] = 663, + [671] = 654, + [672] = 84, [673] = 673, - [674] = 660, - [675] = 657, - [676] = 672, - [677] = 677, - [678] = 661, - [679] = 677, - [680] = 680, - [681] = 673, - [682] = 660, + [674] = 669, + [675] = 658, + [676] = 663, + [677] = 673, + [678] = 656, + [679] = 661, + [680] = 635, + [681] = 668, + [682] = 652, [683] = 683, [684] = 684, [685] = 685, @@ -4773,138 +4803,138 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [694] = 694, [695] = 695, [696] = 696, - [697] = 697, - [698] = 698, + [697] = 684, + [698] = 692, [699] = 699, - [700] = 700, - [701] = 696, - [702] = 702, + [700] = 696, + [701] = 701, + [702] = 694, [703] = 703, [704] = 704, - [705] = 692, - [706] = 693, + [705] = 705, + [706] = 706, [707] = 707, - [708] = 708, + [708] = 691, [709] = 709, - [710] = 694, + [710] = 710, [711] = 711, - [712] = 698, + [712] = 712, [713] = 713, - [714] = 691, - [715] = 715, - [716] = 690, - [717] = 699, - [718] = 688, - [719] = 685, - [720] = 720, + [714] = 714, + [715] = 704, + [716] = 716, + [717] = 717, + [718] = 718, + [719] = 719, + [720] = 712, [721] = 721, [722] = 722, [723] = 723, [724] = 724, [725] = 725, [726] = 726, - [727] = 686, - [728] = 728, + [727] = 727, + [728] = 717, [729] = 729, - [730] = 687, - [731] = 731, - [732] = 692, - [733] = 693, - [734] = 707, + [730] = 719, + [731] = 709, + [732] = 732, + [733] = 710, + [734] = 734, [735] = 735, - [736] = 695, - [737] = 696, - [738] = 738, - [739] = 739, + [736] = 736, + [737] = 688, + [738] = 690, + [739] = 721, [740] = 740, [741] = 741, [742] = 742, - [743] = 743, - [744] = 704, - [745] = 735, + [743] = 710, + [744] = 744, + [745] = 684, [746] = 746, - [747] = 746, - [748] = 711, + [747] = 694, + [748] = 696, [749] = 749, - [750] = 702, - [751] = 739, - [752] = 713, + [750] = 689, + [751] = 686, + [752] = 752, [753] = 753, [754] = 754, [755] = 755, - [756] = 683, - [757] = 694, - [758] = 758, - [759] = 759, - [760] = 720, + [756] = 716, + [757] = 757, + [758] = 685, + [759] = 726, + [760] = 760, [761] = 761, [762] = 762, [763] = 763, - [764] = 698, + [764] = 729, [765] = 765, - [766] = 766, - [767] = 767, - [768] = 763, - [769] = 769, - [770] = 770, - [771] = 699, - [772] = 697, + [766] = 729, + [767] = 763, + [768] = 768, + [769] = 716, + [770] = 760, + [771] = 725, + [772] = 772, [773] = 773, [774] = 774, - [775] = 723, + [775] = 710, [776] = 776, - [777] = 724, - [778] = 726, + [777] = 754, + [778] = 778, [779] = 779, - [780] = 703, - [781] = 779, - [782] = 709, - [783] = 766, - [784] = 694, - [785] = 726, - [786] = 724, - [787] = 758, - [788] = 723, - [789] = 696, - [790] = 765, - [791] = 762, - [792] = 792, - [793] = 699, - [794] = 794, - [795] = 761, - [796] = 759, - [797] = 767, - [798] = 754, - [799] = 799, - [800] = 690, - [801] = 731, - [802] = 715, - [803] = 738, - [804] = 804, - [805] = 700, - [806] = 740, - [807] = 769, - [808] = 770, - [809] = 809, - [810] = 739, - [811] = 532, - [812] = 812, + [780] = 762, + [781] = 781, + [782] = 782, + [783] = 684, + [784] = 716, + [785] = 773, + [786] = 746, + [787] = 761, + [788] = 782, + [789] = 719, + [790] = 732, + [791] = 774, + [792] = 752, + [793] = 757, + [794] = 749, + [795] = 714, + [796] = 755, + [797] = 742, + [798] = 726, + [799] = 703, + [800] = 734, + [801] = 722, + [802] = 753, + [803] = 749, + [804] = 741, + [805] = 740, + [806] = 806, + [807] = 704, + [808] = 685, + [809] = 687, + [810] = 736, + [811] = 744, + [812] = 462, [813] = 813, [814] = 814, [815] = 815, - [816] = 532, - [817] = 817, - [818] = 380, - [819] = 819, - [820] = 820, - [821] = 376, - [822] = 417, - [823] = 297, - [824] = 465, - [825] = 212, + [816] = 816, + [817] = 462, + [818] = 818, + [819] = 516, + [820] = 491, + [821] = 301, + [822] = 822, + [823] = 441, + [824] = 824, + [825] = 373, [826] = 826, [827] = 827, - [828] = 828, + [828] = 211, [829] = 829, [830] = 830, [831] = 831, @@ -4913,284 +4943,284 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [834] = 834, [835] = 835, [836] = 836, - [837] = 175, - [838] = 391, - [839] = 502, - [840] = 69, - [841] = 841, - [842] = 842, - [843] = 843, - [844] = 424, - [845] = 76, - [846] = 120, - [847] = 423, - [848] = 287, - [849] = 358, - [850] = 360, - [851] = 371, - [852] = 377, - [853] = 853, - [854] = 378, - [855] = 384, - [856] = 387, - [857] = 392, - [858] = 396, - [859] = 400, - [860] = 418, - [861] = 447, - [862] = 473, - [863] = 474, - [864] = 532, - [865] = 520, - [866] = 526, - [867] = 521, - [868] = 416, - [869] = 415, - [870] = 279, - [871] = 78, - [872] = 280, - [873] = 281, - [874] = 324, - [875] = 327, - [876] = 328, - [877] = 329, - [878] = 469, - [879] = 496, - [880] = 507, - [881] = 508, - [882] = 510, - [883] = 66, - [884] = 511, - [885] = 512, - [886] = 513, - [887] = 71, - [888] = 515, - [889] = 516, - [890] = 517, - [891] = 518, - [892] = 519, - [893] = 531, - [894] = 649, - [895] = 533, - [896] = 534, - [897] = 530, - [898] = 529, - [899] = 528, - [900] = 527, - [901] = 525, - [902] = 524, - [903] = 523, - [904] = 522, - [905] = 457, - [906] = 514, - [907] = 501, - [908] = 500, - [909] = 498, - [910] = 495, + [837] = 837, + [838] = 311, + [839] = 390, + [840] = 426, + [841] = 363, + [842] = 407, + [843] = 406, + [844] = 444, + [845] = 275, + [846] = 446, + [847] = 447, + [848] = 404, + [849] = 449, + [850] = 403, + [851] = 274, + [852] = 419, + [853] = 391, + [854] = 456, + [855] = 459, + [856] = 461, + [857] = 387, + [858] = 386, + [859] = 382, + [860] = 401, + [861] = 463, + [862] = 464, + [863] = 381, + [864] = 377, + [865] = 376, + [866] = 374, + [867] = 371, + [868] = 465, + [869] = 466, + [870] = 467, + [871] = 469, + [872] = 368, + [873] = 470, + [874] = 479, + [875] = 338, + [876] = 448, + [877] = 480, + [878] = 337, + [879] = 330, + [880] = 326, + [881] = 321, + [882] = 320, + [883] = 318, + [884] = 317, + [885] = 316, + [886] = 315, + [887] = 481, + [888] = 314, + [889] = 313, + [890] = 312, + [891] = 308, + [892] = 307, + [893] = 306, + [894] = 305, + [895] = 303, + [896] = 298, + [897] = 474, + [898] = 296, + [899] = 295, + [900] = 294, + [901] = 485, + [902] = 487, + [903] = 292, + [904] = 475, + [905] = 291, + [906] = 397, + [907] = 290, + [908] = 289, + [909] = 492, + [910] = 493, [911] = 494, - [912] = 493, - [913] = 509, - [914] = 503, - [915] = 499, - [916] = 488, - [917] = 497, - [918] = 487, - [919] = 492, - [920] = 486, - [921] = 485, - [922] = 491, - [923] = 490, - [924] = 489, - [925] = 478, - [926] = 484, - [927] = 476, - [928] = 483, - [929] = 482, - [930] = 471, - [931] = 481, - [932] = 470, - [933] = 480, - [934] = 479, - [935] = 466, - [936] = 325, - [937] = 440, - [938] = 427, - [939] = 274, - [940] = 425, - [941] = 422, - [942] = 421, - [943] = 477, - [944] = 420, - [945] = 475, - [946] = 472, - [947] = 467, - [948] = 412, - [949] = 411, - [950] = 410, - [951] = 464, - [952] = 463, - [953] = 462, - [954] = 461, - [955] = 955, - [956] = 409, - [957] = 460, - [958] = 408, - [959] = 403, - [960] = 390, - [961] = 459, - [962] = 386, - [963] = 458, - [964] = 385, - [965] = 383, - [966] = 381, - [967] = 456, - [968] = 455, - [969] = 375, - [970] = 970, - [971] = 373, - [972] = 346, - [973] = 332, - [974] = 331, - [975] = 330, - [976] = 454, - [977] = 453, - [978] = 452, - [979] = 451, - [980] = 316, - [981] = 450, - [982] = 449, - [983] = 323, - [984] = 319, - [985] = 318, - [986] = 448, - [987] = 317, - [988] = 446, - [989] = 310, - [990] = 289, - [991] = 290, - [992] = 299, - [993] = 445, - [994] = 302, - [995] = 276, - [996] = 282, - [997] = 301, - [998] = 314, - [999] = 426, - [1000] = 275, - [1001] = 444, - [1002] = 277, - [1003] = 443, - [1004] = 442, - [1005] = 278, - [1006] = 283, - [1007] = 284, - [1008] = 285, - [1009] = 286, - [1010] = 288, - [1011] = 273, - [1012] = 291, - [1013] = 292, - [1014] = 293, - [1015] = 294, - [1016] = 441, - [1017] = 439, - [1018] = 295, - [1019] = 438, - [1020] = 296, - [1021] = 437, - [1022] = 298, - [1023] = 300, - [1024] = 303, - [1025] = 304, - [1026] = 305, - [1027] = 436, - [1028] = 306, - [1029] = 307, - [1030] = 435, - [1031] = 308, - [1032] = 434, - [1033] = 433, - [1034] = 309, - [1035] = 432, - [1036] = 311, - [1037] = 642, - [1038] = 312, - [1039] = 313, - [1040] = 431, - [1041] = 315, - [1042] = 1042, - [1043] = 430, - [1044] = 429, - [1045] = 428, - [1046] = 320, - [1047] = 321, - [1048] = 212, - [1049] = 419, - [1050] = 322, - [1051] = 414, - [1052] = 326, - [1053] = 413, - [1054] = 407, - [1055] = 333, - [1056] = 334, - [1057] = 406, - [1058] = 405, - [1059] = 404, - [1060] = 335, - [1061] = 336, - [1062] = 337, - [1063] = 338, - [1064] = 339, - [1065] = 402, - [1066] = 340, - [1067] = 341, - [1068] = 342, - [1069] = 401, - [1070] = 343, - [1071] = 399, - [1072] = 344, - [1073] = 345, - [1074] = 347, - [1075] = 348, - [1076] = 349, - [1077] = 398, - [1078] = 350, - [1079] = 351, - [1080] = 352, - [1081] = 397, - [1082] = 354, - [1083] = 355, - [1084] = 356, - [1085] = 395, - [1086] = 357, - [1087] = 394, - [1088] = 393, - [1089] = 359, - [1090] = 361, - [1091] = 362, - [1092] = 363, - [1093] = 364, - [1094] = 365, - [1095] = 366, - [1096] = 367, - [1097] = 368, - [1098] = 369, - [1099] = 370, - [1100] = 372, - [1101] = 374, - [1102] = 379, - [1103] = 382, - [1104] = 388, - [1105] = 389, - [1106] = 1106, + [912] = 287, + [913] = 286, + [914] = 495, + [915] = 496, + [916] = 284, + [917] = 405, + [918] = 502, + [919] = 393, + [920] = 414, + [921] = 388, + [922] = 385, + [923] = 503, + [924] = 504, + [925] = 925, + [926] = 505, + [927] = 279, + [928] = 280, + [929] = 439, + [930] = 506, + [931] = 281, + [932] = 655, + [933] = 282, + [934] = 438, + [935] = 379, + [936] = 378, + [937] = 508, + [938] = 372, + [939] = 361, + [940] = 437, + [941] = 297, + [942] = 942, + [943] = 299, + [944] = 359, + [945] = 302, + [946] = 384, + [947] = 342, + [948] = 436, + [949] = 510, + [950] = 319, + [951] = 322, + [952] = 323, + [953] = 327, + [954] = 329, + [955] = 331, + [956] = 332, + [957] = 334, + [958] = 511, + [959] = 335, + [960] = 336, + [961] = 339, + [962] = 341, + [963] = 435, + [964] = 343, + [965] = 345, + [966] = 346, + [967] = 512, + [968] = 73, + [969] = 347, + [970] = 348, + [971] = 349, + [972] = 351, + [973] = 69, + [974] = 352, + [975] = 353, + [976] = 354, + [977] = 355, + [978] = 67, + [979] = 328, + [980] = 356, + [981] = 357, + [982] = 358, + [983] = 360, + [984] = 171, + [985] = 362, + [986] = 364, + [987] = 365, + [988] = 366, + [989] = 367, + [990] = 369, + [991] = 370, + [992] = 513, + [993] = 433, + [994] = 380, + [995] = 84, + [996] = 521, + [997] = 527, + [998] = 325, + [999] = 389, + [1000] = 424, + [1001] = 392, + [1002] = 514, + [1003] = 394, + [1004] = 395, + [1005] = 515, + [1006] = 396, + [1007] = 398, + [1008] = 1008, + [1009] = 324, + [1010] = 432, + [1011] = 529, + [1012] = 430, + [1013] = 399, + [1014] = 400, + [1015] = 517, + [1016] = 418, + [1017] = 421, + [1018] = 429, + [1019] = 518, + [1020] = 519, + [1021] = 520, + [1022] = 523, + [1023] = 310, + [1024] = 408, + [1025] = 409, + [1026] = 410, + [1027] = 411, + [1028] = 524, + [1029] = 522, + [1030] = 1030, + [1031] = 534, + [1032] = 422, + [1033] = 509, + [1034] = 525, + [1035] = 417, + [1036] = 526, + [1037] = 1037, + [1038] = 420, + [1039] = 104, + [1040] = 528, + [1041] = 211, + [1042] = 425, + [1043] = 431, + [1044] = 434, + [1045] = 654, + [1046] = 507, + [1047] = 93, + [1048] = 530, + [1049] = 442, + [1050] = 443, + [1051] = 445, + [1052] = 531, + [1053] = 450, + [1054] = 451, + [1055] = 452, + [1056] = 453, + [1057] = 454, + [1058] = 428, + [1059] = 457, + [1060] = 460, + [1061] = 309, + [1062] = 423, + [1063] = 468, + [1064] = 471, + [1065] = 472, + [1066] = 413, + [1067] = 473, + [1068] = 476, + [1069] = 477, + [1070] = 478, + [1071] = 482, + [1072] = 483, + [1073] = 484, + [1074] = 1074, + [1075] = 486, + [1076] = 532, + [1077] = 533, + [1078] = 488, + [1079] = 489, + [1080] = 490, + [1081] = 535, + [1082] = 416, + [1083] = 412, + [1084] = 497, + [1085] = 288, + [1086] = 278, + [1087] = 277, + [1088] = 498, + [1089] = 402, + [1090] = 499, + [1091] = 276, + [1092] = 283, + [1093] = 340, + [1094] = 427, + [1095] = 285, + [1096] = 500, + [1097] = 501, + [1098] = 293, + [1099] = 455, + [1100] = 440, + [1101] = 462, + [1102] = 1102, + [1103] = 300, + [1104] = 458, + [1105] = 415, + [1106] = 375, [1107] = 1107, [1108] = 1108, [1109] = 1109, - [1110] = 799, + [1110] = 705, [1111] = 1111, [1112] = 1112, [1113] = 1113, - [1114] = 55, + [1114] = 1114, [1115] = 1115, [1116] = 1116, [1117] = 1117, @@ -5208,22 +5238,22 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1129] = 1129, [1130] = 1130, [1131] = 1131, - [1132] = 1132, + [1132] = 61, [1133] = 1133, [1134] = 1134, [1135] = 1135, [1136] = 1136, - [1137] = 1127, + [1137] = 1137, [1138] = 1138, [1139] = 1139, [1140] = 1140, [1141] = 1141, [1142] = 1142, [1143] = 1143, - [1144] = 1136, - [1145] = 208, - [1146] = 1127, - [1147] = 1136, + [1144] = 1144, + [1145] = 1145, + [1146] = 1146, + [1147] = 1147, [1148] = 1148, [1149] = 1149, [1150] = 1150, @@ -5231,115 +5261,115 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1152] = 1152, [1153] = 1153, [1154] = 1154, - [1155] = 1155, - [1156] = 1156, - [1157] = 1157, - [1158] = 1158, + [1155] = 1154, + [1156] = 1152, + [1157] = 1154, + [1158] = 1152, [1159] = 1159, [1160] = 1160, - [1161] = 1161, - [1162] = 1162, + [1161] = 206, + [1162] = 73, [1163] = 1163, - [1164] = 165, - [1165] = 151, + [1164] = 1164, + [1165] = 1165, [1166] = 1166, - [1167] = 656, + [1167] = 167, [1168] = 1168, [1169] = 1169, [1170] = 1170, - [1171] = 71, - [1172] = 78, + [1171] = 1171, + [1172] = 1172, [1173] = 1173, [1174] = 1174, [1175] = 1175, - [1176] = 96, - [1177] = 94, - [1178] = 66, + [1176] = 126, + [1177] = 122, + [1178] = 1178, [1179] = 1179, [1180] = 1180, [1181] = 1181, [1182] = 1182, [1183] = 1183, - [1184] = 98, - [1185] = 120, - [1186] = 1186, + [1184] = 1184, + [1185] = 1185, + [1186] = 106, [1187] = 1187, - [1188] = 113, + [1188] = 1188, [1189] = 1189, - [1190] = 1190, - [1191] = 1191, + [1190] = 140, + [1191] = 658, [1192] = 1192, [1193] = 1193, [1194] = 1194, - [1195] = 643, - [1196] = 1196, + [1195] = 1195, + [1196] = 104, [1197] = 1197, - [1198] = 92, + [1198] = 1198, [1199] = 1199, [1200] = 1200, [1201] = 1201, [1202] = 1202, - [1203] = 1203, + [1203] = 179, [1204] = 1204, [1205] = 1205, - [1206] = 1206, + [1206] = 84, [1207] = 1207, [1208] = 1208, [1209] = 1209, [1210] = 1210, - [1211] = 169, + [1211] = 1211, [1212] = 1212, - [1213] = 137, - [1214] = 77, + [1213] = 1213, + [1214] = 1214, [1215] = 1215, [1216] = 1216, - [1217] = 139, + [1217] = 181, [1218] = 1218, [1219] = 1219, - [1220] = 1220, - [1221] = 1221, + [1220] = 180, + [1221] = 652, [1222] = 1222, - [1223] = 1223, - [1224] = 69, - [1225] = 1225, - [1226] = 657, + [1223] = 171, + [1224] = 1224, + [1225] = 172, + [1226] = 158, [1227] = 1227, - [1228] = 101, - [1229] = 1229, + [1228] = 109, + [1229] = 113, [1230] = 1230, [1231] = 1231, [1232] = 1232, [1233] = 1233, - [1234] = 1234, - [1235] = 182, - [1236] = 76, - [1237] = 179, + [1234] = 93, + [1235] = 1235, + [1236] = 1236, + [1237] = 1237, [1238] = 1238, [1239] = 1239, - [1240] = 1240, - [1241] = 1241, - [1242] = 1242, - [1243] = 1243, - [1244] = 1244, - [1245] = 658, + [1240] = 86, + [1241] = 69, + [1242] = 635, + [1243] = 656, + [1244] = 67, + [1245] = 1245, [1246] = 1246, [1247] = 1247, - [1248] = 93, - [1249] = 175, - [1250] = 88, + [1248] = 1248, + [1249] = 1249, + [1250] = 1250, [1251] = 1251, [1252] = 1252, [1253] = 1253, [1254] = 1254, - [1255] = 1255, + [1255] = 148, [1256] = 1256, - [1257] = 1257, - [1258] = 1258, + [1257] = 97, + [1258] = 95, [1259] = 1259, [1260] = 1260, [1261] = 1261, [1262] = 1262, - [1263] = 532, + [1263] = 1263, [1264] = 1264, [1265] = 1265, [1266] = 1266, @@ -5347,446 +5377,446 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1268] = 1268, [1269] = 1269, [1270] = 1270, - [1271] = 1271, - [1272] = 1272, - [1273] = 212, + [1271] = 462, + [1272] = 1199, + [1273] = 1273, [1274] = 1274, - [1275] = 1251, + [1275] = 1275, [1276] = 1276, [1277] = 1277, [1278] = 1278, - [1279] = 834, - [1280] = 1278, - [1281] = 1278, + [1279] = 211, + [1280] = 1280, + [1281] = 1281, [1282] = 1282, - [1283] = 1283, - [1284] = 1284, - [1285] = 1285, + [1283] = 833, + [1284] = 1282, + [1285] = 1282, [1286] = 1286, [1287] = 1287, [1288] = 1288, [1289] = 1289, - [1290] = 834, + [1290] = 1290, [1291] = 1291, - [1292] = 1139, + [1292] = 1292, [1293] = 1293, - [1294] = 642, - [1295] = 1295, - [1296] = 1139, - [1297] = 955, - [1298] = 853, + [1294] = 1294, + [1295] = 833, + [1296] = 1296, + [1297] = 1159, + [1298] = 1298, [1299] = 1299, - [1300] = 1042, - [1301] = 841, - [1302] = 1302, - [1303] = 1303, - [1304] = 1295, - [1305] = 1303, - [1306] = 1306, - [1307] = 1154, - [1308] = 1123, - [1309] = 1309, - [1310] = 1247, - [1311] = 1220, + [1300] = 925, + [1301] = 1301, + [1302] = 655, + [1303] = 942, + [1304] = 1304, + [1305] = 1149, + [1306] = 1304, + [1307] = 1102, + [1308] = 1159, + [1309] = 1037, + [1310] = 1310, + [1311] = 1298, [1312] = 1312, - [1313] = 1128, - [1314] = 1314, - [1315] = 1272, + [1313] = 1189, + [1314] = 1153, + [1315] = 1222, [1316] = 1316, - [1317] = 1317, + [1317] = 1111, [1318] = 1318, - [1319] = 1319, + [1319] = 1278, [1320] = 1320, - [1321] = 1321, - [1322] = 1314, - [1323] = 1270, + [1321] = 1318, + [1322] = 1322, + [1323] = 1323, [1324] = 1324, [1325] = 1325, - [1326] = 1325, - [1327] = 1266, - [1328] = 1321, - [1329] = 1314, - [1330] = 1258, - [1331] = 1314, + [1326] = 1326, + [1327] = 1265, + [1328] = 1328, + [1329] = 1329, + [1330] = 1323, + [1331] = 1318, [1332] = 1332, - [1333] = 1265, - [1334] = 1334, - [1335] = 1257, - [1336] = 1324, - [1337] = 1337, + [1333] = 1318, + [1334] = 1268, + [1335] = 1335, + [1336] = 1320, + [1337] = 1323, [1338] = 1338, - [1339] = 1339, - [1340] = 1256, + [1339] = 1324, + [1340] = 1260, [1341] = 1341, - [1342] = 1261, - [1343] = 1316, + [1342] = 1342, + [1343] = 1261, [1344] = 1344, - [1345] = 1264, - [1346] = 1316, - [1347] = 1316, - [1348] = 1260, - [1349] = 1321, - [1350] = 1268, - [1351] = 1351, - [1352] = 1352, - [1353] = 1314, - [1354] = 1255, + [1345] = 1345, + [1346] = 1346, + [1347] = 1335, + [1348] = 1345, + [1349] = 1329, + [1350] = 1350, + [1351] = 1259, + [1352] = 1275, + [1353] = 1267, + [1354] = 1335, [1355] = 1355, - [1356] = 1356, - [1357] = 1267, - [1358] = 1316, - [1359] = 1325, - [1360] = 1316, - [1361] = 1269, - [1362] = 1314, - [1363] = 1344, - [1364] = 1259, + [1356] = 1277, + [1357] = 1357, + [1358] = 1264, + [1359] = 1359, + [1360] = 1335, + [1361] = 1318, + [1362] = 1269, + [1363] = 1274, + [1364] = 1364, [1365] = 1365, - [1366] = 1356, - [1367] = 1277, - [1368] = 1274, - [1369] = 1369, - [1370] = 1262, - [1371] = 1276, - [1372] = 1372, - [1373] = 1373, + [1366] = 1365, + [1367] = 1262, + [1368] = 1335, + [1369] = 1355, + [1370] = 1276, + [1371] = 1270, + [1372] = 1318, + [1373] = 1280, [1374] = 1374, - [1375] = 1271, - [1376] = 1344, - [1377] = 1337, + [1375] = 1375, + [1376] = 1335, + [1377] = 1266, [1378] = 1365, - [1379] = 1379, - [1380] = 1380, - [1381] = 1381, - [1382] = 1382, - [1383] = 1379, + [1379] = 1273, + [1380] = 1324, + [1381] = 1263, + [1382] = 1281, + [1383] = 1383, [1384] = 1384, [1385] = 1385, - [1386] = 1382, + [1386] = 1386, [1387] = 1387, [1388] = 1388, [1389] = 1389, - [1390] = 1381, + [1390] = 1388, [1391] = 1391, - [1392] = 1387, + [1392] = 1392, [1393] = 1393, [1394] = 1394, - [1395] = 1391, - [1396] = 1396, - [1397] = 1397, + [1395] = 1395, + [1396] = 1392, + [1397] = 1383, [1398] = 1398, - [1399] = 1399, - [1400] = 1400, - [1401] = 1401, - [1402] = 1401, - [1403] = 1384, - [1404] = 1385, + [1399] = 1387, + [1400] = 1386, + [1401] = 1393, + [1402] = 1391, + [1403] = 1395, + [1404] = 1404, [1405] = 1405, [1406] = 1406, - [1407] = 1405, + [1407] = 1407, [1408] = 1408, - [1409] = 1400, - [1410] = 1399, - [1411] = 1406, - [1412] = 1412, + [1409] = 1409, + [1410] = 1410, + [1411] = 1408, + [1412] = 1389, [1413] = 1413, - [1414] = 1413, - [1415] = 1413, - [1416] = 1413, + [1414] = 1398, + [1415] = 1415, + [1416] = 1385, [1417] = 1417, [1418] = 1417, - [1419] = 1413, + [1419] = 1417, [1420] = 1420, - [1421] = 1421, - [1422] = 1421, - [1423] = 1423, + [1421] = 1417, + [1422] = 1420, + [1423] = 1417, [1424] = 1424, - [1425] = 212, - [1426] = 643, - [1427] = 658, - [1428] = 1428, - [1429] = 1429, - [1430] = 649, - [1431] = 831, - [1432] = 826, - [1433] = 831, - [1434] = 832, - [1435] = 817, - [1436] = 835, - [1437] = 832, - [1438] = 835, - [1439] = 826, - [1440] = 819, - [1441] = 1441, - [1442] = 1442, - [1443] = 820, - [1444] = 212, - [1445] = 1288, + [1425] = 1425, + [1426] = 1426, + [1427] = 1427, + [1428] = 1425, + [1429] = 211, + [1430] = 658, + [1431] = 656, + [1432] = 1432, + [1433] = 1433, + [1434] = 654, + [1435] = 826, + [1436] = 829, + [1437] = 818, + [1438] = 834, + [1439] = 832, + [1440] = 826, + [1441] = 834, + [1442] = 829, + [1443] = 832, + [1444] = 211, + [1445] = 1291, [1446] = 1446, - [1447] = 76, - [1448] = 1448, - [1449] = 830, - [1450] = 836, - [1451] = 1451, - [1452] = 175, - [1453] = 1133, - [1454] = 1286, - [1455] = 1448, - [1456] = 120, - [1457] = 1282, - [1458] = 1287, - [1459] = 78, - [1460] = 829, + [1447] = 1447, + [1448] = 824, + [1449] = 1449, + [1450] = 822, + [1451] = 827, + [1452] = 93, + [1453] = 84, + [1454] = 1454, + [1455] = 104, + [1456] = 836, + [1457] = 1286, + [1458] = 1293, + [1459] = 1118, + [1460] = 171, [1461] = 1461, - [1462] = 1111, - [1463] = 1155, - [1464] = 1135, - [1465] = 1112, - [1466] = 1251, - [1467] = 1153, - [1468] = 1151, - [1469] = 1150, - [1470] = 1109, - [1471] = 1471, - [1472] = 1149, - [1473] = 1142, - [1474] = 1152, - [1475] = 1475, - [1476] = 1476, - [1477] = 1131, - [1478] = 1143, - [1479] = 1108, - [1480] = 1157, - [1481] = 1481, - [1482] = 657, - [1483] = 1481, - [1484] = 1481, - [1485] = 1115, - [1486] = 1158, - [1487] = 1232, - [1488] = 1121, - [1489] = 1221, - [1490] = 1222, - [1491] = 1234, - [1492] = 1206, - [1493] = 1231, - [1494] = 1161, - [1495] = 1168, - [1496] = 1496, - [1497] = 1120, - [1498] = 1170, - [1499] = 1499, - [1500] = 1193, - [1501] = 1194, - [1502] = 1196, - [1503] = 1132, - [1504] = 1504, - [1505] = 1174, - [1506] = 1118, - [1507] = 1229, - [1508] = 1162, - [1509] = 1238, + [1462] = 1292, + [1463] = 835, + [1464] = 1454, + [1465] = 1123, + [1466] = 1151, + [1467] = 1115, + [1468] = 1125, + [1469] = 1124, + [1470] = 1470, + [1471] = 1199, + [1472] = 1472, + [1473] = 1134, + [1474] = 635, + [1475] = 1143, + [1476] = 1117, + [1477] = 1472, + [1478] = 1133, + [1479] = 1479, + [1480] = 1472, + [1481] = 1150, + [1482] = 1120, + [1483] = 1116, + [1484] = 1121, + [1485] = 1485, + [1486] = 1122, + [1487] = 1145, + [1488] = 1488, + [1489] = 1489, + [1490] = 1112, + [1491] = 1251, + [1492] = 1492, + [1493] = 1247, + [1494] = 1182, + [1495] = 1204, + [1496] = 1489, + [1497] = 1193, + [1498] = 1205, + [1499] = 1128, + [1500] = 1109, + [1501] = 1200, + [1502] = 1208, + [1503] = 1239, + [1504] = 1147, + [1505] = 1183, + [1506] = 1146, + [1507] = 1136, + [1508] = 1213, + [1509] = 1509, [1510] = 1510, - [1511] = 1197, - [1512] = 1512, - [1513] = 1513, - [1514] = 1138, - [1515] = 1116, - [1516] = 1246, - [1517] = 1166, - [1518] = 1180, - [1519] = 1254, - [1520] = 1183, + [1511] = 1214, + [1512] = 1197, + [1513] = 1137, + [1514] = 1237, + [1515] = 1074, + [1516] = 1516, + [1517] = 1113, + [1518] = 1181, + [1519] = 1519, + [1520] = 1231, [1521] = 1521, - [1522] = 1512, - [1523] = 1521, - [1524] = 970, - [1525] = 1204, - [1526] = 1140, + [1522] = 1519, + [1523] = 1178, + [1524] = 1233, + [1525] = 1238, + [1526] = 1254, [1527] = 1141, - [1528] = 1528, - [1529] = 1529, - [1530] = 66, - [1531] = 1531, - [1532] = 1531, + [1528] = 1135, + [1529] = 1187, + [1530] = 1179, + [1531] = 1195, + [1532] = 1532, [1533] = 1533, - [1534] = 1504, - [1535] = 1535, + [1534] = 1534, + [1535] = 1433, [1536] = 1536, [1537] = 1537, - [1538] = 1538, + [1538] = 69, [1539] = 1539, [1540] = 1540, - [1541] = 1541, + [1541] = 67, [1542] = 1542, [1543] = 1543, - [1544] = 1533, + [1544] = 1544, [1545] = 1545, - [1546] = 1429, - [1547] = 71, - [1548] = 69, - [1549] = 1429, - [1550] = 1550, - [1551] = 1504, - [1552] = 832, - [1553] = 835, - [1554] = 1554, - [1555] = 831, - [1556] = 1550, + [1546] = 1540, + [1547] = 1547, + [1548] = 1548, + [1549] = 73, + [1550] = 1509, + [1551] = 1433, + [1552] = 1552, + [1553] = 1545, + [1554] = 826, + [1555] = 1555, + [1556] = 1556, [1557] = 1557, [1558] = 1558, [1559] = 1559, [1560] = 1560, - [1561] = 1561, - [1562] = 96, - [1563] = 1563, + [1561] = 832, + [1562] = 1562, + [1563] = 829, [1564] = 1564, [1565] = 1565, - [1566] = 1566, + [1566] = 834, [1567] = 1567, [1568] = 1568, - [1569] = 1558, + [1569] = 1569, [1570] = 1570, [1571] = 1571, - [1572] = 1559, - [1573] = 1560, - [1574] = 1554, + [1572] = 1572, + [1573] = 1573, + [1574] = 1571, [1575] = 1575, - [1576] = 1565, - [1577] = 1577, - [1578] = 1554, + [1576] = 1569, + [1577] = 832, + [1578] = 1556, [1579] = 1579, - [1580] = 1580, + [1580] = 1558, [1581] = 1581, [1582] = 1582, - [1583] = 1583, - [1584] = 1584, - [1585] = 826, - [1586] = 1579, - [1587] = 1587, - [1588] = 1588, - [1589] = 1589, + [1583] = 829, + [1584] = 826, + [1585] = 834, + [1586] = 1586, + [1587] = 1564, + [1588] = 832, + [1589] = 1509, [1590] = 1590, - [1591] = 1587, - [1592] = 1567, - [1593] = 1593, - [1594] = 1594, - [1595] = 831, + [1591] = 829, + [1592] = 1592, + [1593] = 826, + [1594] = 834, + [1595] = 1559, [1596] = 1596, - [1597] = 835, - [1598] = 832, + [1597] = 1592, + [1598] = 1598, [1599] = 1599, - [1600] = 826, + [1600] = 1596, [1601] = 1601, - [1602] = 1602, - [1603] = 831, - [1604] = 835, - [1605] = 1605, - [1606] = 1570, - [1607] = 832, + [1602] = 1571, + [1603] = 1579, + [1604] = 1604, + [1605] = 1582, + [1606] = 1606, + [1607] = 1607, [1608] = 1608, [1609] = 1609, - [1610] = 826, + [1610] = 1610, [1611] = 1611, - [1612] = 1571, + [1612] = 1612, [1613] = 1613, - [1614] = 1614, + [1614] = 97, [1615] = 1615, [1616] = 1616, [1617] = 1617, [1618] = 1618, - [1619] = 1619, + [1619] = 1560, [1620] = 1620, [1621] = 1621, [1622] = 1622, - [1623] = 1620, + [1623] = 1623, [1624] = 1624, [1625] = 1625, [1626] = 1626, [1627] = 1627, - [1628] = 1627, - [1629] = 1629, + [1628] = 1628, + [1629] = 1627, [1630] = 1630, [1631] = 1631, - [1632] = 1622, - [1633] = 1630, - [1634] = 1634, - [1635] = 1635, + [1632] = 1632, + [1633] = 1633, + [1634] = 1625, + [1635] = 1623, [1636] = 1636, - [1637] = 1635, - [1638] = 1631, + [1637] = 1632, + [1638] = 1638, [1639] = 1639, - [1640] = 1624, - [1641] = 1625, + [1640] = 1640, + [1641] = 1641, [1642] = 1626, [1643] = 1643, - [1644] = 1644, - [1645] = 1645, - [1646] = 1646, - [1647] = 1647, + [1644] = 1643, + [1645] = 1636, + [1646] = 1630, + [1647] = 1638, [1648] = 1648, - [1649] = 1647, + [1649] = 1649, [1650] = 1650, [1651] = 1651, [1652] = 1652, - [1653] = 1653, + [1653] = 1648, [1654] = 1654, [1655] = 1655, [1656] = 1656, [1657] = 1657, - [1658] = 1657, - [1659] = 1659, + [1658] = 1658, + [1659] = 1127, [1660] = 1660, - [1661] = 1655, - [1662] = 1660, + [1661] = 1660, + [1662] = 1662, [1663] = 1663, [1664] = 1664, [1665] = 1665, - [1666] = 1656, + [1666] = 1658, [1667] = 1667, - [1668] = 1665, - [1669] = 1659, - [1670] = 1654, - [1671] = 1671, - [1672] = 1451, - [1673] = 1667, - [1674] = 1130, - [1675] = 642, - [1676] = 1676, + [1668] = 1663, + [1669] = 1667, + [1670] = 1461, + [1671] = 1657, + [1672] = 1672, + [1673] = 1665, + [1674] = 1674, + [1675] = 1674, + [1676] = 1664, [1677] = 1677, [1678] = 1678, - [1679] = 1677, - [1680] = 1680, + [1679] = 1679, + [1680] = 655, [1681] = 1681, - [1682] = 1461, - [1683] = 1451, + [1682] = 1682, + [1683] = 1683, [1684] = 1684, - [1685] = 817, + [1685] = 1685, [1686] = 1686, - [1687] = 1676, - [1688] = 1688, + [1687] = 1687, + [1688] = 1461, [1689] = 1689, [1690] = 1690, - [1691] = 1680, - [1692] = 1689, + [1691] = 1686, + [1692] = 1686, [1693] = 1693, [1694] = 1694, [1695] = 1695, - [1696] = 1688, + [1696] = 1696, [1697] = 1697, [1698] = 1698, - [1699] = 1699, - [1700] = 1700, - [1701] = 1677, - [1702] = 1698, - [1703] = 1703, - [1704] = 1704, - [1705] = 1705, - [1706] = 820, - [1707] = 1461, - [1708] = 1708, + [1699] = 1684, + [1700] = 1685, + [1701] = 818, + [1702] = 1702, + [1703] = 1470, + [1704] = 1687, + [1705] = 1689, + [1706] = 1706, + [1707] = 1707, + [1708] = 1706, [1709] = 1709, - [1710] = 819, + [1710] = 1710, [1711] = 1711, [1712] = 1712, [1713] = 1713, @@ -5796,38 +5826,38 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1717] = 1717, [1718] = 1718, [1719] = 1719, - [1720] = 1451, - [1721] = 1711, + [1720] = 1720, + [1721] = 1721, [1722] = 1722, [1723] = 1723, [1724] = 1724, - [1725] = 1725, - [1726] = 1726, + [1725] = 1713, + [1726] = 1461, [1727] = 1727, [1728] = 1728, - [1729] = 1727, - [1730] = 1725, - [1731] = 1726, + [1729] = 1729, + [1730] = 1717, + [1731] = 1716, [1732] = 1732, [1733] = 1733, [1734] = 1734, - [1735] = 1716, + [1735] = 1723, [1736] = 1736, - [1737] = 1732, - [1738] = 1708, - [1739] = 1733, + [1737] = 824, + [1738] = 1724, + [1739] = 1728, [1740] = 1740, [1741] = 1741, - [1742] = 1742, - [1743] = 1743, - [1744] = 1744, - [1745] = 1718, - [1746] = 1734, - [1747] = 1736, - [1748] = 1728, - [1749] = 1749, + [1742] = 1711, + [1743] = 822, + [1744] = 1720, + [1745] = 1741, + [1746] = 1710, + [1747] = 1740, + [1748] = 1748, + [1749] = 1733, [1750] = 1750, - [1751] = 1751, + [1751] = 1470, [1752] = 1752, [1753] = 1753, [1754] = 1754, @@ -5841,199 +5871,199 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1762] = 1762, [1763] = 1763, [1764] = 1764, - [1765] = 1765, - [1766] = 1749, + [1765] = 1764, + [1766] = 1766, [1767] = 1767, - [1768] = 1753, + [1768] = 1768, [1769] = 1769, [1770] = 1770, [1771] = 1771, [1772] = 1772, - [1773] = 1754, + [1773] = 1773, [1774] = 1774, - [1775] = 1769, + [1775] = 1775, [1776] = 1776, [1777] = 1777, - [1778] = 1772, - [1779] = 1779, + [1778] = 1778, + [1779] = 1773, [1780] = 1780, - [1781] = 1781, + [1781] = 1771, [1782] = 1782, [1783] = 1783, [1784] = 1784, [1785] = 1785, [1786] = 1786, - [1787] = 1777, - [1788] = 1780, - [1789] = 1789, - [1790] = 1790, - [1791] = 1783, - [1792] = 1786, - [1793] = 1774, + [1787] = 1787, + [1788] = 1788, + [1789] = 1767, + [1790] = 1756, + [1791] = 1753, + [1792] = 1792, + [1793] = 1788, [1794] = 1794, [1795] = 1795, - [1796] = 1784, + [1796] = 1778, [1797] = 1797, - [1798] = 1749, - [1799] = 1761, - [1800] = 1755, - [1801] = 1779, - [1802] = 1797, - [1803] = 836, + [1798] = 1798, + [1799] = 1799, + [1800] = 1800, + [1801] = 1801, + [1802] = 1795, + [1803] = 1803, [1804] = 1804, [1805] = 1805, [1806] = 1806, - [1807] = 1807, - [1808] = 1808, - [1809] = 829, + [1807] = 1787, + [1808] = 1786, + [1809] = 1803, [1810] = 1810, - [1811] = 1752, + [1811] = 1811, [1812] = 1812, - [1813] = 1813, + [1813] = 1758, [1814] = 1814, [1815] = 1815, - [1816] = 1814, + [1816] = 1815, [1817] = 1817, - [1818] = 1804, - [1819] = 1771, - [1820] = 1820, - [1821] = 1821, - [1822] = 1789, + [1818] = 1817, + [1819] = 1819, + [1820] = 1770, + [1821] = 1799, + [1822] = 827, [1823] = 1823, - [1824] = 1751, + [1824] = 1824, [1825] = 1805, - [1826] = 1461, - [1827] = 1827, - [1828] = 1828, - [1829] = 1821, - [1830] = 1810, - [1831] = 1782, - [1832] = 1785, - [1833] = 830, - [1834] = 1823, - [1835] = 1835, - [1836] = 1757, - [1837] = 1837, - [1838] = 1763, - [1839] = 1770, - [1840] = 1807, - [1841] = 1808, - [1842] = 1760, - [1843] = 1806, - [1844] = 1844, - [1845] = 1845, - [1846] = 1795, - [1847] = 1847, - [1848] = 1781, - [1849] = 1764, - [1850] = 1794, - [1851] = 1759, - [1852] = 1756, - [1853] = 1844, - [1854] = 1835, - [1855] = 1752, - [1856] = 1751, - [1857] = 1752, - [1858] = 1776, - [1859] = 1751, - [1860] = 1860, - [1861] = 1845, - [1862] = 1837, - [1863] = 1828, - [1864] = 1812, - [1865] = 1813, - [1866] = 1827, - [1867] = 1867, - [1868] = 1765, - [1869] = 1869, - [1870] = 1815, - [1871] = 1751, - [1872] = 1752, - [1873] = 1767, - [1874] = 1820, - [1875] = 1817, - [1876] = 1752, - [1877] = 1751, - [1878] = 1758, - [1879] = 1879, - [1880] = 1880, - [1881] = 1881, - [1882] = 1882, + [1826] = 1826, + [1827] = 1767, + [1828] = 1792, + [1829] = 1797, + [1830] = 1772, + [1831] = 1769, + [1832] = 1768, + [1833] = 1833, + [1834] = 1785, + [1835] = 1819, + [1836] = 1804, + [1837] = 1798, + [1838] = 1823, + [1839] = 1839, + [1840] = 1840, + [1841] = 1783, + [1842] = 1775, + [1843] = 1843, + [1844] = 1757, + [1845] = 1760, + [1846] = 1846, + [1847] = 1767, + [1848] = 1774, + [1849] = 1810, + [1850] = 1833, + [1851] = 1824, + [1852] = 1794, + [1853] = 1772, + [1854] = 1854, + [1855] = 1772, + [1856] = 1761, + [1857] = 1772, + [1858] = 1806, + [1859] = 1859, + [1860] = 1859, + [1861] = 1812, + [1862] = 1767, + [1863] = 1840, + [1864] = 1839, + [1865] = 1470, + [1866] = 1843, + [1867] = 1766, + [1868] = 1780, + [1869] = 1767, + [1870] = 1772, + [1871] = 1784, + [1872] = 1755, + [1873] = 835, + [1874] = 836, + [1875] = 1800, + [1876] = 1754, + [1877] = 1776, + [1878] = 1801, + [1879] = 1759, + [1880] = 1782, + [1881] = 1759, + [1882] = 1854, [1883] = 1883, [1884] = 1884, - [1885] = 1881, - [1886] = 1886, - [1887] = 1887, - [1888] = 1888, + [1885] = 1140, + [1886] = 1126, + [1887] = 1138, + [1888] = 1148, [1889] = 1889, [1890] = 1890, - [1891] = 1891, + [1891] = 1119, [1892] = 1892, - [1893] = 1879, - [1894] = 1889, - [1895] = 1895, + [1893] = 1893, + [1894] = 1894, + [1895] = 1889, [1896] = 1896, - [1897] = 1881, + [1897] = 1897, [1898] = 1898, [1899] = 1899, [1900] = 1900, [1901] = 1901, - [1902] = 1900, + [1902] = 1902, [1903] = 1903, - [1904] = 1903, + [1904] = 1904, [1905] = 1905, [1906] = 1906, - [1907] = 1891, - [1908] = 1908, - [1909] = 1909, + [1907] = 1890, + [1908] = 1142, + [1909] = 1901, [1910] = 1910, [1911] = 1911, - [1912] = 1912, - [1913] = 1888, + [1912] = 1906, + [1913] = 1913, [1914] = 1914, [1915] = 1915, - [1916] = 1888, - [1917] = 1886, - [1918] = 1909, - [1919] = 1919, + [1916] = 1916, + [1917] = 1917, + [1918] = 1915, + [1919] = 1915, [1920] = 1920, [1921] = 1921, [1922] = 1922, [1923] = 1923, - [1924] = 1892, - [1925] = 1914, - [1926] = 1156, - [1927] = 1927, - [1928] = 1928, - [1929] = 1895, - [1930] = 1914, - [1931] = 1881, - [1932] = 1932, - [1933] = 1119, + [1924] = 1924, + [1925] = 1925, + [1926] = 1893, + [1927] = 1898, + [1928] = 1897, + [1929] = 1900, + [1930] = 1930, + [1931] = 1931, + [1932] = 1899, + [1933] = 1933, [1934] = 1934, - [1935] = 1898, - [1936] = 1936, - [1937] = 1937, - [1938] = 1923, - [1939] = 1901, - [1940] = 1900, - [1941] = 1117, - [1942] = 1942, - [1943] = 1927, - [1944] = 1106, - [1945] = 1107, - [1946] = 1905, - [1947] = 1892, - [1948] = 1159, + [1935] = 1903, + [1936] = 1915, + [1937] = 1921, + [1938] = 1897, + [1939] = 1922, + [1940] = 1940, + [1941] = 1941, + [1942] = 1884, + [1943] = 1889, + [1944] = 1944, + [1945] = 1905, + [1946] = 1893, + [1947] = 1947, + [1948] = 1890, [1949] = 1949, - [1950] = 1920, - [1951] = 1951, - [1952] = 1882, - [1953] = 1900, - [1954] = 1954, + [1950] = 1897, + [1951] = 1892, + [1952] = 1952, + [1953] = 1896, + [1954] = 1924, [1955] = 1955, [1956] = 1956, - [1957] = 1957, + [1957] = 1923, [1958] = 1958, [1959] = 1959, [1960] = 1960, @@ -6041,7 +6071,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1962] = 1962, [1963] = 1963, [1964] = 1964, - [1965] = 1958, + [1965] = 1965, [1966] = 1966, [1967] = 1967, [1968] = 1968, @@ -6061,7 +6091,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1982] = 1982, [1983] = 1983, [1984] = 1984, - [1985] = 1956, + [1985] = 1985, [1986] = 1986, [1987] = 1987, [1988] = 1988, @@ -6070,13 +6100,13 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1991] = 1991, [1992] = 1992, [1993] = 1993, - [1994] = 1972, - [1995] = 1995, - [1996] = 1996, - [1997] = 1997, - [1998] = 1998, - [1999] = 1971, - [2000] = 1983, + [1994] = 1973, + [1995] = 1971, + [1996] = 1970, + [1997] = 1968, + [1998] = 1967, + [1999] = 1999, + [2000] = 2000, [2001] = 2001, [2002] = 2002, [2003] = 2003, @@ -6085,159 +6115,159 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2006] = 2006, [2007] = 2007, [2008] = 2008, - [2009] = 2004, - [2010] = 1967, + [2009] = 2009, + [2010] = 2010, [2011] = 2011, [2012] = 2012, - [2013] = 1979, - [2014] = 1997, + [2013] = 1988, + [2014] = 2014, [2015] = 2015, - [2016] = 2016, + [2016] = 1989, [2017] = 2017, - [2018] = 2018, - [2019] = 2002, + [2018] = 1987, + [2019] = 2019, [2020] = 2020, [2021] = 2021, - [2022] = 2008, - [2023] = 2023, - [2024] = 2024, - [2025] = 1998, - [2026] = 2015, - [2027] = 1960, - [2028] = 2028, - [2029] = 2008, - [2030] = 2030, - [2031] = 2003, - [2032] = 2032, - [2033] = 2033, - [2034] = 1987, - [2035] = 2035, - [2036] = 1982, - [2037] = 2024, - [2038] = 1974, - [2039] = 2039, + [2022] = 1984, + [2023] = 1982, + [2024] = 1981, + [2025] = 2025, + [2026] = 2026, + [2027] = 1986, + [2028] = 1985, + [2029] = 2029, + [2030] = 1984, + [2031] = 1982, + [2032] = 1981, + [2033] = 2029, + [2034] = 2034, + [2035] = 2026, + [2036] = 1984, + [2037] = 1982, + [2038] = 2038, + [2039] = 1981, [2040] = 1976, - [2041] = 2041, - [2042] = 2023, + [2041] = 2001, + [2042] = 2026, [2043] = 2043, [2044] = 2044, - [2045] = 2017, + [2045] = 2045, [2046] = 2046, [2047] = 2047, [2048] = 2048, - [2049] = 1961, + [2049] = 2002, [2050] = 2050, [2051] = 2051, - [2052] = 2018, - [2053] = 2020, - [2054] = 2054, - [2055] = 2048, - [2056] = 2056, - [2057] = 2047, - [2058] = 2058, - [2059] = 2059, - [2060] = 2016, - [2061] = 2061, - [2062] = 2020, - [2063] = 1970, - [2064] = 2064, + [2052] = 2052, + [2053] = 2053, + [2054] = 1999, + [2055] = 2055, + [2056] = 1984, + [2057] = 1983, + [2058] = 1982, + [2059] = 1981, + [2060] = 2060, + [2061] = 1976, + [2062] = 2026, + [2063] = 2008, + [2064] = 2026, [2065] = 2043, [2066] = 2066, [2067] = 2067, - [2068] = 2058, - [2069] = 2008, - [2070] = 2018, - [2071] = 2041, - [2072] = 2039, + [2068] = 2043, + [2069] = 2045, + [2070] = 2052, + [2071] = 2071, + [2072] = 2072, [2073] = 2073, - [2074] = 2030, - [2075] = 212, + [2074] = 2074, + [2075] = 2075, [2076] = 2076, - [2077] = 2077, - [2078] = 1961, - [2079] = 1993, - [2080] = 2073, - [2081] = 1978, - [2082] = 1958, - [2083] = 1960, - [2084] = 2001, - [2085] = 1990, - [2086] = 2086, - [2087] = 2076, - [2088] = 1958, + [2077] = 2047, + [2078] = 1965, + [2079] = 211, + [2080] = 2080, + [2081] = 2034, + [2082] = 2052, + [2083] = 2038, + [2084] = 2084, + [2085] = 2084, + [2086] = 1972, + [2087] = 2014, + [2088] = 2055, [2089] = 2089, - [2090] = 2090, - [2091] = 2091, - [2092] = 2017, - [2093] = 1960, - [2094] = 2028, + [2090] = 2015, + [2091] = 2075, + [2092] = 2092, + [2093] = 2093, + [2094] = 2094, [2095] = 2095, - [2096] = 1958, - [2097] = 2032, - [2098] = 2098, + [2096] = 1959, + [2097] = 2043, + [2098] = 2066, [2099] = 2099, - [2100] = 2100, - [2101] = 2056, - [2102] = 2090, - [2103] = 2015, - [2104] = 2091, + [2100] = 2026, + [2101] = 2101, + [2102] = 2102, + [2103] = 2103, + [2104] = 2099, [2105] = 2105, - [2106] = 2021, - [2107] = 1959, - [2108] = 1962, - [2109] = 2099, - [2110] = 2020, - [2111] = 1963, + [2106] = 2094, + [2107] = 1960, + [2108] = 1991, + [2109] = 2020, + [2110] = 1992, + [2111] = 2080, [2112] = 2112, - [2113] = 1958, + [2113] = 2047, [2114] = 2114, - [2115] = 1980, - [2116] = 2066, - [2117] = 2100, - [2118] = 2077, - [2119] = 2112, - [2120] = 2047, - [2121] = 2018, - [2122] = 2058, - [2123] = 2018, - [2124] = 1996, - [2125] = 2125, - [2126] = 2008, - [2127] = 2033, - [2128] = 2017, - [2129] = 2067, - [2130] = 1973, - [2131] = 2020, - [2132] = 2132, - [2133] = 2133, - [2134] = 2134, - [2135] = 2061, - [2136] = 2136, - [2137] = 2114, - [2138] = 2059, - [2139] = 2018, - [2140] = 2008, - [2141] = 2024, - [2142] = 2020, + [2115] = 2076, + [2116] = 2074, + [2117] = 2117, + [2118] = 2060, + [2119] = 2021, + [2120] = 2120, + [2121] = 2017, + [2122] = 2122, + [2123] = 2103, + [2124] = 2122, + [2125] = 2102, + [2126] = 2101, + [2127] = 2127, + [2128] = 1964, + [2129] = 2095, + [2130] = 1966, + [2131] = 1975, + [2132] = 1976, + [2133] = 1969, + [2134] = 2019, + [2135] = 1974, + [2136] = 2003, + [2137] = 2000, + [2138] = 1993, + [2139] = 2139, + [2140] = 2006, + [2141] = 2007, + [2142] = 1960, [2143] = 1977, - [2144] = 2064, - [2145] = 2011, - [2146] = 2035, - [2147] = 2147, - [2148] = 2148, - [2149] = 2149, - [2150] = 2150, + [2144] = 1991, + [2145] = 2145, + [2146] = 1981, + [2147] = 1982, + [2148] = 1983, + [2149] = 1984, + [2150] = 1990, [2151] = 2151, - [2152] = 1116, + [2152] = 2152, [2153] = 2153, [2154] = 2154, [2155] = 2155, - [2156] = 2156, - [2157] = 1118, + [2156] = 1137, + [2157] = 2157, [2158] = 2158, [2159] = 2159, [2160] = 2160, - [2161] = 2161, + [2161] = 1141, [2162] = 2162, [2163] = 2163, [2164] = 2164, @@ -6245,66 +6275,66 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2166] = 2166, [2167] = 2167, [2168] = 2168, - [2169] = 2166, + [2169] = 637, [2170] = 2170, [2171] = 2171, - [2172] = 1158, - [2173] = 2173, - [2174] = 651, - [2175] = 1141, - [2176] = 1140, - [2177] = 1138, + [2172] = 2172, + [2173] = 2152, + [2174] = 1128, + [2175] = 2175, + [2176] = 2176, + [2177] = 1113, [2178] = 2178, - [2179] = 2179, + [2179] = 1112, [2180] = 2180, - [2181] = 2181, - [2182] = 1121, - [2183] = 1120, + [2181] = 1109, + [2182] = 2182, + [2183] = 2183, [2184] = 2184, [2185] = 2185, [2186] = 2186, - [2187] = 1115, + [2187] = 2187, [2188] = 2188, - [2189] = 2189, + [2189] = 1147, [2190] = 2190, - [2191] = 2191, + [2191] = 1146, [2192] = 2192, - [2193] = 2193, + [2193] = 1136, [2194] = 2194, [2195] = 2195, [2196] = 2196, - [2197] = 2159, + [2197] = 2197, [2198] = 2198, [2199] = 2199, [2200] = 2200, - [2201] = 2201, - [2202] = 2178, + [2201] = 2199, + [2202] = 2202, [2203] = 2203, [2204] = 2204, - [2205] = 2205, + [2205] = 2199, [2206] = 2206, - [2207] = 2159, + [2207] = 2207, [2208] = 2208, [2209] = 2209, [2210] = 2210, [2211] = 2211, - [2212] = 2150, - [2213] = 2151, + [2212] = 2212, + [2213] = 2213, [2214] = 2214, - [2215] = 644, - [2216] = 2210, + [2215] = 2215, + [2216] = 2216, [2217] = 2217, [2218] = 2218, - [2219] = 2148, + [2219] = 2219, [2220] = 2220, [2221] = 2221, - [2222] = 2222, + [2222] = 2206, [2223] = 2223, [2224] = 2224, [2225] = 2225, - [2226] = 2226, + [2226] = 650, [2227] = 2227, - [2228] = 2160, + [2228] = 2228, [2229] = 2229, [2230] = 2230, [2231] = 2231, @@ -6325,155 +6355,155 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2246] = 2246, [2247] = 2247, [2248] = 2248, - [2249] = 2223, - [2250] = 2250, - [2251] = 2225, - [2252] = 2167, + [2249] = 2249, + [2250] = 2203, + [2251] = 2251, + [2252] = 2252, [2253] = 2253, [2254] = 2254, [2255] = 2255, [2256] = 2256, - [2257] = 2227, - [2258] = 2229, + [2257] = 2154, + [2258] = 2157, [2259] = 2259, [2260] = 2260, - [2261] = 2153, + [2261] = 2261, [2262] = 2262, - [2263] = 2263, + [2263] = 2164, [2264] = 2264, - [2265] = 2171, + [2265] = 2265, [2266] = 2266, [2267] = 2267, - [2268] = 2178, - [2269] = 2269, - [2270] = 2270, + [2268] = 2268, + [2269] = 2200, + [2270] = 2171, [2271] = 2271, [2272] = 2272, - [2273] = 1132, + [2273] = 2273, [2274] = 2274, - [2275] = 2275, + [2275] = 2203, [2276] = 2276, [2277] = 2277, [2278] = 2278, [2279] = 2279, [2280] = 2280, - [2281] = 2159, + [2281] = 2281, [2282] = 2282, - [2283] = 2242, + [2283] = 1135, [2284] = 2284, [2285] = 2285, [2286] = 2286, - [2287] = 2287, - [2288] = 2288, - [2289] = 2289, + [2287] = 2260, + [2288] = 2166, + [2289] = 2175, [2290] = 2290, [2291] = 2291, - [2292] = 2292, - [2293] = 2200, + [2292] = 2187, + [2293] = 2293, [2294] = 2294, - [2295] = 2284, + [2295] = 2190, [2296] = 2296, [2297] = 2297, - [2298] = 2298, - [2299] = 2299, - [2300] = 2245, - [2301] = 2301, + [2298] = 2218, + [2299] = 2199, + [2300] = 2300, + [2301] = 2240, [2302] = 2302, - [2303] = 2285, - [2304] = 2304, - [2305] = 2305, + [2303] = 2303, + [2304] = 2251, + [2305] = 2176, [2306] = 2306, [2307] = 2307, [2308] = 2308, [2309] = 2309, [2310] = 2310, - [2311] = 2311, + [2311] = 2249, [2312] = 2312, - [2313] = 2313, + [2313] = 2188, [2314] = 2314, [2315] = 2315, [2316] = 2316, [2317] = 2317, - [2318] = 2288, - [2319] = 2247, - [2320] = 2289, + [2318] = 2318, + [2319] = 2319, + [2320] = 2184, [2321] = 2321, - [2322] = 2291, + [2322] = 2322, [2323] = 2323, [2324] = 2324, [2325] = 2325, - [2326] = 2326, - [2327] = 2326, - [2328] = 2325, - [2329] = 2324, - [2330] = 2323, + [2326] = 2192, + [2327] = 2327, + [2328] = 2328, + [2329] = 2329, + [2330] = 2330, [2331] = 2331, - [2332] = 2316, + [2332] = 2204, [2333] = 2333, - [2334] = 2317, - [2335] = 2184, - [2336] = 2294, - [2337] = 2313, - [2338] = 2312, - [2339] = 2206, - [2340] = 2340, - [2341] = 2179, - [2342] = 2310, - [2343] = 2343, + [2334] = 2334, + [2335] = 2335, + [2336] = 2336, + [2337] = 2209, + [2338] = 2336, + [2339] = 2334, + [2340] = 2333, + [2341] = 2341, + [2342] = 2330, + [2343] = 2329, [2344] = 2344, - [2345] = 2345, - [2346] = 2205, - [2347] = 2158, - [2348] = 2348, - [2349] = 2349, - [2350] = 2290, - [2351] = 2149, - [2352] = 2274, + [2345] = 2246, + [2346] = 2346, + [2347] = 2347, + [2348] = 2321, + [2349] = 2217, + [2350] = 2350, + [2351] = 2317, + [2352] = 2316, [2353] = 2353, - [2354] = 2354, - [2355] = 2272, - [2356] = 2356, - [2357] = 2259, - [2358] = 2254, - [2359] = 2359, - [2360] = 2165, - [2361] = 2168, - [2362] = 2248, + [2354] = 2307, + [2355] = 2355, + [2356] = 2291, + [2357] = 2314, + [2358] = 2220, + [2359] = 2285, + [2360] = 2360, + [2361] = 2261, + [2362] = 2256, [2363] = 2363, - [2364] = 2364, - [2365] = 2237, - [2366] = 2297, - [2367] = 2367, - [2368] = 2234, - [2369] = 2233, - [2370] = 2305, - [2371] = 2226, - [2372] = 2372, - [2373] = 2224, - [2374] = 2374, - [2375] = 2218, + [2364] = 2158, + [2365] = 2365, + [2366] = 2255, + [2367] = 2160, + [2368] = 2162, + [2369] = 2244, + [2370] = 2233, + [2371] = 2231, + [2372] = 2243, + [2373] = 2242, + [2374] = 2163, + [2375] = 2239, [2376] = 2376, - [2377] = 2181, - [2378] = 2304, - [2379] = 2186, - [2380] = 2188, - [2381] = 2381, - [2382] = 2382, - [2383] = 2383, - [2384] = 2217, - [2385] = 2190, - [2386] = 2386, - [2387] = 2192, - [2388] = 2194, + [2377] = 2238, + [2378] = 2378, + [2379] = 2236, + [2380] = 2172, + [2381] = 2223, + [2382] = 2308, + [2383] = 2195, + [2384] = 2194, + [2385] = 2385, + [2386] = 2309, + [2387] = 2229, + [2388] = 2230, [2389] = 2389, - [2390] = 2390, - [2391] = 2204, - [2392] = 2256, + [2390] = 2214, + [2391] = 2227, + [2392] = 2392, [2393] = 2393, [2394] = 2394, - [2395] = 2395, + [2395] = 2211, [2396] = 2396, - [2397] = 2397, + [2397] = 2183, [2398] = 2398, [2399] = 2399, [2400] = 2400, @@ -6485,209 +6515,209 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2406] = 2406, [2407] = 2407, [2408] = 2408, - [2409] = 2395, + [2409] = 2409, [2410] = 2410, - [2411] = 2398, - [2412] = 2401, + [2411] = 2411, + [2412] = 2412, [2413] = 2413, - [2414] = 2414, + [2414] = 2409, [2415] = 2415, [2416] = 2416, [2417] = 2417, [2418] = 2418, - [2419] = 2419, + [2419] = 2407, [2420] = 2420, [2421] = 2421, - [2422] = 2417, - [2423] = 2423, + [2422] = 2422, + [2423] = 2410, [2424] = 2424, - [2425] = 2425, + [2425] = 2405, [2426] = 2426, [2427] = 2427, [2428] = 2428, [2429] = 2429, - [2430] = 656, - [2431] = 2401, - [2432] = 2415, + [2430] = 2430, + [2431] = 2431, + [2432] = 2432, [2433] = 2433, - [2434] = 2434, - [2435] = 2423, + [2434] = 2428, + [2435] = 2435, [2436] = 2436, [2437] = 2437, [2438] = 2438, - [2439] = 2439, + [2439] = 2428, [2440] = 2440, [2441] = 2441, [2442] = 2442, [2443] = 2443, [2444] = 2444, - [2445] = 2426, + [2445] = 2445, [2446] = 2446, [2447] = 2447, [2448] = 2448, - [2449] = 2429, + [2449] = 2449, [2450] = 2450, [2451] = 2451, - [2452] = 2406, + [2452] = 2452, [2453] = 2453, [2454] = 2454, - [2455] = 2455, + [2455] = 2405, [2456] = 2456, [2457] = 2457, - [2458] = 2458, - [2459] = 2459, + [2458] = 2427, + [2459] = 2432, [2460] = 2460, - [2461] = 2426, + [2461] = 2461, [2462] = 2462, [2463] = 2463, [2464] = 2464, - [2465] = 2465, - [2466] = 2446, - [2467] = 2400, + [2465] = 2450, + [2466] = 2422, + [2467] = 2430, [2468] = 2468, [2469] = 2469, [2470] = 2470, - [2471] = 2470, + [2471] = 2469, [2472] = 2472, - [2473] = 2433, - [2474] = 2418, - [2475] = 2475, + [2473] = 2431, + [2474] = 2470, + [2475] = 2468, [2476] = 2463, [2477] = 2477, [2478] = 2462, - [2479] = 2479, + [2479] = 2418, [2480] = 2480, - [2481] = 1238, + [2481] = 2481, [2482] = 2482, [2483] = 2483, - [2484] = 2448, + [2484] = 2404, [2485] = 2485, - [2486] = 2486, - [2487] = 2464, - [2488] = 2459, - [2489] = 2442, - [2490] = 2490, - [2491] = 2439, - [2492] = 2413, - [2493] = 2399, + [2486] = 2457, + [2487] = 2487, + [2488] = 2450, + [2489] = 2480, + [2490] = 2431, + [2491] = 2456, + [2492] = 2492, + [2493] = 2493, [2494] = 2494, - [2495] = 2495, + [2495] = 2447, [2496] = 2496, [2497] = 2497, - [2498] = 2437, - [2499] = 2438, - [2500] = 2419, - [2501] = 2436, - [2502] = 2502, - [2503] = 2503, - [2504] = 2423, - [2505] = 2505, - [2506] = 2506, - [2507] = 1196, - [2508] = 1197, - [2509] = 2421, - [2510] = 2510, - [2511] = 2511, - [2512] = 2512, - [2513] = 2513, - [2514] = 2425, + [2498] = 2445, + [2499] = 1208, + [2500] = 2433, + [2501] = 2427, + [2502] = 2472, + [2503] = 2443, + [2504] = 2504, + [2505] = 2442, + [2506] = 2426, + [2507] = 2507, + [2508] = 2415, + [2509] = 2509, + [2510] = 1239, + [2511] = 2460, + [2512] = 1238, + [2513] = 2435, + [2514] = 2514, [2515] = 2515, - [2516] = 2506, - [2517] = 2494, + [2516] = 2507, + [2517] = 2517, [2518] = 2518, - [2519] = 1724, - [2520] = 2415, - [2521] = 2421, + [2519] = 2424, + [2520] = 2520, + [2521] = 1727, [2522] = 2522, - [2523] = 1231, - [2524] = 2447, - [2525] = 2444, + [2523] = 2523, + [2524] = 2524, + [2525] = 2448, [2526] = 2526, [2527] = 2527, - [2528] = 2528, - [2529] = 2403, - [2530] = 2404, - [2531] = 2405, - [2532] = 2532, + [2528] = 2449, + [2529] = 2453, + [2530] = 2530, + [2531] = 2531, + [2532] = 2440, [2533] = 2533, [2534] = 2534, - [2535] = 2433, - [2536] = 2536, + [2535] = 2535, + [2536] = 2492, [2537] = 2537, - [2538] = 2513, - [2539] = 2539, - [2540] = 2502, - [2541] = 2407, + [2538] = 1195, + [2539] = 2472, + [2540] = 2540, + [2541] = 2430, [2542] = 2542, - [2543] = 2433, - [2544] = 2544, - [2545] = 2482, - [2546] = 2446, - [2547] = 2402, - [2548] = 2455, - [2549] = 2542, - [2550] = 2550, - [2551] = 2429, - [2552] = 2490, - [2553] = 2528, - [2554] = 2497, - [2555] = 2555, - [2556] = 2454, - [2557] = 2557, - [2558] = 2434, - [2559] = 2420, - [2560] = 2427, - [2561] = 2410, - [2562] = 2562, - [2563] = 2472, - [2564] = 2456, - [2565] = 2536, - [2566] = 2566, + [2543] = 2543, + [2544] = 2472, + [2545] = 2542, + [2546] = 2546, + [2547] = 2547, + [2548] = 2509, + [2549] = 2549, + [2550] = 2435, + [2551] = 2438, + [2552] = 2411, + [2553] = 2553, + [2554] = 2554, + [2555] = 2403, + [2556] = 2417, + [2557] = 2412, + [2558] = 2432, + [2559] = 2559, + [2560] = 2446, + [2561] = 2561, + [2562] = 2494, + [2563] = 2454, + [2564] = 2399, + [2565] = 2420, + [2566] = 2477, [2567] = 2567, - [2568] = 2417, - [2569] = 2455, - [2570] = 2544, - [2571] = 2408, - [2572] = 2572, - [2573] = 2573, - [2574] = 2557, - [2575] = 2402, - [2576] = 2572, - [2577] = 2577, - [2578] = 2428, - [2579] = 2573, - [2580] = 2505, - [2581] = 2418, - [2582] = 2397, - [2583] = 2424, - [2584] = 2441, - [2585] = 2539, - [2586] = 2416, - [2587] = 2526, - [2588] = 2522, - [2589] = 2414, - [2590] = 2394, - [2591] = 2537, - [2592] = 2495, - [2593] = 2512, - [2594] = 2450, - [2595] = 2595, - [2596] = 2534, - [2597] = 2395, - [2598] = 2479, - [2599] = 2533, - [2600] = 2566, - [2601] = 2457, - [2602] = 2458, - [2603] = 2480, - [2604] = 2604, - [2605] = 2605, - [2606] = 2606, - [2607] = 639, + [2568] = 2407, + [2569] = 2569, + [2570] = 2402, + [2571] = 2571, + [2572] = 2401, + [2573] = 2400, + [2574] = 2483, + [2575] = 2433, + [2576] = 2524, + [2577] = 2408, + [2578] = 2406, + [2579] = 2496, + [2580] = 2409, + [2581] = 2504, + [2582] = 2518, + [2583] = 2571, + [2584] = 2535, + [2585] = 2437, + [2586] = 2586, + [2587] = 2547, + [2588] = 652, + [2589] = 2416, + [2590] = 2534, + [2591] = 2530, + [2592] = 2444, + [2593] = 2523, + [2594] = 2485, + [2595] = 2451, + [2596] = 2481, + [2597] = 2452, + [2598] = 2421, + [2599] = 2543, + [2600] = 2426, + [2601] = 2527, + [2602] = 2540, + [2603] = 2603, + [2604] = 2567, + [2605] = 2533, + [2606] = 2413, + [2607] = 2607, [2608] = 2608, [2609] = 2609, [2610] = 2610, - [2611] = 648, + [2611] = 2611, [2612] = 2612, [2613] = 2613, [2614] = 2614, @@ -6704,37 +6734,37 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2625] = 2625, [2626] = 2626, [2627] = 2627, - [2628] = 2628, - [2629] = 2624, - [2630] = 2630, - [2631] = 2621, + [2628] = 2627, + [2629] = 2621, + [2630] = 2619, + [2631] = 2631, [2632] = 2632, - [2633] = 2633, - [2634] = 2618, - [2635] = 2625, + [2633] = 2626, + [2634] = 2634, + [2635] = 2635, [2636] = 2636, [2637] = 2637, [2638] = 2638, - [2639] = 2623, + [2639] = 2639, [2640] = 2640, [2641] = 2641, - [2642] = 2619, + [2642] = 2642, [2643] = 2643, - [2644] = 2638, - [2645] = 2627, - [2646] = 2640, - [2647] = 2632, + [2644] = 2644, + [2645] = 2645, + [2646] = 2618, + [2647] = 2647, [2648] = 2648, - [2649] = 2649, + [2649] = 2609, [2650] = 2650, - [2651] = 2651, - [2652] = 2652, - [2653] = 2628, - [2654] = 2654, + [2651] = 2650, + [2652] = 2608, + [2653] = 2653, + [2654] = 2611, [2655] = 2655, - [2656] = 2656, + [2656] = 2648, [2657] = 2657, - [2658] = 2640, + [2658] = 2658, [2659] = 2659, [2660] = 2660, [2661] = 2661, @@ -6742,110 +6772,114 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2663] = 2663, [2664] = 2664, [2665] = 2665, - [2666] = 2666, - [2667] = 2667, + [2666] = 2638, + [2667] = 2645, [2668] = 2668, - [2669] = 2640, - [2670] = 2638, + [2669] = 2669, + [2670] = 2670, [2671] = 2671, [2672] = 2672, [2673] = 2608, - [2674] = 2674, - [2675] = 2664, - [2676] = 2620, + [2674] = 2609, + [2675] = 2612, + [2676] = 2676, [2677] = 2677, - [2678] = 2654, + [2678] = 2647, [2679] = 2679, - [2680] = 2667, - [2681] = 2651, - [2682] = 2640, - [2683] = 2638, - [2684] = 2684, - [2685] = 2626, - [2686] = 2686, - [2687] = 2687, - [2688] = 2622, - [2689] = 2640, - [2690] = 2638, + [2680] = 2680, + [2681] = 2681, + [2682] = 2609, + [2683] = 2683, + [2684] = 2608, + [2685] = 2685, + [2686] = 2608, + [2687] = 2609, + [2688] = 2688, + [2689] = 2689, + [2690] = 2690, [2691] = 2691, - [2692] = 2692, - [2693] = 2668, - [2694] = 2667, + [2692] = 2627, + [2693] = 2608, + [2694] = 2609, [2695] = 2695, - [2696] = 2696, - [2697] = 2649, + [2696] = 2688, + [2697] = 2647, [2698] = 2698, [2699] = 2699, [2700] = 2700, [2701] = 2701, - [2702] = 2665, - [2703] = 2703, - [2704] = 2704, - [2705] = 2705, - [2706] = 2698, - [2707] = 2691, - [2708] = 2708, - [2709] = 2709, - [2710] = 2695, - [2711] = 2672, - [2712] = 2618, - [2713] = 2713, + [2702] = 2702, + [2703] = 2658, + [2704] = 2638, + [2705] = 2689, + [2706] = 2701, + [2707] = 2702, + [2708] = 2657, + [2709] = 2642, + [2710] = 2710, + [2711] = 2711, + [2712] = 2712, + [2713] = 2700, [2714] = 2714, - [2715] = 2667, - [2716] = 2687, - [2717] = 2674, - [2718] = 2718, + [2715] = 2661, + [2716] = 2620, + [2717] = 2717, + [2718] = 2676, [2719] = 2719, - [2720] = 2605, - [2721] = 2718, - [2722] = 2667, - [2723] = 2617, - [2724] = 2619, - [2725] = 2700, - [2726] = 2672, - [2727] = 2648, - [2728] = 2638, - [2729] = 2616, - [2730] = 2686, - [2731] = 2731, - [2732] = 2684, - [2733] = 2708, - [2734] = 2700, - [2735] = 2699, - [2736] = 2695, - [2737] = 2696, - [2738] = 2662, - [2739] = 2739, - [2740] = 2740, - [2741] = 2741, - [2742] = 2742, - [2743] = 2743, + [2720] = 2634, + [2721] = 2679, + [2722] = 2647, + [2723] = 2699, + [2724] = 2662, + [2725] = 2690, + [2726] = 2636, + [2727] = 2668, + [2728] = 2647, + [2729] = 2670, + [2730] = 2664, + [2731] = 2719, + [2732] = 2732, + [2733] = 2635, + [2734] = 2698, + [2735] = 2681, + [2736] = 2717, + [2737] = 2737, + [2738] = 2643, + [2739] = 2714, + [2740] = 2699, + [2741] = 2700, + [2742] = 2620, + [2743] = 2622, [2744] = 2744, - [2745] = 2633, - [2746] = 2666, - [2747] = 2704, - [2748] = 2742, - [2749] = 2705, - [2750] = 2750, - [2751] = 2744, - [2752] = 2752, + [2745] = 2745, + [2746] = 2744, + [2747] = 2661, + [2748] = 2748, + [2749] = 2617, + [2750] = 2659, + [2751] = 647, + [2752] = 2616, [2753] = 2753, - [2754] = 2615, - [2755] = 2731, - [2756] = 2614, - [2757] = 2741, - [2758] = 2750, - [2759] = 2740, + [2754] = 2754, + [2755] = 2615, + [2756] = 2756, + [2757] = 2631, + [2758] = 2711, + [2759] = 2759, [2760] = 2760, - [2761] = 2752, - [2762] = 2604, - [2763] = 2763, - [2764] = 2650, - [2765] = 2765, - [2766] = 2671, - [2767] = 2641, - [2768] = 2696, - [2769] = 2624, + [2761] = 2759, + [2762] = 2762, + [2763] = 2637, + [2764] = 2762, + [2765] = 2663, + [2766] = 2753, + [2767] = 2660, + [2768] = 2768, + [2769] = 653, + [2770] = 2640, + [2771] = 2645, + [2772] = 2632, + [2773] = 2773, }; static inline bool sym__raw_identifier_character_set_1(int32_t c) { @@ -17343,61 +17377,61 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [52] = {.lex_state = 6, .external_lex_state = 2}, [53] = {.lex_state = 6, .external_lex_state = 2}, [54] = {.lex_state = 6, .external_lex_state = 2}, - [55] = {.lex_state = 62, .external_lex_state = 2}, + [55] = {.lex_state = 6, .external_lex_state = 2}, [56] = {.lex_state = 6, .external_lex_state = 2}, [57] = {.lex_state = 6, .external_lex_state = 2}, [58] = {.lex_state = 6, .external_lex_state = 2}, [59] = {.lex_state = 6, .external_lex_state = 2}, [60] = {.lex_state = 6, .external_lex_state = 2}, - [61] = {.lex_state = 6, .external_lex_state = 2}, + [61] = {.lex_state = 62, .external_lex_state = 2}, [62] = {.lex_state = 6, .external_lex_state = 2}, [63] = {.lex_state = 6, .external_lex_state = 2}, [64] = {.lex_state = 6, .external_lex_state = 2}, [65] = {.lex_state = 6, .external_lex_state = 2}, - [66] = {.lex_state = 62, .external_lex_state = 2}, - [67] = {.lex_state = 6, .external_lex_state = 2}, + [66] = {.lex_state = 6, .external_lex_state = 2}, + [67] = {.lex_state = 62, .external_lex_state = 2}, [68] = {.lex_state = 6, .external_lex_state = 2}, [69] = {.lex_state = 62, .external_lex_state = 2}, [70] = {.lex_state = 6, .external_lex_state = 2}, - [71] = {.lex_state = 62, .external_lex_state = 2}, + [71] = {.lex_state = 6, .external_lex_state = 2}, [72] = {.lex_state = 6, .external_lex_state = 2}, - [73] = {.lex_state = 6, .external_lex_state = 2}, + [73] = {.lex_state = 62, .external_lex_state = 2}, [74] = {.lex_state = 6, .external_lex_state = 2}, [75] = {.lex_state = 6, .external_lex_state = 2}, - [76] = {.lex_state = 62, .external_lex_state = 2}, - [77] = {.lex_state = 62, .external_lex_state = 2}, - [78] = {.lex_state = 62, .external_lex_state = 2}, + [76] = {.lex_state = 6, .external_lex_state = 2}, + [77] = {.lex_state = 6, .external_lex_state = 2}, + [78] = {.lex_state = 6, .external_lex_state = 2}, [79] = {.lex_state = 6, .external_lex_state = 2}, - [80] = {.lex_state = 62, .external_lex_state = 2}, + [80] = {.lex_state = 6, .external_lex_state = 2}, [81] = {.lex_state = 6, .external_lex_state = 2}, [82] = {.lex_state = 6, .external_lex_state = 2}, - [83] = {.lex_state = 62, .external_lex_state = 2}, - [84] = {.lex_state = 6, .external_lex_state = 2}, + [83] = {.lex_state = 6, .external_lex_state = 2}, + [84] = {.lex_state = 62, .external_lex_state = 2}, [85] = {.lex_state = 6, .external_lex_state = 2}, - [86] = {.lex_state = 6, .external_lex_state = 2}, + [86] = {.lex_state = 62, .external_lex_state = 2}, [87] = {.lex_state = 6, .external_lex_state = 2}, - [88] = {.lex_state = 62, .external_lex_state = 2}, + [88] = {.lex_state = 6, .external_lex_state = 2}, [89] = {.lex_state = 6, .external_lex_state = 2}, [90] = {.lex_state = 6, .external_lex_state = 2}, [91] = {.lex_state = 6, .external_lex_state = 2}, [92] = {.lex_state = 62, .external_lex_state = 2}, [93] = {.lex_state = 62, .external_lex_state = 2}, - [94] = {.lex_state = 62, .external_lex_state = 2}, - [95] = {.lex_state = 6, .external_lex_state = 2}, - [96] = {.lex_state = 62, .external_lex_state = 2}, - [97] = {.lex_state = 6, .external_lex_state = 2}, - [98] = {.lex_state = 62, .external_lex_state = 2}, + [94] = {.lex_state = 6, .external_lex_state = 2}, + [95] = {.lex_state = 62, .external_lex_state = 2}, + [96] = {.lex_state = 6, .external_lex_state = 2}, + [97] = {.lex_state = 62, .external_lex_state = 2}, + [98] = {.lex_state = 6, .external_lex_state = 2}, [99] = {.lex_state = 6, .external_lex_state = 2}, - [100] = {.lex_state = 6, .external_lex_state = 2}, - [101] = {.lex_state = 62, .external_lex_state = 2}, + [100] = {.lex_state = 62, .external_lex_state = 2}, + [101] = {.lex_state = 6, .external_lex_state = 2}, [102] = {.lex_state = 6, .external_lex_state = 2}, - [103] = {.lex_state = 62, .external_lex_state = 2}, - [104] = {.lex_state = 6, .external_lex_state = 2}, + [103] = {.lex_state = 6, .external_lex_state = 2}, + [104] = {.lex_state = 62, .external_lex_state = 2}, [105] = {.lex_state = 6, .external_lex_state = 2}, - [106] = {.lex_state = 6, .external_lex_state = 2}, + [106] = {.lex_state = 62, .external_lex_state = 2}, [107] = {.lex_state = 6, .external_lex_state = 2}, [108] = {.lex_state = 6, .external_lex_state = 2}, - [109] = {.lex_state = 6, .external_lex_state = 2}, + [109] = {.lex_state = 62, .external_lex_state = 2}, [110] = {.lex_state = 6, .external_lex_state = 2}, [111] = {.lex_state = 6, .external_lex_state = 2}, [112] = {.lex_state = 6, .external_lex_state = 2}, @@ -17408,13 +17442,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [117] = {.lex_state = 6, .external_lex_state = 2}, [118] = {.lex_state = 6, .external_lex_state = 2}, [119] = {.lex_state = 6, .external_lex_state = 2}, - [120] = {.lex_state = 62, .external_lex_state = 2}, + [120] = {.lex_state = 6, .external_lex_state = 2}, [121] = {.lex_state = 6, .external_lex_state = 2}, - [122] = {.lex_state = 6, .external_lex_state = 2}, + [122] = {.lex_state = 62, .external_lex_state = 2}, [123] = {.lex_state = 6, .external_lex_state = 2}, [124] = {.lex_state = 6, .external_lex_state = 2}, [125] = {.lex_state = 6, .external_lex_state = 2}, - [126] = {.lex_state = 6, .external_lex_state = 2}, + [126] = {.lex_state = 62, .external_lex_state = 2}, [127] = {.lex_state = 6, .external_lex_state = 2}, [128] = {.lex_state = 6, .external_lex_state = 2}, [129] = {.lex_state = 6, .external_lex_state = 2}, @@ -17425,10 +17459,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [134] = {.lex_state = 6, .external_lex_state = 2}, [135] = {.lex_state = 6, .external_lex_state = 2}, [136] = {.lex_state = 6, .external_lex_state = 2}, - [137] = {.lex_state = 62, .external_lex_state = 2}, + [137] = {.lex_state = 6, .external_lex_state = 2}, [138] = {.lex_state = 6, .external_lex_state = 2}, - [139] = {.lex_state = 62, .external_lex_state = 2}, - [140] = {.lex_state = 6, .external_lex_state = 2}, + [139] = {.lex_state = 6, .external_lex_state = 2}, + [140] = {.lex_state = 62, .external_lex_state = 2}, [141] = {.lex_state = 6, .external_lex_state = 2}, [142] = {.lex_state = 6, .external_lex_state = 2}, [143] = {.lex_state = 6, .external_lex_state = 2}, @@ -17436,42 +17470,42 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [145] = {.lex_state = 6, .external_lex_state = 2}, [146] = {.lex_state = 6, .external_lex_state = 2}, [147] = {.lex_state = 6, .external_lex_state = 2}, - [148] = {.lex_state = 6, .external_lex_state = 2}, + [148] = {.lex_state = 62, .external_lex_state = 2}, [149] = {.lex_state = 6, .external_lex_state = 2}, [150] = {.lex_state = 6, .external_lex_state = 2}, - [151] = {.lex_state = 62, .external_lex_state = 2}, + [151] = {.lex_state = 6, .external_lex_state = 2}, [152] = {.lex_state = 6, .external_lex_state = 2}, [153] = {.lex_state = 6, .external_lex_state = 2}, [154] = {.lex_state = 6, .external_lex_state = 2}, [155] = {.lex_state = 6, .external_lex_state = 2}, [156] = {.lex_state = 6, .external_lex_state = 2}, [157] = {.lex_state = 6, .external_lex_state = 2}, - [158] = {.lex_state = 6, .external_lex_state = 2}, + [158] = {.lex_state = 62, .external_lex_state = 2}, [159] = {.lex_state = 6, .external_lex_state = 2}, [160] = {.lex_state = 6, .external_lex_state = 2}, [161] = {.lex_state = 6, .external_lex_state = 2}, [162] = {.lex_state = 6, .external_lex_state = 2}, [163] = {.lex_state = 6, .external_lex_state = 2}, [164] = {.lex_state = 6, .external_lex_state = 2}, - [165] = {.lex_state = 62, .external_lex_state = 2}, + [165] = {.lex_state = 6, .external_lex_state = 2}, [166] = {.lex_state = 6, .external_lex_state = 2}, - [167] = {.lex_state = 6, .external_lex_state = 2}, + [167] = {.lex_state = 62, .external_lex_state = 2}, [168] = {.lex_state = 6, .external_lex_state = 2}, - [169] = {.lex_state = 62, .external_lex_state = 2}, + [169] = {.lex_state = 6, .external_lex_state = 2}, [170] = {.lex_state = 6, .external_lex_state = 2}, - [171] = {.lex_state = 6, .external_lex_state = 2}, - [172] = {.lex_state = 6, .external_lex_state = 2}, - [173] = {.lex_state = 6, .external_lex_state = 2}, + [171] = {.lex_state = 62, .external_lex_state = 2}, + [172] = {.lex_state = 62, .external_lex_state = 2}, + [173] = {.lex_state = 62, .external_lex_state = 2}, [174] = {.lex_state = 6, .external_lex_state = 2}, - [175] = {.lex_state = 62, .external_lex_state = 2}, + [175] = {.lex_state = 6, .external_lex_state = 2}, [176] = {.lex_state = 6, .external_lex_state = 2}, [177] = {.lex_state = 6, .external_lex_state = 2}, [178] = {.lex_state = 6, .external_lex_state = 2}, [179] = {.lex_state = 62, .external_lex_state = 2}, - [180] = {.lex_state = 6, .external_lex_state = 2}, - [181] = {.lex_state = 6, .external_lex_state = 2}, - [182] = {.lex_state = 62, .external_lex_state = 2}, - [183] = {.lex_state = 7, .external_lex_state = 2}, + [180] = {.lex_state = 62, .external_lex_state = 2}, + [181] = {.lex_state = 62, .external_lex_state = 2}, + [182] = {.lex_state = 6, .external_lex_state = 2}, + [183] = {.lex_state = 6, .external_lex_state = 2}, [184] = {.lex_state = 62, .external_lex_state = 2}, [185] = {.lex_state = 62, .external_lex_state = 2}, [186] = {.lex_state = 7, .external_lex_state = 2}, @@ -17487,41 +17521,41 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [196] = {.lex_state = 7, .external_lex_state = 2}, [197] = {.lex_state = 7, .external_lex_state = 2}, [198] = {.lex_state = 7, .external_lex_state = 2}, - [199] = {.lex_state = 6, .external_lex_state = 2}, + [199] = {.lex_state = 7, .external_lex_state = 2}, [200] = {.lex_state = 6, .external_lex_state = 2}, [201] = {.lex_state = 6, .external_lex_state = 2}, [202] = {.lex_state = 6, .external_lex_state = 2}, [203] = {.lex_state = 6, .external_lex_state = 2}, [204] = {.lex_state = 6, .external_lex_state = 2}, [205] = {.lex_state = 6, .external_lex_state = 2}, - [206] = {.lex_state = 6, .external_lex_state = 2}, + [206] = {.lex_state = 1, .external_lex_state = 2}, [207] = {.lex_state = 6, .external_lex_state = 2}, - [208] = {.lex_state = 1, .external_lex_state = 2}, + [208] = {.lex_state = 6, .external_lex_state = 2}, [209] = {.lex_state = 6, .external_lex_state = 2}, [210] = {.lex_state = 6, .external_lex_state = 2}, - [211] = {.lex_state = 6, .external_lex_state = 2}, - [212] = {.lex_state = 1, .external_lex_state = 2}, + [211] = {.lex_state = 1, .external_lex_state = 2}, + [212] = {.lex_state = 6, .external_lex_state = 2}, [213] = {.lex_state = 6, .external_lex_state = 2}, [214] = {.lex_state = 6, .external_lex_state = 2}, [215] = {.lex_state = 6, .external_lex_state = 2}, [216] = {.lex_state = 6, .external_lex_state = 2}, [217] = {.lex_state = 6, .external_lex_state = 2}, [218] = {.lex_state = 6, .external_lex_state = 2}, - [219] = {.lex_state = 1, .external_lex_state = 2}, + [219] = {.lex_state = 6, .external_lex_state = 2}, [220] = {.lex_state = 6, .external_lex_state = 2}, - [221] = {.lex_state = 6, .external_lex_state = 2}, + [221] = {.lex_state = 1, .external_lex_state = 2}, [222] = {.lex_state = 1, .external_lex_state = 2}, - [223] = {.lex_state = 1, .external_lex_state = 2}, - [224] = {.lex_state = 1, .external_lex_state = 2}, + [223] = {.lex_state = 6, .external_lex_state = 2}, + [224] = {.lex_state = 6, .external_lex_state = 2}, [225] = {.lex_state = 6, .external_lex_state = 2}, - [226] = {.lex_state = 6, .external_lex_state = 2}, + [226] = {.lex_state = 1, .external_lex_state = 2}, [227] = {.lex_state = 1, .external_lex_state = 2}, [228] = {.lex_state = 1, .external_lex_state = 2}, [229] = {.lex_state = 1, .external_lex_state = 2}, [230] = {.lex_state = 1, .external_lex_state = 2}, - [231] = {.lex_state = 1, .external_lex_state = 2}, + [231] = {.lex_state = 14, .external_lex_state = 2}, [232] = {.lex_state = 1, .external_lex_state = 2}, - [233] = {.lex_state = 1, .external_lex_state = 2}, + [233] = {.lex_state = 5, .external_lex_state = 3}, [234] = {.lex_state = 1, .external_lex_state = 2}, [235] = {.lex_state = 1, .external_lex_state = 2}, [236] = {.lex_state = 1, .external_lex_state = 2}, @@ -17530,38 +17564,38 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [239] = {.lex_state = 1, .external_lex_state = 2}, [240] = {.lex_state = 1, .external_lex_state = 2}, [241] = {.lex_state = 1, .external_lex_state = 2}, - [242] = {.lex_state = 5, .external_lex_state = 3}, - [243] = {.lex_state = 1, .external_lex_state = 2}, - [244] = {.lex_state = 5, .external_lex_state = 3}, - [245] = {.lex_state = 1, .external_lex_state = 2}, + [242] = {.lex_state = 1, .external_lex_state = 2}, + [243] = {.lex_state = 5, .external_lex_state = 3}, + [244] = {.lex_state = 1, .external_lex_state = 2}, + [245] = {.lex_state = 5, .external_lex_state = 3}, [246] = {.lex_state = 5, .external_lex_state = 3}, - [247] = {.lex_state = 14, .external_lex_state = 2}, + [247] = {.lex_state = 1, .external_lex_state = 2}, [248] = {.lex_state = 1, .external_lex_state = 2}, - [249] = {.lex_state = 5, .external_lex_state = 3}, + [249] = {.lex_state = 1, .external_lex_state = 2}, [250] = {.lex_state = 1, .external_lex_state = 2}, - [251] = {.lex_state = 6, .external_lex_state = 2}, + [251] = {.lex_state = 1, .external_lex_state = 2}, [252] = {.lex_state = 6, .external_lex_state = 2}, [253] = {.lex_state = 6, .external_lex_state = 2}, - [254] = {.lex_state = 14, .external_lex_state = 2}, + [254] = {.lex_state = 6, .external_lex_state = 2}, [255] = {.lex_state = 14, .external_lex_state = 2}, - [256] = {.lex_state = 14, .external_lex_state = 2}, + [256] = {.lex_state = 6, .external_lex_state = 2}, [257] = {.lex_state = 14, .external_lex_state = 2}, [258] = {.lex_state = 14, .external_lex_state = 2}, [259] = {.lex_state = 14, .external_lex_state = 2}, [260] = {.lex_state = 14, .external_lex_state = 2}, [261] = {.lex_state = 14, .external_lex_state = 2}, - [262] = {.lex_state = 6, .external_lex_state = 2}, + [262] = {.lex_state = 14, .external_lex_state = 2}, [263] = {.lex_state = 14, .external_lex_state = 2}, - [264] = {.lex_state = 14, .external_lex_state = 2}, - [265] = {.lex_state = 6, .external_lex_state = 2}, + [264] = {.lex_state = 6, .external_lex_state = 2}, + [265] = {.lex_state = 14, .external_lex_state = 2}, [266] = {.lex_state = 14, .external_lex_state = 2}, [267] = {.lex_state = 14, .external_lex_state = 2}, - [268] = {.lex_state = 15, .external_lex_state = 2}, + [268] = {.lex_state = 14, .external_lex_state = 2}, [269] = {.lex_state = 14, .external_lex_state = 2}, - [270] = {.lex_state = 6, .external_lex_state = 2}, - [271] = {.lex_state = 14, .external_lex_state = 2}, + [270] = {.lex_state = 14, .external_lex_state = 2}, + [271] = {.lex_state = 15, .external_lex_state = 2}, [272] = {.lex_state = 14, .external_lex_state = 2}, - [273] = {.lex_state = 63, .external_lex_state = 2}, + [273] = {.lex_state = 6, .external_lex_state = 2}, [274] = {.lex_state = 63, .external_lex_state = 2}, [275] = {.lex_state = 63, .external_lex_state = 2}, [276] = {.lex_state = 63, .external_lex_state = 2}, @@ -17671,7 +17705,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [380] = {.lex_state = 63, .external_lex_state = 2}, [381] = {.lex_state = 63, .external_lex_state = 2}, [382] = {.lex_state = 63, .external_lex_state = 2}, - [383] = {.lex_state = 63, .external_lex_state = 2}, + [383] = {.lex_state = 6, .external_lex_state = 2}, [384] = {.lex_state = 63, .external_lex_state = 2}, [385] = {.lex_state = 63, .external_lex_state = 2}, [386] = {.lex_state = 63, .external_lex_state = 2}, @@ -17756,7 +17790,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [465] = {.lex_state = 63, .external_lex_state = 2}, [466] = {.lex_state = 63, .external_lex_state = 2}, [467] = {.lex_state = 63, .external_lex_state = 2}, - [468] = {.lex_state = 6, .external_lex_state = 2}, + [468] = {.lex_state = 63, .external_lex_state = 2}, [469] = {.lex_state = 63, .external_lex_state = 2}, [470] = {.lex_state = 63, .external_lex_state = 2}, [471] = {.lex_state = 63, .external_lex_state = 2}, @@ -17823,55 +17857,55 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [532] = {.lex_state = 63, .external_lex_state = 2}, [533] = {.lex_state = 63, .external_lex_state = 2}, [534] = {.lex_state = 63, .external_lex_state = 2}, - [535] = {.lex_state = 15, .external_lex_state = 2}, + [535] = {.lex_state = 63, .external_lex_state = 2}, [536] = {.lex_state = 15, .external_lex_state = 2}, [537] = {.lex_state = 15, .external_lex_state = 2}, [538] = {.lex_state = 15, .external_lex_state = 2}, - [539] = {.lex_state = 15, .external_lex_state = 2}, + [539] = {.lex_state = 14, .external_lex_state = 2}, [540] = {.lex_state = 15, .external_lex_state = 2}, [541] = {.lex_state = 15, .external_lex_state = 2}, - [542] = {.lex_state = 15, .external_lex_state = 2}, + [542] = {.lex_state = 14, .external_lex_state = 2}, [543] = {.lex_state = 15, .external_lex_state = 2}, [544] = {.lex_state = 15, .external_lex_state = 2}, - [545] = {.lex_state = 15, .external_lex_state = 2}, - [546] = {.lex_state = 15, .external_lex_state = 2}, - [547] = {.lex_state = 14, .external_lex_state = 2}, - [548] = {.lex_state = 14, .external_lex_state = 2}, - [549] = {.lex_state = 14, .external_lex_state = 2}, - [550] = {.lex_state = 14, .external_lex_state = 2}, - [551] = {.lex_state = 14, .external_lex_state = 2}, - [552] = {.lex_state = 14, .external_lex_state = 2}, + [545] = {.lex_state = 14, .external_lex_state = 2}, + [546] = {.lex_state = 14, .external_lex_state = 2}, + [547] = {.lex_state = 15, .external_lex_state = 2}, + [548] = {.lex_state = 15, .external_lex_state = 2}, + [549] = {.lex_state = 15, .external_lex_state = 2}, + [550] = {.lex_state = 15, .external_lex_state = 2}, + [551] = {.lex_state = 15, .external_lex_state = 2}, + [552] = {.lex_state = 15, .external_lex_state = 2}, [553] = {.lex_state = 15, .external_lex_state = 2}, - [554] = {.lex_state = 15, .external_lex_state = 2}, + [554] = {.lex_state = 63, .external_lex_state = 2}, [555] = {.lex_state = 15, .external_lex_state = 2}, [556] = {.lex_state = 15, .external_lex_state = 2}, [557] = {.lex_state = 15, .external_lex_state = 2}, [558] = {.lex_state = 15, .external_lex_state = 2}, - [559] = {.lex_state = 63, .external_lex_state = 2}, - [560] = {.lex_state = 14, .external_lex_state = 2}, + [559] = {.lex_state = 14, .external_lex_state = 2}, + [560] = {.lex_state = 15, .external_lex_state = 2}, [561] = {.lex_state = 14, .external_lex_state = 2}, - [562] = {.lex_state = 15, .external_lex_state = 2}, - [563] = {.lex_state = 15, .external_lex_state = 2}, + [562] = {.lex_state = 14, .external_lex_state = 2}, + [563] = {.lex_state = 14, .external_lex_state = 2}, [564] = {.lex_state = 15, .external_lex_state = 2}, [565] = {.lex_state = 15, .external_lex_state = 2}, - [566] = {.lex_state = 14, .external_lex_state = 2}, - [567] = {.lex_state = 14, .external_lex_state = 2}, - [568] = {.lex_state = 14, .external_lex_state = 2}, - [569] = {.lex_state = 14, .external_lex_state = 2}, - [570] = {.lex_state = 14, .external_lex_state = 2}, + [566] = {.lex_state = 15, .external_lex_state = 2}, + [567] = {.lex_state = 15, .external_lex_state = 2}, + [568] = {.lex_state = 15, .external_lex_state = 2}, + [569] = {.lex_state = 15, .external_lex_state = 2}, + [570] = {.lex_state = 15, .external_lex_state = 2}, [571] = {.lex_state = 14, .external_lex_state = 2}, [572] = {.lex_state = 15, .external_lex_state = 2}, [573] = {.lex_state = 14, .external_lex_state = 2}, - [574] = {.lex_state = 15, .external_lex_state = 2}, - [575] = {.lex_state = 15, .external_lex_state = 2}, - [576] = {.lex_state = 15, .external_lex_state = 2}, + [574] = {.lex_state = 14, .external_lex_state = 2}, + [575] = {.lex_state = 14, .external_lex_state = 2}, + [576] = {.lex_state = 14, .external_lex_state = 2}, [577] = {.lex_state = 15, .external_lex_state = 2}, - [578] = {.lex_state = 15, .external_lex_state = 2}, + [578] = {.lex_state = 14, .external_lex_state = 2}, [579] = {.lex_state = 15, .external_lex_state = 2}, [580] = {.lex_state = 15, .external_lex_state = 2}, - [581] = {.lex_state = 6, .external_lex_state = 2}, + [581] = {.lex_state = 14, .external_lex_state = 2}, [582] = {.lex_state = 6, .external_lex_state = 2}, - [583] = {.lex_state = 8, .external_lex_state = 3}, + [583] = {.lex_state = 6, .external_lex_state = 2}, [584] = {.lex_state = 8, .external_lex_state = 3}, [585] = {.lex_state = 8, .external_lex_state = 3}, [586] = {.lex_state = 8, .external_lex_state = 3}, @@ -17881,22 +17915,22 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [590] = {.lex_state = 8, .external_lex_state = 3}, [591] = {.lex_state = 8, .external_lex_state = 3}, [592] = {.lex_state = 6, .external_lex_state = 2}, - [593] = {.lex_state = 8, .external_lex_state = 3}, + [593] = {.lex_state = 6, .external_lex_state = 2}, [594] = {.lex_state = 6, .external_lex_state = 2}, - [595] = {.lex_state = 6, .external_lex_state = 2}, + [595] = {.lex_state = 8, .external_lex_state = 3}, [596] = {.lex_state = 6, .external_lex_state = 2}, - [597] = {.lex_state = 6, .external_lex_state = 2}, + [597] = {.lex_state = 8, .external_lex_state = 3}, [598] = {.lex_state = 6, .external_lex_state = 2}, [599] = {.lex_state = 6, .external_lex_state = 2}, [600] = {.lex_state = 6, .external_lex_state = 2}, - [601] = {.lex_state = 6, .external_lex_state = 2}, - [602] = {.lex_state = 8, .external_lex_state = 3}, + [601] = {.lex_state = 8, .external_lex_state = 3}, + [602] = {.lex_state = 6, .external_lex_state = 2}, [603] = {.lex_state = 6, .external_lex_state = 2}, [604] = {.lex_state = 6, .external_lex_state = 2}, [605] = {.lex_state = 6, .external_lex_state = 2}, [606] = {.lex_state = 6, .external_lex_state = 2}, [607] = {.lex_state = 6, .external_lex_state = 2}, - [608] = {.lex_state = 6, .external_lex_state = 2}, + [608] = {.lex_state = 13, .external_lex_state = 2}, [609] = {.lex_state = 6, .external_lex_state = 2}, [610] = {.lex_state = 6, .external_lex_state = 2}, [611] = {.lex_state = 6, .external_lex_state = 2}, @@ -17912,65 +17946,65 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [621] = {.lex_state = 6, .external_lex_state = 2}, [622] = {.lex_state = 6, .external_lex_state = 2}, [623] = {.lex_state = 8, .external_lex_state = 3}, - [624] = {.lex_state = 8, .external_lex_state = 3}, - [625] = {.lex_state = 8, .external_lex_state = 3}, + [624] = {.lex_state = 6, .external_lex_state = 2}, + [625] = {.lex_state = 6, .external_lex_state = 2}, [626] = {.lex_state = 6, .external_lex_state = 2}, - [627] = {.lex_state = 13, .external_lex_state = 2}, - [628] = {.lex_state = 6, .external_lex_state = 2}, - [629] = {.lex_state = 6, .external_lex_state = 2}, + [627] = {.lex_state = 6, .external_lex_state = 2}, + [628] = {.lex_state = 8, .external_lex_state = 3}, + [629] = {.lex_state = 8, .external_lex_state = 3}, [630] = {.lex_state = 6, .external_lex_state = 2}, [631] = {.lex_state = 6, .external_lex_state = 2}, [632] = {.lex_state = 6, .external_lex_state = 2}, - [633] = {.lex_state = 8, .external_lex_state = 3}, - [634] = {.lex_state = 14, .external_lex_state = 2}, + [633] = {.lex_state = 6, .external_lex_state = 2}, + [634] = {.lex_state = 8, .external_lex_state = 3}, [635] = {.lex_state = 14, .external_lex_state = 2}, [636] = {.lex_state = 14, .external_lex_state = 2}, [637] = {.lex_state = 14, .external_lex_state = 2}, [638] = {.lex_state = 14, .external_lex_state = 2}, [639] = {.lex_state = 14, .external_lex_state = 2}, [640] = {.lex_state = 8, .external_lex_state = 3}, - [641] = {.lex_state = 8, .external_lex_state = 3}, + [641] = {.lex_state = 14, .external_lex_state = 2}, [642] = {.lex_state = 14, .external_lex_state = 2}, [643] = {.lex_state = 14, .external_lex_state = 2}, [644] = {.lex_state = 14, .external_lex_state = 2}, - [645] = {.lex_state = 14, .external_lex_state = 2}, - [646] = {.lex_state = 14, .external_lex_state = 2}, + [645] = {.lex_state = 8, .external_lex_state = 3}, + [646] = {.lex_state = 8, .external_lex_state = 3}, [647] = {.lex_state = 14, .external_lex_state = 2}, [648] = {.lex_state = 14, .external_lex_state = 2}, [649] = {.lex_state = 14, .external_lex_state = 2}, - [650] = {.lex_state = 8, .external_lex_state = 3}, + [650] = {.lex_state = 14, .external_lex_state = 2}, [651] = {.lex_state = 14, .external_lex_state = 2}, - [652] = {.lex_state = 8, .external_lex_state = 3}, + [652] = {.lex_state = 14, .external_lex_state = 2}, [653] = {.lex_state = 14, .external_lex_state = 2}, - [654] = {.lex_state = 8, .external_lex_state = 3}, + [654] = {.lex_state = 14, .external_lex_state = 2}, [655] = {.lex_state = 14, .external_lex_state = 2}, [656] = {.lex_state = 14, .external_lex_state = 2}, - [657] = {.lex_state = 14, .external_lex_state = 2}, + [657] = {.lex_state = 8, .external_lex_state = 3}, [658] = {.lex_state = 14, .external_lex_state = 2}, [659] = {.lex_state = 8, .external_lex_state = 3}, [660] = {.lex_state = 8, .external_lex_state = 3}, [661] = {.lex_state = 8, .external_lex_state = 3}, [662] = {.lex_state = 15, .external_lex_state = 2}, - [663] = {.lex_state = 15, .external_lex_state = 2}, + [663] = {.lex_state = 8, .external_lex_state = 3}, [664] = {.lex_state = 8, .external_lex_state = 3}, [665] = {.lex_state = 15, .external_lex_state = 2}, - [666] = {.lex_state = 15, .external_lex_state = 2}, + [666] = {.lex_state = 8, .external_lex_state = 3}, [667] = {.lex_state = 15, .external_lex_state = 2}, - [668] = {.lex_state = 15, .external_lex_state = 2}, + [668] = {.lex_state = 8, .external_lex_state = 3}, [669] = {.lex_state = 8, .external_lex_state = 3}, - [670] = {.lex_state = 15, .external_lex_state = 2}, + [670] = {.lex_state = 8, .external_lex_state = 3}, [671] = {.lex_state = 15, .external_lex_state = 2}, - [672] = {.lex_state = 8, .external_lex_state = 3}, + [672] = {.lex_state = 15, .external_lex_state = 2}, [673] = {.lex_state = 8, .external_lex_state = 3}, [674] = {.lex_state = 8, .external_lex_state = 3}, [675] = {.lex_state = 15, .external_lex_state = 2}, [676] = {.lex_state = 8, .external_lex_state = 3}, [677] = {.lex_state = 8, .external_lex_state = 3}, - [678] = {.lex_state = 8, .external_lex_state = 3}, + [678] = {.lex_state = 15, .external_lex_state = 2}, [679] = {.lex_state = 8, .external_lex_state = 3}, - [680] = {.lex_state = 8, .external_lex_state = 3}, + [680] = {.lex_state = 15, .external_lex_state = 2}, [681] = {.lex_state = 8, .external_lex_state = 3}, - [682] = {.lex_state = 8, .external_lex_state = 3}, + [682] = {.lex_state = 15, .external_lex_state = 2}, [683] = {.lex_state = 8, .external_lex_state = 3}, [684] = {.lex_state = 8, .external_lex_state = 3}, [685] = {.lex_state = 8, .external_lex_state = 3}, @@ -17993,7 +18027,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [702] = {.lex_state = 8, .external_lex_state = 3}, [703] = {.lex_state = 8, .external_lex_state = 3}, [704] = {.lex_state = 8, .external_lex_state = 3}, - [705] = {.lex_state = 8, .external_lex_state = 3}, + [705] = {.lex_state = 6, .external_lex_state = 2}, [706] = {.lex_state = 8, .external_lex_state = 3}, [707] = {.lex_state = 8, .external_lex_state = 3}, [708] = {.lex_state = 8, .external_lex_state = 3}, @@ -18087,7 +18121,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [796] = {.lex_state = 8, .external_lex_state = 3}, [797] = {.lex_state = 8, .external_lex_state = 3}, [798] = {.lex_state = 8, .external_lex_state = 3}, - [799] = {.lex_state = 6, .external_lex_state = 2}, + [799] = {.lex_state = 8, .external_lex_state = 3}, [800] = {.lex_state = 8, .external_lex_state = 3}, [801] = {.lex_state = 8, .external_lex_state = 3}, [802] = {.lex_state = 8, .external_lex_state = 3}, @@ -18099,39 +18133,39 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [808] = {.lex_state = 8, .external_lex_state = 3}, [809] = {.lex_state = 8, .external_lex_state = 3}, [810] = {.lex_state = 8, .external_lex_state = 3}, - [811] = {.lex_state = 6, .external_lex_state = 2}, + [811] = {.lex_state = 8, .external_lex_state = 3}, [812] = {.lex_state = 6, .external_lex_state = 2}, [813] = {.lex_state = 6, .external_lex_state = 2}, [814] = {.lex_state = 6, .external_lex_state = 2}, [815] = {.lex_state = 6, .external_lex_state = 2}, - [816] = {.lex_state = 7, .external_lex_state = 2}, - [817] = {.lex_state = 3, .external_lex_state = 3}, - [818] = {.lex_state = 5, .external_lex_state = 3}, - [819] = {.lex_state = 3, .external_lex_state = 3}, - [820] = {.lex_state = 3, .external_lex_state = 3}, + [816] = {.lex_state = 6, .external_lex_state = 2}, + [817] = {.lex_state = 7, .external_lex_state = 2}, + [818] = {.lex_state = 3, .external_lex_state = 3}, + [819] = {.lex_state = 5, .external_lex_state = 3}, + [820] = {.lex_state = 5, .external_lex_state = 3}, [821] = {.lex_state = 5, .external_lex_state = 3}, - [822] = {.lex_state = 5, .external_lex_state = 3}, + [822] = {.lex_state = 3, .external_lex_state = 3}, [823] = {.lex_state = 5, .external_lex_state = 3}, - [824] = {.lex_state = 5, .external_lex_state = 3}, - [825] = {.lex_state = 3, .external_lex_state = 3}, + [824] = {.lex_state = 3, .external_lex_state = 3}, + [825] = {.lex_state = 5, .external_lex_state = 3}, [826] = {.lex_state = 3, .external_lex_state = 3}, - [827] = {.lex_state = 8, .external_lex_state = 3}, - [828] = {.lex_state = 5, .external_lex_state = 3}, + [827] = {.lex_state = 3, .external_lex_state = 3}, + [828] = {.lex_state = 3, .external_lex_state = 3}, [829] = {.lex_state = 3, .external_lex_state = 3}, - [830] = {.lex_state = 3, .external_lex_state = 3}, - [831] = {.lex_state = 3, .external_lex_state = 3}, + [830] = {.lex_state = 8, .external_lex_state = 3}, + [831] = {.lex_state = 8, .external_lex_state = 3}, [832] = {.lex_state = 3, .external_lex_state = 3}, - [833] = {.lex_state = 8, .external_lex_state = 3}, - [834] = {.lex_state = 2, .external_lex_state = 3}, + [833] = {.lex_state = 2, .external_lex_state = 3}, + [834] = {.lex_state = 3, .external_lex_state = 3}, [835] = {.lex_state = 3, .external_lex_state = 3}, [836] = {.lex_state = 3, .external_lex_state = 3}, [837] = {.lex_state = 5, .external_lex_state = 3}, [838] = {.lex_state = 5, .external_lex_state = 3}, [839] = {.lex_state = 5, .external_lex_state = 3}, [840] = {.lex_state = 5, .external_lex_state = 3}, - [841] = {.lex_state = 2, .external_lex_state = 3}, - [842] = {.lex_state = 2, .external_lex_state = 3}, - [843] = {.lex_state = 2, .external_lex_state = 3}, + [841] = {.lex_state = 5, .external_lex_state = 3}, + [842] = {.lex_state = 5, .external_lex_state = 3}, + [843] = {.lex_state = 5, .external_lex_state = 3}, [844] = {.lex_state = 5, .external_lex_state = 3}, [845] = {.lex_state = 5, .external_lex_state = 3}, [846] = {.lex_state = 5, .external_lex_state = 3}, @@ -18141,7 +18175,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [850] = {.lex_state = 5, .external_lex_state = 3}, [851] = {.lex_state = 5, .external_lex_state = 3}, [852] = {.lex_state = 5, .external_lex_state = 3}, - [853] = {.lex_state = 2, .external_lex_state = 3}, + [853] = {.lex_state = 5, .external_lex_state = 3}, [854] = {.lex_state = 5, .external_lex_state = 3}, [855] = {.lex_state = 5, .external_lex_state = 3}, [856] = {.lex_state = 5, .external_lex_state = 3}, @@ -18182,7 +18216,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [891] = {.lex_state = 5, .external_lex_state = 3}, [892] = {.lex_state = 5, .external_lex_state = 3}, [893] = {.lex_state = 5, .external_lex_state = 3}, - [894] = {.lex_state = 2, .external_lex_state = 3}, + [894] = {.lex_state = 5, .external_lex_state = 3}, [895] = {.lex_state = 5, .external_lex_state = 3}, [896] = {.lex_state = 5, .external_lex_state = 3}, [897] = {.lex_state = 5, .external_lex_state = 3}, @@ -18213,14 +18247,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [922] = {.lex_state = 5, .external_lex_state = 3}, [923] = {.lex_state = 5, .external_lex_state = 3}, [924] = {.lex_state = 5, .external_lex_state = 3}, - [925] = {.lex_state = 5, .external_lex_state = 3}, + [925] = {.lex_state = 2, .external_lex_state = 3}, [926] = {.lex_state = 5, .external_lex_state = 3}, [927] = {.lex_state = 5, .external_lex_state = 3}, [928] = {.lex_state = 5, .external_lex_state = 3}, [929] = {.lex_state = 5, .external_lex_state = 3}, [930] = {.lex_state = 5, .external_lex_state = 3}, [931] = {.lex_state = 5, .external_lex_state = 3}, - [932] = {.lex_state = 5, .external_lex_state = 3}, + [932] = {.lex_state = 2, .external_lex_state = 3}, [933] = {.lex_state = 5, .external_lex_state = 3}, [934] = {.lex_state = 5, .external_lex_state = 3}, [935] = {.lex_state = 5, .external_lex_state = 3}, @@ -18230,7 +18264,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [939] = {.lex_state = 5, .external_lex_state = 3}, [940] = {.lex_state = 5, .external_lex_state = 3}, [941] = {.lex_state = 5, .external_lex_state = 3}, - [942] = {.lex_state = 5, .external_lex_state = 3}, + [942] = {.lex_state = 2, .external_lex_state = 3}, [943] = {.lex_state = 5, .external_lex_state = 3}, [944] = {.lex_state = 5, .external_lex_state = 3}, [945] = {.lex_state = 5, .external_lex_state = 3}, @@ -18243,7 +18277,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [952] = {.lex_state = 5, .external_lex_state = 3}, [953] = {.lex_state = 5, .external_lex_state = 3}, [954] = {.lex_state = 5, .external_lex_state = 3}, - [955] = {.lex_state = 2, .external_lex_state = 3}, + [955] = {.lex_state = 5, .external_lex_state = 3}, [956] = {.lex_state = 5, .external_lex_state = 3}, [957] = {.lex_state = 5, .external_lex_state = 3}, [958] = {.lex_state = 5, .external_lex_state = 3}, @@ -18258,7 +18292,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [967] = {.lex_state = 5, .external_lex_state = 3}, [968] = {.lex_state = 5, .external_lex_state = 3}, [969] = {.lex_state = 5, .external_lex_state = 3}, - [970] = {.lex_state = 2, .external_lex_state = 3}, + [970] = {.lex_state = 5, .external_lex_state = 3}, [971] = {.lex_state = 5, .external_lex_state = 3}, [972] = {.lex_state = 5, .external_lex_state = 3}, [973] = {.lex_state = 5, .external_lex_state = 3}, @@ -18296,7 +18330,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1005] = {.lex_state = 5, .external_lex_state = 3}, [1006] = {.lex_state = 5, .external_lex_state = 3}, [1007] = {.lex_state = 5, .external_lex_state = 3}, - [1008] = {.lex_state = 5, .external_lex_state = 3}, + [1008] = {.lex_state = 2, .external_lex_state = 3}, [1009] = {.lex_state = 5, .external_lex_state = 3}, [1010] = {.lex_state = 5, .external_lex_state = 3}, [1011] = {.lex_state = 5, .external_lex_state = 3}, @@ -18318,7 +18352,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1027] = {.lex_state = 5, .external_lex_state = 3}, [1028] = {.lex_state = 5, .external_lex_state = 3}, [1029] = {.lex_state = 5, .external_lex_state = 3}, - [1030] = {.lex_state = 5, .external_lex_state = 3}, + [1030] = {.lex_state = 2, .external_lex_state = 3}, [1031] = {.lex_state = 5, .external_lex_state = 3}, [1032] = {.lex_state = 5, .external_lex_state = 3}, [1033] = {.lex_state = 5, .external_lex_state = 3}, @@ -18329,14 +18363,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1038] = {.lex_state = 5, .external_lex_state = 3}, [1039] = {.lex_state = 5, .external_lex_state = 3}, [1040] = {.lex_state = 5, .external_lex_state = 3}, - [1041] = {.lex_state = 5, .external_lex_state = 3}, - [1042] = {.lex_state = 2, .external_lex_state = 3}, + [1041] = {.lex_state = 2, .external_lex_state = 3}, + [1042] = {.lex_state = 5, .external_lex_state = 3}, [1043] = {.lex_state = 5, .external_lex_state = 3}, [1044] = {.lex_state = 5, .external_lex_state = 3}, - [1045] = {.lex_state = 5, .external_lex_state = 3}, + [1045] = {.lex_state = 2, .external_lex_state = 3}, [1046] = {.lex_state = 5, .external_lex_state = 3}, [1047] = {.lex_state = 5, .external_lex_state = 3}, - [1048] = {.lex_state = 2, .external_lex_state = 3}, + [1048] = {.lex_state = 5, .external_lex_state = 3}, [1049] = {.lex_state = 5, .external_lex_state = 3}, [1050] = {.lex_state = 5, .external_lex_state = 3}, [1051] = {.lex_state = 5, .external_lex_state = 3}, @@ -18362,7 +18396,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1071] = {.lex_state = 5, .external_lex_state = 3}, [1072] = {.lex_state = 5, .external_lex_state = 3}, [1073] = {.lex_state = 5, .external_lex_state = 3}, - [1074] = {.lex_state = 5, .external_lex_state = 3}, + [1074] = {.lex_state = 2, .external_lex_state = 3}, [1075] = {.lex_state = 5, .external_lex_state = 3}, [1076] = {.lex_state = 5, .external_lex_state = 3}, [1077] = {.lex_state = 5, .external_lex_state = 3}, @@ -18390,68 +18424,68 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1099] = {.lex_state = 5, .external_lex_state = 3}, [1100] = {.lex_state = 5, .external_lex_state = 3}, [1101] = {.lex_state = 5, .external_lex_state = 3}, - [1102] = {.lex_state = 5, .external_lex_state = 3}, + [1102] = {.lex_state = 2, .external_lex_state = 3}, [1103] = {.lex_state = 5, .external_lex_state = 3}, [1104] = {.lex_state = 5, .external_lex_state = 3}, [1105] = {.lex_state = 5, .external_lex_state = 3}, - [1106] = {.lex_state = 8, .external_lex_state = 3}, - [1107] = {.lex_state = 8, .external_lex_state = 3}, - [1108] = {.lex_state = 2, .external_lex_state = 3}, + [1106] = {.lex_state = 5, .external_lex_state = 3}, + [1107] = {.lex_state = 2, .external_lex_state = 3}, + [1108] = {.lex_state = 6, .external_lex_state = 2}, [1109] = {.lex_state = 2, .external_lex_state = 3}, [1110] = {.lex_state = 8, .external_lex_state = 3}, [1111] = {.lex_state = 2, .external_lex_state = 3}, [1112] = {.lex_state = 2, .external_lex_state = 3}, - [1113] = {.lex_state = 6, .external_lex_state = 2}, - [1114] = {.lex_state = 2, .external_lex_state = 3}, + [1113] = {.lex_state = 2, .external_lex_state = 3}, + [1114] = {.lex_state = 8, .external_lex_state = 3}, [1115] = {.lex_state = 2, .external_lex_state = 3}, [1116] = {.lex_state = 2, .external_lex_state = 3}, - [1117] = {.lex_state = 8, .external_lex_state = 3}, - [1118] = {.lex_state = 2, .external_lex_state = 3}, + [1117] = {.lex_state = 2, .external_lex_state = 3}, + [1118] = {.lex_state = 3, .external_lex_state = 3}, [1119] = {.lex_state = 8, .external_lex_state = 3}, [1120] = {.lex_state = 2, .external_lex_state = 3}, [1121] = {.lex_state = 2, .external_lex_state = 3}, - [1122] = {.lex_state = 8, .external_lex_state = 3}, + [1122] = {.lex_state = 2, .external_lex_state = 3}, [1123] = {.lex_state = 2, .external_lex_state = 3}, [1124] = {.lex_state = 2, .external_lex_state = 3}, [1125] = {.lex_state = 2, .external_lex_state = 3}, - [1126] = {.lex_state = 2, .external_lex_state = 3}, - [1127] = {.lex_state = 8, .external_lex_state = 3}, + [1126] = {.lex_state = 8, .external_lex_state = 3}, + [1127] = {.lex_state = 10, .external_lex_state = 3}, [1128] = {.lex_state = 2, .external_lex_state = 3}, - [1129] = {.lex_state = 6, .external_lex_state = 2}, - [1130] = {.lex_state = 10, .external_lex_state = 3}, + [1129] = {.lex_state = 2, .external_lex_state = 3}, + [1130] = {.lex_state = 2, .external_lex_state = 3}, [1131] = {.lex_state = 2, .external_lex_state = 3}, [1132] = {.lex_state = 2, .external_lex_state = 3}, - [1133] = {.lex_state = 3, .external_lex_state = 3}, - [1134] = {.lex_state = 8, .external_lex_state = 3}, + [1133] = {.lex_state = 2, .external_lex_state = 3}, + [1134] = {.lex_state = 2, .external_lex_state = 3}, [1135] = {.lex_state = 2, .external_lex_state = 3}, - [1136] = {.lex_state = 8, .external_lex_state = 3}, - [1137] = {.lex_state = 8, .external_lex_state = 3}, - [1138] = {.lex_state = 2, .external_lex_state = 3}, + [1136] = {.lex_state = 2, .external_lex_state = 3}, + [1137] = {.lex_state = 2, .external_lex_state = 3}, + [1138] = {.lex_state = 8, .external_lex_state = 3}, [1139] = {.lex_state = 2, .external_lex_state = 3}, - [1140] = {.lex_state = 2, .external_lex_state = 3}, + [1140] = {.lex_state = 8, .external_lex_state = 3}, [1141] = {.lex_state = 2, .external_lex_state = 3}, - [1142] = {.lex_state = 2, .external_lex_state = 3}, + [1142] = {.lex_state = 8, .external_lex_state = 3}, [1143] = {.lex_state = 2, .external_lex_state = 3}, [1144] = {.lex_state = 8, .external_lex_state = 3}, - [1145] = {.lex_state = 12, .external_lex_state = 3}, - [1146] = {.lex_state = 8, .external_lex_state = 3}, - [1147] = {.lex_state = 8, .external_lex_state = 3}, - [1148] = {.lex_state = 2, .external_lex_state = 3}, + [1145] = {.lex_state = 2, .external_lex_state = 3}, + [1146] = {.lex_state = 2, .external_lex_state = 3}, + [1147] = {.lex_state = 2, .external_lex_state = 3}, + [1148] = {.lex_state = 8, .external_lex_state = 3}, [1149] = {.lex_state = 2, .external_lex_state = 3}, [1150] = {.lex_state = 2, .external_lex_state = 3}, [1151] = {.lex_state = 2, .external_lex_state = 3}, - [1152] = {.lex_state = 2, .external_lex_state = 3}, + [1152] = {.lex_state = 8, .external_lex_state = 3}, [1153] = {.lex_state = 2, .external_lex_state = 3}, - [1154] = {.lex_state = 2, .external_lex_state = 3}, - [1155] = {.lex_state = 2, .external_lex_state = 3}, + [1154] = {.lex_state = 8, .external_lex_state = 3}, + [1155] = {.lex_state = 8, .external_lex_state = 3}, [1156] = {.lex_state = 8, .external_lex_state = 3}, - [1157] = {.lex_state = 2, .external_lex_state = 3}, - [1158] = {.lex_state = 2, .external_lex_state = 3}, - [1159] = {.lex_state = 8, .external_lex_state = 3}, - [1160] = {.lex_state = 2, .external_lex_state = 3}, - [1161] = {.lex_state = 2, .external_lex_state = 3}, + [1157] = {.lex_state = 8, .external_lex_state = 3}, + [1158] = {.lex_state = 8, .external_lex_state = 3}, + [1159] = {.lex_state = 2, .external_lex_state = 3}, + [1160] = {.lex_state = 6, .external_lex_state = 2}, + [1161] = {.lex_state = 12, .external_lex_state = 3}, [1162] = {.lex_state = 2, .external_lex_state = 3}, - [1163] = {.lex_state = 6, .external_lex_state = 2}, + [1163] = {.lex_state = 2, .external_lex_state = 3}, [1164] = {.lex_state = 2, .external_lex_state = 3}, [1165] = {.lex_state = 2, .external_lex_state = 3}, [1166] = {.lex_state = 2, .external_lex_state = 3}, @@ -18467,10 +18501,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1176] = {.lex_state = 2, .external_lex_state = 3}, [1177] = {.lex_state = 2, .external_lex_state = 3}, [1178] = {.lex_state = 2, .external_lex_state = 3}, - [1179] = {.lex_state = 6, .external_lex_state = 2}, + [1179] = {.lex_state = 2, .external_lex_state = 3}, [1180] = {.lex_state = 2, .external_lex_state = 3}, [1181] = {.lex_state = 2, .external_lex_state = 3}, - [1182] = {.lex_state = 6, .external_lex_state = 2}, + [1182] = {.lex_state = 2, .external_lex_state = 3}, [1183] = {.lex_state = 2, .external_lex_state = 3}, [1184] = {.lex_state = 2, .external_lex_state = 3}, [1185] = {.lex_state = 2, .external_lex_state = 3}, @@ -18479,10 +18513,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1188] = {.lex_state = 2, .external_lex_state = 3}, [1189] = {.lex_state = 2, .external_lex_state = 3}, [1190] = {.lex_state = 2, .external_lex_state = 3}, - [1191] = {.lex_state = 6, .external_lex_state = 2}, + [1191] = {.lex_state = 2, .external_lex_state = 3}, [1192] = {.lex_state = 2, .external_lex_state = 3}, [1193] = {.lex_state = 2, .external_lex_state = 3}, - [1194] = {.lex_state = 2, .external_lex_state = 3}, + [1194] = {.lex_state = 6, .external_lex_state = 2}, [1195] = {.lex_state = 2, .external_lex_state = 3}, [1196] = {.lex_state = 2, .external_lex_state = 3}, [1197] = {.lex_state = 2, .external_lex_state = 3}, @@ -18503,7 +18537,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1212] = {.lex_state = 2, .external_lex_state = 3}, [1213] = {.lex_state = 2, .external_lex_state = 3}, [1214] = {.lex_state = 2, .external_lex_state = 3}, - [1215] = {.lex_state = 2, .external_lex_state = 3}, + [1215] = {.lex_state = 6, .external_lex_state = 2}, [1216] = {.lex_state = 2, .external_lex_state = 3}, [1217] = {.lex_state = 2, .external_lex_state = 3}, [1218] = {.lex_state = 2, .external_lex_state = 3}, @@ -18518,7 +18552,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1227] = {.lex_state = 2, .external_lex_state = 3}, [1228] = {.lex_state = 2, .external_lex_state = 3}, [1229] = {.lex_state = 2, .external_lex_state = 3}, - [1230] = {.lex_state = 2, .external_lex_state = 3}, + [1230] = {.lex_state = 6, .external_lex_state = 2}, [1231] = {.lex_state = 2, .external_lex_state = 3}, [1232] = {.lex_state = 2, .external_lex_state = 3}, [1233] = {.lex_state = 2, .external_lex_state = 3}, @@ -18533,15 +18567,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1242] = {.lex_state = 2, .external_lex_state = 3}, [1243] = {.lex_state = 2, .external_lex_state = 3}, [1244] = {.lex_state = 2, .external_lex_state = 3}, - [1245] = {.lex_state = 2, .external_lex_state = 3}, - [1246] = {.lex_state = 2, .external_lex_state = 3}, + [1245] = {.lex_state = 4, .external_lex_state = 3}, + [1246] = {.lex_state = 6, .external_lex_state = 2}, [1247] = {.lex_state = 2, .external_lex_state = 3}, [1248] = {.lex_state = 2, .external_lex_state = 3}, [1249] = {.lex_state = 2, .external_lex_state = 3}, [1250] = {.lex_state = 2, .external_lex_state = 3}, [1251] = {.lex_state = 2, .external_lex_state = 3}, [1252] = {.lex_state = 2, .external_lex_state = 3}, - [1253] = {.lex_state = 4, .external_lex_state = 3}, + [1253] = {.lex_state = 2, .external_lex_state = 3}, [1254] = {.lex_state = 2, .external_lex_state = 3}, [1255] = {.lex_state = 2, .external_lex_state = 3}, [1256] = {.lex_state = 2, .external_lex_state = 3}, @@ -18551,7 +18585,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1260] = {.lex_state = 2, .external_lex_state = 3}, [1261] = {.lex_state = 2, .external_lex_state = 3}, [1262] = {.lex_state = 2, .external_lex_state = 3}, - [1263] = {.lex_state = 8, .external_lex_state = 3}, + [1263] = {.lex_state = 2, .external_lex_state = 3}, [1264] = {.lex_state = 2, .external_lex_state = 3}, [1265] = {.lex_state = 2, .external_lex_state = 3}, [1266] = {.lex_state = 2, .external_lex_state = 3}, @@ -18559,47 +18593,47 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1268] = {.lex_state = 2, .external_lex_state = 3}, [1269] = {.lex_state = 2, .external_lex_state = 3}, [1270] = {.lex_state = 2, .external_lex_state = 3}, - [1271] = {.lex_state = 2, .external_lex_state = 3}, - [1272] = {.lex_state = 2, .external_lex_state = 3}, - [1273] = {.lex_state = 8, .external_lex_state = 3}, + [1271] = {.lex_state = 8, .external_lex_state = 3}, + [1272] = {.lex_state = 8, .external_lex_state = 3}, + [1273] = {.lex_state = 2, .external_lex_state = 3}, [1274] = {.lex_state = 2, .external_lex_state = 3}, - [1275] = {.lex_state = 8, .external_lex_state = 3}, + [1275] = {.lex_state = 2, .external_lex_state = 3}, [1276] = {.lex_state = 2, .external_lex_state = 3}, [1277] = {.lex_state = 2, .external_lex_state = 3}, - [1278] = {.lex_state = 8, .external_lex_state = 3}, - [1279] = {.lex_state = 2, .external_lex_state = 3}, - [1280] = {.lex_state = 8, .external_lex_state = 3}, - [1281] = {.lex_state = 8, .external_lex_state = 3}, + [1278] = {.lex_state = 2, .external_lex_state = 3}, + [1279] = {.lex_state = 8, .external_lex_state = 3}, + [1280] = {.lex_state = 2, .external_lex_state = 3}, + [1281] = {.lex_state = 2, .external_lex_state = 3}, [1282] = {.lex_state = 8, .external_lex_state = 3}, - [1283] = {.lex_state = 8, .external_lex_state = 3}, + [1283] = {.lex_state = 2, .external_lex_state = 3}, [1284] = {.lex_state = 8, .external_lex_state = 3}, [1285] = {.lex_state = 8, .external_lex_state = 3}, [1286] = {.lex_state = 8, .external_lex_state = 3}, [1287] = {.lex_state = 8, .external_lex_state = 3}, [1288] = {.lex_state = 8, .external_lex_state = 3}, [1289] = {.lex_state = 8, .external_lex_state = 3}, - [1290] = {.lex_state = 2, .external_lex_state = 3}, + [1290] = {.lex_state = 8, .external_lex_state = 3}, [1291] = {.lex_state = 8, .external_lex_state = 3}, - [1292] = {.lex_state = 2, .external_lex_state = 3}, + [1292] = {.lex_state = 8, .external_lex_state = 3}, [1293] = {.lex_state = 8, .external_lex_state = 3}, - [1294] = {.lex_state = 2, .external_lex_state = 3}, - [1295] = {.lex_state = 8, .external_lex_state = 3}, - [1296] = {.lex_state = 2, .external_lex_state = 3}, + [1294] = {.lex_state = 8, .external_lex_state = 3}, + [1295] = {.lex_state = 2, .external_lex_state = 3}, + [1296] = {.lex_state = 8, .external_lex_state = 3}, [1297] = {.lex_state = 2, .external_lex_state = 3}, - [1298] = {.lex_state = 2, .external_lex_state = 3}, + [1298] = {.lex_state = 8, .external_lex_state = 3}, [1299] = {.lex_state = 8, .external_lex_state = 3}, [1300] = {.lex_state = 2, .external_lex_state = 3}, [1301] = {.lex_state = 2, .external_lex_state = 3}, [1302] = {.lex_state = 2, .external_lex_state = 3}, - [1303] = {.lex_state = 8, .external_lex_state = 3}, + [1303] = {.lex_state = 2, .external_lex_state = 3}, [1304] = {.lex_state = 8, .external_lex_state = 3}, - [1305] = {.lex_state = 8, .external_lex_state = 3}, - [1306] = {.lex_state = 2, .external_lex_state = 3}, + [1305] = {.lex_state = 2, .external_lex_state = 3}, + [1306] = {.lex_state = 8, .external_lex_state = 3}, [1307] = {.lex_state = 2, .external_lex_state = 3}, [1308] = {.lex_state = 2, .external_lex_state = 3}, [1309] = {.lex_state = 2, .external_lex_state = 3}, [1310] = {.lex_state = 2, .external_lex_state = 3}, - [1311] = {.lex_state = 2, .external_lex_state = 3}, + [1311] = {.lex_state = 8, .external_lex_state = 3}, [1312] = {.lex_state = 2, .external_lex_state = 3}, [1313] = {.lex_state = 2, .external_lex_state = 3}, [1314] = {.lex_state = 2, .external_lex_state = 3}, @@ -18701,10 +18735,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1410] = {.lex_state = 2, .external_lex_state = 3}, [1411] = {.lex_state = 2, .external_lex_state = 3}, [1412] = {.lex_state = 2, .external_lex_state = 3}, - [1413] = {.lex_state = 8, .external_lex_state = 3}, - [1414] = {.lex_state = 8, .external_lex_state = 3}, - [1415] = {.lex_state = 8, .external_lex_state = 3}, - [1416] = {.lex_state = 8, .external_lex_state = 3}, + [1413] = {.lex_state = 2, .external_lex_state = 3}, + [1414] = {.lex_state = 2, .external_lex_state = 3}, + [1415] = {.lex_state = 2, .external_lex_state = 3}, + [1416] = {.lex_state = 2, .external_lex_state = 3}, [1417] = {.lex_state = 8, .external_lex_state = 3}, [1418] = {.lex_state = 8, .external_lex_state = 3}, [1419] = {.lex_state = 8, .external_lex_state = 3}, @@ -18713,13 +18747,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1422] = {.lex_state = 8, .external_lex_state = 3}, [1423] = {.lex_state = 8, .external_lex_state = 3}, [1424] = {.lex_state = 8, .external_lex_state = 3}, - [1425] = {.lex_state = 11, .external_lex_state = 3}, - [1426] = {.lex_state = 19, .external_lex_state = 3}, - [1427] = {.lex_state = 19, .external_lex_state = 3}, - [1428] = {.lex_state = 11, .external_lex_state = 3}, + [1425] = {.lex_state = 8, .external_lex_state = 3}, + [1426] = {.lex_state = 8, .external_lex_state = 3}, + [1427] = {.lex_state = 8, .external_lex_state = 3}, + [1428] = {.lex_state = 8, .external_lex_state = 3}, [1429] = {.lex_state = 11, .external_lex_state = 3}, - [1430] = {.lex_state = 11, .external_lex_state = 3}, - [1431] = {.lex_state = 11, .external_lex_state = 3}, + [1430] = {.lex_state = 19, .external_lex_state = 3}, + [1431] = {.lex_state = 19, .external_lex_state = 3}, [1432] = {.lex_state = 11, .external_lex_state = 3}, [1433] = {.lex_state = 11, .external_lex_state = 3}, [1434] = {.lex_state = 11, .external_lex_state = 3}, @@ -18735,172 +18769,172 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1444] = {.lex_state = 19, .external_lex_state = 3}, [1445] = {.lex_state = 8, .external_lex_state = 3}, [1446] = {.lex_state = 11, .external_lex_state = 3}, - [1447] = {.lex_state = 19, .external_lex_state = 3}, - [1448] = {.lex_state = 3, .external_lex_state = 3}, + [1447] = {.lex_state = 11, .external_lex_state = 3}, + [1448] = {.lex_state = 11, .external_lex_state = 3}, [1449] = {.lex_state = 11, .external_lex_state = 3}, [1450] = {.lex_state = 11, .external_lex_state = 3}, [1451] = {.lex_state = 11, .external_lex_state = 3}, [1452] = {.lex_state = 19, .external_lex_state = 3}, - [1453] = {.lex_state = 20, .external_lex_state = 3}, - [1454] = {.lex_state = 8, .external_lex_state = 3}, - [1455] = {.lex_state = 3, .external_lex_state = 3}, - [1456] = {.lex_state = 19, .external_lex_state = 3}, + [1453] = {.lex_state = 19, .external_lex_state = 3}, + [1454] = {.lex_state = 3, .external_lex_state = 3}, + [1455] = {.lex_state = 19, .external_lex_state = 3}, + [1456] = {.lex_state = 11, .external_lex_state = 3}, [1457] = {.lex_state = 8, .external_lex_state = 3}, [1458] = {.lex_state = 8, .external_lex_state = 3}, - [1459] = {.lex_state = 19, .external_lex_state = 3}, - [1460] = {.lex_state = 11, .external_lex_state = 3}, + [1459] = {.lex_state = 20, .external_lex_state = 3}, + [1460] = {.lex_state = 19, .external_lex_state = 3}, [1461] = {.lex_state = 11, .external_lex_state = 3}, - [1462] = {.lex_state = 11, .external_lex_state = 3}, + [1462] = {.lex_state = 8, .external_lex_state = 3}, [1463] = {.lex_state = 11, .external_lex_state = 3}, - [1464] = {.lex_state = 11, .external_lex_state = 3}, + [1464] = {.lex_state = 3, .external_lex_state = 3}, [1465] = {.lex_state = 11, .external_lex_state = 3}, - [1466] = {.lex_state = 19, .external_lex_state = 3}, + [1466] = {.lex_state = 11, .external_lex_state = 3}, [1467] = {.lex_state = 11, .external_lex_state = 3}, - [1468] = {.lex_state = 19, .external_lex_state = 3}, - [1469] = {.lex_state = 19, .external_lex_state = 3}, + [1468] = {.lex_state = 11, .external_lex_state = 3}, + [1469] = {.lex_state = 11, .external_lex_state = 3}, [1470] = {.lex_state = 11, .external_lex_state = 3}, - [1471] = {.lex_state = 11, .external_lex_state = 3}, - [1472] = {.lex_state = 19, .external_lex_state = 3}, + [1471] = {.lex_state = 19, .external_lex_state = 3}, + [1472] = {.lex_state = 10, .external_lex_state = 3}, [1473] = {.lex_state = 19, .external_lex_state = 3}, [1474] = {.lex_state = 19, .external_lex_state = 3}, - [1475] = {.lex_state = 3, .external_lex_state = 3}, - [1476] = {.lex_state = 3, .external_lex_state = 3}, - [1477] = {.lex_state = 19, .external_lex_state = 3}, + [1475] = {.lex_state = 19, .external_lex_state = 3}, + [1476] = {.lex_state = 11, .external_lex_state = 3}, + [1477] = {.lex_state = 10, .external_lex_state = 3}, [1478] = {.lex_state = 19, .external_lex_state = 3}, [1479] = {.lex_state = 11, .external_lex_state = 3}, - [1480] = {.lex_state = 19, .external_lex_state = 3}, - [1481] = {.lex_state = 10, .external_lex_state = 3}, + [1480] = {.lex_state = 10, .external_lex_state = 3}, + [1481] = {.lex_state = 19, .external_lex_state = 3}, [1482] = {.lex_state = 19, .external_lex_state = 3}, - [1483] = {.lex_state = 10, .external_lex_state = 3}, - [1484] = {.lex_state = 10, .external_lex_state = 3}, - [1485] = {.lex_state = 11, .external_lex_state = 3}, - [1486] = {.lex_state = 11, .external_lex_state = 3}, + [1483] = {.lex_state = 11, .external_lex_state = 3}, + [1484] = {.lex_state = 19, .external_lex_state = 3}, + [1485] = {.lex_state = 3, .external_lex_state = 3}, + [1486] = {.lex_state = 19, .external_lex_state = 3}, [1487] = {.lex_state = 19, .external_lex_state = 3}, - [1488] = {.lex_state = 11, .external_lex_state = 3}, - [1489] = {.lex_state = 19, .external_lex_state = 3}, - [1490] = {.lex_state = 19, .external_lex_state = 3}, + [1488] = {.lex_state = 3, .external_lex_state = 3}, + [1489] = {.lex_state = 10, .external_lex_state = 3}, + [1490] = {.lex_state = 11, .external_lex_state = 3}, [1491] = {.lex_state = 19, .external_lex_state = 3}, [1492] = {.lex_state = 19, .external_lex_state = 3}, [1493] = {.lex_state = 19, .external_lex_state = 3}, [1494] = {.lex_state = 19, .external_lex_state = 3}, [1495] = {.lex_state = 19, .external_lex_state = 3}, - [1496] = {.lex_state = 19, .external_lex_state = 3}, - [1497] = {.lex_state = 11, .external_lex_state = 3}, + [1496] = {.lex_state = 10, .external_lex_state = 3}, + [1497] = {.lex_state = 19, .external_lex_state = 3}, [1498] = {.lex_state = 19, .external_lex_state = 3}, - [1499] = {.lex_state = 3, .external_lex_state = 3}, - [1500] = {.lex_state = 19, .external_lex_state = 3}, + [1499] = {.lex_state = 11, .external_lex_state = 3}, + [1500] = {.lex_state = 11, .external_lex_state = 3}, [1501] = {.lex_state = 19, .external_lex_state = 3}, [1502] = {.lex_state = 19, .external_lex_state = 3}, - [1503] = {.lex_state = 11, .external_lex_state = 3}, + [1503] = {.lex_state = 19, .external_lex_state = 3}, [1504] = {.lex_state = 11, .external_lex_state = 3}, [1505] = {.lex_state = 19, .external_lex_state = 3}, [1506] = {.lex_state = 11, .external_lex_state = 3}, - [1507] = {.lex_state = 19, .external_lex_state = 3}, + [1507] = {.lex_state = 11, .external_lex_state = 3}, [1508] = {.lex_state = 19, .external_lex_state = 3}, - [1509] = {.lex_state = 19, .external_lex_state = 3}, - [1510] = {.lex_state = 11, .external_lex_state = 3}, + [1509] = {.lex_state = 11, .external_lex_state = 3}, + [1510] = {.lex_state = 19, .external_lex_state = 3}, [1511] = {.lex_state = 19, .external_lex_state = 3}, - [1512] = {.lex_state = 10, .external_lex_state = 3}, - [1513] = {.lex_state = 19, .external_lex_state = 3}, - [1514] = {.lex_state = 11, .external_lex_state = 3}, + [1512] = {.lex_state = 19, .external_lex_state = 3}, + [1513] = {.lex_state = 11, .external_lex_state = 3}, + [1514] = {.lex_state = 19, .external_lex_state = 3}, [1515] = {.lex_state = 11, .external_lex_state = 3}, - [1516] = {.lex_state = 19, .external_lex_state = 3}, - [1517] = {.lex_state = 19, .external_lex_state = 3}, + [1516] = {.lex_state = 3, .external_lex_state = 3}, + [1517] = {.lex_state = 11, .external_lex_state = 3}, [1518] = {.lex_state = 19, .external_lex_state = 3}, - [1519] = {.lex_state = 19, .external_lex_state = 3}, + [1519] = {.lex_state = 10, .external_lex_state = 3}, [1520] = {.lex_state = 19, .external_lex_state = 3}, - [1521] = {.lex_state = 10, .external_lex_state = 3}, + [1521] = {.lex_state = 19, .external_lex_state = 3}, [1522] = {.lex_state = 10, .external_lex_state = 3}, - [1523] = {.lex_state = 10, .external_lex_state = 3}, - [1524] = {.lex_state = 11, .external_lex_state = 3}, + [1523] = {.lex_state = 19, .external_lex_state = 3}, + [1524] = {.lex_state = 19, .external_lex_state = 3}, [1525] = {.lex_state = 19, .external_lex_state = 3}, - [1526] = {.lex_state = 11, .external_lex_state = 3}, + [1526] = {.lex_state = 19, .external_lex_state = 3}, [1527] = {.lex_state = 11, .external_lex_state = 3}, - [1528] = {.lex_state = 19, .external_lex_state = 3}, - [1529] = {.lex_state = 10, .external_lex_state = 3}, + [1528] = {.lex_state = 11, .external_lex_state = 3}, + [1529] = {.lex_state = 19, .external_lex_state = 3}, [1530] = {.lex_state = 19, .external_lex_state = 3}, - [1531] = {.lex_state = 8, .external_lex_state = 3}, - [1532] = {.lex_state = 8, .external_lex_state = 3}, - [1533] = {.lex_state = 8, .external_lex_state = 3}, + [1531] = {.lex_state = 19, .external_lex_state = 3}, + [1532] = {.lex_state = 11, .external_lex_state = 3}, + [1533] = {.lex_state = 11, .external_lex_state = 3}, [1534] = {.lex_state = 11, .external_lex_state = 3}, [1535] = {.lex_state = 10, .external_lex_state = 3}, - [1536] = {.lex_state = 11, .external_lex_state = 3}, + [1536] = {.lex_state = 8, .external_lex_state = 3}, [1537] = {.lex_state = 11, .external_lex_state = 3}, - [1538] = {.lex_state = 11, .external_lex_state = 3}, + [1538] = {.lex_state = 19, .external_lex_state = 3}, [1539] = {.lex_state = 11, .external_lex_state = 3}, - [1540] = {.lex_state = 11, .external_lex_state = 3}, - [1541] = {.lex_state = 11, .external_lex_state = 3}, + [1540] = {.lex_state = 8, .external_lex_state = 3}, + [1541] = {.lex_state = 19, .external_lex_state = 3}, [1542] = {.lex_state = 11, .external_lex_state = 3}, - [1543] = {.lex_state = 8, .external_lex_state = 3}, - [1544] = {.lex_state = 8, .external_lex_state = 3}, - [1545] = {.lex_state = 11, .external_lex_state = 3}, - [1546] = {.lex_state = 10, .external_lex_state = 3}, - [1547] = {.lex_state = 19, .external_lex_state = 3}, - [1548] = {.lex_state = 19, .external_lex_state = 3}, - [1549] = {.lex_state = 10, .external_lex_state = 3}, - [1550] = {.lex_state = 8, .external_lex_state = 3}, - [1551] = {.lex_state = 11, .external_lex_state = 3}, + [1543] = {.lex_state = 11, .external_lex_state = 3}, + [1544] = {.lex_state = 10, .external_lex_state = 3}, + [1545] = {.lex_state = 8, .external_lex_state = 3}, + [1546] = {.lex_state = 8, .external_lex_state = 3}, + [1547] = {.lex_state = 11, .external_lex_state = 3}, + [1548] = {.lex_state = 11, .external_lex_state = 3}, + [1549] = {.lex_state = 19, .external_lex_state = 3}, + [1550] = {.lex_state = 11, .external_lex_state = 3}, + [1551] = {.lex_state = 10, .external_lex_state = 3}, [1552] = {.lex_state = 10, .external_lex_state = 3}, - [1553] = {.lex_state = 10, .external_lex_state = 3}, - [1554] = {.lex_state = 11, .external_lex_state = 3}, - [1555] = {.lex_state = 10, .external_lex_state = 3}, + [1553] = {.lex_state = 8, .external_lex_state = 3}, + [1554] = {.lex_state = 10, .external_lex_state = 3}, + [1555] = {.lex_state = 19, .external_lex_state = 3}, [1556] = {.lex_state = 8, .external_lex_state = 3}, [1557] = {.lex_state = 19, .external_lex_state = 3}, [1558] = {.lex_state = 8, .external_lex_state = 3}, [1559] = {.lex_state = 8, .external_lex_state = 3}, [1560] = {.lex_state = 8, .external_lex_state = 3}, - [1561] = {.lex_state = 19, .external_lex_state = 3}, - [1562] = {.lex_state = 19, .external_lex_state = 3}, - [1563] = {.lex_state = 19, .external_lex_state = 3}, - [1564] = {.lex_state = 19, .external_lex_state = 3}, - [1565] = {.lex_state = 8, .external_lex_state = 3}, - [1566] = {.lex_state = 19, .external_lex_state = 3}, - [1567] = {.lex_state = 8, .external_lex_state = 3}, + [1561] = {.lex_state = 10, .external_lex_state = 3}, + [1562] = {.lex_state = 8, .external_lex_state = 3}, + [1563] = {.lex_state = 10, .external_lex_state = 3}, + [1564] = {.lex_state = 8, .external_lex_state = 3}, + [1565] = {.lex_state = 19, .external_lex_state = 3}, + [1566] = {.lex_state = 10, .external_lex_state = 3}, + [1567] = {.lex_state = 19, .external_lex_state = 3}, [1568] = {.lex_state = 19, .external_lex_state = 3}, [1569] = {.lex_state = 8, .external_lex_state = 3}, - [1570] = {.lex_state = 8, .external_lex_state = 3}, - [1571] = {.lex_state = 8, .external_lex_state = 3}, - [1572] = {.lex_state = 8, .external_lex_state = 3}, - [1573] = {.lex_state = 8, .external_lex_state = 3}, + [1570] = {.lex_state = 19, .external_lex_state = 3}, + [1571] = {.lex_state = 11, .external_lex_state = 3}, + [1572] = {.lex_state = 19, .external_lex_state = 3}, + [1573] = {.lex_state = 19, .external_lex_state = 3}, [1574] = {.lex_state = 11, .external_lex_state = 3}, [1575] = {.lex_state = 8, .external_lex_state = 3}, [1576] = {.lex_state = 8, .external_lex_state = 3}, - [1577] = {.lex_state = 19, .external_lex_state = 3}, - [1578] = {.lex_state = 11, .external_lex_state = 3}, + [1577] = {.lex_state = 10, .external_lex_state = 3}, + [1578] = {.lex_state = 8, .external_lex_state = 3}, [1579] = {.lex_state = 8, .external_lex_state = 3}, - [1580] = {.lex_state = 19, .external_lex_state = 3}, + [1580] = {.lex_state = 8, .external_lex_state = 3}, [1581] = {.lex_state = 19, .external_lex_state = 3}, - [1582] = {.lex_state = 19, .external_lex_state = 3}, - [1583] = {.lex_state = 19, .external_lex_state = 3}, - [1584] = {.lex_state = 19, .external_lex_state = 3}, + [1582] = {.lex_state = 8, .external_lex_state = 3}, + [1583] = {.lex_state = 10, .external_lex_state = 3}, + [1584] = {.lex_state = 10, .external_lex_state = 3}, [1585] = {.lex_state = 10, .external_lex_state = 3}, - [1586] = {.lex_state = 8, .external_lex_state = 3}, + [1586] = {.lex_state = 19, .external_lex_state = 3}, [1587] = {.lex_state = 8, .external_lex_state = 3}, - [1588] = {.lex_state = 19, .external_lex_state = 3}, - [1589] = {.lex_state = 19, .external_lex_state = 3}, + [1588] = {.lex_state = 10, .external_lex_state = 3}, + [1589] = {.lex_state = 11, .external_lex_state = 3}, [1590] = {.lex_state = 19, .external_lex_state = 3}, - [1591] = {.lex_state = 8, .external_lex_state = 3}, + [1591] = {.lex_state = 10, .external_lex_state = 3}, [1592] = {.lex_state = 8, .external_lex_state = 3}, - [1593] = {.lex_state = 19, .external_lex_state = 3}, - [1594] = {.lex_state = 19, .external_lex_state = 3}, - [1595] = {.lex_state = 10, .external_lex_state = 3}, - [1596] = {.lex_state = 19, .external_lex_state = 3}, - [1597] = {.lex_state = 10, .external_lex_state = 3}, - [1598] = {.lex_state = 10, .external_lex_state = 3}, + [1593] = {.lex_state = 10, .external_lex_state = 3}, + [1594] = {.lex_state = 10, .external_lex_state = 3}, + [1595] = {.lex_state = 8, .external_lex_state = 3}, + [1596] = {.lex_state = 8, .external_lex_state = 3}, + [1597] = {.lex_state = 8, .external_lex_state = 3}, + [1598] = {.lex_state = 19, .external_lex_state = 3}, [1599] = {.lex_state = 19, .external_lex_state = 3}, - [1600] = {.lex_state = 10, .external_lex_state = 3}, + [1600] = {.lex_state = 8, .external_lex_state = 3}, [1601] = {.lex_state = 19, .external_lex_state = 3}, - [1602] = {.lex_state = 8, .external_lex_state = 3}, - [1603] = {.lex_state = 10, .external_lex_state = 3}, - [1604] = {.lex_state = 10, .external_lex_state = 3}, - [1605] = {.lex_state = 19, .external_lex_state = 3}, - [1606] = {.lex_state = 8, .external_lex_state = 3}, - [1607] = {.lex_state = 10, .external_lex_state = 3}, + [1602] = {.lex_state = 11, .external_lex_state = 3}, + [1603] = {.lex_state = 8, .external_lex_state = 3}, + [1604] = {.lex_state = 19, .external_lex_state = 3}, + [1605] = {.lex_state = 8, .external_lex_state = 3}, + [1606] = {.lex_state = 19, .external_lex_state = 3}, + [1607] = {.lex_state = 19, .external_lex_state = 3}, [1608] = {.lex_state = 19, .external_lex_state = 3}, - [1609] = {.lex_state = 8, .external_lex_state = 3}, - [1610] = {.lex_state = 10, .external_lex_state = 3}, - [1611] = {.lex_state = 8, .external_lex_state = 3}, - [1612] = {.lex_state = 8, .external_lex_state = 3}, + [1609] = {.lex_state = 19, .external_lex_state = 3}, + [1610] = {.lex_state = 19, .external_lex_state = 3}, + [1611] = {.lex_state = 19, .external_lex_state = 3}, + [1612] = {.lex_state = 19, .external_lex_state = 3}, [1613] = {.lex_state = 19, .external_lex_state = 3}, [1614] = {.lex_state = 19, .external_lex_state = 3}, [1615] = {.lex_state = 19, .external_lex_state = 3}, @@ -18908,669 +18942,669 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1617] = {.lex_state = 19, .external_lex_state = 3}, [1618] = {.lex_state = 19, .external_lex_state = 3}, [1619] = {.lex_state = 8, .external_lex_state = 3}, - [1620] = {.lex_state = 8, .external_lex_state = 3}, + [1620] = {.lex_state = 19, .external_lex_state = 3}, [1621] = {.lex_state = 8, .external_lex_state = 3}, - [1622] = {.lex_state = 11, .external_lex_state = 3}, + [1622] = {.lex_state = 8, .external_lex_state = 3}, [1623] = {.lex_state = 8, .external_lex_state = 3}, - [1624] = {.lex_state = 11, .external_lex_state = 3}, - [1625] = {.lex_state = 8, .external_lex_state = 3}, - [1626] = {.lex_state = 16, .external_lex_state = 3}, - [1627] = {.lex_state = 16, .external_lex_state = 3}, - [1628] = {.lex_state = 16, .external_lex_state = 3}, + [1624] = {.lex_state = 8, .external_lex_state = 3}, + [1625] = {.lex_state = 11, .external_lex_state = 3}, + [1626] = {.lex_state = 11, .external_lex_state = 3}, + [1627] = {.lex_state = 8, .external_lex_state = 3}, + [1628] = {.lex_state = 8, .external_lex_state = 3}, [1629] = {.lex_state = 8, .external_lex_state = 3}, [1630] = {.lex_state = 8, .external_lex_state = 3}, - [1631] = {.lex_state = 11, .external_lex_state = 3}, - [1632] = {.lex_state = 11, .external_lex_state = 3}, + [1631] = {.lex_state = 8, .external_lex_state = 3}, + [1632] = {.lex_state = 16, .external_lex_state = 3}, [1633] = {.lex_state = 8, .external_lex_state = 3}, - [1634] = {.lex_state = 8, .external_lex_state = 3}, - [1635] = {.lex_state = 11, .external_lex_state = 3}, - [1636] = {.lex_state = 8, .external_lex_state = 3}, - [1637] = {.lex_state = 11, .external_lex_state = 3}, + [1634] = {.lex_state = 11, .external_lex_state = 3}, + [1635] = {.lex_state = 8, .external_lex_state = 3}, + [1636] = {.lex_state = 11, .external_lex_state = 3}, + [1637] = {.lex_state = 16, .external_lex_state = 3}, [1638] = {.lex_state = 11, .external_lex_state = 3}, [1639] = {.lex_state = 8, .external_lex_state = 3}, - [1640] = {.lex_state = 11, .external_lex_state = 3}, + [1640] = {.lex_state = 8, .external_lex_state = 3}, [1641] = {.lex_state = 8, .external_lex_state = 3}, - [1642] = {.lex_state = 16, .external_lex_state = 3}, - [1643] = {.lex_state = 8, .external_lex_state = 3}, - [1644] = {.lex_state = 8, .external_lex_state = 3}, - [1645] = {.lex_state = 8, .external_lex_state = 3}, - [1646] = {.lex_state = 10, .external_lex_state = 3}, - [1647] = {.lex_state = 8, .external_lex_state = 3}, - [1648] = {.lex_state = 10, .external_lex_state = 3}, - [1649] = {.lex_state = 8, .external_lex_state = 3}, - [1650] = {.lex_state = 8, .external_lex_state = 3}, + [1642] = {.lex_state = 11, .external_lex_state = 3}, + [1643] = {.lex_state = 16, .external_lex_state = 3}, + [1644] = {.lex_state = 16, .external_lex_state = 3}, + [1645] = {.lex_state = 11, .external_lex_state = 3}, + [1646] = {.lex_state = 8, .external_lex_state = 3}, + [1647] = {.lex_state = 11, .external_lex_state = 3}, + [1648] = {.lex_state = 8, .external_lex_state = 3}, + [1649] = {.lex_state = 10, .external_lex_state = 3}, + [1650] = {.lex_state = 3, .external_lex_state = 3}, [1651] = {.lex_state = 8, .external_lex_state = 3}, - [1652] = {.lex_state = 3, .external_lex_state = 3}, - [1653] = {.lex_state = 10, .external_lex_state = 3}, - [1654] = {.lex_state = 11, .external_lex_state = 3}, - [1655] = {.lex_state = 11, .external_lex_state = 3}, - [1656] = {.lex_state = 3, .external_lex_state = 3}, - [1657] = {.lex_state = 3, .external_lex_state = 3}, - [1658] = {.lex_state = 3, .external_lex_state = 3}, - [1659] = {.lex_state = 11, .external_lex_state = 3}, + [1652] = {.lex_state = 8, .external_lex_state = 3}, + [1653] = {.lex_state = 8, .external_lex_state = 3}, + [1654] = {.lex_state = 10, .external_lex_state = 3}, + [1655] = {.lex_state = 8, .external_lex_state = 3}, + [1656] = {.lex_state = 8, .external_lex_state = 3}, + [1657] = {.lex_state = 11, .external_lex_state = 3}, + [1658] = {.lex_state = 11, .external_lex_state = 3}, + [1659] = {.lex_state = 21, .external_lex_state = 3}, [1660] = {.lex_state = 19, .external_lex_state = 3}, - [1661] = {.lex_state = 11, .external_lex_state = 3}, - [1662] = {.lex_state = 19, .external_lex_state = 3}, - [1663] = {.lex_state = 10, .external_lex_state = 3}, + [1661] = {.lex_state = 19, .external_lex_state = 3}, + [1662] = {.lex_state = 3, .external_lex_state = 3}, + [1663] = {.lex_state = 3, .external_lex_state = 3}, [1664] = {.lex_state = 3, .external_lex_state = 3}, - [1665] = {.lex_state = 11, .external_lex_state = 3}, - [1666] = {.lex_state = 3, .external_lex_state = 3}, - [1667] = {.lex_state = 19, .external_lex_state = 3}, - [1668] = {.lex_state = 11, .external_lex_state = 3}, + [1665] = {.lex_state = 19, .external_lex_state = 3}, + [1666] = {.lex_state = 11, .external_lex_state = 3}, + [1667] = {.lex_state = 11, .external_lex_state = 3}, + [1668] = {.lex_state = 3, .external_lex_state = 3}, [1669] = {.lex_state = 11, .external_lex_state = 3}, - [1670] = {.lex_state = 11, .external_lex_state = 3}, - [1671] = {.lex_state = 8, .external_lex_state = 3}, - [1672] = {.lex_state = 5, .external_lex_state = 3}, + [1670] = {.lex_state = 5, .external_lex_state = 3}, + [1671] = {.lex_state = 11, .external_lex_state = 3}, + [1672] = {.lex_state = 8, .external_lex_state = 3}, [1673] = {.lex_state = 19, .external_lex_state = 3}, - [1674] = {.lex_state = 21, .external_lex_state = 3}, - [1675] = {.lex_state = 10, .external_lex_state = 3}, - [1676] = {.lex_state = 19, .external_lex_state = 3}, - [1677] = {.lex_state = 5, .external_lex_state = 3}, - [1678] = {.lex_state = 16, .external_lex_state = 3}, - [1679] = {.lex_state = 5, .external_lex_state = 3}, - [1680] = {.lex_state = 19, .external_lex_state = 3}, + [1674] = {.lex_state = 11, .external_lex_state = 3}, + [1675] = {.lex_state = 11, .external_lex_state = 3}, + [1676] = {.lex_state = 3, .external_lex_state = 3}, + [1677] = {.lex_state = 10, .external_lex_state = 3}, + [1678] = {.lex_state = 10, .external_lex_state = 3}, + [1679] = {.lex_state = 3, .external_lex_state = 3}, + [1680] = {.lex_state = 10, .external_lex_state = 3}, [1681] = {.lex_state = 3, .external_lex_state = 3}, - [1682] = {.lex_state = 5, .external_lex_state = 3}, - [1683] = {.lex_state = 5, .external_lex_state = 3}, - [1684] = {.lex_state = 11, .external_lex_state = 3}, - [1685] = {.lex_state = 10, .external_lex_state = 3}, - [1686] = {.lex_state = 3, .external_lex_state = 3}, + [1682] = {.lex_state = 11, .external_lex_state = 3}, + [1683] = {.lex_state = 11, .external_lex_state = 3}, + [1684] = {.lex_state = 19, .external_lex_state = 3}, + [1685] = {.lex_state = 19, .external_lex_state = 3}, + [1686] = {.lex_state = 5, .external_lex_state = 3}, [1687] = {.lex_state = 19, .external_lex_state = 3}, - [1688] = {.lex_state = 19, .external_lex_state = 3}, - [1689] = {.lex_state = 11, .external_lex_state = 3}, - [1690] = {.lex_state = 0, .external_lex_state = 3}, - [1691] = {.lex_state = 19, .external_lex_state = 3}, - [1692] = {.lex_state = 11, .external_lex_state = 3}, - [1693] = {.lex_state = 11, .external_lex_state = 3}, + [1688] = {.lex_state = 5, .external_lex_state = 3}, + [1689] = {.lex_state = 19, .external_lex_state = 3}, + [1690] = {.lex_state = 11, .external_lex_state = 3}, + [1691] = {.lex_state = 5, .external_lex_state = 3}, + [1692] = {.lex_state = 5, .external_lex_state = 3}, + [1693] = {.lex_state = 3, .external_lex_state = 3}, [1694] = {.lex_state = 3, .external_lex_state = 3}, - [1695] = {.lex_state = 11, .external_lex_state = 3}, - [1696] = {.lex_state = 19, .external_lex_state = 3}, - [1697] = {.lex_state = 3, .external_lex_state = 3}, - [1698] = {.lex_state = 19, .external_lex_state = 3}, - [1699] = {.lex_state = 3, .external_lex_state = 3}, - [1700] = {.lex_state = 11, .external_lex_state = 3}, - [1701] = {.lex_state = 5, .external_lex_state = 3}, - [1702] = {.lex_state = 19, .external_lex_state = 3}, - [1703] = {.lex_state = 11, .external_lex_state = 3}, - [1704] = {.lex_state = 11, .external_lex_state = 3}, - [1705] = {.lex_state = 0, .external_lex_state = 3}, - [1706] = {.lex_state = 10, .external_lex_state = 3}, - [1707] = {.lex_state = 5, .external_lex_state = 3}, - [1708] = {.lex_state = 0, .external_lex_state = 3}, - [1709] = {.lex_state = 0, .external_lex_state = 3}, - [1710] = {.lex_state = 10, .external_lex_state = 3}, - [1711] = {.lex_state = 3, .external_lex_state = 3}, + [1695] = {.lex_state = 0, .external_lex_state = 3}, + [1696] = {.lex_state = 3, .external_lex_state = 3}, + [1697] = {.lex_state = 11, .external_lex_state = 3}, + [1698] = {.lex_state = 11, .external_lex_state = 3}, + [1699] = {.lex_state = 19, .external_lex_state = 3}, + [1700] = {.lex_state = 19, .external_lex_state = 3}, + [1701] = {.lex_state = 10, .external_lex_state = 3}, + [1702] = {.lex_state = 11, .external_lex_state = 3}, + [1703] = {.lex_state = 5, .external_lex_state = 3}, + [1704] = {.lex_state = 19, .external_lex_state = 3}, + [1705] = {.lex_state = 19, .external_lex_state = 3}, + [1706] = {.lex_state = 11, .external_lex_state = 3}, + [1707] = {.lex_state = 16, .external_lex_state = 3}, + [1708] = {.lex_state = 11, .external_lex_state = 3}, + [1709] = {.lex_state = 11, .external_lex_state = 3}, + [1710] = {.lex_state = 0, .external_lex_state = 3}, + [1711] = {.lex_state = 0, .external_lex_state = 3}, [1712] = {.lex_state = 0, .external_lex_state = 3}, [1713] = {.lex_state = 0, .external_lex_state = 3}, - [1714] = {.lex_state = 0, .external_lex_state = 3}, - [1715] = {.lex_state = 11, .external_lex_state = 3}, - [1716] = {.lex_state = 3, .external_lex_state = 3}, - [1717] = {.lex_state = 8, .external_lex_state = 3}, - [1718] = {.lex_state = 0, .external_lex_state = 3}, + [1714] = {.lex_state = 8, .external_lex_state = 3}, + [1715] = {.lex_state = 0, .external_lex_state = 3}, + [1716] = {.lex_state = 0, .external_lex_state = 3}, + [1717] = {.lex_state = 0, .external_lex_state = 3}, + [1718] = {.lex_state = 11, .external_lex_state = 3}, [1719] = {.lex_state = 8, .external_lex_state = 3}, - [1720] = {.lex_state = 5, .external_lex_state = 3}, - [1721] = {.lex_state = 3, .external_lex_state = 3}, - [1722] = {.lex_state = 11, .external_lex_state = 3}, - [1723] = {.lex_state = 0, .external_lex_state = 3}, - [1724] = {.lex_state = 11, .external_lex_state = 3}, + [1720] = {.lex_state = 3, .external_lex_state = 3}, + [1721] = {.lex_state = 8, .external_lex_state = 3}, + [1722] = {.lex_state = 0, .external_lex_state = 3}, + [1723] = {.lex_state = 3, .external_lex_state = 3}, + [1724] = {.lex_state = 0, .external_lex_state = 3}, [1725] = {.lex_state = 0, .external_lex_state = 3}, - [1726] = {.lex_state = 3, .external_lex_state = 3}, - [1727] = {.lex_state = 0, .external_lex_state = 3}, - [1728] = {.lex_state = 0, .external_lex_state = 3}, + [1726] = {.lex_state = 5, .external_lex_state = 3}, + [1727] = {.lex_state = 11, .external_lex_state = 3}, + [1728] = {.lex_state = 3, .external_lex_state = 3}, [1729] = {.lex_state = 0, .external_lex_state = 3}, [1730] = {.lex_state = 0, .external_lex_state = 3}, - [1731] = {.lex_state = 3, .external_lex_state = 3}, + [1731] = {.lex_state = 0, .external_lex_state = 3}, [1732] = {.lex_state = 0, .external_lex_state = 3}, [1733] = {.lex_state = 0, .external_lex_state = 3}, - [1734] = {.lex_state = 3, .external_lex_state = 3}, + [1734] = {.lex_state = 0, .external_lex_state = 3}, [1735] = {.lex_state = 3, .external_lex_state = 3}, - [1736] = {.lex_state = 0, .external_lex_state = 3}, - [1737] = {.lex_state = 0, .external_lex_state = 3}, + [1736] = {.lex_state = 11, .external_lex_state = 3}, + [1737] = {.lex_state = 10, .external_lex_state = 3}, [1738] = {.lex_state = 0, .external_lex_state = 3}, - [1739] = {.lex_state = 0, .external_lex_state = 3}, - [1740] = {.lex_state = 11, .external_lex_state = 3}, - [1741] = {.lex_state = 11, .external_lex_state = 3}, - [1742] = {.lex_state = 8, .external_lex_state = 3}, - [1743] = {.lex_state = 11, .external_lex_state = 3}, - [1744] = {.lex_state = 11, .external_lex_state = 3}, - [1745] = {.lex_state = 0, .external_lex_state = 3}, - [1746] = {.lex_state = 3, .external_lex_state = 3}, + [1739] = {.lex_state = 3, .external_lex_state = 3}, + [1740] = {.lex_state = 0, .external_lex_state = 3}, + [1741] = {.lex_state = 3, .external_lex_state = 3}, + [1742] = {.lex_state = 0, .external_lex_state = 3}, + [1743] = {.lex_state = 10, .external_lex_state = 3}, + [1744] = {.lex_state = 3, .external_lex_state = 3}, + [1745] = {.lex_state = 3, .external_lex_state = 3}, + [1746] = {.lex_state = 0, .external_lex_state = 3}, [1747] = {.lex_state = 0, .external_lex_state = 3}, - [1748] = {.lex_state = 0, .external_lex_state = 3}, - [1749] = {.lex_state = 5, .external_lex_state = 3}, + [1748] = {.lex_state = 11, .external_lex_state = 3}, + [1749] = {.lex_state = 0, .external_lex_state = 3}, [1750] = {.lex_state = 11, .external_lex_state = 3}, - [1751] = {.lex_state = 10, .external_lex_state = 3}, - [1752] = {.lex_state = 10, .external_lex_state = 3}, - [1753] = {.lex_state = 19, .external_lex_state = 3}, - [1754] = {.lex_state = 3, .external_lex_state = 3}, - [1755] = {.lex_state = 3, .external_lex_state = 3}, - [1756] = {.lex_state = 10, .external_lex_state = 3}, + [1751] = {.lex_state = 5, .external_lex_state = 3}, + [1752] = {.lex_state = 11, .external_lex_state = 3}, + [1753] = {.lex_state = 11, .external_lex_state = 3}, + [1754] = {.lex_state = 11, .external_lex_state = 3}, + [1755] = {.lex_state = 11, .external_lex_state = 3}, + [1756] = {.lex_state = 11, .external_lex_state = 3}, [1757] = {.lex_state = 11, .external_lex_state = 3}, - [1758] = {.lex_state = 10, .external_lex_state = 3}, - [1759] = {.lex_state = 10, .external_lex_state = 3}, + [1758] = {.lex_state = 12, .external_lex_state = 3}, + [1759] = {.lex_state = 5, .external_lex_state = 3}, [1760] = {.lex_state = 11, .external_lex_state = 3}, [1761] = {.lex_state = 3, .external_lex_state = 3}, - [1762] = {.lex_state = 19, .external_lex_state = 3}, - [1763] = {.lex_state = 11, .external_lex_state = 3}, - [1764] = {.lex_state = 19, .external_lex_state = 3}, - [1765] = {.lex_state = 8, .external_lex_state = 3}, - [1766] = {.lex_state = 5, .external_lex_state = 3}, - [1767] = {.lex_state = 0, .external_lex_state = 3}, - [1768] = {.lex_state = 19, .external_lex_state = 3}, - [1769] = {.lex_state = 11, .external_lex_state = 3}, - [1770] = {.lex_state = 11, .external_lex_state = 3}, + [1762] = {.lex_state = 8, .external_lex_state = 3}, + [1763] = {.lex_state = 19, .external_lex_state = 3}, + [1764] = {.lex_state = 11, .external_lex_state = 3}, + [1765] = {.lex_state = 11, .external_lex_state = 3}, + [1766] = {.lex_state = 11, .external_lex_state = 3}, + [1767] = {.lex_state = 10, .external_lex_state = 3}, + [1768] = {.lex_state = 10, .external_lex_state = 3}, + [1769] = {.lex_state = 10, .external_lex_state = 3}, + [1770] = {.lex_state = 19, .external_lex_state = 3}, [1771] = {.lex_state = 11, .external_lex_state = 3}, - [1772] = {.lex_state = 12, .external_lex_state = 3}, - [1773] = {.lex_state = 3, .external_lex_state = 3}, - [1774] = {.lex_state = 11, .external_lex_state = 3}, - [1775] = {.lex_state = 11, .external_lex_state = 3}, + [1772] = {.lex_state = 10, .external_lex_state = 3}, + [1773] = {.lex_state = 11, .external_lex_state = 3}, + [1774] = {.lex_state = 10, .external_lex_state = 3}, + [1775] = {.lex_state = 19, .external_lex_state = 3}, [1776] = {.lex_state = 19, .external_lex_state = 3}, - [1777] = {.lex_state = 19, .external_lex_state = 3}, - [1778] = {.lex_state = 12, .external_lex_state = 3}, - [1779] = {.lex_state = 12, .external_lex_state = 3}, - [1780] = {.lex_state = 8, .external_lex_state = 3}, - [1781] = {.lex_state = 19, .external_lex_state = 3}, - [1782] = {.lex_state = 11, .external_lex_state = 3}, - [1783] = {.lex_state = 11, .external_lex_state = 3}, - [1784] = {.lex_state = 19, .external_lex_state = 3}, - [1785] = {.lex_state = 11, .external_lex_state = 3}, + [1777] = {.lex_state = 8, .external_lex_state = 3}, + [1778] = {.lex_state = 3, .external_lex_state = 3}, + [1779] = {.lex_state = 11, .external_lex_state = 3}, + [1780] = {.lex_state = 3, .external_lex_state = 3}, + [1781] = {.lex_state = 11, .external_lex_state = 3}, + [1782] = {.lex_state = 19, .external_lex_state = 3}, + [1783] = {.lex_state = 19, .external_lex_state = 3}, + [1784] = {.lex_state = 0, .external_lex_state = 3}, + [1785] = {.lex_state = 19, .external_lex_state = 3}, [1786] = {.lex_state = 11, .external_lex_state = 3}, - [1787] = {.lex_state = 19, .external_lex_state = 3}, - [1788] = {.lex_state = 8, .external_lex_state = 3}, - [1789] = {.lex_state = 3, .external_lex_state = 3}, - [1790] = {.lex_state = 8, .external_lex_state = 3}, + [1787] = {.lex_state = 11, .external_lex_state = 3}, + [1788] = {.lex_state = 3, .external_lex_state = 3}, + [1789] = {.lex_state = 10, .external_lex_state = 3}, + [1790] = {.lex_state = 11, .external_lex_state = 3}, [1791] = {.lex_state = 11, .external_lex_state = 3}, [1792] = {.lex_state = 11, .external_lex_state = 3}, - [1793] = {.lex_state = 11, .external_lex_state = 3}, + [1793] = {.lex_state = 3, .external_lex_state = 3}, [1794] = {.lex_state = 10, .external_lex_state = 3}, - [1795] = {.lex_state = 11, .external_lex_state = 3}, - [1796] = {.lex_state = 19, .external_lex_state = 3}, - [1797] = {.lex_state = 12, .external_lex_state = 3}, - [1798] = {.lex_state = 5, .external_lex_state = 3}, - [1799] = {.lex_state = 3, .external_lex_state = 3}, - [1800] = {.lex_state = 3, .external_lex_state = 3}, - [1801] = {.lex_state = 12, .external_lex_state = 3}, - [1802] = {.lex_state = 12, .external_lex_state = 3}, - [1803] = {.lex_state = 20, .external_lex_state = 3}, - [1804] = {.lex_state = 11, .external_lex_state = 3}, - [1805] = {.lex_state = 11, .external_lex_state = 3}, + [1795] = {.lex_state = 3, .external_lex_state = 3}, + [1796] = {.lex_state = 3, .external_lex_state = 3}, + [1797] = {.lex_state = 11, .external_lex_state = 3}, + [1798] = {.lex_state = 19, .external_lex_state = 3}, + [1799] = {.lex_state = 11, .external_lex_state = 3}, + [1800] = {.lex_state = 12, .external_lex_state = 3}, + [1801] = {.lex_state = 8, .external_lex_state = 3}, + [1802] = {.lex_state = 3, .external_lex_state = 3}, + [1803] = {.lex_state = 3, .external_lex_state = 3}, + [1804] = {.lex_state = 3, .external_lex_state = 3}, + [1805] = {.lex_state = 12, .external_lex_state = 3}, [1806] = {.lex_state = 11, .external_lex_state = 3}, [1807] = {.lex_state = 11, .external_lex_state = 3}, [1808] = {.lex_state = 11, .external_lex_state = 3}, - [1809] = {.lex_state = 20, .external_lex_state = 3}, + [1809] = {.lex_state = 3, .external_lex_state = 3}, [1810] = {.lex_state = 11, .external_lex_state = 3}, - [1811] = {.lex_state = 10, .external_lex_state = 3}, - [1812] = {.lex_state = 11, .external_lex_state = 3}, - [1813] = {.lex_state = 11, .external_lex_state = 3}, - [1814] = {.lex_state = 19, .external_lex_state = 3}, - [1815] = {.lex_state = 3, .external_lex_state = 3}, - [1816] = {.lex_state = 63, .external_lex_state = 3}, - [1817] = {.lex_state = 3, .external_lex_state = 3}, + [1811] = {.lex_state = 19, .external_lex_state = 3}, + [1812] = {.lex_state = 3, .external_lex_state = 3}, + [1813] = {.lex_state = 12, .external_lex_state = 3}, + [1814] = {.lex_state = 11, .external_lex_state = 3}, + [1815] = {.lex_state = 11, .external_lex_state = 3}, + [1816] = {.lex_state = 11, .external_lex_state = 3}, + [1817] = {.lex_state = 11, .external_lex_state = 3}, [1818] = {.lex_state = 11, .external_lex_state = 3}, - [1819] = {.lex_state = 11, .external_lex_state = 3}, - [1820] = {.lex_state = 19, .external_lex_state = 3}, - [1821] = {.lex_state = 8, .external_lex_state = 3}, - [1822] = {.lex_state = 3, .external_lex_state = 3}, - [1823] = {.lex_state = 11, .external_lex_state = 3}, - [1824] = {.lex_state = 10, .external_lex_state = 3}, - [1825] = {.lex_state = 11, .external_lex_state = 3}, - [1826] = {.lex_state = 5, .external_lex_state = 3}, - [1827] = {.lex_state = 12, .external_lex_state = 3}, - [1828] = {.lex_state = 3, .external_lex_state = 3}, - [1829] = {.lex_state = 8, .external_lex_state = 3}, - [1830] = {.lex_state = 11, .external_lex_state = 3}, - [1831] = {.lex_state = 11, .external_lex_state = 3}, - [1832] = {.lex_state = 11, .external_lex_state = 3}, - [1833] = {.lex_state = 20, .external_lex_state = 3}, - [1834] = {.lex_state = 11, .external_lex_state = 3}, - [1835] = {.lex_state = 11, .external_lex_state = 3}, - [1836] = {.lex_state = 11, .external_lex_state = 3}, - [1837] = {.lex_state = 3, .external_lex_state = 3}, - [1838] = {.lex_state = 11, .external_lex_state = 3}, + [1819] = {.lex_state = 8, .external_lex_state = 3}, + [1820] = {.lex_state = 63, .external_lex_state = 3}, + [1821] = {.lex_state = 11, .external_lex_state = 3}, + [1822] = {.lex_state = 20, .external_lex_state = 3}, + [1823] = {.lex_state = 19, .external_lex_state = 3}, + [1824] = {.lex_state = 11, .external_lex_state = 3}, + [1825] = {.lex_state = 12, .external_lex_state = 3}, + [1826] = {.lex_state = 8, .external_lex_state = 3}, + [1827] = {.lex_state = 10, .external_lex_state = 3}, + [1828] = {.lex_state = 11, .external_lex_state = 3}, + [1829] = {.lex_state = 11, .external_lex_state = 3}, + [1830] = {.lex_state = 10, .external_lex_state = 3}, + [1831] = {.lex_state = 10, .external_lex_state = 3}, + [1832] = {.lex_state = 10, .external_lex_state = 3}, + [1833] = {.lex_state = 11, .external_lex_state = 3}, + [1834] = {.lex_state = 19, .external_lex_state = 3}, + [1835] = {.lex_state = 8, .external_lex_state = 3}, + [1836] = {.lex_state = 3, .external_lex_state = 3}, + [1837] = {.lex_state = 19, .external_lex_state = 3}, + [1838] = {.lex_state = 19, .external_lex_state = 3}, [1839] = {.lex_state = 11, .external_lex_state = 3}, [1840] = {.lex_state = 11, .external_lex_state = 3}, - [1841] = {.lex_state = 11, .external_lex_state = 3}, - [1842] = {.lex_state = 11, .external_lex_state = 3}, + [1841] = {.lex_state = 19, .external_lex_state = 3}, + [1842] = {.lex_state = 19, .external_lex_state = 3}, [1843] = {.lex_state = 11, .external_lex_state = 3}, [1844] = {.lex_state = 11, .external_lex_state = 3}, [1845] = {.lex_state = 11, .external_lex_state = 3}, - [1846] = {.lex_state = 11, .external_lex_state = 3}, - [1847] = {.lex_state = 0, .external_lex_state = 3}, - [1848] = {.lex_state = 19, .external_lex_state = 3}, - [1849] = {.lex_state = 19, .external_lex_state = 3}, - [1850] = {.lex_state = 10, .external_lex_state = 3}, - [1851] = {.lex_state = 10, .external_lex_state = 3}, + [1846] = {.lex_state = 0, .external_lex_state = 3}, + [1847] = {.lex_state = 10, .external_lex_state = 3}, + [1848] = {.lex_state = 10, .external_lex_state = 3}, + [1849] = {.lex_state = 11, .external_lex_state = 3}, + [1850] = {.lex_state = 11, .external_lex_state = 3}, + [1851] = {.lex_state = 11, .external_lex_state = 3}, [1852] = {.lex_state = 10, .external_lex_state = 3}, - [1853] = {.lex_state = 11, .external_lex_state = 3}, - [1854] = {.lex_state = 11, .external_lex_state = 3}, + [1853] = {.lex_state = 10, .external_lex_state = 3}, + [1854] = {.lex_state = 12, .external_lex_state = 3}, [1855] = {.lex_state = 10, .external_lex_state = 3}, - [1856] = {.lex_state = 10, .external_lex_state = 3}, + [1856] = {.lex_state = 3, .external_lex_state = 3}, [1857] = {.lex_state = 10, .external_lex_state = 3}, - [1858] = {.lex_state = 19, .external_lex_state = 3}, - [1859] = {.lex_state = 10, .external_lex_state = 3}, + [1858] = {.lex_state = 11, .external_lex_state = 3}, + [1859] = {.lex_state = 8, .external_lex_state = 3}, [1860] = {.lex_state = 8, .external_lex_state = 3}, - [1861] = {.lex_state = 11, .external_lex_state = 3}, - [1862] = {.lex_state = 3, .external_lex_state = 3}, - [1863] = {.lex_state = 3, .external_lex_state = 3}, + [1861] = {.lex_state = 3, .external_lex_state = 3}, + [1862] = {.lex_state = 10, .external_lex_state = 3}, + [1863] = {.lex_state = 11, .external_lex_state = 3}, [1864] = {.lex_state = 11, .external_lex_state = 3}, - [1865] = {.lex_state = 11, .external_lex_state = 3}, - [1866] = {.lex_state = 12, .external_lex_state = 3}, - [1867] = {.lex_state = 8, .external_lex_state = 3}, - [1868] = {.lex_state = 8, .external_lex_state = 3}, - [1869] = {.lex_state = 19, .external_lex_state = 3}, - [1870] = {.lex_state = 3, .external_lex_state = 3}, - [1871] = {.lex_state = 10, .external_lex_state = 3}, - [1872] = {.lex_state = 10, .external_lex_state = 3}, - [1873] = {.lex_state = 0, .external_lex_state = 3}, - [1874] = {.lex_state = 63, .external_lex_state = 3}, - [1875] = {.lex_state = 3, .external_lex_state = 3}, - [1876] = {.lex_state = 10, .external_lex_state = 3}, - [1877] = {.lex_state = 10, .external_lex_state = 3}, - [1878] = {.lex_state = 10, .external_lex_state = 3}, - [1879] = {.lex_state = 8, .external_lex_state = 3}, - [1880] = {.lex_state = 3, .external_lex_state = 3}, - [1881] = {.lex_state = 5, .external_lex_state = 4}, - [1882] = {.lex_state = 8, .external_lex_state = 3}, + [1865] = {.lex_state = 5, .external_lex_state = 3}, + [1866] = {.lex_state = 11, .external_lex_state = 3}, + [1867] = {.lex_state = 11, .external_lex_state = 3}, + [1868] = {.lex_state = 3, .external_lex_state = 3}, + [1869] = {.lex_state = 10, .external_lex_state = 3}, + [1870] = {.lex_state = 10, .external_lex_state = 3}, + [1871] = {.lex_state = 0, .external_lex_state = 3}, + [1872] = {.lex_state = 11, .external_lex_state = 3}, + [1873] = {.lex_state = 20, .external_lex_state = 3}, + [1874] = {.lex_state = 20, .external_lex_state = 3}, + [1875] = {.lex_state = 12, .external_lex_state = 3}, + [1876] = {.lex_state = 11, .external_lex_state = 3}, + [1877] = {.lex_state = 63, .external_lex_state = 3}, + [1878] = {.lex_state = 8, .external_lex_state = 3}, + [1879] = {.lex_state = 5, .external_lex_state = 3}, + [1880] = {.lex_state = 19, .external_lex_state = 3}, + [1881] = {.lex_state = 5, .external_lex_state = 3}, + [1882] = {.lex_state = 12, .external_lex_state = 3}, [1883] = {.lex_state = 3, .external_lex_state = 3}, - [1884] = {.lex_state = 3, .external_lex_state = 3}, - [1885] = {.lex_state = 5, .external_lex_state = 4}, - [1886] = {.lex_state = 8, .external_lex_state = 3}, - [1887] = {.lex_state = 5, .external_lex_state = 4}, - [1888] = {.lex_state = 0, .external_lex_state = 3}, + [1884] = {.lex_state = 0, .external_lex_state = 3}, + [1885] = {.lex_state = 12, .external_lex_state = 3}, + [1886] = {.lex_state = 12, .external_lex_state = 3}, + [1887] = {.lex_state = 12, .external_lex_state = 3}, + [1888] = {.lex_state = 12, .external_lex_state = 3}, [1889] = {.lex_state = 19, .external_lex_state = 3}, - [1890] = {.lex_state = 3, .external_lex_state = 3}, - [1891] = {.lex_state = 19, .external_lex_state = 3}, + [1890] = {.lex_state = 0, .external_lex_state = 3}, + [1891] = {.lex_state = 12, .external_lex_state = 3}, [1892] = {.lex_state = 19, .external_lex_state = 3}, - [1893] = {.lex_state = 8, .external_lex_state = 3}, - [1894] = {.lex_state = 19, .external_lex_state = 3}, - [1895] = {.lex_state = 8, .external_lex_state = 3}, - [1896] = {.lex_state = 3, .external_lex_state = 3}, + [1893] = {.lex_state = 19, .external_lex_state = 3}, + [1894] = {.lex_state = 0, .external_lex_state = 3}, + [1895] = {.lex_state = 19, .external_lex_state = 3}, + [1896] = {.lex_state = 0, .external_lex_state = 3}, [1897] = {.lex_state = 5, .external_lex_state = 4}, - [1898] = {.lex_state = 19, .external_lex_state = 3}, - [1899] = {.lex_state = 3, .external_lex_state = 3}, - [1900] = {.lex_state = 5, .external_lex_state = 4}, - [1901] = {.lex_state = 0, .external_lex_state = 3}, - [1902] = {.lex_state = 5, .external_lex_state = 4}, + [1898] = {.lex_state = 8, .external_lex_state = 3}, + [1899] = {.lex_state = 19, .external_lex_state = 3}, + [1900] = {.lex_state = 19, .external_lex_state = 3}, + [1901] = {.lex_state = 19, .external_lex_state = 3}, + [1902] = {.lex_state = 3, .external_lex_state = 3}, [1903] = {.lex_state = 19, .external_lex_state = 3}, - [1904] = {.lex_state = 19, .external_lex_state = 3}, - [1905] = {.lex_state = 0, .external_lex_state = 3}, - [1906] = {.lex_state = 3, .external_lex_state = 3}, - [1907] = {.lex_state = 19, .external_lex_state = 3}, - [1908] = {.lex_state = 3, .external_lex_state = 3}, - [1909] = {.lex_state = 8, .external_lex_state = 3}, + [1904] = {.lex_state = 63, .external_lex_state = 3}, + [1905] = {.lex_state = 8, .external_lex_state = 3}, + [1906] = {.lex_state = 21, .external_lex_state = 3}, + [1907] = {.lex_state = 0, .external_lex_state = 3}, + [1908] = {.lex_state = 12, .external_lex_state = 3}, + [1909] = {.lex_state = 19, .external_lex_state = 3}, [1910] = {.lex_state = 3, .external_lex_state = 3}, [1911] = {.lex_state = 3, .external_lex_state = 3}, - [1912] = {.lex_state = 3, .external_lex_state = 3}, - [1913] = {.lex_state = 0, .external_lex_state = 3}, + [1912] = {.lex_state = 21, .external_lex_state = 3}, + [1913] = {.lex_state = 3, .external_lex_state = 3}, [1914] = {.lex_state = 19, .external_lex_state = 3}, - [1915] = {.lex_state = 3, .external_lex_state = 3}, - [1916] = {.lex_state = 0, .external_lex_state = 3}, + [1915] = {.lex_state = 5, .external_lex_state = 4}, + [1916] = {.lex_state = 3, .external_lex_state = 3}, [1917] = {.lex_state = 8, .external_lex_state = 3}, - [1918] = {.lex_state = 8, .external_lex_state = 3}, - [1919] = {.lex_state = 3, .external_lex_state = 3}, - [1920] = {.lex_state = 21, .external_lex_state = 3}, - [1921] = {.lex_state = 0, .external_lex_state = 3}, + [1918] = {.lex_state = 5, .external_lex_state = 4}, + [1919] = {.lex_state = 5, .external_lex_state = 4}, + [1920] = {.lex_state = 3, .external_lex_state = 3}, + [1921] = {.lex_state = 8, .external_lex_state = 3}, [1922] = {.lex_state = 8, .external_lex_state = 3}, - [1923] = {.lex_state = 19, .external_lex_state = 3}, - [1924] = {.lex_state = 63, .external_lex_state = 3}, - [1925] = {.lex_state = 19, .external_lex_state = 3}, - [1926] = {.lex_state = 12, .external_lex_state = 3}, + [1923] = {.lex_state = 8, .external_lex_state = 3}, + [1924] = {.lex_state = 8, .external_lex_state = 3}, + [1925] = {.lex_state = 3, .external_lex_state = 3}, + [1926] = {.lex_state = 19, .external_lex_state = 3}, [1927] = {.lex_state = 8, .external_lex_state = 3}, - [1928] = {.lex_state = 3, .external_lex_state = 3}, - [1929] = {.lex_state = 8, .external_lex_state = 3}, - [1930] = {.lex_state = 63, .external_lex_state = 3}, - [1931] = {.lex_state = 5, .external_lex_state = 4}, - [1932] = {.lex_state = 3, .external_lex_state = 3}, - [1933] = {.lex_state = 12, .external_lex_state = 3}, - [1934] = {.lex_state = 3, .external_lex_state = 3}, + [1928] = {.lex_state = 5, .external_lex_state = 4}, + [1929] = {.lex_state = 19, .external_lex_state = 3}, + [1930] = {.lex_state = 3, .external_lex_state = 3}, + [1931] = {.lex_state = 3, .external_lex_state = 3}, + [1932] = {.lex_state = 19, .external_lex_state = 3}, + [1933] = {.lex_state = 3, .external_lex_state = 3}, + [1934] = {.lex_state = 0, .external_lex_state = 3}, [1935] = {.lex_state = 19, .external_lex_state = 3}, - [1936] = {.lex_state = 3, .external_lex_state = 3}, - [1937] = {.lex_state = 63, .external_lex_state = 3}, - [1938] = {.lex_state = 19, .external_lex_state = 3}, - [1939] = {.lex_state = 0, .external_lex_state = 3}, - [1940] = {.lex_state = 5, .external_lex_state = 4}, - [1941] = {.lex_state = 12, .external_lex_state = 3}, - [1942] = {.lex_state = 19, .external_lex_state = 3}, - [1943] = {.lex_state = 8, .external_lex_state = 3}, - [1944] = {.lex_state = 12, .external_lex_state = 3}, - [1945] = {.lex_state = 12, .external_lex_state = 3}, - [1946] = {.lex_state = 0, .external_lex_state = 3}, - [1947] = {.lex_state = 19, .external_lex_state = 3}, - [1948] = {.lex_state = 12, .external_lex_state = 3}, - [1949] = {.lex_state = 19, .external_lex_state = 3}, - [1950] = {.lex_state = 21, .external_lex_state = 3}, - [1951] = {.lex_state = 3, .external_lex_state = 3}, - [1952] = {.lex_state = 8, .external_lex_state = 3}, - [1953] = {.lex_state = 5, .external_lex_state = 4}, - [1954] = {.lex_state = 0, .external_lex_state = 3}, - [1955] = {.lex_state = 8, .external_lex_state = 3}, - [1956] = {.lex_state = 8, .external_lex_state = 3}, + [1936] = {.lex_state = 5, .external_lex_state = 4}, + [1937] = {.lex_state = 8, .external_lex_state = 3}, + [1938] = {.lex_state = 5, .external_lex_state = 4}, + [1939] = {.lex_state = 8, .external_lex_state = 3}, + [1940] = {.lex_state = 3, .external_lex_state = 3}, + [1941] = {.lex_state = 3, .external_lex_state = 3}, + [1942] = {.lex_state = 0, .external_lex_state = 3}, + [1943] = {.lex_state = 63, .external_lex_state = 3}, + [1944] = {.lex_state = 3, .external_lex_state = 3}, + [1945] = {.lex_state = 8, .external_lex_state = 3}, + [1946] = {.lex_state = 63, .external_lex_state = 3}, + [1947] = {.lex_state = 3, .external_lex_state = 3}, + [1948] = {.lex_state = 0, .external_lex_state = 3}, + [1949] = {.lex_state = 3, .external_lex_state = 3}, + [1950] = {.lex_state = 5, .external_lex_state = 4}, + [1951] = {.lex_state = 19, .external_lex_state = 3}, + [1952] = {.lex_state = 3, .external_lex_state = 3}, + [1953] = {.lex_state = 0, .external_lex_state = 3}, + [1954] = {.lex_state = 8, .external_lex_state = 3}, + [1955] = {.lex_state = 19, .external_lex_state = 3}, + [1956] = {.lex_state = 3, .external_lex_state = 3}, [1957] = {.lex_state = 8, .external_lex_state = 3}, - [1958] = {.lex_state = 8, .external_lex_state = 3}, + [1958] = {.lex_state = 5, .external_lex_state = 4}, [1959] = {.lex_state = 8, .external_lex_state = 3}, - [1960] = {.lex_state = 0, .external_lex_state = 3}, - [1961] = {.lex_state = 8, .external_lex_state = 3}, - [1962] = {.lex_state = 8, .external_lex_state = 3}, - [1963] = {.lex_state = 8, .external_lex_state = 3}, - [1964] = {.lex_state = 63, .external_lex_state = 3}, - [1965] = {.lex_state = 8, .external_lex_state = 3}, - [1966] = {.lex_state = 8, .external_lex_state = 3}, - [1967] = {.lex_state = 11, .external_lex_state = 3}, - [1968] = {.lex_state = 22, .external_lex_state = 3}, - [1969] = {.lex_state = 19, .external_lex_state = 3}, + [1960] = {.lex_state = 8, .external_lex_state = 3}, + [1961] = {.lex_state = 0, .external_lex_state = 3}, + [1962] = {.lex_state = 19, .external_lex_state = 3}, + [1963] = {.lex_state = 22, .external_lex_state = 3}, + [1964] = {.lex_state = 8, .external_lex_state = 3}, + [1965] = {.lex_state = 3, .external_lex_state = 3}, + [1966] = {.lex_state = 63, .external_lex_state = 3}, + [1967] = {.lex_state = 8, .external_lex_state = 3}, + [1968] = {.lex_state = 8, .external_lex_state = 3}, + [1969] = {.lex_state = 8, .external_lex_state = 3}, [1970] = {.lex_state = 8, .external_lex_state = 3}, [1971] = {.lex_state = 8, .external_lex_state = 3}, [1972] = {.lex_state = 8, .external_lex_state = 3}, [1973] = {.lex_state = 8, .external_lex_state = 3}, [1974] = {.lex_state = 8, .external_lex_state = 3}, - [1975] = {.lex_state = 19, .external_lex_state = 3}, - [1976] = {.lex_state = 3, .external_lex_state = 3}, - [1977] = {.lex_state = 63, .external_lex_state = 3}, - [1978] = {.lex_state = 3, .external_lex_state = 3}, - [1979] = {.lex_state = 8, .external_lex_state = 3}, - [1980] = {.lex_state = 8, .external_lex_state = 3}, + [1975] = {.lex_state = 8, .external_lex_state = 3}, + [1976] = {.lex_state = 0, .external_lex_state = 3}, + [1977] = {.lex_state = 3, .external_lex_state = 3}, + [1978] = {.lex_state = 63, .external_lex_state = 3}, + [1979] = {.lex_state = 63, .external_lex_state = 3}, + [1980] = {.lex_state = 63, .external_lex_state = 3}, [1981] = {.lex_state = 8, .external_lex_state = 3}, [1982] = {.lex_state = 8, .external_lex_state = 3}, [1983] = {.lex_state = 8, .external_lex_state = 3}, - [1984] = {.lex_state = 63, .external_lex_state = 3}, + [1984] = {.lex_state = 8, .external_lex_state = 3}, [1985] = {.lex_state = 8, .external_lex_state = 3}, - [1986] = {.lex_state = 0, .external_lex_state = 3}, - [1987] = {.lex_state = 8, .external_lex_state = 3}, - [1988] = {.lex_state = 8, .external_lex_state = 3}, - [1989] = {.lex_state = 19, .external_lex_state = 3}, + [1986] = {.lex_state = 8, .external_lex_state = 3}, + [1987] = {.lex_state = 63, .external_lex_state = 3}, + [1988] = {.lex_state = 63, .external_lex_state = 3}, + [1989] = {.lex_state = 63, .external_lex_state = 3}, [1990] = {.lex_state = 63, .external_lex_state = 3}, [1991] = {.lex_state = 0, .external_lex_state = 3}, - [1992] = {.lex_state = 63, .external_lex_state = 3}, + [1992] = {.lex_state = 8, .external_lex_state = 3}, [1993] = {.lex_state = 3, .external_lex_state = 3}, [1994] = {.lex_state = 8, .external_lex_state = 3}, [1995] = {.lex_state = 8, .external_lex_state = 3}, [1996] = {.lex_state = 8, .external_lex_state = 3}, - [1997] = {.lex_state = 3, .external_lex_state = 3}, - [1998] = {.lex_state = 3, .external_lex_state = 3}, + [1997] = {.lex_state = 8, .external_lex_state = 3}, + [1998] = {.lex_state = 8, .external_lex_state = 3}, [1999] = {.lex_state = 8, .external_lex_state = 3}, - [2000] = {.lex_state = 8, .external_lex_state = 3}, - [2001] = {.lex_state = 3, .external_lex_state = 3}, - [2002] = {.lex_state = 63, .external_lex_state = 3}, - [2003] = {.lex_state = 8, .external_lex_state = 3}, + [2000] = {.lex_state = 12, .external_lex_state = 3}, + [2001] = {.lex_state = 8, .external_lex_state = 3}, + [2002] = {.lex_state = 3, .external_lex_state = 3}, + [2003] = {.lex_state = 3, .external_lex_state = 3}, [2004] = {.lex_state = 8, .external_lex_state = 3}, - [2005] = {.lex_state = 0, .external_lex_state = 3}, - [2006] = {.lex_state = 63, .external_lex_state = 3}, - [2007] = {.lex_state = 22, .external_lex_state = 3}, - [2008] = {.lex_state = 8, .external_lex_state = 3}, - [2009] = {.lex_state = 8, .external_lex_state = 3}, - [2010] = {.lex_state = 11, .external_lex_state = 3}, - [2011] = {.lex_state = 63, .external_lex_state = 3}, + [2005] = {.lex_state = 8, .external_lex_state = 3}, + [2006] = {.lex_state = 8, .external_lex_state = 3}, + [2007] = {.lex_state = 8, .external_lex_state = 3}, + [2008] = {.lex_state = 63, .external_lex_state = 3}, + [2009] = {.lex_state = 0, .external_lex_state = 3}, + [2010] = {.lex_state = 19, .external_lex_state = 3}, + [2011] = {.lex_state = 19, .external_lex_state = 3}, [2012] = {.lex_state = 0, .external_lex_state = 3}, - [2013] = {.lex_state = 8, .external_lex_state = 3}, - [2014] = {.lex_state = 3, .external_lex_state = 3}, + [2013] = {.lex_state = 63, .external_lex_state = 3}, + [2014] = {.lex_state = 8, .external_lex_state = 3}, [2015] = {.lex_state = 8, .external_lex_state = 3}, - [2016] = {.lex_state = 8, .external_lex_state = 3}, - [2017] = {.lex_state = 0, .external_lex_state = 3}, - [2018] = {.lex_state = 8, .external_lex_state = 3}, - [2019] = {.lex_state = 63, .external_lex_state = 3}, + [2016] = {.lex_state = 63, .external_lex_state = 3}, + [2017] = {.lex_state = 8, .external_lex_state = 3}, + [2018] = {.lex_state = 63, .external_lex_state = 3}, + [2019] = {.lex_state = 8, .external_lex_state = 3}, [2020] = {.lex_state = 8, .external_lex_state = 3}, [2021] = {.lex_state = 8, .external_lex_state = 3}, [2022] = {.lex_state = 8, .external_lex_state = 3}, [2023] = {.lex_state = 8, .external_lex_state = 3}, [2024] = {.lex_state = 8, .external_lex_state = 3}, - [2025] = {.lex_state = 3, .external_lex_state = 3}, + [2025] = {.lex_state = 19, .external_lex_state = 3}, [2026] = {.lex_state = 8, .external_lex_state = 3}, - [2027] = {.lex_state = 0, .external_lex_state = 3}, + [2027] = {.lex_state = 8, .external_lex_state = 3}, [2028] = {.lex_state = 8, .external_lex_state = 3}, [2029] = {.lex_state = 8, .external_lex_state = 3}, - [2030] = {.lex_state = 3, .external_lex_state = 3}, + [2030] = {.lex_state = 8, .external_lex_state = 3}, [2031] = {.lex_state = 8, .external_lex_state = 3}, - [2032] = {.lex_state = 3, .external_lex_state = 3}, + [2032] = {.lex_state = 8, .external_lex_state = 3}, [2033] = {.lex_state = 8, .external_lex_state = 3}, - [2034] = {.lex_state = 8, .external_lex_state = 3}, - [2035] = {.lex_state = 3, .external_lex_state = 3}, + [2034] = {.lex_state = 3, .external_lex_state = 3}, + [2035] = {.lex_state = 8, .external_lex_state = 3}, [2036] = {.lex_state = 8, .external_lex_state = 3}, [2037] = {.lex_state = 8, .external_lex_state = 3}, - [2038] = {.lex_state = 8, .external_lex_state = 3}, + [2038] = {.lex_state = 3, .external_lex_state = 3}, [2039] = {.lex_state = 8, .external_lex_state = 3}, - [2040] = {.lex_state = 3, .external_lex_state = 3}, + [2040] = {.lex_state = 0, .external_lex_state = 3}, [2041] = {.lex_state = 8, .external_lex_state = 3}, [2042] = {.lex_state = 8, .external_lex_state = 3}, - [2043] = {.lex_state = 3, .external_lex_state = 3}, - [2044] = {.lex_state = 19, .external_lex_state = 3}, - [2045] = {.lex_state = 0, .external_lex_state = 3}, - [2046] = {.lex_state = 22, .external_lex_state = 3}, - [2047] = {.lex_state = 0, .external_lex_state = 3}, - [2048] = {.lex_state = 11, .external_lex_state = 3}, - [2049] = {.lex_state = 8, .external_lex_state = 3}, + [2043] = {.lex_state = 0, .external_lex_state = 3}, + [2044] = {.lex_state = 8, .external_lex_state = 3}, + [2045] = {.lex_state = 8, .external_lex_state = 3}, + [2046] = {.lex_state = 0, .external_lex_state = 3}, + [2047] = {.lex_state = 3, .external_lex_state = 3}, + [2048] = {.lex_state = 20, .external_lex_state = 3}, + [2049] = {.lex_state = 3, .external_lex_state = 3}, [2050] = {.lex_state = 63, .external_lex_state = 3}, - [2051] = {.lex_state = 22, .external_lex_state = 3}, + [2051] = {.lex_state = 8, .external_lex_state = 3}, [2052] = {.lex_state = 8, .external_lex_state = 3}, - [2053] = {.lex_state = 8, .external_lex_state = 3}, + [2053] = {.lex_state = 0, .external_lex_state = 3}, [2054] = {.lex_state = 8, .external_lex_state = 3}, - [2055] = {.lex_state = 11, .external_lex_state = 3}, - [2056] = {.lex_state = 63, .external_lex_state = 3}, - [2057] = {.lex_state = 0, .external_lex_state = 3}, - [2058] = {.lex_state = 3, .external_lex_state = 3}, + [2055] = {.lex_state = 3, .external_lex_state = 3}, + [2056] = {.lex_state = 8, .external_lex_state = 3}, + [2057] = {.lex_state = 8, .external_lex_state = 3}, + [2058] = {.lex_state = 8, .external_lex_state = 3}, [2059] = {.lex_state = 8, .external_lex_state = 3}, - [2060] = {.lex_state = 8, .external_lex_state = 3}, - [2061] = {.lex_state = 8, .external_lex_state = 3}, + [2060] = {.lex_state = 63, .external_lex_state = 3}, + [2061] = {.lex_state = 0, .external_lex_state = 3}, [2062] = {.lex_state = 8, .external_lex_state = 3}, - [2063] = {.lex_state = 8, .external_lex_state = 3}, - [2064] = {.lex_state = 63, .external_lex_state = 3}, - [2065] = {.lex_state = 3, .external_lex_state = 3}, - [2066] = {.lex_state = 63, .external_lex_state = 3}, + [2063] = {.lex_state = 63, .external_lex_state = 3}, + [2064] = {.lex_state = 8, .external_lex_state = 3}, + [2065] = {.lex_state = 0, .external_lex_state = 3}, + [2066] = {.lex_state = 8, .external_lex_state = 3}, [2067] = {.lex_state = 63, .external_lex_state = 3}, - [2068] = {.lex_state = 3, .external_lex_state = 3}, + [2068] = {.lex_state = 0, .external_lex_state = 3}, [2069] = {.lex_state = 8, .external_lex_state = 3}, [2070] = {.lex_state = 8, .external_lex_state = 3}, - [2071] = {.lex_state = 8, .external_lex_state = 3}, - [2072] = {.lex_state = 8, .external_lex_state = 3}, + [2071] = {.lex_state = 63, .external_lex_state = 3}, + [2072] = {.lex_state = 22, .external_lex_state = 3}, [2073] = {.lex_state = 8, .external_lex_state = 3}, - [2074] = {.lex_state = 3, .external_lex_state = 3}, - [2075] = {.lex_state = 20, .external_lex_state = 3}, + [2074] = {.lex_state = 63, .external_lex_state = 3}, + [2075] = {.lex_state = 11, .external_lex_state = 3}, [2076] = {.lex_state = 63, .external_lex_state = 3}, - [2077] = {.lex_state = 8, .external_lex_state = 3}, - [2078] = {.lex_state = 8, .external_lex_state = 3}, - [2079] = {.lex_state = 3, .external_lex_state = 3}, - [2080] = {.lex_state = 8, .external_lex_state = 3}, + [2077] = {.lex_state = 3, .external_lex_state = 3}, + [2078] = {.lex_state = 3, .external_lex_state = 3}, + [2079] = {.lex_state = 20, .external_lex_state = 3}, + [2080] = {.lex_state = 11, .external_lex_state = 3}, [2081] = {.lex_state = 3, .external_lex_state = 3}, [2082] = {.lex_state = 8, .external_lex_state = 3}, - [2083] = {.lex_state = 0, .external_lex_state = 3}, - [2084] = {.lex_state = 3, .external_lex_state = 3}, - [2085] = {.lex_state = 63, .external_lex_state = 3}, - [2086] = {.lex_state = 63, .external_lex_state = 3}, - [2087] = {.lex_state = 63, .external_lex_state = 3}, - [2088] = {.lex_state = 8, .external_lex_state = 3}, + [2083] = {.lex_state = 3, .external_lex_state = 3}, + [2084] = {.lex_state = 8, .external_lex_state = 3}, + [2085] = {.lex_state = 8, .external_lex_state = 3}, + [2086] = {.lex_state = 8, .external_lex_state = 3}, + [2087] = {.lex_state = 8, .external_lex_state = 3}, + [2088] = {.lex_state = 3, .external_lex_state = 3}, [2089] = {.lex_state = 63, .external_lex_state = 3}, - [2090] = {.lex_state = 3, .external_lex_state = 3}, - [2091] = {.lex_state = 12, .external_lex_state = 3}, - [2092] = {.lex_state = 0, .external_lex_state = 3}, - [2093] = {.lex_state = 0, .external_lex_state = 3}, - [2094] = {.lex_state = 8, .external_lex_state = 3}, - [2095] = {.lex_state = 20, .external_lex_state = 3}, + [2090] = {.lex_state = 8, .external_lex_state = 3}, + [2091] = {.lex_state = 11, .external_lex_state = 3}, + [2092] = {.lex_state = 19, .external_lex_state = 3}, + [2093] = {.lex_state = 8, .external_lex_state = 3}, + [2094] = {.lex_state = 3, .external_lex_state = 3}, + [2095] = {.lex_state = 63, .external_lex_state = 3}, [2096] = {.lex_state = 8, .external_lex_state = 3}, - [2097] = {.lex_state = 3, .external_lex_state = 3}, - [2098] = {.lex_state = 0, .external_lex_state = 3}, + [2097] = {.lex_state = 0, .external_lex_state = 3}, + [2098] = {.lex_state = 8, .external_lex_state = 3}, [2099] = {.lex_state = 3, .external_lex_state = 3}, - [2100] = {.lex_state = 63, .external_lex_state = 3}, - [2101] = {.lex_state = 63, .external_lex_state = 3}, + [2100] = {.lex_state = 8, .external_lex_state = 3}, + [2101] = {.lex_state = 3, .external_lex_state = 3}, [2102] = {.lex_state = 3, .external_lex_state = 3}, - [2103] = {.lex_state = 8, .external_lex_state = 3}, - [2104] = {.lex_state = 12, .external_lex_state = 3}, - [2105] = {.lex_state = 63, .external_lex_state = 3}, - [2106] = {.lex_state = 8, .external_lex_state = 3}, + [2103] = {.lex_state = 3, .external_lex_state = 3}, + [2104] = {.lex_state = 3, .external_lex_state = 3}, + [2105] = {.lex_state = 19, .external_lex_state = 3}, + [2106] = {.lex_state = 3, .external_lex_state = 3}, [2107] = {.lex_state = 8, .external_lex_state = 3}, - [2108] = {.lex_state = 8, .external_lex_state = 3}, - [2109] = {.lex_state = 3, .external_lex_state = 3}, + [2108] = {.lex_state = 0, .external_lex_state = 3}, + [2109] = {.lex_state = 8, .external_lex_state = 3}, [2110] = {.lex_state = 8, .external_lex_state = 3}, - [2111] = {.lex_state = 8, .external_lex_state = 3}, - [2112] = {.lex_state = 8, .external_lex_state = 3}, - [2113] = {.lex_state = 8, .external_lex_state = 3}, - [2114] = {.lex_state = 3, .external_lex_state = 3}, - [2115] = {.lex_state = 8, .external_lex_state = 3}, + [2111] = {.lex_state = 11, .external_lex_state = 3}, + [2112] = {.lex_state = 63, .external_lex_state = 3}, + [2113] = {.lex_state = 3, .external_lex_state = 3}, + [2114] = {.lex_state = 22, .external_lex_state = 3}, + [2115] = {.lex_state = 63, .external_lex_state = 3}, [2116] = {.lex_state = 63, .external_lex_state = 3}, - [2117] = {.lex_state = 63, .external_lex_state = 3}, - [2118] = {.lex_state = 8, .external_lex_state = 3}, + [2117] = {.lex_state = 8, .external_lex_state = 3}, + [2118] = {.lex_state = 63, .external_lex_state = 3}, [2119] = {.lex_state = 8, .external_lex_state = 3}, - [2120] = {.lex_state = 0, .external_lex_state = 3}, + [2120] = {.lex_state = 63, .external_lex_state = 3}, [2121] = {.lex_state = 8, .external_lex_state = 3}, - [2122] = {.lex_state = 3, .external_lex_state = 3}, - [2123] = {.lex_state = 8, .external_lex_state = 3}, + [2122] = {.lex_state = 8, .external_lex_state = 3}, + [2123] = {.lex_state = 3, .external_lex_state = 3}, [2124] = {.lex_state = 8, .external_lex_state = 3}, - [2125] = {.lex_state = 0, .external_lex_state = 3}, - [2126] = {.lex_state = 8, .external_lex_state = 3}, - [2127] = {.lex_state = 8, .external_lex_state = 3}, - [2128] = {.lex_state = 0, .external_lex_state = 3}, + [2125] = {.lex_state = 3, .external_lex_state = 3}, + [2126] = {.lex_state = 3, .external_lex_state = 3}, + [2127] = {.lex_state = 22, .external_lex_state = 3}, + [2128] = {.lex_state = 8, .external_lex_state = 3}, [2129] = {.lex_state = 63, .external_lex_state = 3}, - [2130] = {.lex_state = 8, .external_lex_state = 3}, + [2130] = {.lex_state = 63, .external_lex_state = 3}, [2131] = {.lex_state = 8, .external_lex_state = 3}, - [2132] = {.lex_state = 19, .external_lex_state = 3}, - [2133] = {.lex_state = 63, .external_lex_state = 3}, - [2134] = {.lex_state = 19, .external_lex_state = 3}, + [2132] = {.lex_state = 0, .external_lex_state = 3}, + [2133] = {.lex_state = 8, .external_lex_state = 3}, + [2134] = {.lex_state = 8, .external_lex_state = 3}, [2135] = {.lex_state = 8, .external_lex_state = 3}, - [2136] = {.lex_state = 0, .external_lex_state = 3}, - [2137] = {.lex_state = 3, .external_lex_state = 3}, - [2138] = {.lex_state = 8, .external_lex_state = 3}, - [2139] = {.lex_state = 8, .external_lex_state = 3}, + [2136] = {.lex_state = 3, .external_lex_state = 3}, + [2137] = {.lex_state = 12, .external_lex_state = 3}, + [2138] = {.lex_state = 3, .external_lex_state = 3}, + [2139] = {.lex_state = 0, .external_lex_state = 3}, [2140] = {.lex_state = 8, .external_lex_state = 3}, [2141] = {.lex_state = 8, .external_lex_state = 3}, [2142] = {.lex_state = 8, .external_lex_state = 3}, - [2143] = {.lex_state = 63, .external_lex_state = 3}, - [2144] = {.lex_state = 63, .external_lex_state = 3}, - [2145] = {.lex_state = 63, .external_lex_state = 3}, - [2146] = {.lex_state = 3, .external_lex_state = 3}, - [2147] = {.lex_state = 0, .external_lex_state = 3}, - [2148] = {.lex_state = 63, .external_lex_state = 3}, - [2149] = {.lex_state = 0, .external_lex_state = 3}, + [2143] = {.lex_state = 3, .external_lex_state = 3}, + [2144] = {.lex_state = 0, .external_lex_state = 3}, + [2145] = {.lex_state = 0, .external_lex_state = 3}, + [2146] = {.lex_state = 8, .external_lex_state = 3}, + [2147] = {.lex_state = 8, .external_lex_state = 3}, + [2148] = {.lex_state = 8, .external_lex_state = 3}, + [2149] = {.lex_state = 8, .external_lex_state = 3}, [2150] = {.lex_state = 63, .external_lex_state = 3}, - [2151] = {.lex_state = 0, .external_lex_state = 3}, + [2151] = {.lex_state = 63, .external_lex_state = 3}, [2152] = {.lex_state = 63, .external_lex_state = 3}, [2153] = {.lex_state = 63, .external_lex_state = 3}, - [2154] = {.lex_state = 5, .external_lex_state = 4}, - [2155] = {.lex_state = 11, .external_lex_state = 3}, + [2154] = {.lex_state = 63, .external_lex_state = 3}, + [2155] = {.lex_state = 63, .external_lex_state = 3}, [2156] = {.lex_state = 63, .external_lex_state = 3}, [2157] = {.lex_state = 63, .external_lex_state = 3}, [2158] = {.lex_state = 0, .external_lex_state = 3}, - [2159] = {.lex_state = 0, .external_lex_state = 3}, + [2159] = {.lex_state = 63, .external_lex_state = 3}, [2160] = {.lex_state = 0, .external_lex_state = 3}, - [2161] = {.lex_state = 0, .external_lex_state = 3}, - [2162] = {.lex_state = 63, .external_lex_state = 3}, - [2163] = {.lex_state = 11, .external_lex_state = 3}, - [2164] = {.lex_state = 63, .external_lex_state = 3}, - [2165] = {.lex_state = 0, .external_lex_state = 3}, + [2161] = {.lex_state = 63, .external_lex_state = 3}, + [2162] = {.lex_state = 0, .external_lex_state = 3}, + [2163] = {.lex_state = 0, .external_lex_state = 3}, + [2164] = {.lex_state = 0, .external_lex_state = 3}, + [2165] = {.lex_state = 63, .external_lex_state = 3}, [2166] = {.lex_state = 0, .external_lex_state = 3}, - [2167] = {.lex_state = 3, .external_lex_state = 3}, + [2167] = {.lex_state = 63, .external_lex_state = 3}, [2168] = {.lex_state = 0, .external_lex_state = 3}, [2169] = {.lex_state = 0, .external_lex_state = 3}, [2170] = {.lex_state = 63, .external_lex_state = 3}, [2171] = {.lex_state = 3, .external_lex_state = 3}, - [2172] = {.lex_state = 19, .external_lex_state = 3}, + [2172] = {.lex_state = 0, .external_lex_state = 3}, [2173] = {.lex_state = 63, .external_lex_state = 3}, - [2174] = {.lex_state = 0, .external_lex_state = 3}, - [2175] = {.lex_state = 19, .external_lex_state = 3}, - [2176] = {.lex_state = 19, .external_lex_state = 3}, + [2174] = {.lex_state = 19, .external_lex_state = 3}, + [2175] = {.lex_state = 0, .external_lex_state = 3}, + [2176] = {.lex_state = 0, .external_lex_state = 3}, [2177] = {.lex_state = 19, .external_lex_state = 3}, - [2178] = {.lex_state = 3, .external_lex_state = 3}, - [2179] = {.lex_state = 63, .external_lex_state = 3}, - [2180] = {.lex_state = 63, .external_lex_state = 3}, - [2181] = {.lex_state = 0, .external_lex_state = 3}, - [2182] = {.lex_state = 19, .external_lex_state = 3}, - [2183] = {.lex_state = 19, .external_lex_state = 3}, - [2184] = {.lex_state = 0, .external_lex_state = 3}, - [2185] = {.lex_state = 0, .external_lex_state = 3}, - [2186] = {.lex_state = 63, .external_lex_state = 3}, - [2187] = {.lex_state = 19, .external_lex_state = 3}, + [2178] = {.lex_state = 0, .external_lex_state = 3}, + [2179] = {.lex_state = 19, .external_lex_state = 3}, + [2180] = {.lex_state = 0, .external_lex_state = 3}, + [2181] = {.lex_state = 19, .external_lex_state = 3}, + [2182] = {.lex_state = 0, .external_lex_state = 3}, + [2183] = {.lex_state = 0, .external_lex_state = 3}, + [2184] = {.lex_state = 63, .external_lex_state = 3}, + [2185] = {.lex_state = 12, .external_lex_state = 3}, + [2186] = {.lex_state = 0, .external_lex_state = 3}, + [2187] = {.lex_state = 0, .external_lex_state = 3}, [2188] = {.lex_state = 0, .external_lex_state = 3}, - [2189] = {.lex_state = 63, .external_lex_state = 3}, + [2189] = {.lex_state = 19, .external_lex_state = 3}, [2190] = {.lex_state = 0, .external_lex_state = 3}, - [2191] = {.lex_state = 63, .external_lex_state = 3}, - [2192] = {.lex_state = 0, .external_lex_state = 3}, + [2191] = {.lex_state = 19, .external_lex_state = 3}, + [2192] = {.lex_state = 3, .external_lex_state = 3}, [2193] = {.lex_state = 19, .external_lex_state = 3}, [2194] = {.lex_state = 0, .external_lex_state = 3}, - [2195] = {.lex_state = 63, .external_lex_state = 3}, - [2196] = {.lex_state = 0, .external_lex_state = 3}, + [2195] = {.lex_state = 0, .external_lex_state = 3}, + [2196] = {.lex_state = 63, .external_lex_state = 3}, [2197] = {.lex_state = 0, .external_lex_state = 3}, [2198] = {.lex_state = 63, .external_lex_state = 3}, - [2199] = {.lex_state = 63, .external_lex_state = 3}, - [2200] = {.lex_state = 63, .external_lex_state = 3}, - [2201] = {.lex_state = 63, .external_lex_state = 3}, - [2202] = {.lex_state = 3, .external_lex_state = 3}, - [2203] = {.lex_state = 63, .external_lex_state = 3}, - [2204] = {.lex_state = 0, .external_lex_state = 3}, + [2199] = {.lex_state = 0, .external_lex_state = 3}, + [2200] = {.lex_state = 3, .external_lex_state = 3}, + [2201] = {.lex_state = 0, .external_lex_state = 3}, + [2202] = {.lex_state = 0, .external_lex_state = 3}, + [2203] = {.lex_state = 3, .external_lex_state = 3}, + [2204] = {.lex_state = 63, .external_lex_state = 3}, [2205] = {.lex_state = 0, .external_lex_state = 3}, - [2206] = {.lex_state = 3, .external_lex_state = 3}, - [2207] = {.lex_state = 0, .external_lex_state = 3}, - [2208] = {.lex_state = 0, .external_lex_state = 3}, - [2209] = {.lex_state = 63, .external_lex_state = 3}, + [2206] = {.lex_state = 0, .external_lex_state = 3}, + [2207] = {.lex_state = 63, .external_lex_state = 3}, + [2208] = {.lex_state = 63, .external_lex_state = 3}, + [2209] = {.lex_state = 0, .external_lex_state = 3}, [2210] = {.lex_state = 0, .external_lex_state = 3}, [2211] = {.lex_state = 0, .external_lex_state = 3}, - [2212] = {.lex_state = 63, .external_lex_state = 3}, - [2213] = {.lex_state = 0, .external_lex_state = 3}, + [2212] = {.lex_state = 0, .external_lex_state = 3}, + [2213] = {.lex_state = 63, .external_lex_state = 3}, [2214] = {.lex_state = 0, .external_lex_state = 3}, - [2215] = {.lex_state = 0, .external_lex_state = 3}, - [2216] = {.lex_state = 0, .external_lex_state = 3}, + [2215] = {.lex_state = 11, .external_lex_state = 3}, + [2216] = {.lex_state = 63, .external_lex_state = 3}, [2217] = {.lex_state = 0, .external_lex_state = 3}, - [2218] = {.lex_state = 63, .external_lex_state = 3}, + [2218] = {.lex_state = 0, .external_lex_state = 3}, [2219] = {.lex_state = 63, .external_lex_state = 3}, [2220] = {.lex_state = 0, .external_lex_state = 3}, - [2221] = {.lex_state = 12, .external_lex_state = 3}, + [2221] = {.lex_state = 0, .external_lex_state = 3}, [2222] = {.lex_state = 0, .external_lex_state = 3}, - [2223] = {.lex_state = 0, .external_lex_state = 3}, - [2224] = {.lex_state = 0, .external_lex_state = 3}, - [2225] = {.lex_state = 63, .external_lex_state = 3}, + [2223] = {.lex_state = 63, .external_lex_state = 3}, + [2224] = {.lex_state = 19, .external_lex_state = 3}, + [2225] = {.lex_state = 12, .external_lex_state = 3}, [2226] = {.lex_state = 0, .external_lex_state = 3}, - [2227] = {.lex_state = 63, .external_lex_state = 3}, - [2228] = {.lex_state = 0, .external_lex_state = 3}, - [2229] = {.lex_state = 0, .external_lex_state = 3}, + [2227] = {.lex_state = 0, .external_lex_state = 3}, + [2228] = {.lex_state = 63, .external_lex_state = 3}, + [2229] = {.lex_state = 63, .external_lex_state = 3}, [2230] = {.lex_state = 0, .external_lex_state = 3}, - [2231] = {.lex_state = 0, .external_lex_state = 3}, + [2231] = {.lex_state = 63, .external_lex_state = 3}, [2232] = {.lex_state = 0, .external_lex_state = 3}, [2233] = {.lex_state = 0, .external_lex_state = 3}, - [2234] = {.lex_state = 0, .external_lex_state = 3}, - [2235] = {.lex_state = 0, .external_lex_state = 3}, - [2236] = {.lex_state = 12, .external_lex_state = 3}, + [2234] = {.lex_state = 5, .external_lex_state = 4}, + [2235] = {.lex_state = 12, .external_lex_state = 3}, + [2236] = {.lex_state = 63, .external_lex_state = 3}, [2237] = {.lex_state = 0, .external_lex_state = 3}, - [2238] = {.lex_state = 63, .external_lex_state = 3}, + [2238] = {.lex_state = 0, .external_lex_state = 3}, [2239] = {.lex_state = 0, .external_lex_state = 3}, - [2240] = {.lex_state = 0, .external_lex_state = 3}, - [2241] = {.lex_state = 63, .external_lex_state = 3}, - [2242] = {.lex_state = 63, .external_lex_state = 3}, + [2240] = {.lex_state = 63, .external_lex_state = 3}, + [2241] = {.lex_state = 0, .external_lex_state = 3}, + [2242] = {.lex_state = 0, .external_lex_state = 3}, [2243] = {.lex_state = 0, .external_lex_state = 3}, [2244] = {.lex_state = 0, .external_lex_state = 3}, - [2245] = {.lex_state = 0, .external_lex_state = 3}, - [2246] = {.lex_state = 0, .external_lex_state = 3}, - [2247] = {.lex_state = 3, .external_lex_state = 3}, - [2248] = {.lex_state = 63, .external_lex_state = 3}, + [2245] = {.lex_state = 63, .external_lex_state = 3}, + [2246] = {.lex_state = 63, .external_lex_state = 3}, + [2247] = {.lex_state = 0, .external_lex_state = 3}, + [2248] = {.lex_state = 0, .external_lex_state = 3}, [2249] = {.lex_state = 0, .external_lex_state = 3}, - [2250] = {.lex_state = 63, .external_lex_state = 3}, - [2251] = {.lex_state = 63, .external_lex_state = 3}, - [2252] = {.lex_state = 3, .external_lex_state = 3}, + [2250] = {.lex_state = 3, .external_lex_state = 3}, + [2251] = {.lex_state = 3, .external_lex_state = 3}, + [2252] = {.lex_state = 0, .external_lex_state = 3}, [2253] = {.lex_state = 63, .external_lex_state = 3}, [2254] = {.lex_state = 0, .external_lex_state = 3}, [2255] = {.lex_state = 63, .external_lex_state = 3}, [2256] = {.lex_state = 0, .external_lex_state = 3}, [2257] = {.lex_state = 63, .external_lex_state = 3}, - [2258] = {.lex_state = 0, .external_lex_state = 3}, + [2258] = {.lex_state = 63, .external_lex_state = 3}, [2259] = {.lex_state = 0, .external_lex_state = 3}, - [2260] = {.lex_state = 63, .external_lex_state = 3}, - [2261] = {.lex_state = 63, .external_lex_state = 3}, - [2262] = {.lex_state = 5, .external_lex_state = 3}, - [2263] = {.lex_state = 63, .external_lex_state = 3}, + [2260] = {.lex_state = 0, .external_lex_state = 3}, + [2261] = {.lex_state = 0, .external_lex_state = 3}, + [2262] = {.lex_state = 63, .external_lex_state = 3}, + [2263] = {.lex_state = 0, .external_lex_state = 3}, [2264] = {.lex_state = 63, .external_lex_state = 3}, - [2265] = {.lex_state = 3, .external_lex_state = 3}, + [2265] = {.lex_state = 0, .external_lex_state = 3}, [2266] = {.lex_state = 63, .external_lex_state = 3}, - [2267] = {.lex_state = 63, .external_lex_state = 3}, - [2268] = {.lex_state = 3, .external_lex_state = 3}, - [2269] = {.lex_state = 63, .external_lex_state = 3}, - [2270] = {.lex_state = 0, .external_lex_state = 3}, - [2271] = {.lex_state = 12, .external_lex_state = 3}, + [2267] = {.lex_state = 5, .external_lex_state = 3}, + [2268] = {.lex_state = 0, .external_lex_state = 3}, + [2269] = {.lex_state = 3, .external_lex_state = 3}, + [2270] = {.lex_state = 3, .external_lex_state = 3}, + [2271] = {.lex_state = 0, .external_lex_state = 3}, [2272] = {.lex_state = 0, .external_lex_state = 3}, [2273] = {.lex_state = 63, .external_lex_state = 3}, [2274] = {.lex_state = 0, .external_lex_state = 3}, - [2275] = {.lex_state = 0, .external_lex_state = 3}, - [2276] = {.lex_state = 0, .external_lex_state = 3}, - [2277] = {.lex_state = 63, .external_lex_state = 3}, - [2278] = {.lex_state = 11, .external_lex_state = 3}, - [2279] = {.lex_state = 0, .external_lex_state = 3}, - [2280] = {.lex_state = 63, .external_lex_state = 3}, + [2275] = {.lex_state = 3, .external_lex_state = 3}, + [2276] = {.lex_state = 63, .external_lex_state = 3}, + [2277] = {.lex_state = 0, .external_lex_state = 3}, + [2278] = {.lex_state = 63, .external_lex_state = 3}, + [2279] = {.lex_state = 63, .external_lex_state = 3}, + [2280] = {.lex_state = 0, .external_lex_state = 3}, [2281] = {.lex_state = 0, .external_lex_state = 3}, - [2282] = {.lex_state = 0, .external_lex_state = 3}, + [2282] = {.lex_state = 63, .external_lex_state = 3}, [2283] = {.lex_state = 63, .external_lex_state = 3}, [2284] = {.lex_state = 0, .external_lex_state = 3}, [2285] = {.lex_state = 0, .external_lex_state = 3}, @@ -19581,18 +19615,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2290] = {.lex_state = 0, .external_lex_state = 3}, [2291] = {.lex_state = 0, .external_lex_state = 3}, [2292] = {.lex_state = 0, .external_lex_state = 3}, - [2293] = {.lex_state = 63, .external_lex_state = 3}, + [2293] = {.lex_state = 5, .external_lex_state = 3}, [2294] = {.lex_state = 0, .external_lex_state = 3}, [2295] = {.lex_state = 0, .external_lex_state = 3}, - [2296] = {.lex_state = 0, .external_lex_state = 3}, - [2297] = {.lex_state = 63, .external_lex_state = 3}, - [2298] = {.lex_state = 63, .external_lex_state = 3}, + [2296] = {.lex_state = 63, .external_lex_state = 3}, + [2297] = {.lex_state = 0, .external_lex_state = 3}, + [2298] = {.lex_state = 0, .external_lex_state = 3}, [2299] = {.lex_state = 0, .external_lex_state = 3}, [2300] = {.lex_state = 0, .external_lex_state = 3}, - [2301] = {.lex_state = 0, .external_lex_state = 3}, - [2302] = {.lex_state = 0, .external_lex_state = 3}, - [2303] = {.lex_state = 0, .external_lex_state = 3}, - [2304] = {.lex_state = 0, .external_lex_state = 3}, + [2301] = {.lex_state = 63, .external_lex_state = 3}, + [2302] = {.lex_state = 63, .external_lex_state = 3}, + [2303] = {.lex_state = 63, .external_lex_state = 3}, + [2304] = {.lex_state = 3, .external_lex_state = 3}, [2305] = {.lex_state = 0, .external_lex_state = 3}, [2306] = {.lex_state = 0, .external_lex_state = 3}, [2307] = {.lex_state = 0, .external_lex_state = 3}, @@ -19602,56 +19636,56 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2311] = {.lex_state = 0, .external_lex_state = 3}, [2312] = {.lex_state = 0, .external_lex_state = 3}, [2313] = {.lex_state = 0, .external_lex_state = 3}, - [2314] = {.lex_state = 0, .external_lex_state = 3}, + [2314] = {.lex_state = 63, .external_lex_state = 3}, [2315] = {.lex_state = 0, .external_lex_state = 3}, - [2316] = {.lex_state = 3, .external_lex_state = 3}, + [2316] = {.lex_state = 0, .external_lex_state = 3}, [2317] = {.lex_state = 0, .external_lex_state = 3}, [2318] = {.lex_state = 0, .external_lex_state = 3}, - [2319] = {.lex_state = 3, .external_lex_state = 3}, - [2320] = {.lex_state = 0, .external_lex_state = 3}, - [2321] = {.lex_state = 63, .external_lex_state = 3}, + [2319] = {.lex_state = 0, .external_lex_state = 3}, + [2320] = {.lex_state = 63, .external_lex_state = 3}, + [2321] = {.lex_state = 0, .external_lex_state = 3}, [2322] = {.lex_state = 0, .external_lex_state = 3}, - [2323] = {.lex_state = 63, .external_lex_state = 3}, + [2323] = {.lex_state = 0, .external_lex_state = 3}, [2324] = {.lex_state = 0, .external_lex_state = 3}, - [2325] = {.lex_state = 0, .external_lex_state = 3}, - [2326] = {.lex_state = 63, .external_lex_state = 3}, + [2325] = {.lex_state = 12, .external_lex_state = 3}, + [2326] = {.lex_state = 3, .external_lex_state = 3}, [2327] = {.lex_state = 63, .external_lex_state = 3}, [2328] = {.lex_state = 0, .external_lex_state = 3}, [2329] = {.lex_state = 0, .external_lex_state = 3}, [2330] = {.lex_state = 63, .external_lex_state = 3}, [2331] = {.lex_state = 0, .external_lex_state = 3}, - [2332] = {.lex_state = 3, .external_lex_state = 3}, + [2332] = {.lex_state = 63, .external_lex_state = 3}, [2333] = {.lex_state = 0, .external_lex_state = 3}, - [2334] = {.lex_state = 0, .external_lex_state = 3}, - [2335] = {.lex_state = 0, .external_lex_state = 3}, - [2336] = {.lex_state = 0, .external_lex_state = 3}, + [2334] = {.lex_state = 63, .external_lex_state = 3}, + [2335] = {.lex_state = 8, .external_lex_state = 3}, + [2336] = {.lex_state = 3, .external_lex_state = 3}, [2337] = {.lex_state = 0, .external_lex_state = 3}, - [2338] = {.lex_state = 0, .external_lex_state = 3}, - [2339] = {.lex_state = 3, .external_lex_state = 3}, + [2338] = {.lex_state = 3, .external_lex_state = 3}, + [2339] = {.lex_state = 63, .external_lex_state = 3}, [2340] = {.lex_state = 0, .external_lex_state = 3}, - [2341] = {.lex_state = 63, .external_lex_state = 3}, + [2341] = {.lex_state = 0, .external_lex_state = 3}, [2342] = {.lex_state = 63, .external_lex_state = 3}, [2343] = {.lex_state = 0, .external_lex_state = 3}, [2344] = {.lex_state = 0, .external_lex_state = 3}, - [2345] = {.lex_state = 0, .external_lex_state = 3}, + [2345] = {.lex_state = 63, .external_lex_state = 3}, [2346] = {.lex_state = 0, .external_lex_state = 3}, [2347] = {.lex_state = 0, .external_lex_state = 3}, [2348] = {.lex_state = 0, .external_lex_state = 3}, [2349] = {.lex_state = 0, .external_lex_state = 3}, - [2350] = {.lex_state = 0, .external_lex_state = 3}, + [2350] = {.lex_state = 11, .external_lex_state = 3}, [2351] = {.lex_state = 0, .external_lex_state = 3}, [2352] = {.lex_state = 0, .external_lex_state = 3}, - [2353] = {.lex_state = 0, .external_lex_state = 3}, - [2354] = {.lex_state = 12, .external_lex_state = 3}, + [2353] = {.lex_state = 11, .external_lex_state = 3}, + [2354] = {.lex_state = 0, .external_lex_state = 3}, [2355] = {.lex_state = 0, .external_lex_state = 3}, [2356] = {.lex_state = 0, .external_lex_state = 3}, - [2357] = {.lex_state = 0, .external_lex_state = 3}, + [2357] = {.lex_state = 63, .external_lex_state = 3}, [2358] = {.lex_state = 0, .external_lex_state = 3}, [2359] = {.lex_state = 0, .external_lex_state = 3}, [2360] = {.lex_state = 0, .external_lex_state = 3}, [2361] = {.lex_state = 0, .external_lex_state = 3}, - [2362] = {.lex_state = 63, .external_lex_state = 3}, - [2363] = {.lex_state = 0, .external_lex_state = 3}, + [2362] = {.lex_state = 0, .external_lex_state = 3}, + [2363] = {.lex_state = 63, .external_lex_state = 3}, [2364] = {.lex_state = 0, .external_lex_state = 3}, [2365] = {.lex_state = 0, .external_lex_state = 3}, [2366] = {.lex_state = 63, .external_lex_state = 3}, @@ -19659,41 +19693,41 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2368] = {.lex_state = 0, .external_lex_state = 3}, [2369] = {.lex_state = 0, .external_lex_state = 3}, [2370] = {.lex_state = 0, .external_lex_state = 3}, - [2371] = {.lex_state = 0, .external_lex_state = 3}, - [2372] = {.lex_state = 63, .external_lex_state = 3}, + [2371] = {.lex_state = 63, .external_lex_state = 3}, + [2372] = {.lex_state = 0, .external_lex_state = 3}, [2373] = {.lex_state = 0, .external_lex_state = 3}, [2374] = {.lex_state = 0, .external_lex_state = 3}, - [2375] = {.lex_state = 63, .external_lex_state = 3}, - [2376] = {.lex_state = 12, .external_lex_state = 3}, + [2375] = {.lex_state = 0, .external_lex_state = 3}, + [2376] = {.lex_state = 63, .external_lex_state = 3}, [2377] = {.lex_state = 0, .external_lex_state = 3}, - [2378] = {.lex_state = 0, .external_lex_state = 3}, + [2378] = {.lex_state = 63, .external_lex_state = 3}, [2379] = {.lex_state = 63, .external_lex_state = 3}, [2380] = {.lex_state = 0, .external_lex_state = 3}, - [2381] = {.lex_state = 5, .external_lex_state = 3}, - [2382] = {.lex_state = 63, .external_lex_state = 3}, - [2383] = {.lex_state = 63, .external_lex_state = 3}, + [2381] = {.lex_state = 63, .external_lex_state = 3}, + [2382] = {.lex_state = 0, .external_lex_state = 3}, + [2383] = {.lex_state = 0, .external_lex_state = 3}, [2384] = {.lex_state = 0, .external_lex_state = 3}, - [2385] = {.lex_state = 0, .external_lex_state = 3}, - [2386] = {.lex_state = 63, .external_lex_state = 3}, - [2387] = {.lex_state = 0, .external_lex_state = 3}, + [2385] = {.lex_state = 63, .external_lex_state = 3}, + [2386] = {.lex_state = 0, .external_lex_state = 3}, + [2387] = {.lex_state = 63, .external_lex_state = 3}, [2388] = {.lex_state = 0, .external_lex_state = 3}, [2389] = {.lex_state = 63, .external_lex_state = 3}, - [2390] = {.lex_state = 63, .external_lex_state = 3}, + [2390] = {.lex_state = 0, .external_lex_state = 3}, [2391] = {.lex_state = 0, .external_lex_state = 3}, - [2392] = {.lex_state = 0, .external_lex_state = 3}, - [2393] = {.lex_state = 8, .external_lex_state = 3}, + [2392] = {.lex_state = 12, .external_lex_state = 3}, + [2393] = {.lex_state = 0, .external_lex_state = 3}, [2394] = {.lex_state = 0, .external_lex_state = 3}, [2395] = {.lex_state = 0, .external_lex_state = 3}, - [2396] = {.lex_state = 0, .external_lex_state = 5}, + [2396] = {.lex_state = 0, .external_lex_state = 3}, [2397] = {.lex_state = 0, .external_lex_state = 3}, - [2398] = {.lex_state = 0, .external_lex_state = 3}, + [2398] = {.lex_state = 63, .external_lex_state = 3}, [2399] = {.lex_state = 0, .external_lex_state = 3}, - [2400] = {.lex_state = 0, .external_lex_state = 3}, + [2400] = {.lex_state = 63, .external_lex_state = 3}, [2401] = {.lex_state = 0, .external_lex_state = 3}, [2402] = {.lex_state = 0, .external_lex_state = 3}, [2403] = {.lex_state = 0, .external_lex_state = 3}, [2404] = {.lex_state = 0, .external_lex_state = 3}, - [2405] = {.lex_state = 63, .external_lex_state = 3}, + [2405] = {.lex_state = 0, .external_lex_state = 3}, [2406] = {.lex_state = 0, .external_lex_state = 3}, [2407] = {.lex_state = 0, .external_lex_state = 3}, [2408] = {.lex_state = 0, .external_lex_state = 3}, @@ -19705,113 +19739,113 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2414] = {.lex_state = 0, .external_lex_state = 3}, [2415] = {.lex_state = 0, .external_lex_state = 3}, [2416] = {.lex_state = 0, .external_lex_state = 3}, - [2417] = {.lex_state = 11, .external_lex_state = 3}, - [2418] = {.lex_state = 11, .external_lex_state = 3}, + [2417] = {.lex_state = 0, .external_lex_state = 3}, + [2418] = {.lex_state = 63, .external_lex_state = 3}, [2419] = {.lex_state = 0, .external_lex_state = 3}, [2420] = {.lex_state = 0, .external_lex_state = 3}, [2421] = {.lex_state = 0, .external_lex_state = 3}, - [2422] = {.lex_state = 11, .external_lex_state = 3}, + [2422] = {.lex_state = 63, .external_lex_state = 3}, [2423] = {.lex_state = 0, .external_lex_state = 3}, [2424] = {.lex_state = 0, .external_lex_state = 3}, [2425] = {.lex_state = 0, .external_lex_state = 3}, [2426] = {.lex_state = 0, .external_lex_state = 3}, [2427] = {.lex_state = 0, .external_lex_state = 3}, - [2428] = {.lex_state = 0, .external_lex_state = 3}, - [2429] = {.lex_state = 0, .external_lex_state = 3}, - [2430] = {.lex_state = 63, .external_lex_state = 3}, - [2431] = {.lex_state = 0, .external_lex_state = 3}, + [2428] = {.lex_state = 11, .external_lex_state = 3}, + [2429] = {.lex_state = 19, .external_lex_state = 3}, + [2430] = {.lex_state = 0, .external_lex_state = 3}, + [2431] = {.lex_state = 11, .external_lex_state = 3}, [2432] = {.lex_state = 0, .external_lex_state = 3}, - [2433] = {.lex_state = 3, .external_lex_state = 3}, - [2434] = {.lex_state = 0, .external_lex_state = 3}, + [2433] = {.lex_state = 0, .external_lex_state = 3}, + [2434] = {.lex_state = 11, .external_lex_state = 3}, [2435] = {.lex_state = 0, .external_lex_state = 3}, [2436] = {.lex_state = 0, .external_lex_state = 3}, [2437] = {.lex_state = 0, .external_lex_state = 3}, - [2438] = {.lex_state = 3, .external_lex_state = 3}, - [2439] = {.lex_state = 63, .external_lex_state = 3}, - [2440] = {.lex_state = 0, .external_lex_state = 3}, + [2438] = {.lex_state = 0, .external_lex_state = 3}, + [2439] = {.lex_state = 11, .external_lex_state = 3}, + [2440] = {.lex_state = 3, .external_lex_state = 3}, [2441] = {.lex_state = 0, .external_lex_state = 3}, [2442] = {.lex_state = 0, .external_lex_state = 3}, - [2443] = {.lex_state = 0, .external_lex_state = 3}, + [2443] = {.lex_state = 63, .external_lex_state = 3}, [2444] = {.lex_state = 0, .external_lex_state = 3}, [2445] = {.lex_state = 0, .external_lex_state = 3}, - [2446] = {.lex_state = 0, .external_lex_state = 3}, + [2446] = {.lex_state = 3, .external_lex_state = 3}, [2447] = {.lex_state = 0, .external_lex_state = 3}, - [2448] = {.lex_state = 63, .external_lex_state = 3}, + [2448] = {.lex_state = 0, .external_lex_state = 3}, [2449] = {.lex_state = 0, .external_lex_state = 3}, - [2450] = {.lex_state = 63, .external_lex_state = 3}, - [2451] = {.lex_state = 63, .external_lex_state = 3}, + [2450] = {.lex_state = 0, .external_lex_state = 3}, + [2451] = {.lex_state = 0, .external_lex_state = 3}, [2452] = {.lex_state = 0, .external_lex_state = 3}, - [2453] = {.lex_state = 63, .external_lex_state = 3}, + [2453] = {.lex_state = 0, .external_lex_state = 3}, [2454] = {.lex_state = 0, .external_lex_state = 3}, [2455] = {.lex_state = 0, .external_lex_state = 3}, [2456] = {.lex_state = 0, .external_lex_state = 3}, [2457] = {.lex_state = 0, .external_lex_state = 3}, [2458] = {.lex_state = 0, .external_lex_state = 3}, [2459] = {.lex_state = 0, .external_lex_state = 3}, - [2460] = {.lex_state = 63, .external_lex_state = 3}, - [2461] = {.lex_state = 0, .external_lex_state = 3}, + [2460] = {.lex_state = 0, .external_lex_state = 3}, + [2461] = {.lex_state = 12, .external_lex_state = 3}, [2462] = {.lex_state = 0, .external_lex_state = 3}, - [2463] = {.lex_state = 0, .external_lex_state = 3}, - [2464] = {.lex_state = 0, .external_lex_state = 3}, + [2463] = {.lex_state = 63, .external_lex_state = 3}, + [2464] = {.lex_state = 63, .external_lex_state = 3}, [2465] = {.lex_state = 0, .external_lex_state = 3}, - [2466] = {.lex_state = 0, .external_lex_state = 3}, + [2466] = {.lex_state = 63, .external_lex_state = 3}, [2467] = {.lex_state = 0, .external_lex_state = 3}, [2468] = {.lex_state = 0, .external_lex_state = 3}, [2469] = {.lex_state = 0, .external_lex_state = 3}, [2470] = {.lex_state = 0, .external_lex_state = 3}, [2471] = {.lex_state = 0, .external_lex_state = 3}, - [2472] = {.lex_state = 0, .external_lex_state = 3}, - [2473] = {.lex_state = 3, .external_lex_state = 3}, - [2474] = {.lex_state = 11, .external_lex_state = 3}, - [2475] = {.lex_state = 63, .external_lex_state = 3}, - [2476] = {.lex_state = 0, .external_lex_state = 3}, - [2477] = {.lex_state = 63, .external_lex_state = 3}, + [2472] = {.lex_state = 3, .external_lex_state = 3}, + [2473] = {.lex_state = 11, .external_lex_state = 3}, + [2474] = {.lex_state = 0, .external_lex_state = 3}, + [2475] = {.lex_state = 0, .external_lex_state = 3}, + [2476] = {.lex_state = 63, .external_lex_state = 3}, + [2477] = {.lex_state = 0, .external_lex_state = 3}, [2478] = {.lex_state = 0, .external_lex_state = 3}, [2479] = {.lex_state = 63, .external_lex_state = 3}, [2480] = {.lex_state = 0, .external_lex_state = 3}, - [2481] = {.lex_state = 19, .external_lex_state = 3}, + [2481] = {.lex_state = 0, .external_lex_state = 3}, [2482] = {.lex_state = 0, .external_lex_state = 3}, - [2483] = {.lex_state = 12, .external_lex_state = 3}, - [2484] = {.lex_state = 63, .external_lex_state = 3}, + [2483] = {.lex_state = 0, .external_lex_state = 3}, + [2484] = {.lex_state = 0, .external_lex_state = 3}, [2485] = {.lex_state = 0, .external_lex_state = 3}, - [2486] = {.lex_state = 19, .external_lex_state = 3}, - [2487] = {.lex_state = 0, .external_lex_state = 3}, + [2486] = {.lex_state = 0, .external_lex_state = 3}, + [2487] = {.lex_state = 0, .external_lex_state = 5}, [2488] = {.lex_state = 0, .external_lex_state = 3}, [2489] = {.lex_state = 0, .external_lex_state = 3}, - [2490] = {.lex_state = 0, .external_lex_state = 3}, - [2491] = {.lex_state = 63, .external_lex_state = 3}, + [2490] = {.lex_state = 11, .external_lex_state = 3}, + [2491] = {.lex_state = 0, .external_lex_state = 3}, [2492] = {.lex_state = 0, .external_lex_state = 3}, [2493] = {.lex_state = 0, .external_lex_state = 3}, [2494] = {.lex_state = 0, .external_lex_state = 3}, [2495] = {.lex_state = 0, .external_lex_state = 3}, - [2496] = {.lex_state = 5, .external_lex_state = 3}, + [2496] = {.lex_state = 0, .external_lex_state = 3}, [2497] = {.lex_state = 0, .external_lex_state = 3}, [2498] = {.lex_state = 0, .external_lex_state = 3}, - [2499] = {.lex_state = 3, .external_lex_state = 3}, + [2499] = {.lex_state = 19, .external_lex_state = 3}, [2500] = {.lex_state = 0, .external_lex_state = 3}, [2501] = {.lex_state = 0, .external_lex_state = 3}, - [2502] = {.lex_state = 0, .external_lex_state = 3}, - [2503] = {.lex_state = 0, .external_lex_state = 3}, + [2502] = {.lex_state = 3, .external_lex_state = 3}, + [2503] = {.lex_state = 63, .external_lex_state = 3}, [2504] = {.lex_state = 0, .external_lex_state = 3}, [2505] = {.lex_state = 0, .external_lex_state = 3}, - [2506] = {.lex_state = 63, .external_lex_state = 3}, - [2507] = {.lex_state = 19, .external_lex_state = 3}, - [2508] = {.lex_state = 19, .external_lex_state = 3}, - [2509] = {.lex_state = 0, .external_lex_state = 3}, - [2510] = {.lex_state = 0, .external_lex_state = 3}, + [2506] = {.lex_state = 0, .external_lex_state = 3}, + [2507] = {.lex_state = 0, .external_lex_state = 3}, + [2508] = {.lex_state = 0, .external_lex_state = 3}, + [2509] = {.lex_state = 63, .external_lex_state = 3}, + [2510] = {.lex_state = 19, .external_lex_state = 3}, [2511] = {.lex_state = 0, .external_lex_state = 3}, - [2512] = {.lex_state = 63, .external_lex_state = 3}, - [2513] = {.lex_state = 63, .external_lex_state = 3}, - [2514] = {.lex_state = 0, .external_lex_state = 3}, - [2515] = {.lex_state = 63, .external_lex_state = 3}, - [2516] = {.lex_state = 63, .external_lex_state = 3}, + [2512] = {.lex_state = 19, .external_lex_state = 3}, + [2513] = {.lex_state = 0, .external_lex_state = 3}, + [2514] = {.lex_state = 63, .external_lex_state = 3}, + [2515] = {.lex_state = 0, .external_lex_state = 3}, + [2516] = {.lex_state = 0, .external_lex_state = 3}, [2517] = {.lex_state = 0, .external_lex_state = 3}, - [2518] = {.lex_state = 5, .external_lex_state = 3}, - [2519] = {.lex_state = 19, .external_lex_state = 3}, - [2520] = {.lex_state = 0, .external_lex_state = 3}, - [2521] = {.lex_state = 0, .external_lex_state = 3}, - [2522] = {.lex_state = 0, .external_lex_state = 3}, - [2523] = {.lex_state = 19, .external_lex_state = 3}, + [2518] = {.lex_state = 0, .external_lex_state = 3}, + [2519] = {.lex_state = 0, .external_lex_state = 3}, + [2520] = {.lex_state = 63, .external_lex_state = 3}, + [2521] = {.lex_state = 19, .external_lex_state = 3}, + [2522] = {.lex_state = 5, .external_lex_state = 3}, + [2523] = {.lex_state = 63, .external_lex_state = 3}, [2524] = {.lex_state = 0, .external_lex_state = 3}, [2525] = {.lex_state = 0, .external_lex_state = 3}, [2526] = {.lex_state = 0, .external_lex_state = 3}, @@ -19820,144 +19854,144 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2529] = {.lex_state = 0, .external_lex_state = 3}, [2530] = {.lex_state = 0, .external_lex_state = 3}, [2531] = {.lex_state = 63, .external_lex_state = 3}, - [2532] = {.lex_state = 0, .external_lex_state = 3}, + [2532] = {.lex_state = 3, .external_lex_state = 3}, [2533] = {.lex_state = 0, .external_lex_state = 3}, [2534] = {.lex_state = 0, .external_lex_state = 3}, - [2535] = {.lex_state = 3, .external_lex_state = 3}, + [2535] = {.lex_state = 0, .external_lex_state = 3}, [2536] = {.lex_state = 0, .external_lex_state = 3}, [2537] = {.lex_state = 0, .external_lex_state = 3}, - [2538] = {.lex_state = 63, .external_lex_state = 3}, - [2539] = {.lex_state = 0, .external_lex_state = 3}, + [2538] = {.lex_state = 19, .external_lex_state = 3}, + [2539] = {.lex_state = 3, .external_lex_state = 3}, [2540] = {.lex_state = 0, .external_lex_state = 3}, [2541] = {.lex_state = 0, .external_lex_state = 3}, - [2542] = {.lex_state = 3, .external_lex_state = 3}, - [2543] = {.lex_state = 3, .external_lex_state = 3}, - [2544] = {.lex_state = 63, .external_lex_state = 3}, - [2545] = {.lex_state = 0, .external_lex_state = 3}, + [2542] = {.lex_state = 63, .external_lex_state = 3}, + [2543] = {.lex_state = 63, .external_lex_state = 3}, + [2544] = {.lex_state = 3, .external_lex_state = 3}, + [2545] = {.lex_state = 63, .external_lex_state = 3}, [2546] = {.lex_state = 0, .external_lex_state = 3}, [2547] = {.lex_state = 0, .external_lex_state = 3}, - [2548] = {.lex_state = 0, .external_lex_state = 3}, - [2549] = {.lex_state = 3, .external_lex_state = 3}, + [2548] = {.lex_state = 63, .external_lex_state = 3}, + [2549] = {.lex_state = 0, .external_lex_state = 3}, [2550] = {.lex_state = 0, .external_lex_state = 3}, [2551] = {.lex_state = 0, .external_lex_state = 3}, [2552] = {.lex_state = 0, .external_lex_state = 3}, [2553] = {.lex_state = 0, .external_lex_state = 3}, - [2554] = {.lex_state = 0, .external_lex_state = 3}, + [2554] = {.lex_state = 63, .external_lex_state = 3}, [2555] = {.lex_state = 0, .external_lex_state = 3}, [2556] = {.lex_state = 0, .external_lex_state = 3}, [2557] = {.lex_state = 0, .external_lex_state = 3}, [2558] = {.lex_state = 0, .external_lex_state = 3}, - [2559] = {.lex_state = 0, .external_lex_state = 3}, - [2560] = {.lex_state = 0, .external_lex_state = 3}, - [2561] = {.lex_state = 0, .external_lex_state = 3}, - [2562] = {.lex_state = 63, .external_lex_state = 3}, + [2559] = {.lex_state = 63, .external_lex_state = 3}, + [2560] = {.lex_state = 3, .external_lex_state = 3}, + [2561] = {.lex_state = 63, .external_lex_state = 3}, + [2562] = {.lex_state = 0, .external_lex_state = 3}, [2563] = {.lex_state = 0, .external_lex_state = 3}, [2564] = {.lex_state = 0, .external_lex_state = 3}, [2565] = {.lex_state = 0, .external_lex_state = 3}, [2566] = {.lex_state = 0, .external_lex_state = 3}, - [2567] = {.lex_state = 63, .external_lex_state = 3}, - [2568] = {.lex_state = 11, .external_lex_state = 3}, - [2569] = {.lex_state = 0, .external_lex_state = 3}, - [2570] = {.lex_state = 63, .external_lex_state = 3}, + [2567] = {.lex_state = 0, .external_lex_state = 3}, + [2568] = {.lex_state = 0, .external_lex_state = 3}, + [2569] = {.lex_state = 63, .external_lex_state = 3}, + [2570] = {.lex_state = 0, .external_lex_state = 3}, [2571] = {.lex_state = 0, .external_lex_state = 3}, [2572] = {.lex_state = 0, .external_lex_state = 3}, - [2573] = {.lex_state = 0, .external_lex_state = 3}, + [2573] = {.lex_state = 63, .external_lex_state = 3}, [2574] = {.lex_state = 0, .external_lex_state = 3}, [2575] = {.lex_state = 0, .external_lex_state = 3}, [2576] = {.lex_state = 0, .external_lex_state = 3}, - [2577] = {.lex_state = 63, .external_lex_state = 3}, + [2577] = {.lex_state = 0, .external_lex_state = 3}, [2578] = {.lex_state = 0, .external_lex_state = 3}, [2579] = {.lex_state = 0, .external_lex_state = 3}, [2580] = {.lex_state = 0, .external_lex_state = 3}, - [2581] = {.lex_state = 11, .external_lex_state = 3}, + [2581] = {.lex_state = 0, .external_lex_state = 3}, [2582] = {.lex_state = 0, .external_lex_state = 3}, [2583] = {.lex_state = 0, .external_lex_state = 3}, [2584] = {.lex_state = 0, .external_lex_state = 3}, [2585] = {.lex_state = 0, .external_lex_state = 3}, - [2586] = {.lex_state = 0, .external_lex_state = 3}, + [2586] = {.lex_state = 5, .external_lex_state = 3}, [2587] = {.lex_state = 0, .external_lex_state = 3}, - [2588] = {.lex_state = 0, .external_lex_state = 3}, + [2588] = {.lex_state = 63, .external_lex_state = 3}, [2589] = {.lex_state = 0, .external_lex_state = 3}, [2590] = {.lex_state = 0, .external_lex_state = 3}, [2591] = {.lex_state = 0, .external_lex_state = 3}, [2592] = {.lex_state = 0, .external_lex_state = 3}, [2593] = {.lex_state = 63, .external_lex_state = 3}, - [2594] = {.lex_state = 63, .external_lex_state = 3}, + [2594] = {.lex_state = 0, .external_lex_state = 3}, [2595] = {.lex_state = 0, .external_lex_state = 3}, [2596] = {.lex_state = 0, .external_lex_state = 3}, [2597] = {.lex_state = 0, .external_lex_state = 3}, - [2598] = {.lex_state = 63, .external_lex_state = 3}, - [2599] = {.lex_state = 0, .external_lex_state = 3}, + [2598] = {.lex_state = 0, .external_lex_state = 3}, + [2599] = {.lex_state = 63, .external_lex_state = 3}, [2600] = {.lex_state = 0, .external_lex_state = 3}, [2601] = {.lex_state = 0, .external_lex_state = 3}, [2602] = {.lex_state = 0, .external_lex_state = 3}, [2603] = {.lex_state = 0, .external_lex_state = 3}, [2604] = {.lex_state = 0, .external_lex_state = 3}, - [2605] = {.lex_state = 12, .external_lex_state = 3}, + [2605] = {.lex_state = 0, .external_lex_state = 3}, [2606] = {.lex_state = 0, .external_lex_state = 3}, [2607] = {.lex_state = 0, .external_lex_state = 3}, [2608] = {.lex_state = 0, .external_lex_state = 3}, - [2609] = {.lex_state = 12, .external_lex_state = 3}, + [2609] = {.lex_state = 0, .external_lex_state = 3}, [2610] = {.lex_state = 0, .external_lex_state = 3}, [2611] = {.lex_state = 0, .external_lex_state = 3}, [2612] = {.lex_state = 0, .external_lex_state = 3}, [2613] = {.lex_state = 0, .external_lex_state = 3}, [2614] = {.lex_state = 0, .external_lex_state = 3}, - [2615] = {.lex_state = 0, .external_lex_state = 3}, + [2615] = {.lex_state = 3, .external_lex_state = 3}, [2616] = {.lex_state = 0, .external_lex_state = 3}, [2617] = {.lex_state = 0, .external_lex_state = 3}, [2618] = {.lex_state = 0, .external_lex_state = 3}, - [2619] = {.lex_state = 3, .external_lex_state = 3}, + [2619] = {.lex_state = 0, .external_lex_state = 3}, [2620] = {.lex_state = 0, .external_lex_state = 3}, [2621] = {.lex_state = 0, .external_lex_state = 3}, [2622] = {.lex_state = 0, .external_lex_state = 3}, - [2623] = {.lex_state = 0, .external_lex_state = 3}, - [2624] = {.lex_state = 3, .external_lex_state = 3}, + [2623] = {.lex_state = 12, .external_lex_state = 3}, + [2624] = {.lex_state = 0, .external_lex_state = 3}, [2625] = {.lex_state = 0, .external_lex_state = 3}, [2626] = {.lex_state = 0, .external_lex_state = 3}, - [2627] = {.lex_state = 0, .external_lex_state = 3}, - [2628] = {.lex_state = 0, .external_lex_state = 3}, - [2629] = {.lex_state = 3, .external_lex_state = 3}, + [2627] = {.lex_state = 3, .external_lex_state = 3}, + [2628] = {.lex_state = 3, .external_lex_state = 3}, + [2629] = {.lex_state = 0, .external_lex_state = 3}, [2630] = {.lex_state = 0, .external_lex_state = 3}, [2631] = {.lex_state = 0, .external_lex_state = 3}, [2632] = {.lex_state = 0, .external_lex_state = 3}, [2633] = {.lex_state = 0, .external_lex_state = 3}, - [2634] = {.lex_state = 0, .external_lex_state = 3}, + [2634] = {.lex_state = 12, .external_lex_state = 3}, [2635] = {.lex_state = 0, .external_lex_state = 3}, [2636] = {.lex_state = 0, .external_lex_state = 3}, [2637] = {.lex_state = 0, .external_lex_state = 3}, - [2638] = {.lex_state = 0, .external_lex_state = 3}, - [2639] = {.lex_state = 0, .external_lex_state = 3}, + [2638] = {.lex_state = 63, .external_lex_state = 3}, + [2639] = {.lex_state = 63, .external_lex_state = 3}, [2640] = {.lex_state = 0, .external_lex_state = 3}, [2641] = {.lex_state = 0, .external_lex_state = 3}, - [2642] = {.lex_state = 3, .external_lex_state = 3}, + [2642] = {.lex_state = 0, .external_lex_state = 3}, [2643] = {.lex_state = 0, .external_lex_state = 3}, [2644] = {.lex_state = 0, .external_lex_state = 3}, - [2645] = {.lex_state = 0, .external_lex_state = 3}, + [2645] = {.lex_state = 3, .external_lex_state = 3}, [2646] = {.lex_state = 0, .external_lex_state = 3}, [2647] = {.lex_state = 0, .external_lex_state = 3}, - [2648] = {.lex_state = 12, .external_lex_state = 3}, - [2649] = {.lex_state = 12, .external_lex_state = 3}, + [2648] = {.lex_state = 0, .external_lex_state = 3}, + [2649] = {.lex_state = 0, .external_lex_state = 3}, [2650] = {.lex_state = 0, .external_lex_state = 3}, [2651] = {.lex_state = 0, .external_lex_state = 3}, [2652] = {.lex_state = 0, .external_lex_state = 3}, [2653] = {.lex_state = 0, .external_lex_state = 3}, [2654] = {.lex_state = 0, .external_lex_state = 3}, - [2655] = {.lex_state = 0, .external_lex_state = 3}, + [2655] = {.lex_state = 12, .external_lex_state = 3}, [2656] = {.lex_state = 0, .external_lex_state = 3}, - [2657] = {.lex_state = 0, .external_lex_state = 3}, + [2657] = {.lex_state = 12, .external_lex_state = 3}, [2658] = {.lex_state = 0, .external_lex_state = 3}, - [2659] = {.lex_state = 63, .external_lex_state = 3}, + [2659] = {.lex_state = 0, .external_lex_state = 3}, [2660] = {.lex_state = 0, .external_lex_state = 3}, [2661] = {.lex_state = 0, .external_lex_state = 3}, - [2662] = {.lex_state = 0, .external_lex_state = 3}, + [2662] = {.lex_state = 12, .external_lex_state = 3}, [2663] = {.lex_state = 0, .external_lex_state = 3}, [2664] = {.lex_state = 0, .external_lex_state = 3}, [2665] = {.lex_state = 0, .external_lex_state = 3}, - [2666] = {.lex_state = 0, .external_lex_state = 3}, - [2667] = {.lex_state = 0, .external_lex_state = 3}, + [2666] = {.lex_state = 63, .external_lex_state = 3}, + [2667] = {.lex_state = 3, .external_lex_state = 3}, [2668] = {.lex_state = 0, .external_lex_state = 3}, - [2669] = {.lex_state = 0, .external_lex_state = 3}, + [2669] = {.lex_state = 63, .external_lex_state = 3}, [2670] = {.lex_state = 0, .external_lex_state = 3}, [2671] = {.lex_state = 0, .external_lex_state = 3}, [2672] = {.lex_state = 0, .external_lex_state = 3}, @@ -19969,81 +20003,81 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2678] = {.lex_state = 0, .external_lex_state = 3}, [2679] = {.lex_state = 0, .external_lex_state = 3}, [2680] = {.lex_state = 0, .external_lex_state = 3}, - [2681] = {.lex_state = 0, .external_lex_state = 3}, + [2681] = {.lex_state = 12, .external_lex_state = 3}, [2682] = {.lex_state = 0, .external_lex_state = 3}, [2683] = {.lex_state = 0, .external_lex_state = 3}, [2684] = {.lex_state = 0, .external_lex_state = 3}, [2685] = {.lex_state = 0, .external_lex_state = 3}, [2686] = {.lex_state = 0, .external_lex_state = 3}, - [2687] = {.lex_state = 12, .external_lex_state = 3}, + [2687] = {.lex_state = 0, .external_lex_state = 3}, [2688] = {.lex_state = 0, .external_lex_state = 3}, [2689] = {.lex_state = 0, .external_lex_state = 3}, - [2690] = {.lex_state = 0, .external_lex_state = 3}, + [2690] = {.lex_state = 12, .external_lex_state = 3}, [2691] = {.lex_state = 0, .external_lex_state = 3}, - [2692] = {.lex_state = 0, .external_lex_state = 3}, + [2692] = {.lex_state = 3, .external_lex_state = 3}, [2693] = {.lex_state = 0, .external_lex_state = 3}, [2694] = {.lex_state = 0, .external_lex_state = 3}, - [2695] = {.lex_state = 12, .external_lex_state = 3}, + [2695] = {.lex_state = 0, .external_lex_state = 3}, [2696] = {.lex_state = 0, .external_lex_state = 3}, - [2697] = {.lex_state = 12, .external_lex_state = 3}, + [2697] = {.lex_state = 0, .external_lex_state = 3}, [2698] = {.lex_state = 0, .external_lex_state = 3}, [2699] = {.lex_state = 12, .external_lex_state = 3}, - [2700] = {.lex_state = 63, .external_lex_state = 3}, - [2701] = {.lex_state = 0, .external_lex_state = 3}, + [2700] = {.lex_state = 0, .external_lex_state = 3}, + [2701] = {.lex_state = 12, .external_lex_state = 3}, [2702] = {.lex_state = 0, .external_lex_state = 3}, - [2703] = {.lex_state = 3, .external_lex_state = 3}, - [2704] = {.lex_state = 12, .external_lex_state = 3}, + [2703] = {.lex_state = 0, .external_lex_state = 3}, + [2704] = {.lex_state = 63, .external_lex_state = 3}, [2705] = {.lex_state = 0, .external_lex_state = 3}, - [2706] = {.lex_state = 0, .external_lex_state = 3}, + [2706] = {.lex_state = 12, .external_lex_state = 3}, [2707] = {.lex_state = 0, .external_lex_state = 3}, - [2708] = {.lex_state = 0, .external_lex_state = 3}, + [2708] = {.lex_state = 12, .external_lex_state = 3}, [2709] = {.lex_state = 0, .external_lex_state = 3}, - [2710] = {.lex_state = 12, .external_lex_state = 3}, + [2710] = {.lex_state = 3, .external_lex_state = 3}, [2711] = {.lex_state = 0, .external_lex_state = 3}, [2712] = {.lex_state = 0, .external_lex_state = 3}, [2713] = {.lex_state = 0, .external_lex_state = 3}, - [2714] = {.lex_state = 0, .external_lex_state = 3}, + [2714] = {.lex_state = 12, .external_lex_state = 3}, [2715] = {.lex_state = 0, .external_lex_state = 3}, - [2716] = {.lex_state = 12, .external_lex_state = 3}, + [2716] = {.lex_state = 0, .external_lex_state = 3}, [2717] = {.lex_state = 0, .external_lex_state = 3}, - [2718] = {.lex_state = 12, .external_lex_state = 3}, + [2718] = {.lex_state = 0, .external_lex_state = 3}, [2719] = {.lex_state = 12, .external_lex_state = 3}, [2720] = {.lex_state = 12, .external_lex_state = 3}, - [2721] = {.lex_state = 12, .external_lex_state = 3}, + [2721] = {.lex_state = 0, .external_lex_state = 3}, [2722] = {.lex_state = 0, .external_lex_state = 3}, - [2723] = {.lex_state = 0, .external_lex_state = 3}, - [2724] = {.lex_state = 3, .external_lex_state = 3}, - [2725] = {.lex_state = 63, .external_lex_state = 3}, + [2723] = {.lex_state = 12, .external_lex_state = 3}, + [2724] = {.lex_state = 12, .external_lex_state = 3}, + [2725] = {.lex_state = 12, .external_lex_state = 3}, [2726] = {.lex_state = 0, .external_lex_state = 3}, - [2727] = {.lex_state = 12, .external_lex_state = 3}, + [2727] = {.lex_state = 0, .external_lex_state = 3}, [2728] = {.lex_state = 0, .external_lex_state = 3}, [2729] = {.lex_state = 0, .external_lex_state = 3}, [2730] = {.lex_state = 0, .external_lex_state = 3}, [2731] = {.lex_state = 12, .external_lex_state = 3}, - [2732] = {.lex_state = 0, .external_lex_state = 3}, + [2732] = {.lex_state = 12, .external_lex_state = 3}, [2733] = {.lex_state = 0, .external_lex_state = 3}, - [2734] = {.lex_state = 63, .external_lex_state = 3}, + [2734] = {.lex_state = 0, .external_lex_state = 3}, [2735] = {.lex_state = 12, .external_lex_state = 3}, - [2736] = {.lex_state = 12, .external_lex_state = 3}, + [2736] = {.lex_state = 0, .external_lex_state = 3}, [2737] = {.lex_state = 0, .external_lex_state = 3}, [2738] = {.lex_state = 0, .external_lex_state = 3}, - [2739] = {.lex_state = 0, .external_lex_state = 3}, - [2740] = {.lex_state = 0, .external_lex_state = 3}, + [2739] = {.lex_state = 12, .external_lex_state = 3}, + [2740] = {.lex_state = 12, .external_lex_state = 3}, [2741] = {.lex_state = 0, .external_lex_state = 3}, - [2742] = {.lex_state = 3, .external_lex_state = 3}, + [2742] = {.lex_state = 0, .external_lex_state = 3}, [2743] = {.lex_state = 0, .external_lex_state = 3}, [2744] = {.lex_state = 3, .external_lex_state = 3}, [2745] = {.lex_state = 0, .external_lex_state = 3}, - [2746] = {.lex_state = 0, .external_lex_state = 3}, - [2747] = {.lex_state = 12, .external_lex_state = 3}, - [2748] = {.lex_state = 3, .external_lex_state = 3}, + [2746] = {.lex_state = 3, .external_lex_state = 3}, + [2747] = {.lex_state = 0, .external_lex_state = 3}, + [2748] = {.lex_state = 0, .external_lex_state = 3}, [2749] = {.lex_state = 0, .external_lex_state = 3}, [2750] = {.lex_state = 0, .external_lex_state = 3}, - [2751] = {.lex_state = 3, .external_lex_state = 3}, + [2751] = {.lex_state = 0, .external_lex_state = 3}, [2752] = {.lex_state = 0, .external_lex_state = 3}, - [2753] = {.lex_state = 63, .external_lex_state = 3}, + [2753] = {.lex_state = 0, .external_lex_state = 3}, [2754] = {.lex_state = 0, .external_lex_state = 3}, - [2755] = {.lex_state = 12, .external_lex_state = 3}, + [2755] = {.lex_state = 3, .external_lex_state = 3}, [2756] = {.lex_state = 0, .external_lex_state = 3}, [2757] = {.lex_state = 0, .external_lex_state = 3}, [2758] = {.lex_state = 0, .external_lex_state = 3}, @@ -20053,11 +20087,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2762] = {.lex_state = 0, .external_lex_state = 3}, [2763] = {.lex_state = 0, .external_lex_state = 3}, [2764] = {.lex_state = 0, .external_lex_state = 3}, - [2765] = {.lex_state = 12, .external_lex_state = 3}, + [2765] = {.lex_state = 0, .external_lex_state = 3}, [2766] = {.lex_state = 0, .external_lex_state = 3}, [2767] = {.lex_state = 0, .external_lex_state = 3}, [2768] = {.lex_state = 0, .external_lex_state = 3}, - [2769] = {.lex_state = 3, .external_lex_state = 3}, + [2769] = {.lex_state = 0, .external_lex_state = 3}, + [2770] = {.lex_state = 0, .external_lex_state = 3}, + [2771] = {.lex_state = 3, .external_lex_state = 3}, + [2772] = {.lex_state = 0, .external_lex_state = 3}, + [2773] = {.lex_state = 0, .external_lex_state = 3}, }; enum { @@ -20242,80 +20280,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [1] = { - [sym_source_file] = STATE(2660), - [sym__statement] = STATE(559), - [sym_empty_statement] = STATE(559), - [sym_expression_statement] = STATE(559), - [sym_macro_definition] = STATE(559), - [sym_attribute_item] = STATE(559), - [sym_inner_attribute_item] = STATE(559), - [sym_mod_item] = STATE(559), - [sym_foreign_mod_item] = STATE(559), - [sym_struct_item] = STATE(559), - [sym_union_item] = STATE(559), - [sym_enum_item] = STATE(559), - [sym_extern_crate_declaration] = STATE(559), - [sym_const_item] = STATE(559), - [sym_static_item] = STATE(559), - [sym_type_item] = STATE(559), - [sym_function_item] = STATE(559), - [sym_function_signature_item] = STATE(559), - [sym_function_modifiers] = STATE(2748), - [sym_impl_item] = STATE(559), - [sym_trait_item] = STATE(559), - [sym_associated_type] = STATE(559), - [sym_let_declaration] = STATE(559), - [sym_use_declaration] = STATE(559), - [sym_extern_modifier] = STATE(1666), - [sym_visibility_modifier] = STATE(1455), - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2320), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1388), - [sym_macro_invocation] = STATE(80), - [sym_scoped_identifier] = STATE(1292), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(83), - [sym_match_expression] = STATE(83), - [sym_while_expression] = STATE(83), - [sym_loop_expression] = STATE(83), - [sym_for_expression] = STATE(83), - [sym_const_block] = STATE(83), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2710), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(83), - [sym_async_block] = STATE(83), - [sym_block] = STATE(83), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1220), - [sym_identifier] = STATE(1279), + [sym_source_file] = STATE(2745), + [sym__statement] = STATE(554), + [sym_empty_statement] = STATE(554), + [sym_expression_statement] = STATE(554), + [sym_macro_definition] = STATE(554), + [sym_attribute_item] = STATE(554), + [sym_inner_attribute_item] = STATE(554), + [sym_mod_item] = STATE(554), + [sym_foreign_mod_item] = STATE(554), + [sym_struct_item] = STATE(554), + [sym_union_item] = STATE(554), + [sym_enum_item] = STATE(554), + [sym_extern_crate_declaration] = STATE(554), + [sym_const_item] = STATE(554), + [sym_static_item] = STATE(554), + [sym_type_item] = STATE(554), + [sym_function_item] = STATE(554), + [sym_function_signature_item] = STATE(554), + [sym_function_modifiers] = STATE(2744), + [sym_impl_item] = STATE(554), + [sym_trait_item] = STATE(554), + [sym_associated_type] = STATE(554), + [sym_let_declaration] = STATE(554), + [sym_use_declaration] = STATE(554), + [sym_extern_modifier] = STATE(1663), + [sym_visibility_modifier] = STATE(1454), + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2176), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1415), + [sym_macro_invocation] = STATE(92), + [sym_scoped_identifier] = STATE(1297), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(173), + [sym_match_expression] = STATE(173), + [sym_while_expression] = STATE(173), + [sym_loop_expression] = STATE(173), + [sym_for_expression] = STATE(173), + [sym_const_block] = STATE(173), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(65), + [sym_loop_label] = STATE(2723), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(173), + [sym_async_block] = STATE(173), + [sym_block] = STATE(173), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1189), + [sym_identifier] = STATE(1283), [aux_sym_source_file_repeat1] = STATE(4), - [aux_sym_function_modifiers_repeat1] = STATE(1694), + [aux_sym_function_modifiers_repeat1] = STATE(1681), [ts_builtin_sym_end] = ACTIONS(5), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), @@ -20411,61 +20449,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_type_item] = STATE(15), [sym_function_item] = STATE(15), [sym_function_signature_item] = STATE(15), - [sym_function_modifiers] = STATE(2748), + [sym_function_modifiers] = STATE(2744), [sym_impl_item] = STATE(15), [sym_trait_item] = STATE(15), [sym_associated_type] = STATE(15), [sym_let_declaration] = STATE(15), [sym_use_declaration] = STATE(15), - [sym_extern_modifier] = STATE(1666), - [sym_visibility_modifier] = STATE(1455), - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2320), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1362), - [sym_macro_invocation] = STATE(80), - [sym_scoped_identifier] = STATE(1292), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(83), - [sym_match_expression] = STATE(83), - [sym_while_expression] = STATE(83), - [sym_loop_expression] = STATE(83), - [sym_for_expression] = STATE(83), - [sym_const_block] = STATE(83), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2710), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(83), - [sym_async_block] = STATE(83), - [sym_block] = STATE(83), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1220), - [sym_identifier] = STATE(1279), - [aux_sym_function_modifiers_repeat1] = STATE(1694), + [sym_extern_modifier] = STATE(1663), + [sym_visibility_modifier] = STATE(1454), + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2176), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1376), + [sym_macro_invocation] = STATE(92), + [sym_scoped_identifier] = STATE(1297), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(173), + [sym_match_expression] = STATE(173), + [sym_while_expression] = STATE(173), + [sym_loop_expression] = STATE(173), + [sym_for_expression] = STATE(173), + [sym_const_block] = STATE(173), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(65), + [sym_loop_label] = STATE(2723), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(173), + [sym_async_block] = STATE(173), + [sym_block] = STATE(173), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1189), + [sym_identifier] = STATE(1283), + [aux_sym_function_modifiers_repeat1] = STATE(1681), [aux_sym_block_repeat1] = STATE(15), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), @@ -20545,231 +20583,231 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [3] = { - [sym__statement] = STATE(5), - [sym_empty_statement] = STATE(5), - [sym_expression_statement] = STATE(5), - [sym_macro_definition] = STATE(5), - [sym_attribute_item] = STATE(5), - [sym_inner_attribute_item] = STATE(5), - [sym_mod_item] = STATE(5), - [sym_foreign_mod_item] = STATE(5), - [sym_struct_item] = STATE(5), - [sym_union_item] = STATE(5), - [sym_enum_item] = STATE(5), - [sym_extern_crate_declaration] = STATE(5), - [sym_const_item] = STATE(5), - [sym_static_item] = STATE(5), - [sym_type_item] = STATE(5), - [sym_function_item] = STATE(5), - [sym_function_signature_item] = STATE(5), - [sym_function_modifiers] = STATE(2748), - [sym_impl_item] = STATE(5), - [sym_trait_item] = STATE(5), - [sym_associated_type] = STATE(5), - [sym_let_declaration] = STATE(5), - [sym_use_declaration] = STATE(5), - [sym_extern_modifier] = STATE(1666), - [sym_visibility_modifier] = STATE(1455), - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2320), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1346), - [sym_macro_invocation] = STATE(80), - [sym_scoped_identifier] = STATE(1292), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(83), - [sym_match_expression] = STATE(83), - [sym_while_expression] = STATE(83), - [sym_loop_expression] = STATE(83), - [sym_for_expression] = STATE(83), - [sym_const_block] = STATE(83), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2710), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(83), - [sym_async_block] = STATE(83), - [sym_block] = STATE(83), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1220), - [sym_identifier] = STATE(1279), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [aux_sym_block_repeat1] = STATE(5), - [sym__primitive_identifier] = ACTIONS(7), - [anon_sym_SEMI] = ACTIONS(9), - [anon_sym_macro_rules_BANG] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(111), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_async] = ACTIONS(23), - [anon_sym_break] = ACTIONS(25), - [anon_sym_const] = ACTIONS(27), - [anon_sym_continue] = ACTIONS(29), - [anon_sym_default] = ACTIONS(31), - [anon_sym_enum] = ACTIONS(33), - [anon_sym_fn] = ACTIONS(35), - [anon_sym_for] = ACTIONS(37), - [anon_sym_if] = ACTIONS(39), - [anon_sym_impl] = ACTIONS(41), - [anon_sym_let] = ACTIONS(43), - [anon_sym_loop] = ACTIONS(45), - [anon_sym_match] = ACTIONS(47), - [anon_sym_mod] = ACTIONS(49), - [anon_sym_pub] = ACTIONS(51), - [anon_sym_return] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_struct] = ACTIONS(57), - [anon_sym_trait] = ACTIONS(59), - [anon_sym_type] = ACTIONS(61), - [anon_sym_union] = ACTIONS(63), - [anon_sym_unsafe] = ACTIONS(65), - [anon_sym_use] = ACTIONS(67), - [anon_sym_while] = ACTIONS(69), - [anon_sym_POUND] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_extern] = ACTIONS(73), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_AMP] = ACTIONS(79), - [anon_sym_DOT_DOT] = ACTIONS(81), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(83), - [anon_sym_yield] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [anon_sym_u8] = ACTIONS(95), - [anon_sym_i8] = ACTIONS(95), - [anon_sym_u16] = ACTIONS(95), - [anon_sym_i16] = ACTIONS(95), - [anon_sym_u32] = ACTIONS(95), - [anon_sym_i32] = ACTIONS(95), - [anon_sym_u64] = ACTIONS(95), - [anon_sym_i64] = ACTIONS(95), - [anon_sym_u128] = ACTIONS(95), - [anon_sym_i128] = ACTIONS(95), - [anon_sym_isize] = ACTIONS(95), - [anon_sym_usize] = ACTIONS(95), - [anon_sym_f32] = ACTIONS(95), - [anon_sym_f64] = ACTIONS(95), - [anon_sym_bool] = ACTIONS(95), - [anon_sym_str] = ACTIONS(95), - [anon_sym_char] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(97), - [sym_self] = ACTIONS(99), - [sym_super] = ACTIONS(101), - [sym_crate] = ACTIONS(103), - [sym_metavariable] = ACTIONS(105), - [sym_grit_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [sym__statement] = STATE(554), + [sym_empty_statement] = STATE(554), + [sym_expression_statement] = STATE(554), + [sym_macro_definition] = STATE(554), + [sym_attribute_item] = STATE(554), + [sym_inner_attribute_item] = STATE(554), + [sym_mod_item] = STATE(554), + [sym_foreign_mod_item] = STATE(554), + [sym_struct_item] = STATE(554), + [sym_union_item] = STATE(554), + [sym_enum_item] = STATE(554), + [sym_extern_crate_declaration] = STATE(554), + [sym_const_item] = STATE(554), + [sym_static_item] = STATE(554), + [sym_type_item] = STATE(554), + [sym_function_item] = STATE(554), + [sym_function_signature_item] = STATE(554), + [sym_function_modifiers] = STATE(2744), + [sym_impl_item] = STATE(554), + [sym_trait_item] = STATE(554), + [sym_associated_type] = STATE(554), + [sym_let_declaration] = STATE(554), + [sym_use_declaration] = STATE(554), + [sym_extern_modifier] = STATE(1663), + [sym_visibility_modifier] = STATE(1454), + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2176), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1415), + [sym_macro_invocation] = STATE(92), + [sym_scoped_identifier] = STATE(1297), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(173), + [sym_match_expression] = STATE(173), + [sym_while_expression] = STATE(173), + [sym_loop_expression] = STATE(173), + [sym_for_expression] = STATE(173), + [sym_const_block] = STATE(173), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(65), + [sym_loop_label] = STATE(2723), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(173), + [sym_async_block] = STATE(173), + [sym_block] = STATE(173), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1189), + [sym_identifier] = STATE(1283), + [aux_sym_source_file_repeat1] = STATE(3), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [ts_builtin_sym_end] = ACTIONS(111), + [sym__primitive_identifier] = ACTIONS(113), + [anon_sym_SEMI] = ACTIONS(116), + [anon_sym_macro_rules_BANG] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(125), + [anon_sym_LBRACK] = ACTIONS(128), + [anon_sym_STAR] = ACTIONS(131), + [anon_sym_SQUOTE] = ACTIONS(134), + [anon_sym_async] = ACTIONS(137), + [anon_sym_break] = ACTIONS(140), + [anon_sym_const] = ACTIONS(143), + [anon_sym_continue] = ACTIONS(146), + [anon_sym_default] = ACTIONS(149), + [anon_sym_enum] = ACTIONS(152), + [anon_sym_fn] = ACTIONS(155), + [anon_sym_for] = ACTIONS(158), + [anon_sym_if] = ACTIONS(161), + [anon_sym_impl] = ACTIONS(164), + [anon_sym_let] = ACTIONS(167), + [anon_sym_loop] = ACTIONS(170), + [anon_sym_match] = ACTIONS(173), + [anon_sym_mod] = ACTIONS(176), + [anon_sym_pub] = ACTIONS(179), + [anon_sym_return] = ACTIONS(182), + [anon_sym_static] = ACTIONS(185), + [anon_sym_struct] = ACTIONS(188), + [anon_sym_trait] = ACTIONS(191), + [anon_sym_type] = ACTIONS(194), + [anon_sym_union] = ACTIONS(197), + [anon_sym_unsafe] = ACTIONS(200), + [anon_sym_use] = ACTIONS(203), + [anon_sym_while] = ACTIONS(206), + [anon_sym_POUND] = ACTIONS(209), + [anon_sym_BANG] = ACTIONS(131), + [anon_sym_extern] = ACTIONS(212), + [anon_sym_LT] = ACTIONS(215), + [anon_sym_COLON_COLON] = ACTIONS(218), + [anon_sym_AMP] = ACTIONS(221), + [anon_sym_DOT_DOT] = ACTIONS(224), + [anon_sym_DASH] = ACTIONS(131), + [anon_sym_PIPE] = ACTIONS(227), + [anon_sym_yield] = ACTIONS(230), + [anon_sym_move] = ACTIONS(233), + [sym_integer_literal] = ACTIONS(236), + [aux_sym_string_literal_token1] = ACTIONS(239), + [sym_char_literal] = ACTIONS(236), + [anon_sym_true] = ACTIONS(242), + [anon_sym_false] = ACTIONS(242), + [anon_sym_u8] = ACTIONS(245), + [anon_sym_i8] = ACTIONS(245), + [anon_sym_u16] = ACTIONS(245), + [anon_sym_i16] = ACTIONS(245), + [anon_sym_u32] = ACTIONS(245), + [anon_sym_i32] = ACTIONS(245), + [anon_sym_u64] = ACTIONS(245), + [anon_sym_i64] = ACTIONS(245), + [anon_sym_u128] = ACTIONS(245), + [anon_sym_i128] = ACTIONS(245), + [anon_sym_isize] = ACTIONS(245), + [anon_sym_usize] = ACTIONS(245), + [anon_sym_f32] = ACTIONS(245), + [anon_sym_f64] = ACTIONS(245), + [anon_sym_bool] = ACTIONS(245), + [anon_sym_str] = ACTIONS(245), + [anon_sym_char] = ACTIONS(245), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(248), + [sym_self] = ACTIONS(251), + [sym_super] = ACTIONS(254), + [sym_crate] = ACTIONS(257), + [sym_metavariable] = ACTIONS(260), + [sym_grit_metavariable] = ACTIONS(263), + [sym_raw_string_literal] = ACTIONS(236), + [sym_float_literal] = ACTIONS(236), [sym_block_comment] = ACTIONS(3), }, [4] = { - [sym__statement] = STATE(559), - [sym_empty_statement] = STATE(559), - [sym_expression_statement] = STATE(559), - [sym_macro_definition] = STATE(559), - [sym_attribute_item] = STATE(559), - [sym_inner_attribute_item] = STATE(559), - [sym_mod_item] = STATE(559), - [sym_foreign_mod_item] = STATE(559), - [sym_struct_item] = STATE(559), - [sym_union_item] = STATE(559), - [sym_enum_item] = STATE(559), - [sym_extern_crate_declaration] = STATE(559), - [sym_const_item] = STATE(559), - [sym_static_item] = STATE(559), - [sym_type_item] = STATE(559), - [sym_function_item] = STATE(559), - [sym_function_signature_item] = STATE(559), - [sym_function_modifiers] = STATE(2748), - [sym_impl_item] = STATE(559), - [sym_trait_item] = STATE(559), - [sym_associated_type] = STATE(559), - [sym_let_declaration] = STATE(559), - [sym_use_declaration] = STATE(559), - [sym_extern_modifier] = STATE(1666), - [sym_visibility_modifier] = STATE(1455), - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2320), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1388), - [sym_macro_invocation] = STATE(80), - [sym_scoped_identifier] = STATE(1292), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(83), - [sym_match_expression] = STATE(83), - [sym_while_expression] = STATE(83), - [sym_loop_expression] = STATE(83), - [sym_for_expression] = STATE(83), - [sym_const_block] = STATE(83), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2710), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(83), - [sym_async_block] = STATE(83), - [sym_block] = STATE(83), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1220), - [sym_identifier] = STATE(1279), - [aux_sym_source_file_repeat1] = STATE(9), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [ts_builtin_sym_end] = ACTIONS(113), + [sym__statement] = STATE(554), + [sym_empty_statement] = STATE(554), + [sym_expression_statement] = STATE(554), + [sym_macro_definition] = STATE(554), + [sym_attribute_item] = STATE(554), + [sym_inner_attribute_item] = STATE(554), + [sym_mod_item] = STATE(554), + [sym_foreign_mod_item] = STATE(554), + [sym_struct_item] = STATE(554), + [sym_union_item] = STATE(554), + [sym_enum_item] = STATE(554), + [sym_extern_crate_declaration] = STATE(554), + [sym_const_item] = STATE(554), + [sym_static_item] = STATE(554), + [sym_type_item] = STATE(554), + [sym_function_item] = STATE(554), + [sym_function_signature_item] = STATE(554), + [sym_function_modifiers] = STATE(2744), + [sym_impl_item] = STATE(554), + [sym_trait_item] = STATE(554), + [sym_associated_type] = STATE(554), + [sym_let_declaration] = STATE(554), + [sym_use_declaration] = STATE(554), + [sym_extern_modifier] = STATE(1663), + [sym_visibility_modifier] = STATE(1454), + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2176), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1415), + [sym_macro_invocation] = STATE(92), + [sym_scoped_identifier] = STATE(1297), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(173), + [sym_match_expression] = STATE(173), + [sym_while_expression] = STATE(173), + [sym_loop_expression] = STATE(173), + [sym_for_expression] = STATE(173), + [sym_const_block] = STATE(173), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(65), + [sym_loop_label] = STATE(2723), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(173), + [sym_async_block] = STATE(173), + [sym_block] = STATE(173), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1189), + [sym_identifier] = STATE(1283), + [aux_sym_source_file_repeat1] = STATE(3), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [ts_builtin_sym_end] = ACTIONS(266), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -20847,157 +20885,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [5] = { - [sym__statement] = STATE(5), - [sym_empty_statement] = STATE(5), - [sym_expression_statement] = STATE(5), - [sym_macro_definition] = STATE(5), - [sym_attribute_item] = STATE(5), - [sym_inner_attribute_item] = STATE(5), - [sym_mod_item] = STATE(5), - [sym_foreign_mod_item] = STATE(5), - [sym_struct_item] = STATE(5), - [sym_union_item] = STATE(5), - [sym_enum_item] = STATE(5), - [sym_extern_crate_declaration] = STATE(5), - [sym_const_item] = STATE(5), - [sym_static_item] = STATE(5), - [sym_type_item] = STATE(5), - [sym_function_item] = STATE(5), - [sym_function_signature_item] = STATE(5), - [sym_function_modifiers] = STATE(2748), - [sym_impl_item] = STATE(5), - [sym_trait_item] = STATE(5), - [sym_associated_type] = STATE(5), - [sym_let_declaration] = STATE(5), - [sym_use_declaration] = STATE(5), - [sym_extern_modifier] = STATE(1666), - [sym_visibility_modifier] = STATE(1455), - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2320), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1388), - [sym_macro_invocation] = STATE(185), - [sym_scoped_identifier] = STATE(1292), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(83), - [sym_match_expression] = STATE(83), - [sym_while_expression] = STATE(83), - [sym_loop_expression] = STATE(83), - [sym_for_expression] = STATE(83), - [sym_const_block] = STATE(83), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2710), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(83), - [sym_async_block] = STATE(83), - [sym_block] = STATE(83), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1220), - [sym_identifier] = STATE(1279), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [aux_sym_block_repeat1] = STATE(5), - [sym__primitive_identifier] = ACTIONS(115), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_macro_rules_BANG] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(127), - [anon_sym_RBRACE] = ACTIONS(130), - [anon_sym_LBRACK] = ACTIONS(132), - [anon_sym_STAR] = ACTIONS(135), - [anon_sym_SQUOTE] = ACTIONS(138), - [anon_sym_async] = ACTIONS(141), - [anon_sym_break] = ACTIONS(144), - [anon_sym_const] = ACTIONS(147), - [anon_sym_continue] = ACTIONS(150), - [anon_sym_default] = ACTIONS(153), - [anon_sym_enum] = ACTIONS(156), - [anon_sym_fn] = ACTIONS(159), - [anon_sym_for] = ACTIONS(162), - [anon_sym_if] = ACTIONS(165), - [anon_sym_impl] = ACTIONS(168), - [anon_sym_let] = ACTIONS(171), - [anon_sym_loop] = ACTIONS(174), - [anon_sym_match] = ACTIONS(177), - [anon_sym_mod] = ACTIONS(180), - [anon_sym_pub] = ACTIONS(183), - [anon_sym_return] = ACTIONS(186), - [anon_sym_static] = ACTIONS(189), - [anon_sym_struct] = ACTIONS(192), - [anon_sym_trait] = ACTIONS(195), - [anon_sym_type] = ACTIONS(198), - [anon_sym_union] = ACTIONS(201), - [anon_sym_unsafe] = ACTIONS(204), - [anon_sym_use] = ACTIONS(207), - [anon_sym_while] = ACTIONS(210), - [anon_sym_POUND] = ACTIONS(213), - [anon_sym_BANG] = ACTIONS(135), - [anon_sym_extern] = ACTIONS(216), - [anon_sym_LT] = ACTIONS(219), - [anon_sym_COLON_COLON] = ACTIONS(222), - [anon_sym_AMP] = ACTIONS(225), - [anon_sym_DOT_DOT] = ACTIONS(228), - [anon_sym_DASH] = ACTIONS(135), - [anon_sym_PIPE] = ACTIONS(231), - [anon_sym_yield] = ACTIONS(234), - [anon_sym_move] = ACTIONS(237), - [sym_integer_literal] = ACTIONS(240), - [aux_sym_string_literal_token1] = ACTIONS(243), - [sym_char_literal] = ACTIONS(240), - [anon_sym_true] = ACTIONS(246), - [anon_sym_false] = ACTIONS(246), - [anon_sym_u8] = ACTIONS(249), - [anon_sym_i8] = ACTIONS(249), - [anon_sym_u16] = ACTIONS(249), - [anon_sym_i16] = ACTIONS(249), - [anon_sym_u32] = ACTIONS(249), - [anon_sym_i32] = ACTIONS(249), - [anon_sym_u64] = ACTIONS(249), - [anon_sym_i64] = ACTIONS(249), - [anon_sym_u128] = ACTIONS(249), - [anon_sym_i128] = ACTIONS(249), - [anon_sym_isize] = ACTIONS(249), - [anon_sym_usize] = ACTIONS(249), - [anon_sym_f32] = ACTIONS(249), - [anon_sym_f64] = ACTIONS(249), - [anon_sym_bool] = ACTIONS(249), - [anon_sym_str] = ACTIONS(249), - [anon_sym_char] = ACTIONS(249), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(252), - [sym_self] = ACTIONS(255), - [sym_super] = ACTIONS(258), - [sym_crate] = ACTIONS(261), - [sym_metavariable] = ACTIONS(264), - [sym_grit_metavariable] = ACTIONS(267), - [sym_raw_string_literal] = ACTIONS(240), - [sym_float_literal] = ACTIONS(240), - [sym_block_comment] = ACTIONS(3), - }, - [6] = { [sym__statement] = STATE(8), [sym_empty_statement] = STATE(8), [sym_expression_statement] = STATE(8), @@ -21015,68 +20902,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_type_item] = STATE(8), [sym_function_item] = STATE(8), [sym_function_signature_item] = STATE(8), - [sym_function_modifiers] = STATE(2748), + [sym_function_modifiers] = STATE(2744), [sym_impl_item] = STATE(8), [sym_trait_item] = STATE(8), [sym_associated_type] = STATE(8), [sym_let_declaration] = STATE(8), [sym_use_declaration] = STATE(8), - [sym_extern_modifier] = STATE(1666), - [sym_visibility_modifier] = STATE(1455), - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2320), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1353), - [sym_macro_invocation] = STATE(80), - [sym_scoped_identifier] = STATE(1292), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(83), - [sym_match_expression] = STATE(83), - [sym_while_expression] = STATE(83), - [sym_loop_expression] = STATE(83), - [sym_for_expression] = STATE(83), - [sym_const_block] = STATE(83), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2710), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(83), - [sym_async_block] = STATE(83), - [sym_block] = STATE(83), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1220), - [sym_identifier] = STATE(1279), - [aux_sym_function_modifiers_repeat1] = STATE(1694), + [sym_extern_modifier] = STATE(1663), + [sym_visibility_modifier] = STATE(1454), + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2176), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1361), + [sym_macro_invocation] = STATE(92), + [sym_scoped_identifier] = STATE(1297), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(173), + [sym_match_expression] = STATE(173), + [sym_while_expression] = STATE(173), + [sym_loop_expression] = STATE(173), + [sym_for_expression] = STATE(173), + [sym_const_block] = STATE(173), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(65), + [sym_loop_label] = STATE(2723), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(173), + [sym_async_block] = STATE(173), + [sym_block] = STATE(173), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1189), + [sym_identifier] = STATE(1283), + [aux_sym_function_modifiers_repeat1] = STATE(1681), [aux_sym_block_repeat1] = STATE(8), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(270), + [anon_sym_RBRACE] = ACTIONS(268), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_SQUOTE] = ACTIONS(21), @@ -21148,158 +21035,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [7] = { - [sym__statement] = STATE(3), - [sym_empty_statement] = STATE(3), - [sym_expression_statement] = STATE(3), - [sym_macro_definition] = STATE(3), - [sym_attribute_item] = STATE(3), - [sym_inner_attribute_item] = STATE(3), - [sym_mod_item] = STATE(3), - [sym_foreign_mod_item] = STATE(3), - [sym_struct_item] = STATE(3), - [sym_union_item] = STATE(3), - [sym_enum_item] = STATE(3), - [sym_extern_crate_declaration] = STATE(3), - [sym_const_item] = STATE(3), - [sym_static_item] = STATE(3), - [sym_type_item] = STATE(3), - [sym_function_item] = STATE(3), - [sym_function_signature_item] = STATE(3), - [sym_function_modifiers] = STATE(2748), - [sym_impl_item] = STATE(3), - [sym_trait_item] = STATE(3), - [sym_associated_type] = STATE(3), - [sym_let_declaration] = STATE(3), - [sym_use_declaration] = STATE(3), - [sym_extern_modifier] = STATE(1666), - [sym_visibility_modifier] = STATE(1455), - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2320), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1314), - [sym_macro_invocation] = STATE(80), - [sym_scoped_identifier] = STATE(1292), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(83), - [sym_match_expression] = STATE(83), - [sym_while_expression] = STATE(83), - [sym_loop_expression] = STATE(83), - [sym_for_expression] = STATE(83), - [sym_const_block] = STATE(83), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2710), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(83), - [sym_async_block] = STATE(83), - [sym_block] = STATE(83), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1220), - [sym_identifier] = STATE(1279), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [aux_sym_block_repeat1] = STATE(3), - [sym__primitive_identifier] = ACTIONS(7), - [anon_sym_SEMI] = ACTIONS(9), - [anon_sym_macro_rules_BANG] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(272), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_async] = ACTIONS(23), - [anon_sym_break] = ACTIONS(25), - [anon_sym_const] = ACTIONS(27), - [anon_sym_continue] = ACTIONS(29), - [anon_sym_default] = ACTIONS(31), - [anon_sym_enum] = ACTIONS(33), - [anon_sym_fn] = ACTIONS(35), - [anon_sym_for] = ACTIONS(37), - [anon_sym_if] = ACTIONS(39), - [anon_sym_impl] = ACTIONS(41), - [anon_sym_let] = ACTIONS(43), - [anon_sym_loop] = ACTIONS(45), - [anon_sym_match] = ACTIONS(47), - [anon_sym_mod] = ACTIONS(49), - [anon_sym_pub] = ACTIONS(51), - [anon_sym_return] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_struct] = ACTIONS(57), - [anon_sym_trait] = ACTIONS(59), - [anon_sym_type] = ACTIONS(61), - [anon_sym_union] = ACTIONS(63), - [anon_sym_unsafe] = ACTIONS(65), - [anon_sym_use] = ACTIONS(67), - [anon_sym_while] = ACTIONS(69), - [anon_sym_POUND] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_extern] = ACTIONS(73), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_AMP] = ACTIONS(79), - [anon_sym_DOT_DOT] = ACTIONS(81), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(83), - [anon_sym_yield] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [anon_sym_u8] = ACTIONS(95), - [anon_sym_i8] = ACTIONS(95), - [anon_sym_u16] = ACTIONS(95), - [anon_sym_i16] = ACTIONS(95), - [anon_sym_u32] = ACTIONS(95), - [anon_sym_i32] = ACTIONS(95), - [anon_sym_u64] = ACTIONS(95), - [anon_sym_i64] = ACTIONS(95), - [anon_sym_u128] = ACTIONS(95), - [anon_sym_i128] = ACTIONS(95), - [anon_sym_isize] = ACTIONS(95), - [anon_sym_usize] = ACTIONS(95), - [anon_sym_f32] = ACTIONS(95), - [anon_sym_f64] = ACTIONS(95), - [anon_sym_bool] = ACTIONS(95), - [anon_sym_str] = ACTIONS(95), - [anon_sym_char] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(97), - [sym_self] = ACTIONS(99), - [sym_super] = ACTIONS(101), - [sym_crate] = ACTIONS(103), - [sym_metavariable] = ACTIONS(105), - [sym_grit_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [8] = { + [6] = { [sym__statement] = STATE(5), [sym_empty_statement] = STATE(5), [sym_expression_statement] = STATE(5), @@ -21317,68 +21053,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_type_item] = STATE(5), [sym_function_item] = STATE(5), [sym_function_signature_item] = STATE(5), - [sym_function_modifiers] = STATE(2748), + [sym_function_modifiers] = STATE(2744), [sym_impl_item] = STATE(5), [sym_trait_item] = STATE(5), [sym_associated_type] = STATE(5), [sym_let_declaration] = STATE(5), [sym_use_declaration] = STATE(5), - [sym_extern_modifier] = STATE(1666), - [sym_visibility_modifier] = STATE(1455), - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2320), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1358), - [sym_macro_invocation] = STATE(80), - [sym_scoped_identifier] = STATE(1292), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(83), - [sym_match_expression] = STATE(83), - [sym_while_expression] = STATE(83), - [sym_loop_expression] = STATE(83), - [sym_for_expression] = STATE(83), - [sym_const_block] = STATE(83), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2710), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(83), - [sym_async_block] = STATE(83), - [sym_block] = STATE(83), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1220), - [sym_identifier] = STATE(1279), - [aux_sym_function_modifiers_repeat1] = STATE(1694), + [sym_extern_modifier] = STATE(1663), + [sym_visibility_modifier] = STATE(1454), + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2176), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1360), + [sym_macro_invocation] = STATE(92), + [sym_scoped_identifier] = STATE(1297), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(173), + [sym_match_expression] = STATE(173), + [sym_while_expression] = STATE(173), + [sym_loop_expression] = STATE(173), + [sym_for_expression] = STATE(173), + [sym_const_block] = STATE(173), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(65), + [sym_loop_label] = STATE(2723), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(173), + [sym_async_block] = STATE(173), + [sym_block] = STATE(173), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1189), + [sym_identifier] = STATE(1283), + [aux_sym_function_modifiers_repeat1] = STATE(1681), [aux_sym_block_repeat1] = STATE(5), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(274), + [anon_sym_RBRACE] = ACTIONS(270), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_SQUOTE] = ACTIONS(21), @@ -21450,237 +21186,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [9] = { - [sym__statement] = STATE(559), - [sym_empty_statement] = STATE(559), - [sym_expression_statement] = STATE(559), - [sym_macro_definition] = STATE(559), - [sym_attribute_item] = STATE(559), - [sym_inner_attribute_item] = STATE(559), - [sym_mod_item] = STATE(559), - [sym_foreign_mod_item] = STATE(559), - [sym_struct_item] = STATE(559), - [sym_union_item] = STATE(559), - [sym_enum_item] = STATE(559), - [sym_extern_crate_declaration] = STATE(559), - [sym_const_item] = STATE(559), - [sym_static_item] = STATE(559), - [sym_type_item] = STATE(559), - [sym_function_item] = STATE(559), - [sym_function_signature_item] = STATE(559), - [sym_function_modifiers] = STATE(2748), - [sym_impl_item] = STATE(559), - [sym_trait_item] = STATE(559), - [sym_associated_type] = STATE(559), - [sym_let_declaration] = STATE(559), - [sym_use_declaration] = STATE(559), - [sym_extern_modifier] = STATE(1666), - [sym_visibility_modifier] = STATE(1455), - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2320), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1388), - [sym_macro_invocation] = STATE(80), - [sym_scoped_identifier] = STATE(1292), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(83), - [sym_match_expression] = STATE(83), - [sym_while_expression] = STATE(83), - [sym_loop_expression] = STATE(83), - [sym_for_expression] = STATE(83), - [sym_const_block] = STATE(83), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2710), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(83), - [sym_async_block] = STATE(83), - [sym_block] = STATE(83), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1220), - [sym_identifier] = STATE(1279), - [aux_sym_source_file_repeat1] = STATE(9), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [ts_builtin_sym_end] = ACTIONS(276), - [sym__primitive_identifier] = ACTIONS(278), - [anon_sym_SEMI] = ACTIONS(281), - [anon_sym_macro_rules_BANG] = ACTIONS(284), - [anon_sym_LPAREN] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(293), - [anon_sym_STAR] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(299), - [anon_sym_async] = ACTIONS(302), - [anon_sym_break] = ACTIONS(305), - [anon_sym_const] = ACTIONS(308), - [anon_sym_continue] = ACTIONS(311), - [anon_sym_default] = ACTIONS(314), - [anon_sym_enum] = ACTIONS(317), - [anon_sym_fn] = ACTIONS(320), - [anon_sym_for] = ACTIONS(323), - [anon_sym_if] = ACTIONS(326), - [anon_sym_impl] = ACTIONS(329), - [anon_sym_let] = ACTIONS(332), - [anon_sym_loop] = ACTIONS(335), - [anon_sym_match] = ACTIONS(338), - [anon_sym_mod] = ACTIONS(341), - [anon_sym_pub] = ACTIONS(344), - [anon_sym_return] = ACTIONS(347), - [anon_sym_static] = ACTIONS(350), - [anon_sym_struct] = ACTIONS(353), - [anon_sym_trait] = ACTIONS(356), - [anon_sym_type] = ACTIONS(359), - [anon_sym_union] = ACTIONS(362), - [anon_sym_unsafe] = ACTIONS(365), - [anon_sym_use] = ACTIONS(368), - [anon_sym_while] = ACTIONS(371), - [anon_sym_POUND] = ACTIONS(374), - [anon_sym_BANG] = ACTIONS(296), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_COLON_COLON] = ACTIONS(383), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_DOT_DOT] = ACTIONS(389), - [anon_sym_DASH] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(392), - [anon_sym_yield] = ACTIONS(395), - [anon_sym_move] = ACTIONS(398), - [sym_integer_literal] = ACTIONS(401), - [aux_sym_string_literal_token1] = ACTIONS(404), - [sym_char_literal] = ACTIONS(401), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_u8] = ACTIONS(410), - [anon_sym_i8] = ACTIONS(410), - [anon_sym_u16] = ACTIONS(410), - [anon_sym_i16] = ACTIONS(410), - [anon_sym_u32] = ACTIONS(410), - [anon_sym_i32] = ACTIONS(410), - [anon_sym_u64] = ACTIONS(410), - [anon_sym_i64] = ACTIONS(410), - [anon_sym_u128] = ACTIONS(410), - [anon_sym_i128] = ACTIONS(410), - [anon_sym_isize] = ACTIONS(410), - [anon_sym_usize] = ACTIONS(410), - [anon_sym_f32] = ACTIONS(410), - [anon_sym_f64] = ACTIONS(410), - [anon_sym_bool] = ACTIONS(410), - [anon_sym_str] = ACTIONS(410), - [anon_sym_char] = ACTIONS(410), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(413), - [sym_self] = ACTIONS(416), - [sym_super] = ACTIONS(419), - [sym_crate] = ACTIONS(422), - [sym_metavariable] = ACTIONS(425), - [sym_grit_metavariable] = ACTIONS(428), - [sym_raw_string_literal] = ACTIONS(401), - [sym_float_literal] = ACTIONS(401), - [sym_block_comment] = ACTIONS(3), - }, - [10] = { - [sym__statement] = STATE(11), - [sym_empty_statement] = STATE(11), - [sym_expression_statement] = STATE(11), - [sym_macro_definition] = STATE(11), - [sym_attribute_item] = STATE(11), - [sym_inner_attribute_item] = STATE(11), - [sym_mod_item] = STATE(11), - [sym_foreign_mod_item] = STATE(11), - [sym_struct_item] = STATE(11), - [sym_union_item] = STATE(11), - [sym_enum_item] = STATE(11), - [sym_extern_crate_declaration] = STATE(11), - [sym_const_item] = STATE(11), - [sym_static_item] = STATE(11), - [sym_type_item] = STATE(11), - [sym_function_item] = STATE(11), - [sym_function_signature_item] = STATE(11), - [sym_function_modifiers] = STATE(2748), - [sym_impl_item] = STATE(11), - [sym_trait_item] = STATE(11), - [sym_associated_type] = STATE(11), - [sym_let_declaration] = STATE(11), - [sym_use_declaration] = STATE(11), - [sym_extern_modifier] = STATE(1666), - [sym_visibility_modifier] = STATE(1455), - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2320), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1322), - [sym_macro_invocation] = STATE(80), - [sym_scoped_identifier] = STATE(1292), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(83), - [sym_match_expression] = STATE(83), - [sym_while_expression] = STATE(83), - [sym_loop_expression] = STATE(83), - [sym_for_expression] = STATE(83), - [sym_const_block] = STATE(83), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2710), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(83), - [sym_async_block] = STATE(83), - [sym_block] = STATE(83), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1220), - [sym_identifier] = STATE(1279), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [aux_sym_block_repeat1] = STATE(11), + [7] = { + [sym__statement] = STATE(8), + [sym_empty_statement] = STATE(8), + [sym_expression_statement] = STATE(8), + [sym_macro_definition] = STATE(8), + [sym_attribute_item] = STATE(8), + [sym_inner_attribute_item] = STATE(8), + [sym_mod_item] = STATE(8), + [sym_foreign_mod_item] = STATE(8), + [sym_struct_item] = STATE(8), + [sym_union_item] = STATE(8), + [sym_enum_item] = STATE(8), + [sym_extern_crate_declaration] = STATE(8), + [sym_const_item] = STATE(8), + [sym_static_item] = STATE(8), + [sym_type_item] = STATE(8), + [sym_function_item] = STATE(8), + [sym_function_signature_item] = STATE(8), + [sym_function_modifiers] = STATE(2744), + [sym_impl_item] = STATE(8), + [sym_trait_item] = STATE(8), + [sym_associated_type] = STATE(8), + [sym_let_declaration] = STATE(8), + [sym_use_declaration] = STATE(8), + [sym_extern_modifier] = STATE(1663), + [sym_visibility_modifier] = STATE(1454), + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2176), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1331), + [sym_macro_invocation] = STATE(92), + [sym_scoped_identifier] = STATE(1297), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(173), + [sym_match_expression] = STATE(173), + [sym_while_expression] = STATE(173), + [sym_loop_expression] = STATE(173), + [sym_for_expression] = STATE(173), + [sym_const_block] = STATE(173), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(65), + [sym_loop_label] = STATE(2723), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(173), + [sym_async_block] = STATE(173), + [sym_block] = STATE(173), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1189), + [sym_identifier] = STATE(1283), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [aux_sym_block_repeat1] = STATE(8), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(431), + [anon_sym_RBRACE] = ACTIONS(272), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_SQUOTE] = ACTIONS(21), @@ -21752,86 +21337,237 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [11] = { - [sym__statement] = STATE(5), - [sym_empty_statement] = STATE(5), - [sym_expression_statement] = STATE(5), - [sym_macro_definition] = STATE(5), - [sym_attribute_item] = STATE(5), - [sym_inner_attribute_item] = STATE(5), - [sym_mod_item] = STATE(5), - [sym_foreign_mod_item] = STATE(5), - [sym_struct_item] = STATE(5), - [sym_union_item] = STATE(5), - [sym_enum_item] = STATE(5), - [sym_extern_crate_declaration] = STATE(5), - [sym_const_item] = STATE(5), - [sym_static_item] = STATE(5), - [sym_type_item] = STATE(5), - [sym_function_item] = STATE(5), - [sym_function_signature_item] = STATE(5), - [sym_function_modifiers] = STATE(2748), - [sym_impl_item] = STATE(5), - [sym_trait_item] = STATE(5), - [sym_associated_type] = STATE(5), - [sym_let_declaration] = STATE(5), - [sym_use_declaration] = STATE(5), - [sym_extern_modifier] = STATE(1666), - [sym_visibility_modifier] = STATE(1455), - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2320), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1343), - [sym_macro_invocation] = STATE(80), - [sym_scoped_identifier] = STATE(1292), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(83), - [sym_match_expression] = STATE(83), - [sym_while_expression] = STATE(83), - [sym_loop_expression] = STATE(83), - [sym_for_expression] = STATE(83), - [sym_const_block] = STATE(83), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2710), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(83), - [sym_async_block] = STATE(83), - [sym_block] = STATE(83), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1220), - [sym_identifier] = STATE(1279), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [aux_sym_block_repeat1] = STATE(5), + [8] = { + [sym__statement] = STATE(8), + [sym_empty_statement] = STATE(8), + [sym_expression_statement] = STATE(8), + [sym_macro_definition] = STATE(8), + [sym_attribute_item] = STATE(8), + [sym_inner_attribute_item] = STATE(8), + [sym_mod_item] = STATE(8), + [sym_foreign_mod_item] = STATE(8), + [sym_struct_item] = STATE(8), + [sym_union_item] = STATE(8), + [sym_enum_item] = STATE(8), + [sym_extern_crate_declaration] = STATE(8), + [sym_const_item] = STATE(8), + [sym_static_item] = STATE(8), + [sym_type_item] = STATE(8), + [sym_function_item] = STATE(8), + [sym_function_signature_item] = STATE(8), + [sym_function_modifiers] = STATE(2744), + [sym_impl_item] = STATE(8), + [sym_trait_item] = STATE(8), + [sym_associated_type] = STATE(8), + [sym_let_declaration] = STATE(8), + [sym_use_declaration] = STATE(8), + [sym_extern_modifier] = STATE(1663), + [sym_visibility_modifier] = STATE(1454), + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2176), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1415), + [sym_macro_invocation] = STATE(185), + [sym_scoped_identifier] = STATE(1297), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(173), + [sym_match_expression] = STATE(173), + [sym_while_expression] = STATE(173), + [sym_loop_expression] = STATE(173), + [sym_for_expression] = STATE(173), + [sym_const_block] = STATE(173), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(65), + [sym_loop_label] = STATE(2723), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(173), + [sym_async_block] = STATE(173), + [sym_block] = STATE(173), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1189), + [sym_identifier] = STATE(1283), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [aux_sym_block_repeat1] = STATE(8), + [sym__primitive_identifier] = ACTIONS(274), + [anon_sym_SEMI] = ACTIONS(277), + [anon_sym_macro_rules_BANG] = ACTIONS(280), + [anon_sym_LPAREN] = ACTIONS(283), + [anon_sym_LBRACE] = ACTIONS(286), + [anon_sym_RBRACE] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(291), + [anon_sym_STAR] = ACTIONS(294), + [anon_sym_SQUOTE] = ACTIONS(297), + [anon_sym_async] = ACTIONS(300), + [anon_sym_break] = ACTIONS(303), + [anon_sym_const] = ACTIONS(306), + [anon_sym_continue] = ACTIONS(309), + [anon_sym_default] = ACTIONS(312), + [anon_sym_enum] = ACTIONS(315), + [anon_sym_fn] = ACTIONS(318), + [anon_sym_for] = ACTIONS(321), + [anon_sym_if] = ACTIONS(324), + [anon_sym_impl] = ACTIONS(327), + [anon_sym_let] = ACTIONS(330), + [anon_sym_loop] = ACTIONS(333), + [anon_sym_match] = ACTIONS(336), + [anon_sym_mod] = ACTIONS(339), + [anon_sym_pub] = ACTIONS(342), + [anon_sym_return] = ACTIONS(345), + [anon_sym_static] = ACTIONS(348), + [anon_sym_struct] = ACTIONS(351), + [anon_sym_trait] = ACTIONS(354), + [anon_sym_type] = ACTIONS(357), + [anon_sym_union] = ACTIONS(360), + [anon_sym_unsafe] = ACTIONS(363), + [anon_sym_use] = ACTIONS(366), + [anon_sym_while] = ACTIONS(369), + [anon_sym_POUND] = ACTIONS(372), + [anon_sym_BANG] = ACTIONS(294), + [anon_sym_extern] = ACTIONS(375), + [anon_sym_LT] = ACTIONS(378), + [anon_sym_COLON_COLON] = ACTIONS(381), + [anon_sym_AMP] = ACTIONS(384), + [anon_sym_DOT_DOT] = ACTIONS(387), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_PIPE] = ACTIONS(390), + [anon_sym_yield] = ACTIONS(393), + [anon_sym_move] = ACTIONS(396), + [sym_integer_literal] = ACTIONS(399), + [aux_sym_string_literal_token1] = ACTIONS(402), + [sym_char_literal] = ACTIONS(399), + [anon_sym_true] = ACTIONS(405), + [anon_sym_false] = ACTIONS(405), + [anon_sym_u8] = ACTIONS(408), + [anon_sym_i8] = ACTIONS(408), + [anon_sym_u16] = ACTIONS(408), + [anon_sym_i16] = ACTIONS(408), + [anon_sym_u32] = ACTIONS(408), + [anon_sym_i32] = ACTIONS(408), + [anon_sym_u64] = ACTIONS(408), + [anon_sym_i64] = ACTIONS(408), + [anon_sym_u128] = ACTIONS(408), + [anon_sym_i128] = ACTIONS(408), + [anon_sym_isize] = ACTIONS(408), + [anon_sym_usize] = ACTIONS(408), + [anon_sym_f32] = ACTIONS(408), + [anon_sym_f64] = ACTIONS(408), + [anon_sym_bool] = ACTIONS(408), + [anon_sym_str] = ACTIONS(408), + [anon_sym_char] = ACTIONS(408), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(411), + [sym_self] = ACTIONS(414), + [sym_super] = ACTIONS(417), + [sym_crate] = ACTIONS(420), + [sym_metavariable] = ACTIONS(423), + [sym_grit_metavariable] = ACTIONS(426), + [sym_raw_string_literal] = ACTIONS(399), + [sym_float_literal] = ACTIONS(399), + [sym_block_comment] = ACTIONS(3), + }, + [9] = { + [sym__statement] = STATE(8), + [sym_empty_statement] = STATE(8), + [sym_expression_statement] = STATE(8), + [sym_macro_definition] = STATE(8), + [sym_attribute_item] = STATE(8), + [sym_inner_attribute_item] = STATE(8), + [sym_mod_item] = STATE(8), + [sym_foreign_mod_item] = STATE(8), + [sym_struct_item] = STATE(8), + [sym_union_item] = STATE(8), + [sym_enum_item] = STATE(8), + [sym_extern_crate_declaration] = STATE(8), + [sym_const_item] = STATE(8), + [sym_static_item] = STATE(8), + [sym_type_item] = STATE(8), + [sym_function_item] = STATE(8), + [sym_function_signature_item] = STATE(8), + [sym_function_modifiers] = STATE(2744), + [sym_impl_item] = STATE(8), + [sym_trait_item] = STATE(8), + [sym_associated_type] = STATE(8), + [sym_let_declaration] = STATE(8), + [sym_use_declaration] = STATE(8), + [sym_extern_modifier] = STATE(1663), + [sym_visibility_modifier] = STATE(1454), + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2176), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1333), + [sym_macro_invocation] = STATE(92), + [sym_scoped_identifier] = STATE(1297), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(173), + [sym_match_expression] = STATE(173), + [sym_while_expression] = STATE(173), + [sym_loop_expression] = STATE(173), + [sym_for_expression] = STATE(173), + [sym_const_block] = STATE(173), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(65), + [sym_loop_label] = STATE(2723), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(173), + [sym_async_block] = STATE(173), + [sym_block] = STATE(173), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1189), + [sym_identifier] = STATE(1283), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [aux_sym_block_repeat1] = STATE(8), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(433), + [anon_sym_RBRACE] = ACTIONS(429), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_SQUOTE] = ACTIONS(21), @@ -21903,86 +21639,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [12] = { - [sym__statement] = STATE(16), - [sym_empty_statement] = STATE(16), - [sym_expression_statement] = STATE(16), - [sym_macro_definition] = STATE(16), - [sym_attribute_item] = STATE(16), - [sym_inner_attribute_item] = STATE(16), - [sym_mod_item] = STATE(16), - [sym_foreign_mod_item] = STATE(16), - [sym_struct_item] = STATE(16), - [sym_union_item] = STATE(16), - [sym_enum_item] = STATE(16), - [sym_extern_crate_declaration] = STATE(16), - [sym_const_item] = STATE(16), - [sym_static_item] = STATE(16), - [sym_type_item] = STATE(16), - [sym_function_item] = STATE(16), - [sym_function_signature_item] = STATE(16), - [sym_function_modifiers] = STATE(2748), - [sym_impl_item] = STATE(16), - [sym_trait_item] = STATE(16), - [sym_associated_type] = STATE(16), - [sym_let_declaration] = STATE(16), - [sym_use_declaration] = STATE(16), - [sym_extern_modifier] = STATE(1666), - [sym_visibility_modifier] = STATE(1455), - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2320), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1329), - [sym_macro_invocation] = STATE(80), - [sym_scoped_identifier] = STATE(1292), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(83), - [sym_match_expression] = STATE(83), - [sym_while_expression] = STATE(83), - [sym_loop_expression] = STATE(83), - [sym_for_expression] = STATE(83), - [sym_const_block] = STATE(83), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2710), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(83), - [sym_async_block] = STATE(83), - [sym_block] = STATE(83), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1220), - [sym_identifier] = STATE(1279), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [aux_sym_block_repeat1] = STATE(16), + [10] = { + [sym__statement] = STATE(9), + [sym_empty_statement] = STATE(9), + [sym_expression_statement] = STATE(9), + [sym_macro_definition] = STATE(9), + [sym_attribute_item] = STATE(9), + [sym_inner_attribute_item] = STATE(9), + [sym_mod_item] = STATE(9), + [sym_foreign_mod_item] = STATE(9), + [sym_struct_item] = STATE(9), + [sym_union_item] = STATE(9), + [sym_enum_item] = STATE(9), + [sym_extern_crate_declaration] = STATE(9), + [sym_const_item] = STATE(9), + [sym_static_item] = STATE(9), + [sym_type_item] = STATE(9), + [sym_function_item] = STATE(9), + [sym_function_signature_item] = STATE(9), + [sym_function_modifiers] = STATE(2744), + [sym_impl_item] = STATE(9), + [sym_trait_item] = STATE(9), + [sym_associated_type] = STATE(9), + [sym_let_declaration] = STATE(9), + [sym_use_declaration] = STATE(9), + [sym_extern_modifier] = STATE(1663), + [sym_visibility_modifier] = STATE(1454), + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2176), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1368), + [sym_macro_invocation] = STATE(92), + [sym_scoped_identifier] = STATE(1297), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(173), + [sym_match_expression] = STATE(173), + [sym_while_expression] = STATE(173), + [sym_loop_expression] = STATE(173), + [sym_for_expression] = STATE(173), + [sym_const_block] = STATE(173), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(65), + [sym_loop_label] = STATE(2723), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(173), + [sym_async_block] = STATE(173), + [sym_block] = STATE(173), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1189), + [sym_identifier] = STATE(1283), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [aux_sym_block_repeat1] = STATE(9), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(435), + [anon_sym_RBRACE] = ACTIONS(431), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_SQUOTE] = ACTIONS(21), @@ -22054,86 +21790,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [13] = { - [sym__statement] = STATE(14), - [sym_empty_statement] = STATE(14), - [sym_expression_statement] = STATE(14), - [sym_macro_definition] = STATE(14), - [sym_attribute_item] = STATE(14), - [sym_inner_attribute_item] = STATE(14), - [sym_mod_item] = STATE(14), - [sym_foreign_mod_item] = STATE(14), - [sym_struct_item] = STATE(14), - [sym_union_item] = STATE(14), - [sym_enum_item] = STATE(14), - [sym_extern_crate_declaration] = STATE(14), - [sym_const_item] = STATE(14), - [sym_static_item] = STATE(14), - [sym_type_item] = STATE(14), - [sym_function_item] = STATE(14), - [sym_function_signature_item] = STATE(14), - [sym_function_modifiers] = STATE(2748), - [sym_impl_item] = STATE(14), - [sym_trait_item] = STATE(14), - [sym_associated_type] = STATE(14), - [sym_let_declaration] = STATE(14), - [sym_use_declaration] = STATE(14), - [sym_extern_modifier] = STATE(1666), - [sym_visibility_modifier] = STATE(1455), - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2320), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1331), - [sym_macro_invocation] = STATE(80), - [sym_scoped_identifier] = STATE(1292), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(83), - [sym_match_expression] = STATE(83), - [sym_while_expression] = STATE(83), - [sym_loop_expression] = STATE(83), - [sym_for_expression] = STATE(83), - [sym_const_block] = STATE(83), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2710), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(83), - [sym_async_block] = STATE(83), - [sym_block] = STATE(83), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1220), - [sym_identifier] = STATE(1279), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [aux_sym_block_repeat1] = STATE(14), + [11] = { + [sym__statement] = STATE(7), + [sym_empty_statement] = STATE(7), + [sym_expression_statement] = STATE(7), + [sym_macro_definition] = STATE(7), + [sym_attribute_item] = STATE(7), + [sym_inner_attribute_item] = STATE(7), + [sym_mod_item] = STATE(7), + [sym_foreign_mod_item] = STATE(7), + [sym_struct_item] = STATE(7), + [sym_union_item] = STATE(7), + [sym_enum_item] = STATE(7), + [sym_extern_crate_declaration] = STATE(7), + [sym_const_item] = STATE(7), + [sym_static_item] = STATE(7), + [sym_type_item] = STATE(7), + [sym_function_item] = STATE(7), + [sym_function_signature_item] = STATE(7), + [sym_function_modifiers] = STATE(2744), + [sym_impl_item] = STATE(7), + [sym_trait_item] = STATE(7), + [sym_associated_type] = STATE(7), + [sym_let_declaration] = STATE(7), + [sym_use_declaration] = STATE(7), + [sym_extern_modifier] = STATE(1663), + [sym_visibility_modifier] = STATE(1454), + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2176), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1335), + [sym_macro_invocation] = STATE(92), + [sym_scoped_identifier] = STATE(1297), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(173), + [sym_match_expression] = STATE(173), + [sym_while_expression] = STATE(173), + [sym_loop_expression] = STATE(173), + [sym_for_expression] = STATE(173), + [sym_const_block] = STATE(173), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(65), + [sym_loop_label] = STATE(2723), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(173), + [sym_async_block] = STATE(173), + [sym_block] = STATE(173), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1189), + [sym_identifier] = STATE(1283), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [aux_sym_block_repeat1] = STATE(7), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(437), + [anon_sym_RBRACE] = ACTIONS(433), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_SQUOTE] = ACTIONS(21), @@ -22205,86 +21941,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [14] = { - [sym__statement] = STATE(5), - [sym_empty_statement] = STATE(5), - [sym_expression_statement] = STATE(5), - [sym_macro_definition] = STATE(5), - [sym_attribute_item] = STATE(5), - [sym_inner_attribute_item] = STATE(5), - [sym_mod_item] = STATE(5), - [sym_foreign_mod_item] = STATE(5), - [sym_struct_item] = STATE(5), - [sym_union_item] = STATE(5), - [sym_enum_item] = STATE(5), - [sym_extern_crate_declaration] = STATE(5), - [sym_const_item] = STATE(5), - [sym_static_item] = STATE(5), - [sym_type_item] = STATE(5), - [sym_function_item] = STATE(5), - [sym_function_signature_item] = STATE(5), - [sym_function_modifiers] = STATE(2748), - [sym_impl_item] = STATE(5), - [sym_trait_item] = STATE(5), - [sym_associated_type] = STATE(5), - [sym_let_declaration] = STATE(5), - [sym_use_declaration] = STATE(5), - [sym_extern_modifier] = STATE(1666), - [sym_visibility_modifier] = STATE(1455), - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2320), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1360), - [sym_macro_invocation] = STATE(80), - [sym_scoped_identifier] = STATE(1292), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(83), - [sym_match_expression] = STATE(83), - [sym_while_expression] = STATE(83), - [sym_loop_expression] = STATE(83), - [sym_for_expression] = STATE(83), - [sym_const_block] = STATE(83), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2710), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(83), - [sym_async_block] = STATE(83), - [sym_block] = STATE(83), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1220), - [sym_identifier] = STATE(1279), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [aux_sym_block_repeat1] = STATE(5), + [12] = { + [sym__statement] = STATE(13), + [sym_empty_statement] = STATE(13), + [sym_expression_statement] = STATE(13), + [sym_macro_definition] = STATE(13), + [sym_attribute_item] = STATE(13), + [sym_inner_attribute_item] = STATE(13), + [sym_mod_item] = STATE(13), + [sym_foreign_mod_item] = STATE(13), + [sym_struct_item] = STATE(13), + [sym_union_item] = STATE(13), + [sym_enum_item] = STATE(13), + [sym_extern_crate_declaration] = STATE(13), + [sym_const_item] = STATE(13), + [sym_static_item] = STATE(13), + [sym_type_item] = STATE(13), + [sym_function_item] = STATE(13), + [sym_function_signature_item] = STATE(13), + [sym_function_modifiers] = STATE(2744), + [sym_impl_item] = STATE(13), + [sym_trait_item] = STATE(13), + [sym_associated_type] = STATE(13), + [sym_let_declaration] = STATE(13), + [sym_use_declaration] = STATE(13), + [sym_extern_modifier] = STATE(1663), + [sym_visibility_modifier] = STATE(1454), + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2176), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1354), + [sym_macro_invocation] = STATE(92), + [sym_scoped_identifier] = STATE(1297), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(173), + [sym_match_expression] = STATE(173), + [sym_while_expression] = STATE(173), + [sym_loop_expression] = STATE(173), + [sym_for_expression] = STATE(173), + [sym_const_block] = STATE(173), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(65), + [sym_loop_label] = STATE(2723), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(173), + [sym_async_block] = STATE(173), + [sym_block] = STATE(173), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1189), + [sym_identifier] = STATE(1283), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [aux_sym_block_repeat1] = STATE(13), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(435), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_SQUOTE] = ACTIONS(21), @@ -22356,86 +22092,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [15] = { - [sym__statement] = STATE(5), - [sym_empty_statement] = STATE(5), - [sym_expression_statement] = STATE(5), - [sym_macro_definition] = STATE(5), - [sym_attribute_item] = STATE(5), - [sym_inner_attribute_item] = STATE(5), - [sym_mod_item] = STATE(5), - [sym_foreign_mod_item] = STATE(5), - [sym_struct_item] = STATE(5), - [sym_union_item] = STATE(5), - [sym_enum_item] = STATE(5), - [sym_extern_crate_declaration] = STATE(5), - [sym_const_item] = STATE(5), - [sym_static_item] = STATE(5), - [sym_type_item] = STATE(5), - [sym_function_item] = STATE(5), - [sym_function_signature_item] = STATE(5), - [sym_function_modifiers] = STATE(2748), - [sym_impl_item] = STATE(5), - [sym_trait_item] = STATE(5), - [sym_associated_type] = STATE(5), - [sym_let_declaration] = STATE(5), - [sym_use_declaration] = STATE(5), - [sym_extern_modifier] = STATE(1666), - [sym_visibility_modifier] = STATE(1455), - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2320), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1316), - [sym_macro_invocation] = STATE(80), - [sym_scoped_identifier] = STATE(1292), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(83), - [sym_match_expression] = STATE(83), - [sym_while_expression] = STATE(83), - [sym_loop_expression] = STATE(83), - [sym_for_expression] = STATE(83), - [sym_const_block] = STATE(83), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2710), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(83), - [sym_async_block] = STATE(83), - [sym_block] = STATE(83), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1220), - [sym_identifier] = STATE(1279), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [aux_sym_block_repeat1] = STATE(5), + [13] = { + [sym__statement] = STATE(8), + [sym_empty_statement] = STATE(8), + [sym_expression_statement] = STATE(8), + [sym_macro_definition] = STATE(8), + [sym_attribute_item] = STATE(8), + [sym_inner_attribute_item] = STATE(8), + [sym_mod_item] = STATE(8), + [sym_foreign_mod_item] = STATE(8), + [sym_struct_item] = STATE(8), + [sym_union_item] = STATE(8), + [sym_enum_item] = STATE(8), + [sym_extern_crate_declaration] = STATE(8), + [sym_const_item] = STATE(8), + [sym_static_item] = STATE(8), + [sym_type_item] = STATE(8), + [sym_function_item] = STATE(8), + [sym_function_signature_item] = STATE(8), + [sym_function_modifiers] = STATE(2744), + [sym_impl_item] = STATE(8), + [sym_trait_item] = STATE(8), + [sym_associated_type] = STATE(8), + [sym_let_declaration] = STATE(8), + [sym_use_declaration] = STATE(8), + [sym_extern_modifier] = STATE(1663), + [sym_visibility_modifier] = STATE(1454), + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2176), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1318), + [sym_macro_invocation] = STATE(92), + [sym_scoped_identifier] = STATE(1297), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(173), + [sym_match_expression] = STATE(173), + [sym_while_expression] = STATE(173), + [sym_loop_expression] = STATE(173), + [sym_for_expression] = STATE(173), + [sym_const_block] = STATE(173), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(65), + [sym_loop_label] = STATE(2723), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(173), + [sym_async_block] = STATE(173), + [sym_block] = STATE(173), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1189), + [sym_identifier] = STATE(1283), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [aux_sym_block_repeat1] = STATE(8), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(441), + [anon_sym_RBRACE] = ACTIONS(437), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_SQUOTE] = ACTIONS(21), @@ -22507,86 +22243,388 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [16] = { - [sym__statement] = STATE(5), - [sym_empty_statement] = STATE(5), - [sym_expression_statement] = STATE(5), - [sym_macro_definition] = STATE(5), - [sym_attribute_item] = STATE(5), - [sym_inner_attribute_item] = STATE(5), - [sym_mod_item] = STATE(5), - [sym_foreign_mod_item] = STATE(5), - [sym_struct_item] = STATE(5), - [sym_union_item] = STATE(5), - [sym_enum_item] = STATE(5), - [sym_extern_crate_declaration] = STATE(5), - [sym_const_item] = STATE(5), - [sym_static_item] = STATE(5), - [sym_type_item] = STATE(5), - [sym_function_item] = STATE(5), - [sym_function_signature_item] = STATE(5), - [sym_function_modifiers] = STATE(2748), - [sym_impl_item] = STATE(5), - [sym_trait_item] = STATE(5), - [sym_associated_type] = STATE(5), - [sym_let_declaration] = STATE(5), - [sym_use_declaration] = STATE(5), - [sym_extern_modifier] = STATE(1666), - [sym_visibility_modifier] = STATE(1455), - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2320), - [sym__expression_except_range] = STATE(1148), + [14] = { + [sym__statement] = STATE(16), + [sym_empty_statement] = STATE(16), + [sym_expression_statement] = STATE(16), + [sym_macro_definition] = STATE(16), + [sym_attribute_item] = STATE(16), + [sym_inner_attribute_item] = STATE(16), + [sym_mod_item] = STATE(16), + [sym_foreign_mod_item] = STATE(16), + [sym_struct_item] = STATE(16), + [sym_union_item] = STATE(16), + [sym_enum_item] = STATE(16), + [sym_extern_crate_declaration] = STATE(16), + [sym_const_item] = STATE(16), + [sym_static_item] = STATE(16), + [sym_type_item] = STATE(16), + [sym_function_item] = STATE(16), + [sym_function_signature_item] = STATE(16), + [sym_function_modifiers] = STATE(2744), + [sym_impl_item] = STATE(16), + [sym_trait_item] = STATE(16), + [sym_associated_type] = STATE(16), + [sym_let_declaration] = STATE(16), + [sym_use_declaration] = STATE(16), + [sym_extern_modifier] = STATE(1663), + [sym_visibility_modifier] = STATE(1454), + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2176), + [sym__expression_except_range] = STATE(1107), [sym__expression] = STATE(1347), - [sym_macro_invocation] = STATE(80), - [sym_scoped_identifier] = STATE(1292), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(83), - [sym_match_expression] = STATE(83), - [sym_while_expression] = STATE(83), - [sym_loop_expression] = STATE(83), - [sym_for_expression] = STATE(83), - [sym_const_block] = STATE(83), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2710), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(83), - [sym_async_block] = STATE(83), - [sym_block] = STATE(83), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1220), - [sym_identifier] = STATE(1279), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [aux_sym_block_repeat1] = STATE(5), + [sym_macro_invocation] = STATE(92), + [sym_scoped_identifier] = STATE(1297), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(173), + [sym_match_expression] = STATE(173), + [sym_while_expression] = STATE(173), + [sym_loop_expression] = STATE(173), + [sym_for_expression] = STATE(173), + [sym_const_block] = STATE(173), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(65), + [sym_loop_label] = STATE(2723), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(173), + [sym_async_block] = STATE(173), + [sym_block] = STATE(173), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1189), + [sym_identifier] = STATE(1283), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [aux_sym_block_repeat1] = STATE(16), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(439), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_async] = ACTIONS(23), + [anon_sym_break] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(31), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_fn] = ACTIONS(35), + [anon_sym_for] = ACTIONS(37), + [anon_sym_if] = ACTIONS(39), + [anon_sym_impl] = ACTIONS(41), + [anon_sym_let] = ACTIONS(43), + [anon_sym_loop] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_mod] = ACTIONS(49), + [anon_sym_pub] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_static] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_trait] = ACTIONS(59), + [anon_sym_type] = ACTIONS(61), + [anon_sym_union] = ACTIONS(63), + [anon_sym_unsafe] = ACTIONS(65), + [anon_sym_use] = ACTIONS(67), + [anon_sym_while] = ACTIONS(69), + [anon_sym_POUND] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_extern] = ACTIONS(73), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [anon_sym_u8] = ACTIONS(95), + [anon_sym_i8] = ACTIONS(95), + [anon_sym_u16] = ACTIONS(95), + [anon_sym_i16] = ACTIONS(95), + [anon_sym_u32] = ACTIONS(95), + [anon_sym_i32] = ACTIONS(95), + [anon_sym_u64] = ACTIONS(95), + [anon_sym_i64] = ACTIONS(95), + [anon_sym_u128] = ACTIONS(95), + [anon_sym_i128] = ACTIONS(95), + [anon_sym_isize] = ACTIONS(95), + [anon_sym_usize] = ACTIONS(95), + [anon_sym_f32] = ACTIONS(95), + [anon_sym_f64] = ACTIONS(95), + [anon_sym_bool] = ACTIONS(95), + [anon_sym_str] = ACTIONS(95), + [anon_sym_char] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(97), + [sym_self] = ACTIONS(99), + [sym_super] = ACTIONS(101), + [sym_crate] = ACTIONS(103), + [sym_metavariable] = ACTIONS(105), + [sym_grit_metavariable] = ACTIONS(107), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [15] = { + [sym__statement] = STATE(8), + [sym_empty_statement] = STATE(8), + [sym_expression_statement] = STATE(8), + [sym_macro_definition] = STATE(8), + [sym_attribute_item] = STATE(8), + [sym_inner_attribute_item] = STATE(8), + [sym_mod_item] = STATE(8), + [sym_foreign_mod_item] = STATE(8), + [sym_struct_item] = STATE(8), + [sym_union_item] = STATE(8), + [sym_enum_item] = STATE(8), + [sym_extern_crate_declaration] = STATE(8), + [sym_const_item] = STATE(8), + [sym_static_item] = STATE(8), + [sym_type_item] = STATE(8), + [sym_function_item] = STATE(8), + [sym_function_signature_item] = STATE(8), + [sym_function_modifiers] = STATE(2744), + [sym_impl_item] = STATE(8), + [sym_trait_item] = STATE(8), + [sym_associated_type] = STATE(8), + [sym_let_declaration] = STATE(8), + [sym_use_declaration] = STATE(8), + [sym_extern_modifier] = STATE(1663), + [sym_visibility_modifier] = STATE(1454), + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2176), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1321), + [sym_macro_invocation] = STATE(92), + [sym_scoped_identifier] = STATE(1297), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(173), + [sym_match_expression] = STATE(173), + [sym_while_expression] = STATE(173), + [sym_loop_expression] = STATE(173), + [sym_for_expression] = STATE(173), + [sym_const_block] = STATE(173), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(65), + [sym_loop_label] = STATE(2723), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(173), + [sym_async_block] = STATE(173), + [sym_block] = STATE(173), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1189), + [sym_identifier] = STATE(1283), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [aux_sym_block_repeat1] = STATE(8), + [sym__primitive_identifier] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(9), + [anon_sym_macro_rules_BANG] = ACTIONS(11), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(441), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_async] = ACTIONS(23), + [anon_sym_break] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(31), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_fn] = ACTIONS(35), + [anon_sym_for] = ACTIONS(37), + [anon_sym_if] = ACTIONS(39), + [anon_sym_impl] = ACTIONS(41), + [anon_sym_let] = ACTIONS(43), + [anon_sym_loop] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_mod] = ACTIONS(49), + [anon_sym_pub] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_static] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_trait] = ACTIONS(59), + [anon_sym_type] = ACTIONS(61), + [anon_sym_union] = ACTIONS(63), + [anon_sym_unsafe] = ACTIONS(65), + [anon_sym_use] = ACTIONS(67), + [anon_sym_while] = ACTIONS(69), + [anon_sym_POUND] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_extern] = ACTIONS(73), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [anon_sym_u8] = ACTIONS(95), + [anon_sym_i8] = ACTIONS(95), + [anon_sym_u16] = ACTIONS(95), + [anon_sym_i16] = ACTIONS(95), + [anon_sym_u32] = ACTIONS(95), + [anon_sym_i32] = ACTIONS(95), + [anon_sym_u64] = ACTIONS(95), + [anon_sym_i64] = ACTIONS(95), + [anon_sym_u128] = ACTIONS(95), + [anon_sym_i128] = ACTIONS(95), + [anon_sym_isize] = ACTIONS(95), + [anon_sym_usize] = ACTIONS(95), + [anon_sym_f32] = ACTIONS(95), + [anon_sym_f64] = ACTIONS(95), + [anon_sym_bool] = ACTIONS(95), + [anon_sym_str] = ACTIONS(95), + [anon_sym_char] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(97), + [sym_self] = ACTIONS(99), + [sym_super] = ACTIONS(101), + [sym_crate] = ACTIONS(103), + [sym_metavariable] = ACTIONS(105), + [sym_grit_metavariable] = ACTIONS(107), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [16] = { + [sym__statement] = STATE(8), + [sym_empty_statement] = STATE(8), + [sym_expression_statement] = STATE(8), + [sym_macro_definition] = STATE(8), + [sym_attribute_item] = STATE(8), + [sym_inner_attribute_item] = STATE(8), + [sym_mod_item] = STATE(8), + [sym_foreign_mod_item] = STATE(8), + [sym_struct_item] = STATE(8), + [sym_union_item] = STATE(8), + [sym_enum_item] = STATE(8), + [sym_extern_crate_declaration] = STATE(8), + [sym_const_item] = STATE(8), + [sym_static_item] = STATE(8), + [sym_type_item] = STATE(8), + [sym_function_item] = STATE(8), + [sym_function_signature_item] = STATE(8), + [sym_function_modifiers] = STATE(2744), + [sym_impl_item] = STATE(8), + [sym_trait_item] = STATE(8), + [sym_associated_type] = STATE(8), + [sym_let_declaration] = STATE(8), + [sym_use_declaration] = STATE(8), + [sym_extern_modifier] = STATE(1663), + [sym_visibility_modifier] = STATE(1454), + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2176), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1372), + [sym_macro_invocation] = STATE(92), + [sym_scoped_identifier] = STATE(1297), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(173), + [sym_match_expression] = STATE(173), + [sym_while_expression] = STATE(173), + [sym_loop_expression] = STATE(173), + [sym_for_expression] = STATE(173), + [sym_const_block] = STATE(173), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(65), + [sym_loop_label] = STATE(2723), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(173), + [sym_async_block] = STATE(173), + [sym_block] = STATE(173), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1189), + [sym_identifier] = STATE(1283), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [aux_sym_block_repeat1] = STATE(8), + [sym__primitive_identifier] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(9), + [anon_sym_macro_rules_BANG] = ACTIONS(11), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(443), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_SQUOTE] = ACTIONS(21), @@ -22659,52 +22697,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [17] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2320), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1276), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1139), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1220), - [sym_identifier] = STATE(834), + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2176), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1265), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1159), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(65), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1189), + [sym_identifier] = STATE(833), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(445), [anon_sym_LPAREN] = ACTIONS(445), @@ -22804,52 +22842,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [18] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2320), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1189), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1139), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1220), - [sym_identifier] = STATE(834), + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2176), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1270), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1159), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(65), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1189), + [sym_identifier] = STATE(833), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(475), [anon_sym_LPAREN] = ACTIONS(13), @@ -22857,10 +22895,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(447), [anon_sym_RBRACE] = ACTIONS(475), [anon_sym_EQ_GT] = ACTIONS(475), - [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_RBRACK] = ACTIONS(475), [anon_sym_PLUS] = ACTIONS(477), - [anon_sym_STAR] = ACTIONS(477), + [anon_sym_STAR] = ACTIONS(471), [anon_sym_QMARK] = ACTIONS(475), [anon_sym_SQUOTE] = ACTIONS(21), [anon_sym_as] = ACTIONS(477), @@ -22880,18 +22918,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(471), [anon_sym_EQ] = ACTIONS(477), [anon_sym_COMMA] = ACTIONS(475), - [anon_sym_LT] = ACTIONS(477), + [anon_sym_LT] = ACTIONS(479), [anon_sym_GT] = ACTIONS(477), [anon_sym_else] = ACTIONS(477), [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_AMP] = ACTIONS(477), + [anon_sym_AMP] = ACTIONS(481), [anon_sym_DOT_DOT_DOT] = ACTIONS(475), - [anon_sym_DOT_DOT] = ACTIONS(477), + [anon_sym_DOT_DOT] = ACTIONS(483), [anon_sym_DOT_DOT_EQ] = ACTIONS(475), - [anon_sym_DASH] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(471), [anon_sym_AMP_AMP] = ACTIONS(475), [anon_sym_PIPE_PIPE] = ACTIONS(475), - [anon_sym_PIPE] = ACTIONS(477), + [anon_sym_PIPE] = ACTIONS(485), [anon_sym_CARET] = ACTIONS(477), [anon_sym_EQ_EQ] = ACTIONS(475), [anon_sym_BANG_EQ] = ACTIONS(475), @@ -22948,66 +22986,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [19] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2320), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1189), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1139), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1220), - [sym_identifier] = STATE(834), + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2176), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1227), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1159), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(65), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1189), + [sym_identifier] = STATE(833), [sym__primitive_identifier] = ACTIONS(7), - [anon_sym_SEMI] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(475), - [anon_sym_RPAREN] = ACTIONS(475), + [anon_sym_SEMI] = ACTIONS(487), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_RPAREN] = ACTIONS(487), [anon_sym_LBRACE] = ACTIONS(447), - [anon_sym_RBRACE] = ACTIONS(475), - [anon_sym_EQ_GT] = ACTIONS(475), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_RBRACK] = ACTIONS(475), - [anon_sym_PLUS] = ACTIONS(477), - [anon_sym_STAR] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), + [anon_sym_RBRACE] = ACTIONS(487), + [anon_sym_EQ_GT] = ACTIONS(487), + [anon_sym_LBRACK] = ACTIONS(487), + [anon_sym_RBRACK] = ACTIONS(487), + [anon_sym_PLUS] = ACTIONS(489), + [anon_sym_STAR] = ACTIONS(489), + [anon_sym_QMARK] = ACTIONS(487), [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_as] = ACTIONS(477), + [anon_sym_as] = ACTIONS(489), [anon_sym_async] = ACTIONS(453), [anon_sym_break] = ACTIONS(25), [anon_sym_const] = ACTIONS(455), @@ -23022,42 +23060,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(467), [anon_sym_while] = ACTIONS(469), [anon_sym_BANG] = ACTIONS(471), - [anon_sym_EQ] = ACTIONS(477), - [anon_sym_COMMA] = ACTIONS(475), - [anon_sym_LT] = ACTIONS(477), - [anon_sym_GT] = ACTIONS(477), - [anon_sym_else] = ACTIONS(477), + [anon_sym_EQ] = ACTIONS(489), + [anon_sym_COMMA] = ACTIONS(487), + [anon_sym_LT] = ACTIONS(489), + [anon_sym_GT] = ACTIONS(489), + [anon_sym_else] = ACTIONS(489), [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_AMP] = ACTIONS(477), - [anon_sym_DOT_DOT_DOT] = ACTIONS(475), - [anon_sym_DOT_DOT] = ACTIONS(477), - [anon_sym_DOT_DOT_EQ] = ACTIONS(475), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_AMP_AMP] = ACTIONS(475), - [anon_sym_PIPE_PIPE] = ACTIONS(475), - [anon_sym_PIPE] = ACTIONS(477), - [anon_sym_CARET] = ACTIONS(477), - [anon_sym_EQ_EQ] = ACTIONS(475), - [anon_sym_BANG_EQ] = ACTIONS(475), - [anon_sym_LT_EQ] = ACTIONS(475), - [anon_sym_GT_EQ] = ACTIONS(475), - [anon_sym_LT_LT] = ACTIONS(477), - [anon_sym_GT_GT] = ACTIONS(477), - [anon_sym_SLASH] = ACTIONS(477), - [anon_sym_PERCENT] = ACTIONS(477), - [anon_sym_PLUS_EQ] = ACTIONS(475), - [anon_sym_DASH_EQ] = ACTIONS(475), - [anon_sym_STAR_EQ] = ACTIONS(475), - [anon_sym_SLASH_EQ] = ACTIONS(475), - [anon_sym_PERCENT_EQ] = ACTIONS(475), - [anon_sym_AMP_EQ] = ACTIONS(475), - [anon_sym_PIPE_EQ] = ACTIONS(475), - [anon_sym_CARET_EQ] = ACTIONS(475), - [anon_sym_LT_LT_EQ] = ACTIONS(475), - [anon_sym_GT_GT_EQ] = ACTIONS(475), + [anon_sym_AMP] = ACTIONS(489), + [anon_sym_DOT_DOT_DOT] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(489), + [anon_sym_DOT_DOT_EQ] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(489), + [anon_sym_AMP_AMP] = ACTIONS(487), + [anon_sym_PIPE_PIPE] = ACTIONS(487), + [anon_sym_PIPE] = ACTIONS(489), + [anon_sym_CARET] = ACTIONS(489), + [anon_sym_EQ_EQ] = ACTIONS(487), + [anon_sym_BANG_EQ] = ACTIONS(487), + [anon_sym_LT_EQ] = ACTIONS(487), + [anon_sym_GT_EQ] = ACTIONS(487), + [anon_sym_LT_LT] = ACTIONS(489), + [anon_sym_GT_GT] = ACTIONS(489), + [anon_sym_SLASH] = ACTIONS(489), + [anon_sym_PERCENT] = ACTIONS(489), + [anon_sym_PLUS_EQ] = ACTIONS(487), + [anon_sym_DASH_EQ] = ACTIONS(487), + [anon_sym_STAR_EQ] = ACTIONS(487), + [anon_sym_SLASH_EQ] = ACTIONS(487), + [anon_sym_PERCENT_EQ] = ACTIONS(487), + [anon_sym_AMP_EQ] = ACTIONS(487), + [anon_sym_PIPE_EQ] = ACTIONS(487), + [anon_sym_CARET_EQ] = ACTIONS(487), + [anon_sym_LT_LT_EQ] = ACTIONS(487), + [anon_sym_GT_GT_EQ] = ACTIONS(487), [anon_sym_yield] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), - [anon_sym_DOT] = ACTIONS(477), + [anon_sym_DOT] = ACTIONS(489), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), @@ -23092,66 +23130,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [20] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2320), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1187), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1139), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1220), - [sym_identifier] = STATE(834), + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2176), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1227), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1159), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(65), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1189), + [sym_identifier] = STATE(833), [sym__primitive_identifier] = ACTIONS(7), - [anon_sym_SEMI] = ACTIONS(479), + [anon_sym_SEMI] = ACTIONS(487), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(479), + [anon_sym_RPAREN] = ACTIONS(487), [anon_sym_LBRACE] = ACTIONS(447), - [anon_sym_RBRACE] = ACTIONS(479), - [anon_sym_EQ_GT] = ACTIONS(479), - [anon_sym_LBRACK] = ACTIONS(479), - [anon_sym_RBRACK] = ACTIONS(479), - [anon_sym_PLUS] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(481), - [anon_sym_QMARK] = ACTIONS(479), + [anon_sym_RBRACE] = ACTIONS(487), + [anon_sym_EQ_GT] = ACTIONS(487), + [anon_sym_LBRACK] = ACTIONS(487), + [anon_sym_RBRACK] = ACTIONS(487), + [anon_sym_PLUS] = ACTIONS(489), + [anon_sym_STAR] = ACTIONS(489), + [anon_sym_QMARK] = ACTIONS(487), [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_as] = ACTIONS(481), + [anon_sym_as] = ACTIONS(489), [anon_sym_async] = ACTIONS(453), [anon_sym_break] = ACTIONS(25), [anon_sym_const] = ACTIONS(455), @@ -23166,42 +23204,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(467), [anon_sym_while] = ACTIONS(469), [anon_sym_BANG] = ACTIONS(471), - [anon_sym_EQ] = ACTIONS(481), - [anon_sym_COMMA] = ACTIONS(479), - [anon_sym_LT] = ACTIONS(481), - [anon_sym_GT] = ACTIONS(481), - [anon_sym_else] = ACTIONS(481), + [anon_sym_EQ] = ACTIONS(489), + [anon_sym_COMMA] = ACTIONS(487), + [anon_sym_LT] = ACTIONS(489), + [anon_sym_GT] = ACTIONS(489), + [anon_sym_else] = ACTIONS(489), [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_AMP] = ACTIONS(481), - [anon_sym_DOT_DOT_DOT] = ACTIONS(479), - [anon_sym_DOT_DOT] = ACTIONS(481), - [anon_sym_DOT_DOT_EQ] = ACTIONS(479), - [anon_sym_DASH] = ACTIONS(481), - [anon_sym_AMP_AMP] = ACTIONS(479), - [anon_sym_PIPE_PIPE] = ACTIONS(479), - [anon_sym_PIPE] = ACTIONS(481), - [anon_sym_CARET] = ACTIONS(481), - [anon_sym_EQ_EQ] = ACTIONS(479), - [anon_sym_BANG_EQ] = ACTIONS(479), - [anon_sym_LT_EQ] = ACTIONS(479), - [anon_sym_GT_EQ] = ACTIONS(479), - [anon_sym_LT_LT] = ACTIONS(481), - [anon_sym_GT_GT] = ACTIONS(481), - [anon_sym_SLASH] = ACTIONS(481), - [anon_sym_PERCENT] = ACTIONS(481), - [anon_sym_PLUS_EQ] = ACTIONS(479), - [anon_sym_DASH_EQ] = ACTIONS(479), - [anon_sym_STAR_EQ] = ACTIONS(479), - [anon_sym_SLASH_EQ] = ACTIONS(479), - [anon_sym_PERCENT_EQ] = ACTIONS(479), - [anon_sym_AMP_EQ] = ACTIONS(479), - [anon_sym_PIPE_EQ] = ACTIONS(479), - [anon_sym_CARET_EQ] = ACTIONS(479), - [anon_sym_LT_LT_EQ] = ACTIONS(479), - [anon_sym_GT_GT_EQ] = ACTIONS(479), + [anon_sym_AMP] = ACTIONS(489), + [anon_sym_DOT_DOT_DOT] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(489), + [anon_sym_DOT_DOT_EQ] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(489), + [anon_sym_AMP_AMP] = ACTIONS(487), + [anon_sym_PIPE_PIPE] = ACTIONS(487), + [anon_sym_PIPE] = ACTIONS(489), + [anon_sym_CARET] = ACTIONS(489), + [anon_sym_EQ_EQ] = ACTIONS(487), + [anon_sym_BANG_EQ] = ACTIONS(487), + [anon_sym_LT_EQ] = ACTIONS(487), + [anon_sym_GT_EQ] = ACTIONS(487), + [anon_sym_LT_LT] = ACTIONS(489), + [anon_sym_GT_GT] = ACTIONS(489), + [anon_sym_SLASH] = ACTIONS(489), + [anon_sym_PERCENT] = ACTIONS(489), + [anon_sym_PLUS_EQ] = ACTIONS(487), + [anon_sym_DASH_EQ] = ACTIONS(487), + [anon_sym_STAR_EQ] = ACTIONS(487), + [anon_sym_SLASH_EQ] = ACTIONS(487), + [anon_sym_PERCENT_EQ] = ACTIONS(487), + [anon_sym_AMP_EQ] = ACTIONS(487), + [anon_sym_PIPE_EQ] = ACTIONS(487), + [anon_sym_CARET_EQ] = ACTIONS(487), + [anon_sym_LT_LT_EQ] = ACTIONS(487), + [anon_sym_GT_GT_EQ] = ACTIONS(487), [anon_sym_yield] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), - [anon_sym_DOT] = ACTIONS(481), + [anon_sym_DOT] = ACTIONS(489), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), @@ -23236,66 +23274,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [21] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2320), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1187), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1139), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1220), - [sym_identifier] = STATE(834), + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2176), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1264), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1159), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(65), + [sym_loop_label] = STATE(17), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1189), + [sym_identifier] = STATE(833), [sym__primitive_identifier] = ACTIONS(7), - [anon_sym_SEMI] = ACTIONS(479), - [anon_sym_LPAREN] = ACTIONS(479), - [anon_sym_RPAREN] = ACTIONS(479), + [anon_sym_SEMI] = ACTIONS(491), + [anon_sym_LPAREN] = ACTIONS(491), + [anon_sym_RPAREN] = ACTIONS(491), [anon_sym_LBRACE] = ACTIONS(447), - [anon_sym_RBRACE] = ACTIONS(479), - [anon_sym_EQ_GT] = ACTIONS(479), - [anon_sym_LBRACK] = ACTIONS(479), - [anon_sym_RBRACK] = ACTIONS(479), - [anon_sym_PLUS] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(481), - [anon_sym_QMARK] = ACTIONS(479), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_as] = ACTIONS(481), + [anon_sym_RBRACE] = ACTIONS(491), + [anon_sym_EQ_GT] = ACTIONS(491), + [anon_sym_LBRACK] = ACTIONS(491), + [anon_sym_RBRACK] = ACTIONS(491), + [anon_sym_PLUS] = ACTIONS(493), + [anon_sym_STAR] = ACTIONS(493), + [anon_sym_QMARK] = ACTIONS(491), + [anon_sym_SQUOTE] = ACTIONS(495), + [anon_sym_as] = ACTIONS(493), [anon_sym_async] = ACTIONS(453), [anon_sym_break] = ACTIONS(25), [anon_sym_const] = ACTIONS(455), @@ -23310,42 +23348,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(467), [anon_sym_while] = ACTIONS(469), [anon_sym_BANG] = ACTIONS(471), - [anon_sym_EQ] = ACTIONS(481), - [anon_sym_COMMA] = ACTIONS(479), - [anon_sym_LT] = ACTIONS(481), - [anon_sym_GT] = ACTIONS(481), - [anon_sym_else] = ACTIONS(481), + [anon_sym_EQ] = ACTIONS(493), + [anon_sym_COMMA] = ACTIONS(491), + [anon_sym_LT] = ACTIONS(493), + [anon_sym_GT] = ACTIONS(493), + [anon_sym_else] = ACTIONS(493), [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_AMP] = ACTIONS(481), - [anon_sym_DOT_DOT_DOT] = ACTIONS(479), - [anon_sym_DOT_DOT] = ACTIONS(481), - [anon_sym_DOT_DOT_EQ] = ACTIONS(479), - [anon_sym_DASH] = ACTIONS(481), - [anon_sym_AMP_AMP] = ACTIONS(479), - [anon_sym_PIPE_PIPE] = ACTIONS(479), - [anon_sym_PIPE] = ACTIONS(481), - [anon_sym_CARET] = ACTIONS(481), - [anon_sym_EQ_EQ] = ACTIONS(479), - [anon_sym_BANG_EQ] = ACTIONS(479), - [anon_sym_LT_EQ] = ACTIONS(479), - [anon_sym_GT_EQ] = ACTIONS(479), - [anon_sym_LT_LT] = ACTIONS(481), - [anon_sym_GT_GT] = ACTIONS(481), - [anon_sym_SLASH] = ACTIONS(481), - [anon_sym_PERCENT] = ACTIONS(481), - [anon_sym_PLUS_EQ] = ACTIONS(479), - [anon_sym_DASH_EQ] = ACTIONS(479), - [anon_sym_STAR_EQ] = ACTIONS(479), - [anon_sym_SLASH_EQ] = ACTIONS(479), - [anon_sym_PERCENT_EQ] = ACTIONS(479), - [anon_sym_AMP_EQ] = ACTIONS(479), - [anon_sym_PIPE_EQ] = ACTIONS(479), - [anon_sym_CARET_EQ] = ACTIONS(479), - [anon_sym_LT_LT_EQ] = ACTIONS(479), - [anon_sym_GT_GT_EQ] = ACTIONS(479), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_DOT_DOT_DOT] = ACTIONS(491), + [anon_sym_DOT_DOT] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(491), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_AMP_AMP] = ACTIONS(491), + [anon_sym_PIPE_PIPE] = ACTIONS(491), + [anon_sym_PIPE] = ACTIONS(493), + [anon_sym_CARET] = ACTIONS(493), + [anon_sym_EQ_EQ] = ACTIONS(491), + [anon_sym_BANG_EQ] = ACTIONS(491), + [anon_sym_LT_EQ] = ACTIONS(491), + [anon_sym_GT_EQ] = ACTIONS(491), + [anon_sym_LT_LT] = ACTIONS(493), + [anon_sym_GT_GT] = ACTIONS(493), + [anon_sym_SLASH] = ACTIONS(493), + [anon_sym_PERCENT] = ACTIONS(493), + [anon_sym_PLUS_EQ] = ACTIONS(491), + [anon_sym_DASH_EQ] = ACTIONS(491), + [anon_sym_STAR_EQ] = ACTIONS(491), + [anon_sym_SLASH_EQ] = ACTIONS(491), + [anon_sym_PERCENT_EQ] = ACTIONS(491), + [anon_sym_AMP_EQ] = ACTIONS(491), + [anon_sym_PIPE_EQ] = ACTIONS(491), + [anon_sym_CARET_EQ] = ACTIONS(491), + [anon_sym_LT_LT_EQ] = ACTIONS(491), + [anon_sym_GT_GT_EQ] = ACTIONS(491), [anon_sym_yield] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), - [anon_sym_DOT] = ACTIONS(481), + [anon_sym_DOT] = ACTIONS(493), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), @@ -23380,66 +23418,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [22] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2320), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1262), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1139), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1220), - [sym_identifier] = STATE(834), + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2176), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1216), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1159), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(65), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1189), + [sym_identifier] = STATE(833), [sym__primitive_identifier] = ACTIONS(7), - [anon_sym_SEMI] = ACTIONS(483), + [anon_sym_SEMI] = ACTIONS(497), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(483), + [anon_sym_RPAREN] = ACTIONS(497), [anon_sym_LBRACE] = ACTIONS(447), - [anon_sym_RBRACE] = ACTIONS(483), - [anon_sym_EQ_GT] = ACTIONS(483), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(485), - [anon_sym_STAR] = ACTIONS(471), - [anon_sym_QMARK] = ACTIONS(483), + [anon_sym_RBRACE] = ACTIONS(497), + [anon_sym_EQ_GT] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_RBRACK] = ACTIONS(497), + [anon_sym_PLUS] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(499), + [anon_sym_QMARK] = ACTIONS(497), [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_as] = ACTIONS(485), + [anon_sym_as] = ACTIONS(499), [anon_sym_async] = ACTIONS(453), [anon_sym_break] = ACTIONS(25), [anon_sym_const] = ACTIONS(455), @@ -23454,42 +23492,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(467), [anon_sym_while] = ACTIONS(469), [anon_sym_BANG] = ACTIONS(471), - [anon_sym_EQ] = ACTIONS(485), - [anon_sym_COMMA] = ACTIONS(483), - [anon_sym_LT] = ACTIONS(487), - [anon_sym_GT] = ACTIONS(485), - [anon_sym_else] = ACTIONS(485), + [anon_sym_EQ] = ACTIONS(499), + [anon_sym_COMMA] = ACTIONS(497), + [anon_sym_LT] = ACTIONS(499), + [anon_sym_GT] = ACTIONS(499), + [anon_sym_else] = ACTIONS(499), [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_AMP] = ACTIONS(489), - [anon_sym_DOT_DOT_DOT] = ACTIONS(483), - [anon_sym_DOT_DOT] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(483), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_AMP_AMP] = ACTIONS(483), - [anon_sym_PIPE_PIPE] = ACTIONS(483), - [anon_sym_PIPE] = ACTIONS(493), - [anon_sym_CARET] = ACTIONS(485), - [anon_sym_EQ_EQ] = ACTIONS(483), - [anon_sym_BANG_EQ] = ACTIONS(483), - [anon_sym_LT_EQ] = ACTIONS(483), - [anon_sym_GT_EQ] = ACTIONS(483), - [anon_sym_LT_LT] = ACTIONS(485), - [anon_sym_GT_GT] = ACTIONS(485), - [anon_sym_SLASH] = ACTIONS(485), - [anon_sym_PERCENT] = ACTIONS(485), - [anon_sym_PLUS_EQ] = ACTIONS(483), - [anon_sym_DASH_EQ] = ACTIONS(483), - [anon_sym_STAR_EQ] = ACTIONS(483), - [anon_sym_SLASH_EQ] = ACTIONS(483), - [anon_sym_PERCENT_EQ] = ACTIONS(483), - [anon_sym_AMP_EQ] = ACTIONS(483), - [anon_sym_PIPE_EQ] = ACTIONS(483), - [anon_sym_CARET_EQ] = ACTIONS(483), - [anon_sym_LT_LT_EQ] = ACTIONS(483), - [anon_sym_GT_GT_EQ] = ACTIONS(483), + [anon_sym_AMP] = ACTIONS(499), + [anon_sym_DOT_DOT_DOT] = ACTIONS(497), + [anon_sym_DOT_DOT] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(497), + [anon_sym_DASH] = ACTIONS(499), + [anon_sym_AMP_AMP] = ACTIONS(497), + [anon_sym_PIPE_PIPE] = ACTIONS(497), + [anon_sym_PIPE] = ACTIONS(499), + [anon_sym_CARET] = ACTIONS(499), + [anon_sym_EQ_EQ] = ACTIONS(497), + [anon_sym_BANG_EQ] = ACTIONS(497), + [anon_sym_LT_EQ] = ACTIONS(497), + [anon_sym_GT_EQ] = ACTIONS(497), + [anon_sym_LT_LT] = ACTIONS(499), + [anon_sym_GT_GT] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(499), + [anon_sym_PERCENT] = ACTIONS(499), + [anon_sym_PLUS_EQ] = ACTIONS(497), + [anon_sym_DASH_EQ] = ACTIONS(497), + [anon_sym_STAR_EQ] = ACTIONS(497), + [anon_sym_SLASH_EQ] = ACTIONS(497), + [anon_sym_PERCENT_EQ] = ACTIONS(497), + [anon_sym_AMP_EQ] = ACTIONS(497), + [anon_sym_PIPE_EQ] = ACTIONS(497), + [anon_sym_CARET_EQ] = ACTIONS(497), + [anon_sym_LT_LT_EQ] = ACTIONS(497), + [anon_sym_GT_GT_EQ] = ACTIONS(497), [anon_sym_yield] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), - [anon_sym_DOT] = ACTIONS(485), + [anon_sym_DOT] = ACTIONS(499), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), @@ -23524,66 +23562,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [23] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2320), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1258), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1139), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(17), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1220), - [sym_identifier] = STATE(834), + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2176), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1216), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1159), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(65), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1189), + [sym_identifier] = STATE(833), [sym__primitive_identifier] = ACTIONS(7), - [anon_sym_SEMI] = ACTIONS(495), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_RPAREN] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(497), + [anon_sym_LPAREN] = ACTIONS(497), + [anon_sym_RPAREN] = ACTIONS(497), [anon_sym_LBRACE] = ACTIONS(447), - [anon_sym_RBRACE] = ACTIONS(495), - [anon_sym_EQ_GT] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(495), - [anon_sym_RBRACK] = ACTIONS(495), - [anon_sym_PLUS] = ACTIONS(497), - [anon_sym_STAR] = ACTIONS(497), - [anon_sym_QMARK] = ACTIONS(495), - [anon_sym_SQUOTE] = ACTIONS(499), - [anon_sym_as] = ACTIONS(497), + [anon_sym_RBRACE] = ACTIONS(497), + [anon_sym_EQ_GT] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_RBRACK] = ACTIONS(497), + [anon_sym_PLUS] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(499), + [anon_sym_QMARK] = ACTIONS(497), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_as] = ACTIONS(499), [anon_sym_async] = ACTIONS(453), [anon_sym_break] = ACTIONS(25), [anon_sym_const] = ACTIONS(455), @@ -23598,42 +23636,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(467), [anon_sym_while] = ACTIONS(469), [anon_sym_BANG] = ACTIONS(471), - [anon_sym_EQ] = ACTIONS(497), - [anon_sym_COMMA] = ACTIONS(495), - [anon_sym_LT] = ACTIONS(497), - [anon_sym_GT] = ACTIONS(497), - [anon_sym_else] = ACTIONS(497), + [anon_sym_EQ] = ACTIONS(499), + [anon_sym_COMMA] = ACTIONS(497), + [anon_sym_LT] = ACTIONS(499), + [anon_sym_GT] = ACTIONS(499), + [anon_sym_else] = ACTIONS(499), [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_AMP] = ACTIONS(497), - [anon_sym_DOT_DOT_DOT] = ACTIONS(495), - [anon_sym_DOT_DOT] = ACTIONS(497), - [anon_sym_DOT_DOT_EQ] = ACTIONS(495), - [anon_sym_DASH] = ACTIONS(497), - [anon_sym_AMP_AMP] = ACTIONS(495), - [anon_sym_PIPE_PIPE] = ACTIONS(495), - [anon_sym_PIPE] = ACTIONS(497), - [anon_sym_CARET] = ACTIONS(497), - [anon_sym_EQ_EQ] = ACTIONS(495), - [anon_sym_BANG_EQ] = ACTIONS(495), - [anon_sym_LT_EQ] = ACTIONS(495), - [anon_sym_GT_EQ] = ACTIONS(495), - [anon_sym_LT_LT] = ACTIONS(497), - [anon_sym_GT_GT] = ACTIONS(497), - [anon_sym_SLASH] = ACTIONS(497), - [anon_sym_PERCENT] = ACTIONS(497), - [anon_sym_PLUS_EQ] = ACTIONS(495), - [anon_sym_DASH_EQ] = ACTIONS(495), - [anon_sym_STAR_EQ] = ACTIONS(495), - [anon_sym_SLASH_EQ] = ACTIONS(495), - [anon_sym_PERCENT_EQ] = ACTIONS(495), - [anon_sym_AMP_EQ] = ACTIONS(495), - [anon_sym_PIPE_EQ] = ACTIONS(495), - [anon_sym_CARET_EQ] = ACTIONS(495), - [anon_sym_LT_LT_EQ] = ACTIONS(495), - [anon_sym_GT_GT_EQ] = ACTIONS(495), + [anon_sym_AMP] = ACTIONS(499), + [anon_sym_DOT_DOT_DOT] = ACTIONS(497), + [anon_sym_DOT_DOT] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(497), + [anon_sym_DASH] = ACTIONS(499), + [anon_sym_AMP_AMP] = ACTIONS(497), + [anon_sym_PIPE_PIPE] = ACTIONS(497), + [anon_sym_PIPE] = ACTIONS(499), + [anon_sym_CARET] = ACTIONS(499), + [anon_sym_EQ_EQ] = ACTIONS(497), + [anon_sym_BANG_EQ] = ACTIONS(497), + [anon_sym_LT_EQ] = ACTIONS(497), + [anon_sym_GT_EQ] = ACTIONS(497), + [anon_sym_LT_LT] = ACTIONS(499), + [anon_sym_GT_GT] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(499), + [anon_sym_PERCENT] = ACTIONS(499), + [anon_sym_PLUS_EQ] = ACTIONS(497), + [anon_sym_DASH_EQ] = ACTIONS(497), + [anon_sym_STAR_EQ] = ACTIONS(497), + [anon_sym_SLASH_EQ] = ACTIONS(497), + [anon_sym_PERCENT_EQ] = ACTIONS(497), + [anon_sym_AMP_EQ] = ACTIONS(497), + [anon_sym_PIPE_EQ] = ACTIONS(497), + [anon_sym_CARET_EQ] = ACTIONS(497), + [anon_sym_LT_LT_EQ] = ACTIONS(497), + [anon_sym_GT_GT_EQ] = ACTIONS(497), [anon_sym_yield] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), - [anon_sym_DOT] = ACTIONS(497), + [anon_sym_DOT] = ACTIONS(499), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), @@ -23668,52 +23706,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [24] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2320), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1256), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1139), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1220), - [sym_identifier] = STATE(834), + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2176), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1273), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1159), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(65), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1189), + [sym_identifier] = STATE(833), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(501), [anon_sym_LPAREN] = ACTIONS(13), @@ -23744,18 +23782,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(471), [anon_sym_EQ] = ACTIONS(503), [anon_sym_COMMA] = ACTIONS(501), - [anon_sym_LT] = ACTIONS(487), + [anon_sym_LT] = ACTIONS(479), [anon_sym_GT] = ACTIONS(503), [anon_sym_else] = ACTIONS(503), [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_AMP] = ACTIONS(489), + [anon_sym_AMP] = ACTIONS(481), [anon_sym_DOT_DOT_DOT] = ACTIONS(501), - [anon_sym_DOT_DOT] = ACTIONS(491), + [anon_sym_DOT_DOT] = ACTIONS(483), [anon_sym_DOT_DOT_EQ] = ACTIONS(501), [anon_sym_DASH] = ACTIONS(471), [anon_sym_AMP_AMP] = ACTIONS(501), [anon_sym_PIPE_PIPE] = ACTIONS(501), - [anon_sym_PIPE] = ACTIONS(493), + [anon_sym_PIPE] = ACTIONS(485), [anon_sym_CARET] = ACTIONS(503), [anon_sym_EQ_EQ] = ACTIONS(501), [anon_sym_BANG_EQ] = ACTIONS(501), @@ -23812,52 +23850,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [25] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2289), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1371), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1296), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(65), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1311), - [sym_identifier] = STATE(1290), + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2305), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1327), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1308), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(74), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1313), + [sym_identifier] = STATE(1295), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(445), [anon_sym_LBRACE] = ACTIONS(445), @@ -23950,61 +23988,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [26] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2289), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1370), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1296), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(65), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1311), - [sym_identifier] = STATE(1290), + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2305), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1227), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1308), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(74), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1313), + [sym_identifier] = STATE(1295), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(447), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(485), - [anon_sym_STAR] = ACTIONS(511), - [anon_sym_QMARK] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(487), + [anon_sym_LBRACK] = ACTIONS(487), + [anon_sym_PLUS] = ACTIONS(489), + [anon_sym_STAR] = ACTIONS(489), + [anon_sym_QMARK] = ACTIONS(487), [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_as] = ACTIONS(485), + [anon_sym_as] = ACTIONS(489), [anon_sym_async] = ACTIONS(453), [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(455), @@ -24019,40 +24057,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(467), [anon_sym_while] = ACTIONS(469), [anon_sym_BANG] = ACTIONS(511), - [anon_sym_EQ] = ACTIONS(485), - [anon_sym_LT] = ACTIONS(487), - [anon_sym_GT] = ACTIONS(485), + [anon_sym_EQ] = ACTIONS(489), + [anon_sym_LT] = ACTIONS(489), + [anon_sym_GT] = ACTIONS(489), [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_AMP] = ACTIONS(527), - [anon_sym_DOT_DOT_DOT] = ACTIONS(483), - [anon_sym_DOT_DOT] = ACTIONS(529), - [anon_sym_DOT_DOT_EQ] = ACTIONS(483), - [anon_sym_DASH] = ACTIONS(511), - [anon_sym_AMP_AMP] = ACTIONS(483), - [anon_sym_PIPE_PIPE] = ACTIONS(483), - [anon_sym_PIPE] = ACTIONS(493), - [anon_sym_CARET] = ACTIONS(485), - [anon_sym_EQ_EQ] = ACTIONS(483), - [anon_sym_BANG_EQ] = ACTIONS(483), - [anon_sym_LT_EQ] = ACTIONS(483), - [anon_sym_GT_EQ] = ACTIONS(483), - [anon_sym_LT_LT] = ACTIONS(485), - [anon_sym_GT_GT] = ACTIONS(485), - [anon_sym_SLASH] = ACTIONS(485), - [anon_sym_PERCENT] = ACTIONS(485), - [anon_sym_PLUS_EQ] = ACTIONS(483), - [anon_sym_DASH_EQ] = ACTIONS(483), - [anon_sym_STAR_EQ] = ACTIONS(483), - [anon_sym_SLASH_EQ] = ACTIONS(483), - [anon_sym_PERCENT_EQ] = ACTIONS(483), - [anon_sym_AMP_EQ] = ACTIONS(483), - [anon_sym_PIPE_EQ] = ACTIONS(483), - [anon_sym_CARET_EQ] = ACTIONS(483), - [anon_sym_LT_LT_EQ] = ACTIONS(483), - [anon_sym_GT_GT_EQ] = ACTIONS(483), + [anon_sym_AMP] = ACTIONS(489), + [anon_sym_DOT_DOT_DOT] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(489), + [anon_sym_DOT_DOT_EQ] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(489), + [anon_sym_AMP_AMP] = ACTIONS(487), + [anon_sym_PIPE_PIPE] = ACTIONS(487), + [anon_sym_PIPE] = ACTIONS(489), + [anon_sym_CARET] = ACTIONS(489), + [anon_sym_EQ_EQ] = ACTIONS(487), + [anon_sym_BANG_EQ] = ACTIONS(487), + [anon_sym_LT_EQ] = ACTIONS(487), + [anon_sym_GT_EQ] = ACTIONS(487), + [anon_sym_LT_LT] = ACTIONS(489), + [anon_sym_GT_GT] = ACTIONS(489), + [anon_sym_SLASH] = ACTIONS(489), + [anon_sym_PERCENT] = ACTIONS(489), + [anon_sym_PLUS_EQ] = ACTIONS(487), + [anon_sym_DASH_EQ] = ACTIONS(487), + [anon_sym_STAR_EQ] = ACTIONS(487), + [anon_sym_SLASH_EQ] = ACTIONS(487), + [anon_sym_PERCENT_EQ] = ACTIONS(487), + [anon_sym_AMP_EQ] = ACTIONS(487), + [anon_sym_PIPE_EQ] = ACTIONS(487), + [anon_sym_CARET_EQ] = ACTIONS(487), + [anon_sym_LT_LT_EQ] = ACTIONS(487), + [anon_sym_GT_GT_EQ] = ACTIONS(487), [anon_sym_yield] = ACTIONS(515), [anon_sym_move] = ACTIONS(517), - [anon_sym_DOT] = ACTIONS(485), + [anon_sym_DOT] = ACTIONS(489), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), @@ -24087,58 +24125,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [27] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2289), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1189), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1296), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(65), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1311), - [sym_identifier] = STATE(1290), + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2305), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1371), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1308), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(74), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1313), + [sym_identifier] = STATE(1295), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(475), - [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(447), + [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(477), - [anon_sym_STAR] = ACTIONS(477), + [anon_sym_STAR] = ACTIONS(511), [anon_sym_QMARK] = ACTIONS(475), [anon_sym_SQUOTE] = ACTIONS(21), [anon_sym_as] = ACTIONS(477), @@ -24157,17 +24195,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(469), [anon_sym_BANG] = ACTIONS(511), [anon_sym_EQ] = ACTIONS(477), - [anon_sym_LT] = ACTIONS(477), + [anon_sym_LT] = ACTIONS(479), [anon_sym_GT] = ACTIONS(477), [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_AMP] = ACTIONS(477), + [anon_sym_AMP] = ACTIONS(527), [anon_sym_DOT_DOT_DOT] = ACTIONS(475), - [anon_sym_DOT_DOT] = ACTIONS(477), + [anon_sym_DOT_DOT] = ACTIONS(529), [anon_sym_DOT_DOT_EQ] = ACTIONS(475), - [anon_sym_DASH] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(511), [anon_sym_AMP_AMP] = ACTIONS(475), [anon_sym_PIPE_PIPE] = ACTIONS(475), - [anon_sym_PIPE] = ACTIONS(477), + [anon_sym_PIPE] = ACTIONS(485), [anon_sym_CARET] = ACTIONS(477), [anon_sym_EQ_EQ] = ACTIONS(475), [anon_sym_BANG_EQ] = ACTIONS(475), @@ -24224,61 +24262,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [28] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2289), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1187), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1296), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(65), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1311), - [sym_identifier] = STATE(1290), + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2305), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1216), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1308), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(74), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1313), + [sym_identifier] = STATE(1295), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(479), - [anon_sym_LBRACK] = ACTIONS(479), - [anon_sym_PLUS] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(481), - [anon_sym_QMARK] = ACTIONS(479), + [anon_sym_LBRACE] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_PLUS] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(499), + [anon_sym_QMARK] = ACTIONS(497), [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_as] = ACTIONS(481), + [anon_sym_as] = ACTIONS(499), [anon_sym_async] = ACTIONS(453), [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(455), @@ -24293,40 +24331,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(467), [anon_sym_while] = ACTIONS(469), [anon_sym_BANG] = ACTIONS(511), - [anon_sym_EQ] = ACTIONS(481), - [anon_sym_LT] = ACTIONS(481), - [anon_sym_GT] = ACTIONS(481), + [anon_sym_EQ] = ACTIONS(499), + [anon_sym_LT] = ACTIONS(499), + [anon_sym_GT] = ACTIONS(499), [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_AMP] = ACTIONS(481), - [anon_sym_DOT_DOT_DOT] = ACTIONS(479), - [anon_sym_DOT_DOT] = ACTIONS(481), - [anon_sym_DOT_DOT_EQ] = ACTIONS(479), - [anon_sym_DASH] = ACTIONS(481), - [anon_sym_AMP_AMP] = ACTIONS(479), - [anon_sym_PIPE_PIPE] = ACTIONS(479), - [anon_sym_PIPE] = ACTIONS(481), - [anon_sym_CARET] = ACTIONS(481), - [anon_sym_EQ_EQ] = ACTIONS(479), - [anon_sym_BANG_EQ] = ACTIONS(479), - [anon_sym_LT_EQ] = ACTIONS(479), - [anon_sym_GT_EQ] = ACTIONS(479), - [anon_sym_LT_LT] = ACTIONS(481), - [anon_sym_GT_GT] = ACTIONS(481), - [anon_sym_SLASH] = ACTIONS(481), - [anon_sym_PERCENT] = ACTIONS(481), - [anon_sym_PLUS_EQ] = ACTIONS(479), - [anon_sym_DASH_EQ] = ACTIONS(479), - [anon_sym_STAR_EQ] = ACTIONS(479), - [anon_sym_SLASH_EQ] = ACTIONS(479), - [anon_sym_PERCENT_EQ] = ACTIONS(479), - [anon_sym_AMP_EQ] = ACTIONS(479), - [anon_sym_PIPE_EQ] = ACTIONS(479), - [anon_sym_CARET_EQ] = ACTIONS(479), - [anon_sym_LT_LT_EQ] = ACTIONS(479), - [anon_sym_GT_GT_EQ] = ACTIONS(479), + [anon_sym_AMP] = ACTIONS(499), + [anon_sym_DOT_DOT_DOT] = ACTIONS(497), + [anon_sym_DOT_DOT] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(497), + [anon_sym_DASH] = ACTIONS(499), + [anon_sym_AMP_AMP] = ACTIONS(497), + [anon_sym_PIPE_PIPE] = ACTIONS(497), + [anon_sym_PIPE] = ACTIONS(499), + [anon_sym_CARET] = ACTIONS(499), + [anon_sym_EQ_EQ] = ACTIONS(497), + [anon_sym_BANG_EQ] = ACTIONS(497), + [anon_sym_LT_EQ] = ACTIONS(497), + [anon_sym_GT_EQ] = ACTIONS(497), + [anon_sym_LT_LT] = ACTIONS(499), + [anon_sym_GT_GT] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(499), + [anon_sym_PERCENT] = ACTIONS(499), + [anon_sym_PLUS_EQ] = ACTIONS(497), + [anon_sym_DASH_EQ] = ACTIONS(497), + [anon_sym_STAR_EQ] = ACTIONS(497), + [anon_sym_SLASH_EQ] = ACTIONS(497), + [anon_sym_PERCENT_EQ] = ACTIONS(497), + [anon_sym_AMP_EQ] = ACTIONS(497), + [anon_sym_PIPE_EQ] = ACTIONS(497), + [anon_sym_CARET_EQ] = ACTIONS(497), + [anon_sym_LT_LT_EQ] = ACTIONS(497), + [anon_sym_GT_GT_EQ] = ACTIONS(497), [anon_sym_yield] = ACTIONS(515), [anon_sym_move] = ACTIONS(517), - [anon_sym_DOT] = ACTIONS(481), + [anon_sym_DOT] = ACTIONS(499), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), @@ -24361,61 +24399,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [29] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2289), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1340), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1296), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(65), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1311), - [sym_identifier] = STATE(1290), + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2305), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1227), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1308), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(74), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1313), + [sym_identifier] = STATE(1295), [sym__primitive_identifier] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(447), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(503), - [anon_sym_STAR] = ACTIONS(511), - [anon_sym_QMARK] = ACTIONS(501), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_LBRACE] = ACTIONS(487), + [anon_sym_LBRACK] = ACTIONS(487), + [anon_sym_PLUS] = ACTIONS(489), + [anon_sym_STAR] = ACTIONS(489), + [anon_sym_QMARK] = ACTIONS(487), [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_as] = ACTIONS(503), + [anon_sym_as] = ACTIONS(489), [anon_sym_async] = ACTIONS(453), [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(455), @@ -24430,40 +24468,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(467), [anon_sym_while] = ACTIONS(469), [anon_sym_BANG] = ACTIONS(511), - [anon_sym_EQ] = ACTIONS(503), - [anon_sym_LT] = ACTIONS(487), - [anon_sym_GT] = ACTIONS(503), + [anon_sym_EQ] = ACTIONS(489), + [anon_sym_LT] = ACTIONS(489), + [anon_sym_GT] = ACTIONS(489), [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_AMP] = ACTIONS(527), - [anon_sym_DOT_DOT_DOT] = ACTIONS(501), - [anon_sym_DOT_DOT] = ACTIONS(529), - [anon_sym_DOT_DOT_EQ] = ACTIONS(501), - [anon_sym_DASH] = ACTIONS(511), - [anon_sym_AMP_AMP] = ACTIONS(501), - [anon_sym_PIPE_PIPE] = ACTIONS(501), - [anon_sym_PIPE] = ACTIONS(493), - [anon_sym_CARET] = ACTIONS(503), - [anon_sym_EQ_EQ] = ACTIONS(501), - [anon_sym_BANG_EQ] = ACTIONS(501), - [anon_sym_LT_EQ] = ACTIONS(501), - [anon_sym_GT_EQ] = ACTIONS(501), - [anon_sym_LT_LT] = ACTIONS(503), - [anon_sym_GT_GT] = ACTIONS(503), - [anon_sym_SLASH] = ACTIONS(503), - [anon_sym_PERCENT] = ACTIONS(503), - [anon_sym_PLUS_EQ] = ACTIONS(501), - [anon_sym_DASH_EQ] = ACTIONS(501), - [anon_sym_STAR_EQ] = ACTIONS(501), - [anon_sym_SLASH_EQ] = ACTIONS(501), - [anon_sym_PERCENT_EQ] = ACTIONS(501), - [anon_sym_AMP_EQ] = ACTIONS(501), - [anon_sym_PIPE_EQ] = ACTIONS(501), - [anon_sym_CARET_EQ] = ACTIONS(501), - [anon_sym_LT_LT_EQ] = ACTIONS(501), - [anon_sym_GT_GT_EQ] = ACTIONS(501), + [anon_sym_AMP] = ACTIONS(489), + [anon_sym_DOT_DOT_DOT] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(489), + [anon_sym_DOT_DOT_EQ] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(489), + [anon_sym_AMP_AMP] = ACTIONS(487), + [anon_sym_PIPE_PIPE] = ACTIONS(487), + [anon_sym_PIPE] = ACTIONS(489), + [anon_sym_CARET] = ACTIONS(489), + [anon_sym_EQ_EQ] = ACTIONS(487), + [anon_sym_BANG_EQ] = ACTIONS(487), + [anon_sym_LT_EQ] = ACTIONS(487), + [anon_sym_GT_EQ] = ACTIONS(487), + [anon_sym_LT_LT] = ACTIONS(489), + [anon_sym_GT_GT] = ACTIONS(489), + [anon_sym_SLASH] = ACTIONS(489), + [anon_sym_PERCENT] = ACTIONS(489), + [anon_sym_PLUS_EQ] = ACTIONS(487), + [anon_sym_DASH_EQ] = ACTIONS(487), + [anon_sym_STAR_EQ] = ACTIONS(487), + [anon_sym_SLASH_EQ] = ACTIONS(487), + [anon_sym_PERCENT_EQ] = ACTIONS(487), + [anon_sym_AMP_EQ] = ACTIONS(487), + [anon_sym_PIPE_EQ] = ACTIONS(487), + [anon_sym_CARET_EQ] = ACTIONS(487), + [anon_sym_LT_LT_EQ] = ACTIONS(487), + [anon_sym_GT_GT_EQ] = ACTIONS(487), [anon_sym_yield] = ACTIONS(515), [anon_sym_move] = ACTIONS(517), - [anon_sym_DOT] = ACTIONS(503), + [anon_sym_DOT] = ACTIONS(489), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), @@ -24498,61 +24536,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [30] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2289), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1189), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1296), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(65), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1311), - [sym_identifier] = STATE(1290), + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2305), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1216), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1308), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(74), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1313), + [sym_identifier] = STATE(1295), [sym__primitive_identifier] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(475), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_PLUS] = ACTIONS(477), - [anon_sym_STAR] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_PLUS] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(499), + [anon_sym_QMARK] = ACTIONS(497), [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_as] = ACTIONS(477), + [anon_sym_as] = ACTIONS(499), [anon_sym_async] = ACTIONS(453), [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(455), @@ -24567,40 +24605,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(467), [anon_sym_while] = ACTIONS(469), [anon_sym_BANG] = ACTIONS(511), - [anon_sym_EQ] = ACTIONS(477), - [anon_sym_LT] = ACTIONS(477), - [anon_sym_GT] = ACTIONS(477), + [anon_sym_EQ] = ACTIONS(499), + [anon_sym_LT] = ACTIONS(499), + [anon_sym_GT] = ACTIONS(499), [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_AMP] = ACTIONS(477), - [anon_sym_DOT_DOT_DOT] = ACTIONS(475), - [anon_sym_DOT_DOT] = ACTIONS(477), - [anon_sym_DOT_DOT_EQ] = ACTIONS(475), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_AMP_AMP] = ACTIONS(475), - [anon_sym_PIPE_PIPE] = ACTIONS(475), - [anon_sym_PIPE] = ACTIONS(477), - [anon_sym_CARET] = ACTIONS(477), - [anon_sym_EQ_EQ] = ACTIONS(475), - [anon_sym_BANG_EQ] = ACTIONS(475), - [anon_sym_LT_EQ] = ACTIONS(475), - [anon_sym_GT_EQ] = ACTIONS(475), - [anon_sym_LT_LT] = ACTIONS(477), - [anon_sym_GT_GT] = ACTIONS(477), - [anon_sym_SLASH] = ACTIONS(477), - [anon_sym_PERCENT] = ACTIONS(477), - [anon_sym_PLUS_EQ] = ACTIONS(475), - [anon_sym_DASH_EQ] = ACTIONS(475), - [anon_sym_STAR_EQ] = ACTIONS(475), - [anon_sym_SLASH_EQ] = ACTIONS(475), - [anon_sym_PERCENT_EQ] = ACTIONS(475), - [anon_sym_AMP_EQ] = ACTIONS(475), - [anon_sym_PIPE_EQ] = ACTIONS(475), - [anon_sym_CARET_EQ] = ACTIONS(475), - [anon_sym_LT_LT_EQ] = ACTIONS(475), - [anon_sym_GT_GT_EQ] = ACTIONS(475), + [anon_sym_AMP] = ACTIONS(499), + [anon_sym_DOT_DOT_DOT] = ACTIONS(497), + [anon_sym_DOT_DOT] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(497), + [anon_sym_DASH] = ACTIONS(499), + [anon_sym_AMP_AMP] = ACTIONS(497), + [anon_sym_PIPE_PIPE] = ACTIONS(497), + [anon_sym_PIPE] = ACTIONS(499), + [anon_sym_CARET] = ACTIONS(499), + [anon_sym_EQ_EQ] = ACTIONS(497), + [anon_sym_BANG_EQ] = ACTIONS(497), + [anon_sym_LT_EQ] = ACTIONS(497), + [anon_sym_GT_EQ] = ACTIONS(497), + [anon_sym_LT_LT] = ACTIONS(499), + [anon_sym_GT_GT] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(499), + [anon_sym_PERCENT] = ACTIONS(499), + [anon_sym_PLUS_EQ] = ACTIONS(497), + [anon_sym_DASH_EQ] = ACTIONS(497), + [anon_sym_STAR_EQ] = ACTIONS(497), + [anon_sym_SLASH_EQ] = ACTIONS(497), + [anon_sym_PERCENT_EQ] = ACTIONS(497), + [anon_sym_AMP_EQ] = ACTIONS(497), + [anon_sym_PIPE_EQ] = ACTIONS(497), + [anon_sym_CARET_EQ] = ACTIONS(497), + [anon_sym_LT_LT_EQ] = ACTIONS(497), + [anon_sym_GT_GT_EQ] = ACTIONS(497), [anon_sym_yield] = ACTIONS(515), [anon_sym_move] = ACTIONS(517), - [anon_sym_DOT] = ACTIONS(477), + [anon_sym_DOT] = ACTIONS(499), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), @@ -24635,61 +24673,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [31] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2289), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1330), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1296), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(65), + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2305), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1358), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1308), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(74), [sym_loop_label] = STATE(25), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1311), - [sym_identifier] = STATE(1290), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1313), + [sym_identifier] = STATE(1295), [sym__primitive_identifier] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(495), - [anon_sym_PLUS] = ACTIONS(497), - [anon_sym_STAR] = ACTIONS(497), - [anon_sym_QMARK] = ACTIONS(495), - [anon_sym_SQUOTE] = ACTIONS(499), - [anon_sym_as] = ACTIONS(497), + [anon_sym_LPAREN] = ACTIONS(491), + [anon_sym_LBRACE] = ACTIONS(491), + [anon_sym_LBRACK] = ACTIONS(491), + [anon_sym_PLUS] = ACTIONS(493), + [anon_sym_STAR] = ACTIONS(493), + [anon_sym_QMARK] = ACTIONS(491), + [anon_sym_SQUOTE] = ACTIONS(495), + [anon_sym_as] = ACTIONS(493), [anon_sym_async] = ACTIONS(453), [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(455), @@ -24704,40 +24742,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(467), [anon_sym_while] = ACTIONS(469), [anon_sym_BANG] = ACTIONS(511), - [anon_sym_EQ] = ACTIONS(497), - [anon_sym_LT] = ACTIONS(497), - [anon_sym_GT] = ACTIONS(497), + [anon_sym_EQ] = ACTIONS(493), + [anon_sym_LT] = ACTIONS(493), + [anon_sym_GT] = ACTIONS(493), [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_AMP] = ACTIONS(497), - [anon_sym_DOT_DOT_DOT] = ACTIONS(495), - [anon_sym_DOT_DOT] = ACTIONS(497), - [anon_sym_DOT_DOT_EQ] = ACTIONS(495), - [anon_sym_DASH] = ACTIONS(497), - [anon_sym_AMP_AMP] = ACTIONS(495), - [anon_sym_PIPE_PIPE] = ACTIONS(495), - [anon_sym_PIPE] = ACTIONS(497), - [anon_sym_CARET] = ACTIONS(497), - [anon_sym_EQ_EQ] = ACTIONS(495), - [anon_sym_BANG_EQ] = ACTIONS(495), - [anon_sym_LT_EQ] = ACTIONS(495), - [anon_sym_GT_EQ] = ACTIONS(495), - [anon_sym_LT_LT] = ACTIONS(497), - [anon_sym_GT_GT] = ACTIONS(497), - [anon_sym_SLASH] = ACTIONS(497), - [anon_sym_PERCENT] = ACTIONS(497), - [anon_sym_PLUS_EQ] = ACTIONS(495), - [anon_sym_DASH_EQ] = ACTIONS(495), - [anon_sym_STAR_EQ] = ACTIONS(495), - [anon_sym_SLASH_EQ] = ACTIONS(495), - [anon_sym_PERCENT_EQ] = ACTIONS(495), - [anon_sym_AMP_EQ] = ACTIONS(495), - [anon_sym_PIPE_EQ] = ACTIONS(495), - [anon_sym_CARET_EQ] = ACTIONS(495), - [anon_sym_LT_LT_EQ] = ACTIONS(495), - [anon_sym_GT_GT_EQ] = ACTIONS(495), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_DOT_DOT_DOT] = ACTIONS(491), + [anon_sym_DOT_DOT] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(491), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_AMP_AMP] = ACTIONS(491), + [anon_sym_PIPE_PIPE] = ACTIONS(491), + [anon_sym_PIPE] = ACTIONS(493), + [anon_sym_CARET] = ACTIONS(493), + [anon_sym_EQ_EQ] = ACTIONS(491), + [anon_sym_BANG_EQ] = ACTIONS(491), + [anon_sym_LT_EQ] = ACTIONS(491), + [anon_sym_GT_EQ] = ACTIONS(491), + [anon_sym_LT_LT] = ACTIONS(493), + [anon_sym_GT_GT] = ACTIONS(493), + [anon_sym_SLASH] = ACTIONS(493), + [anon_sym_PERCENT] = ACTIONS(493), + [anon_sym_PLUS_EQ] = ACTIONS(491), + [anon_sym_DASH_EQ] = ACTIONS(491), + [anon_sym_STAR_EQ] = ACTIONS(491), + [anon_sym_SLASH_EQ] = ACTIONS(491), + [anon_sym_PERCENT_EQ] = ACTIONS(491), + [anon_sym_AMP_EQ] = ACTIONS(491), + [anon_sym_PIPE_EQ] = ACTIONS(491), + [anon_sym_CARET_EQ] = ACTIONS(491), + [anon_sym_LT_LT_EQ] = ACTIONS(491), + [anon_sym_GT_GT_EQ] = ACTIONS(491), [anon_sym_yield] = ACTIONS(515), [anon_sym_move] = ACTIONS(517), - [anon_sym_DOT] = ACTIONS(497), + [anon_sym_DOT] = ACTIONS(493), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), @@ -24772,61 +24810,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [32] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2289), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1187), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1296), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(65), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1311), - [sym_identifier] = STATE(1290), + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2305), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1379), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1308), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(74), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1313), + [sym_identifier] = STATE(1295), [sym__primitive_identifier] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(479), - [anon_sym_LBRACE] = ACTIONS(479), - [anon_sym_LBRACK] = ACTIONS(479), - [anon_sym_PLUS] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(481), - [anon_sym_QMARK] = ACTIONS(479), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(447), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(503), + [anon_sym_STAR] = ACTIONS(511), + [anon_sym_QMARK] = ACTIONS(501), [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_as] = ACTIONS(481), + [anon_sym_as] = ACTIONS(503), [anon_sym_async] = ACTIONS(453), [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(455), @@ -24841,40 +24879,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(467), [anon_sym_while] = ACTIONS(469), [anon_sym_BANG] = ACTIONS(511), - [anon_sym_EQ] = ACTIONS(481), - [anon_sym_LT] = ACTIONS(481), - [anon_sym_GT] = ACTIONS(481), + [anon_sym_EQ] = ACTIONS(503), + [anon_sym_LT] = ACTIONS(479), + [anon_sym_GT] = ACTIONS(503), [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_AMP] = ACTIONS(481), - [anon_sym_DOT_DOT_DOT] = ACTIONS(479), - [anon_sym_DOT_DOT] = ACTIONS(481), - [anon_sym_DOT_DOT_EQ] = ACTIONS(479), - [anon_sym_DASH] = ACTIONS(481), - [anon_sym_AMP_AMP] = ACTIONS(479), - [anon_sym_PIPE_PIPE] = ACTIONS(479), - [anon_sym_PIPE] = ACTIONS(481), - [anon_sym_CARET] = ACTIONS(481), - [anon_sym_EQ_EQ] = ACTIONS(479), - [anon_sym_BANG_EQ] = ACTIONS(479), - [anon_sym_LT_EQ] = ACTIONS(479), - [anon_sym_GT_EQ] = ACTIONS(479), - [anon_sym_LT_LT] = ACTIONS(481), - [anon_sym_GT_GT] = ACTIONS(481), - [anon_sym_SLASH] = ACTIONS(481), - [anon_sym_PERCENT] = ACTIONS(481), - [anon_sym_PLUS_EQ] = ACTIONS(479), - [anon_sym_DASH_EQ] = ACTIONS(479), - [anon_sym_STAR_EQ] = ACTIONS(479), - [anon_sym_SLASH_EQ] = ACTIONS(479), - [anon_sym_PERCENT_EQ] = ACTIONS(479), - [anon_sym_AMP_EQ] = ACTIONS(479), - [anon_sym_PIPE_EQ] = ACTIONS(479), - [anon_sym_CARET_EQ] = ACTIONS(479), - [anon_sym_LT_LT_EQ] = ACTIONS(479), - [anon_sym_GT_GT_EQ] = ACTIONS(479), + [anon_sym_AMP] = ACTIONS(527), + [anon_sym_DOT_DOT_DOT] = ACTIONS(501), + [anon_sym_DOT_DOT] = ACTIONS(529), + [anon_sym_DOT_DOT_EQ] = ACTIONS(501), + [anon_sym_DASH] = ACTIONS(511), + [anon_sym_AMP_AMP] = ACTIONS(501), + [anon_sym_PIPE_PIPE] = ACTIONS(501), + [anon_sym_PIPE] = ACTIONS(485), + [anon_sym_CARET] = ACTIONS(503), + [anon_sym_EQ_EQ] = ACTIONS(501), + [anon_sym_BANG_EQ] = ACTIONS(501), + [anon_sym_LT_EQ] = ACTIONS(501), + [anon_sym_GT_EQ] = ACTIONS(501), + [anon_sym_LT_LT] = ACTIONS(503), + [anon_sym_GT_GT] = ACTIONS(503), + [anon_sym_SLASH] = ACTIONS(503), + [anon_sym_PERCENT] = ACTIONS(503), + [anon_sym_PLUS_EQ] = ACTIONS(501), + [anon_sym_DASH_EQ] = ACTIONS(501), + [anon_sym_STAR_EQ] = ACTIONS(501), + [anon_sym_SLASH_EQ] = ACTIONS(501), + [anon_sym_PERCENT_EQ] = ACTIONS(501), + [anon_sym_AMP_EQ] = ACTIONS(501), + [anon_sym_PIPE_EQ] = ACTIONS(501), + [anon_sym_CARET_EQ] = ACTIONS(501), + [anon_sym_LT_LT_EQ] = ACTIONS(501), + [anon_sym_GT_GT_EQ] = ACTIONS(501), [anon_sym_yield] = ACTIONS(515), [anon_sym_move] = ACTIONS(517), - [anon_sym_DOT] = ACTIONS(481), + [anon_sym_DOT] = ACTIONS(503), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), @@ -24909,54 +24947,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [33] = { - [sym_attribute_item] = STATE(799), - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2320), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1306), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1139), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1220), - [sym_identifier] = STATE(834), - [aux_sym_enum_variant_list_repeat1] = STATE(799), + [sym_attribute_item] = STATE(705), + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2176), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1301), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1159), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(65), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1189), + [sym_identifier] = STATE(833), + [aux_sym_enum_variant_list_repeat1] = STATE(705), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(447), @@ -25022,59 +25060,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [34] = { - [sym_attribute_item] = STATE(33), - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2320), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1302), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1139), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1220), - [sym_identifier] = STATE(834), - [aux_sym_enum_variant_list_repeat1] = STATE(33), + [sym_attribute_item] = STATE(53), + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2176), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1316), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1159), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(65), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1189), + [sym_identifier] = STATE(833), + [aux_sym_enum_variant_list_repeat1] = STATE(53), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(537), [anon_sym_LBRACE] = ACTIONS(447), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(537), [anon_sym_STAR] = ACTIONS(19), [anon_sym_SQUOTE] = ACTIONS(21), [anon_sym_async] = ACTIONS(453), @@ -25135,59 +25173,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [35] = { - [sym_attribute_item] = STATE(51), - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2320), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1309), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1139), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1220), - [sym_identifier] = STATE(834), - [aux_sym_enum_variant_list_repeat1] = STATE(51), + [sym_attribute_item] = STATE(33), + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2176), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1310), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1159), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(65), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1189), + [sym_identifier] = STATE(833), + [aux_sym_enum_variant_list_repeat1] = STATE(33), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(541), [anon_sym_LBRACE] = ACTIONS(447), [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(541), [anon_sym_STAR] = ACTIONS(19), [anon_sym_SQUOTE] = ACTIONS(21), [anon_sym_async] = ACTIONS(453), @@ -25248,169 +25286,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [36] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2289), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1392), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1296), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_let_condition] = STATE(2564), - [sym__let_chain] = STATE(2556), - [sym__condition] = STATE(2401), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), + [sym_attribute_item] = STATE(50), + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2176), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1375), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1159), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), [sym_closure_parameters] = STATE(65), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1311), - [sym_identifier] = STATE(1290), - [sym__primitive_identifier] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(447), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(545), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_async] = ACTIONS(453), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(29), - [anon_sym_default] = ACTIONS(507), - [anon_sym_for] = ACTIONS(459), - [anon_sym_if] = ACTIONS(461), - [anon_sym_let] = ACTIONS(547), - [anon_sym_loop] = ACTIONS(463), - [anon_sym_match] = ACTIONS(465), - [anon_sym_return] = ACTIONS(509), - [anon_sym_union] = ACTIONS(507), - [anon_sym_unsafe] = ACTIONS(467), - [anon_sym_while] = ACTIONS(469), - [anon_sym_BANG] = ACTIONS(545), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_AMP] = ACTIONS(549), - [anon_sym_DOT_DOT] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(545), - [anon_sym_PIPE] = ACTIONS(83), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [anon_sym_u8] = ACTIONS(95), - [anon_sym_i8] = ACTIONS(95), - [anon_sym_u16] = ACTIONS(95), - [anon_sym_i16] = ACTIONS(95), - [anon_sym_u32] = ACTIONS(95), - [anon_sym_i32] = ACTIONS(95), - [anon_sym_u64] = ACTIONS(95), - [anon_sym_i64] = ACTIONS(95), - [anon_sym_u128] = ACTIONS(95), - [anon_sym_i128] = ACTIONS(95), - [anon_sym_isize] = ACTIONS(95), - [anon_sym_usize] = ACTIONS(95), - [anon_sym_f32] = ACTIONS(95), - [anon_sym_f64] = ACTIONS(95), - [anon_sym_bool] = ACTIONS(95), - [anon_sym_str] = ACTIONS(95), - [anon_sym_char] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(97), - [sym_self] = ACTIONS(519), - [sym_super] = ACTIONS(521), - [sym_crate] = ACTIONS(521), - [sym_metavariable] = ACTIONS(523), - [sym_grit_metavariable] = ACTIONS(525), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [37] = { - [sym_attribute_item] = STATE(52), - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2320), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1374), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1139), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1220), - [sym_identifier] = STATE(834), - [aux_sym_enum_variant_list_repeat1] = STATE(52), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1189), + [sym_identifier] = STATE(833), + [aux_sym_enum_variant_list_repeat1] = STATE(50), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(553), + [anon_sym_RPAREN] = ACTIONS(545), [anon_sym_LBRACE] = ACTIONS(447), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), @@ -25471,85 +25397,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [38] = { - [sym_attribute_item] = STATE(52), - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2320), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1374), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1139), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1220), - [sym_identifier] = STATE(834), - [aux_sym_enum_variant_list_repeat1] = STATE(52), + [37] = { + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2305), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1397), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1308), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_let_condition] = STATE(2494), + [sym__let_chain] = STATE(2399), + [sym__condition] = STATE(2550), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(74), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1313), + [sym_identifier] = STATE(1295), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(555), [anon_sym_LBRACE] = ACTIONS(447), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(547), [anon_sym_SQUOTE] = ACTIONS(21), [anon_sym_async] = ACTIONS(453), - [anon_sym_break] = ACTIONS(25), + [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(455), [anon_sym_continue] = ACTIONS(29), - [anon_sym_default] = ACTIONS(457), + [anon_sym_default] = ACTIONS(507), [anon_sym_for] = ACTIONS(459), [anon_sym_if] = ACTIONS(461), + [anon_sym_let] = ACTIONS(549), [anon_sym_loop] = ACTIONS(463), [anon_sym_match] = ACTIONS(465), - [anon_sym_return] = ACTIONS(53), - [anon_sym_union] = ACTIONS(457), + [anon_sym_return] = ACTIONS(509), + [anon_sym_union] = ACTIONS(507), [anon_sym_unsafe] = ACTIONS(467), [anon_sym_while] = ACTIONS(469), - [anon_sym_POUND] = ACTIONS(533), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(547), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_AMP] = ACTIONS(79), - [anon_sym_DOT_DOT] = ACTIONS(81), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_AMP] = ACTIONS(551), + [anon_sym_DOT_DOT] = ACTIONS(553), + [anon_sym_DASH] = ACTIONS(547), [anon_sym_PIPE] = ACTIONS(83), - [anon_sym_yield] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(515), + [anon_sym_move] = ACTIONS(517), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), @@ -25574,70 +25500,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), [sym__raw_identifier] = ACTIONS(97), - [sym_self] = ACTIONS(99), - [sym_super] = ACTIONS(101), - [sym_crate] = ACTIONS(101), - [sym_metavariable] = ACTIONS(105), - [sym_grit_metavariable] = ACTIONS(473), + [sym_self] = ACTIONS(519), + [sym_super] = ACTIONS(521), + [sym_crate] = ACTIONS(521), + [sym_metavariable] = ACTIONS(523), + [sym_grit_metavariable] = ACTIONS(525), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [39] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2289), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1392), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1296), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_let_condition] = STATE(2564), - [sym__let_chain] = STATE(2556), - [sym__condition] = STATE(2551), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(65), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1311), - [sym_identifier] = STATE(1290), + [38] = { + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2305), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1397), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1308), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_let_condition] = STATE(2494), + [sym__let_chain] = STATE(2399), + [sym__condition] = STATE(2433), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(74), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1313), + [sym_identifier] = STATE(1295), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(447), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(545), + [anon_sym_STAR] = ACTIONS(547), [anon_sym_SQUOTE] = ACTIONS(21), [anon_sym_async] = ACTIONS(453), [anon_sym_break] = ACTIONS(505), @@ -25646,19 +25572,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(507), [anon_sym_for] = ACTIONS(459), [anon_sym_if] = ACTIONS(461), - [anon_sym_let] = ACTIONS(547), + [anon_sym_let] = ACTIONS(549), [anon_sym_loop] = ACTIONS(463), [anon_sym_match] = ACTIONS(465), [anon_sym_return] = ACTIONS(509), [anon_sym_union] = ACTIONS(507), [anon_sym_unsafe] = ACTIONS(467), [anon_sym_while] = ACTIONS(469), - [anon_sym_BANG] = ACTIONS(545), + [anon_sym_BANG] = ACTIONS(547), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_AMP] = ACTIONS(549), - [anon_sym_DOT_DOT] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(551), + [anon_sym_DOT_DOT] = ACTIONS(553), + [anon_sym_DASH] = ACTIONS(547), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(515), [anon_sym_move] = ACTIONS(517), @@ -25695,85 +25621,197 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, + [39] = { + [sym_attribute_item] = STATE(51), + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2176), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1359), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1159), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(65), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1189), + [sym_identifier] = STATE(833), + [aux_sym_enum_variant_list_repeat1] = STATE(51), + [sym__primitive_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(555), + [anon_sym_LBRACE] = ACTIONS(447), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_async] = ACTIONS(453), + [anon_sym_break] = ACTIONS(25), + [anon_sym_const] = ACTIONS(455), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(457), + [anon_sym_for] = ACTIONS(459), + [anon_sym_if] = ACTIONS(461), + [anon_sym_loop] = ACTIONS(463), + [anon_sym_match] = ACTIONS(465), + [anon_sym_return] = ACTIONS(53), + [anon_sym_union] = ACTIONS(457), + [anon_sym_unsafe] = ACTIONS(467), + [anon_sym_while] = ACTIONS(469), + [anon_sym_POUND] = ACTIONS(533), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [anon_sym_u8] = ACTIONS(95), + [anon_sym_i8] = ACTIONS(95), + [anon_sym_u16] = ACTIONS(95), + [anon_sym_i16] = ACTIONS(95), + [anon_sym_u32] = ACTIONS(95), + [anon_sym_i32] = ACTIONS(95), + [anon_sym_u64] = ACTIONS(95), + [anon_sym_i64] = ACTIONS(95), + [anon_sym_u128] = ACTIONS(95), + [anon_sym_i128] = ACTIONS(95), + [anon_sym_isize] = ACTIONS(95), + [anon_sym_usize] = ACTIONS(95), + [anon_sym_f32] = ACTIONS(95), + [anon_sym_f64] = ACTIONS(95), + [anon_sym_bool] = ACTIONS(95), + [anon_sym_str] = ACTIONS(95), + [anon_sym_char] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(97), + [sym_self] = ACTIONS(99), + [sym_super] = ACTIONS(101), + [sym_crate] = ACTIONS(101), + [sym_metavariable] = ACTIONS(105), + [sym_grit_metavariable] = ACTIONS(473), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, [40] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2289), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1392), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1296), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_let_condition] = STATE(2564), - [sym__let_chain] = STATE(2556), - [sym__condition] = STATE(2412), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), + [sym_attribute_item] = STATE(50), + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2176), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1375), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1159), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), [sym_closure_parameters] = STATE(65), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1311), - [sym_identifier] = STATE(1290), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1189), + [sym_identifier] = STATE(833), + [aux_sym_enum_variant_list_repeat1] = STATE(50), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(557), [anon_sym_LBRACE] = ACTIONS(447), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(545), + [anon_sym_STAR] = ACTIONS(19), [anon_sym_SQUOTE] = ACTIONS(21), [anon_sym_async] = ACTIONS(453), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(25), [anon_sym_const] = ACTIONS(455), [anon_sym_continue] = ACTIONS(29), - [anon_sym_default] = ACTIONS(507), + [anon_sym_default] = ACTIONS(457), [anon_sym_for] = ACTIONS(459), [anon_sym_if] = ACTIONS(461), - [anon_sym_let] = ACTIONS(547), [anon_sym_loop] = ACTIONS(463), [anon_sym_match] = ACTIONS(465), - [anon_sym_return] = ACTIONS(509), - [anon_sym_union] = ACTIONS(507), + [anon_sym_return] = ACTIONS(53), + [anon_sym_union] = ACTIONS(457), [anon_sym_unsafe] = ACTIONS(467), [anon_sym_while] = ACTIONS(469), - [anon_sym_BANG] = ACTIONS(545), + [anon_sym_POUND] = ACTIONS(533), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_AMP] = ACTIONS(549), - [anon_sym_DOT_DOT] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(545), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(83), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), @@ -25798,70 +25836,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), [sym__raw_identifier] = ACTIONS(97), - [sym_self] = ACTIONS(519), - [sym_super] = ACTIONS(521), - [sym_crate] = ACTIONS(521), - [sym_metavariable] = ACTIONS(523), - [sym_grit_metavariable] = ACTIONS(525), + [sym_self] = ACTIONS(99), + [sym_super] = ACTIONS(101), + [sym_crate] = ACTIONS(101), + [sym_metavariable] = ACTIONS(105), + [sym_grit_metavariable] = ACTIONS(473), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [41] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2289), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1392), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1296), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_let_condition] = STATE(2564), - [sym__let_chain] = STATE(2556), - [sym__condition] = STATE(2548), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(65), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1311), - [sym_identifier] = STATE(1290), + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2305), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1397), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1308), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_let_condition] = STATE(2494), + [sym__let_chain] = STATE(2399), + [sym__condition] = STATE(2500), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(74), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1313), + [sym_identifier] = STATE(1295), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(447), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(545), + [anon_sym_STAR] = ACTIONS(547), [anon_sym_SQUOTE] = ACTIONS(21), [anon_sym_async] = ACTIONS(453), [anon_sym_break] = ACTIONS(505), @@ -25870,19 +25908,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(507), [anon_sym_for] = ACTIONS(459), [anon_sym_if] = ACTIONS(461), - [anon_sym_let] = ACTIONS(547), + [anon_sym_let] = ACTIONS(549), [anon_sym_loop] = ACTIONS(463), [anon_sym_match] = ACTIONS(465), [anon_sym_return] = ACTIONS(509), [anon_sym_union] = ACTIONS(507), [anon_sym_unsafe] = ACTIONS(467), [anon_sym_while] = ACTIONS(469), - [anon_sym_BANG] = ACTIONS(545), + [anon_sym_BANG] = ACTIONS(547), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_AMP] = ACTIONS(549), - [anon_sym_DOT_DOT] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(551), + [anon_sym_DOT_DOT] = ACTIONS(553), + [anon_sym_DASH] = ACTIONS(547), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(515), [anon_sym_move] = ACTIONS(517), @@ -25920,60 +25958,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [42] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2289), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1392), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1296), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_let_condition] = STATE(2564), - [sym__let_chain] = STATE(2556), - [sym__condition] = STATE(2455), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(65), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1311), - [sym_identifier] = STATE(1290), + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2305), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1397), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1308), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_let_condition] = STATE(2494), + [sym__let_chain] = STATE(2399), + [sym__condition] = STATE(2575), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(74), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1313), + [sym_identifier] = STATE(1295), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(447), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(545), + [anon_sym_STAR] = ACTIONS(547), [anon_sym_SQUOTE] = ACTIONS(21), [anon_sym_async] = ACTIONS(453), [anon_sym_break] = ACTIONS(505), @@ -25982,19 +26020,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(507), [anon_sym_for] = ACTIONS(459), [anon_sym_if] = ACTIONS(461), - [anon_sym_let] = ACTIONS(547), + [anon_sym_let] = ACTIONS(549), [anon_sym_loop] = ACTIONS(463), [anon_sym_match] = ACTIONS(465), [anon_sym_return] = ACTIONS(509), [anon_sym_union] = ACTIONS(507), [anon_sym_unsafe] = ACTIONS(467), [anon_sym_while] = ACTIONS(469), - [anon_sym_BANG] = ACTIONS(545), + [anon_sym_BANG] = ACTIONS(547), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_AMP] = ACTIONS(549), - [anon_sym_DOT_DOT] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(551), + [anon_sym_DOT_DOT] = ACTIONS(553), + [anon_sym_DASH] = ACTIONS(547), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(515), [anon_sym_move] = ACTIONS(517), @@ -26032,60 +26070,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [43] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2289), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1392), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1296), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_let_condition] = STATE(2564), - [sym__let_chain] = STATE(2556), - [sym__condition] = STATE(2449), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(65), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1311), - [sym_identifier] = STATE(1290), + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2305), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1397), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1308), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_let_condition] = STATE(2494), + [sym__let_chain] = STATE(2399), + [sym__condition] = STATE(2432), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(74), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1313), + [sym_identifier] = STATE(1295), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(447), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(545), + [anon_sym_STAR] = ACTIONS(547), [anon_sym_SQUOTE] = ACTIONS(21), [anon_sym_async] = ACTIONS(453), [anon_sym_break] = ACTIONS(505), @@ -26094,19 +26132,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(507), [anon_sym_for] = ACTIONS(459), [anon_sym_if] = ACTIONS(461), - [anon_sym_let] = ACTIONS(547), + [anon_sym_let] = ACTIONS(549), [anon_sym_loop] = ACTIONS(463), [anon_sym_match] = ACTIONS(465), [anon_sym_return] = ACTIONS(509), [anon_sym_union] = ACTIONS(507), [anon_sym_unsafe] = ACTIONS(467), [anon_sym_while] = ACTIONS(469), - [anon_sym_BANG] = ACTIONS(545), + [anon_sym_BANG] = ACTIONS(547), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_AMP] = ACTIONS(549), - [anon_sym_DOT_DOT] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(551), + [anon_sym_DOT_DOT] = ACTIONS(553), + [anon_sym_DASH] = ACTIONS(547), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(515), [anon_sym_move] = ACTIONS(517), @@ -26144,84 +26182,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [44] = { - [sym_attribute_item] = STATE(50), - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2320), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1369), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1139), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1220), - [sym_identifier] = STATE(834), - [aux_sym_enum_variant_list_repeat1] = STATE(50), + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2305), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1397), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1308), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_let_condition] = STATE(2494), + [sym__let_chain] = STATE(2399), + [sym__condition] = STATE(2435), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(74), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1313), + [sym_identifier] = STATE(1295), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(557), [anon_sym_LBRACE] = ACTIONS(447), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(547), [anon_sym_SQUOTE] = ACTIONS(21), [anon_sym_async] = ACTIONS(453), - [anon_sym_break] = ACTIONS(25), + [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(455), [anon_sym_continue] = ACTIONS(29), - [anon_sym_default] = ACTIONS(457), + [anon_sym_default] = ACTIONS(507), [anon_sym_for] = ACTIONS(459), [anon_sym_if] = ACTIONS(461), + [anon_sym_let] = ACTIONS(549), [anon_sym_loop] = ACTIONS(463), [anon_sym_match] = ACTIONS(465), - [anon_sym_return] = ACTIONS(53), - [anon_sym_union] = ACTIONS(457), + [anon_sym_return] = ACTIONS(509), + [anon_sym_union] = ACTIONS(507), [anon_sym_unsafe] = ACTIONS(467), [anon_sym_while] = ACTIONS(469), - [anon_sym_POUND] = ACTIONS(533), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(547), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_AMP] = ACTIONS(79), - [anon_sym_DOT_DOT] = ACTIONS(81), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_AMP] = ACTIONS(551), + [anon_sym_DOT_DOT] = ACTIONS(553), + [anon_sym_DASH] = ACTIONS(547), [anon_sym_PIPE] = ACTIONS(83), - [anon_sym_yield] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(515), + [anon_sym_move] = ACTIONS(517), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), @@ -26246,94 +26284,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), [sym__raw_identifier] = ACTIONS(97), - [sym_self] = ACTIONS(99), - [sym_super] = ACTIONS(101), - [sym_crate] = ACTIONS(101), - [sym_metavariable] = ACTIONS(105), - [sym_grit_metavariable] = ACTIONS(473), + [sym_self] = ACTIONS(519), + [sym_super] = ACTIONS(521), + [sym_crate] = ACTIONS(521), + [sym_metavariable] = ACTIONS(523), + [sym_grit_metavariable] = ACTIONS(525), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [45] = { - [sym_attribute_item] = STATE(52), - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2320), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1374), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1139), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1220), - [sym_identifier] = STATE(834), - [aux_sym_enum_variant_list_repeat1] = STATE(52), + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2305), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1397), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1308), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_let_condition] = STATE(2494), + [sym__let_chain] = STATE(2399), + [sym__condition] = STATE(2513), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(74), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1313), + [sym_identifier] = STATE(1295), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(559), [anon_sym_LBRACE] = ACTIONS(447), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(547), [anon_sym_SQUOTE] = ACTIONS(21), [anon_sym_async] = ACTIONS(453), - [anon_sym_break] = ACTIONS(25), + [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(455), [anon_sym_continue] = ACTIONS(29), - [anon_sym_default] = ACTIONS(457), + [anon_sym_default] = ACTIONS(507), [anon_sym_for] = ACTIONS(459), [anon_sym_if] = ACTIONS(461), + [anon_sym_let] = ACTIONS(549), [anon_sym_loop] = ACTIONS(463), [anon_sym_match] = ACTIONS(465), - [anon_sym_return] = ACTIONS(53), - [anon_sym_union] = ACTIONS(457), + [anon_sym_return] = ACTIONS(509), + [anon_sym_union] = ACTIONS(507), [anon_sym_unsafe] = ACTIONS(467), [anon_sym_while] = ACTIONS(469), - [anon_sym_POUND] = ACTIONS(533), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(547), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_AMP] = ACTIONS(79), - [anon_sym_DOT_DOT] = ACTIONS(81), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_AMP] = ACTIONS(551), + [anon_sym_DOT_DOT] = ACTIONS(553), + [anon_sym_DASH] = ACTIONS(547), [anon_sym_PIPE] = ACTIONS(83), - [anon_sym_yield] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(515), + [anon_sym_move] = ACTIONS(517), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), @@ -26358,67 +26396,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), [sym__raw_identifier] = ACTIONS(97), - [sym_self] = ACTIONS(99), - [sym_super] = ACTIONS(101), - [sym_crate] = ACTIONS(101), - [sym_metavariable] = ACTIONS(105), - [sym_grit_metavariable] = ACTIONS(473), + [sym_self] = ACTIONS(519), + [sym_super] = ACTIONS(521), + [sym_crate] = ACTIONS(521), + [sym_metavariable] = ACTIONS(523), + [sym_grit_metavariable] = ACTIONS(525), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [46] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2320), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1387), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1139), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_let_condition] = STATE(2456), - [sym__let_chain] = STATE(2454), - [sym__condition] = STATE(2612), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1220), - [sym_identifier] = STATE(834), + [sym_attribute_item] = STATE(50), + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2176), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1375), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1159), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(65), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1189), + [sym_identifier] = STATE(833), + [aux_sym_enum_variant_list_repeat1] = STATE(50), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(559), [anon_sym_LBRACE] = ACTIONS(447), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), @@ -26430,13 +26468,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(457), [anon_sym_for] = ACTIONS(459), [anon_sym_if] = ACTIONS(461), - [anon_sym_let] = ACTIONS(561), [anon_sym_loop] = ACTIONS(463), [anon_sym_match] = ACTIONS(465), [anon_sym_return] = ACTIONS(53), [anon_sym_union] = ACTIONS(457), [anon_sym_unsafe] = ACTIONS(467), [anon_sym_while] = ACTIONS(469), + [anon_sym_POUND] = ACTIONS(533), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(77), @@ -26480,60 +26518,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [47] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2289), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1392), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1296), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_let_condition] = STATE(2564), - [sym__let_chain] = STATE(2556), - [sym__condition] = STATE(2431), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(65), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1311), - [sym_identifier] = STATE(1290), + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2305), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1397), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1308), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_let_condition] = STATE(2494), + [sym__let_chain] = STATE(2399), + [sym__condition] = STATE(2558), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(74), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1313), + [sym_identifier] = STATE(1295), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(447), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(545), + [anon_sym_STAR] = ACTIONS(547), [anon_sym_SQUOTE] = ACTIONS(21), [anon_sym_async] = ACTIONS(453), [anon_sym_break] = ACTIONS(505), @@ -26542,19 +26580,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(507), [anon_sym_for] = ACTIONS(459), [anon_sym_if] = ACTIONS(461), - [anon_sym_let] = ACTIONS(547), + [anon_sym_let] = ACTIONS(549), [anon_sym_loop] = ACTIONS(463), [anon_sym_match] = ACTIONS(465), [anon_sym_return] = ACTIONS(509), [anon_sym_union] = ACTIONS(507), [anon_sym_unsafe] = ACTIONS(467), [anon_sym_while] = ACTIONS(469), - [anon_sym_BANG] = ACTIONS(545), + [anon_sym_BANG] = ACTIONS(547), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_AMP] = ACTIONS(549), - [anon_sym_DOT_DOT] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(551), + [anon_sym_DOT_DOT] = ACTIONS(553), + [anon_sym_DASH] = ACTIONS(547), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(515), [anon_sym_move] = ACTIONS(517), @@ -26592,84 +26630,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [48] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2289), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1392), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1296), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_let_condition] = STATE(2564), - [sym__let_chain] = STATE(2556), - [sym__condition] = STATE(2569), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2176), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1383), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1159), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_let_condition] = STATE(2562), + [sym__let_chain] = STATE(2564), + [sym__condition] = STATE(2614), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), [sym_closure_parameters] = STATE(65), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1311), - [sym_identifier] = STATE(1290), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1189), + [sym_identifier] = STATE(833), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(447), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(545), + [anon_sym_STAR] = ACTIONS(19), [anon_sym_SQUOTE] = ACTIONS(21), [anon_sym_async] = ACTIONS(453), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(25), [anon_sym_const] = ACTIONS(455), [anon_sym_continue] = ACTIONS(29), - [anon_sym_default] = ACTIONS(507), + [anon_sym_default] = ACTIONS(457), [anon_sym_for] = ACTIONS(459), [anon_sym_if] = ACTIONS(461), - [anon_sym_let] = ACTIONS(547), + [anon_sym_let] = ACTIONS(561), [anon_sym_loop] = ACTIONS(463), [anon_sym_match] = ACTIONS(465), - [anon_sym_return] = ACTIONS(509), - [anon_sym_union] = ACTIONS(507), + [anon_sym_return] = ACTIONS(53), + [anon_sym_union] = ACTIONS(457), [anon_sym_unsafe] = ACTIONS(467), [anon_sym_while] = ACTIONS(469), - [anon_sym_BANG] = ACTIONS(545), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_AMP] = ACTIONS(549), - [anon_sym_DOT_DOT] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(545), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(83), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), @@ -26694,70 +26732,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), [sym__raw_identifier] = ACTIONS(97), - [sym_self] = ACTIONS(519), - [sym_super] = ACTIONS(521), - [sym_crate] = ACTIONS(521), - [sym_metavariable] = ACTIONS(523), - [sym_grit_metavariable] = ACTIONS(525), + [sym_self] = ACTIONS(99), + [sym_super] = ACTIONS(101), + [sym_crate] = ACTIONS(101), + [sym_metavariable] = ACTIONS(105), + [sym_grit_metavariable] = ACTIONS(473), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [49] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2289), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1392), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1296), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_let_condition] = STATE(2564), - [sym__let_chain] = STATE(2556), - [sym__condition] = STATE(2429), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(65), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1311), - [sym_identifier] = STATE(1290), + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2305), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1397), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1308), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_let_condition] = STATE(2494), + [sym__let_chain] = STATE(2399), + [sym__condition] = STATE(2459), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(74), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1313), + [sym_identifier] = STATE(1295), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(447), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(545), + [anon_sym_STAR] = ACTIONS(547), [anon_sym_SQUOTE] = ACTIONS(21), [anon_sym_async] = ACTIONS(453), [anon_sym_break] = ACTIONS(505), @@ -26766,19 +26804,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(507), [anon_sym_for] = ACTIONS(459), [anon_sym_if] = ACTIONS(461), - [anon_sym_let] = ACTIONS(547), + [anon_sym_let] = ACTIONS(549), [anon_sym_loop] = ACTIONS(463), [anon_sym_match] = ACTIONS(465), [anon_sym_return] = ACTIONS(509), [anon_sym_union] = ACTIONS(507), [anon_sym_unsafe] = ACTIONS(467), [anon_sym_while] = ACTIONS(469), - [anon_sym_BANG] = ACTIONS(545), + [anon_sym_BANG] = ACTIONS(547), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_AMP] = ACTIONS(549), - [anon_sym_DOT_DOT] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(551), + [anon_sym_DOT_DOT] = ACTIONS(553), + [anon_sym_DASH] = ACTIONS(547), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(515), [anon_sym_move] = ACTIONS(517), @@ -26816,54 +26854,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [50] = { - [sym_attribute_item] = STATE(799), - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2320), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1394), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1139), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1220), - [sym_identifier] = STATE(834), - [aux_sym_enum_variant_list_repeat1] = STATE(799), + [sym_attribute_item] = STATE(705), + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2176), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1326), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1159), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(65), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1189), + [sym_identifier] = STATE(833), + [aux_sym_enum_variant_list_repeat1] = STATE(705), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(447), @@ -26927,54 +26965,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [51] = { - [sym_attribute_item] = STATE(799), - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2320), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1312), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1139), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1220), - [sym_identifier] = STATE(834), - [aux_sym_enum_variant_list_repeat1] = STATE(799), + [sym_attribute_item] = STATE(705), + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2176), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1406), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1159), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(65), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1189), + [sym_identifier] = STATE(833), + [aux_sym_enum_variant_list_repeat1] = STATE(705), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(447), @@ -27038,54 +27076,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [52] = { - [sym_attribute_item] = STATE(799), - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2320), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1319), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1139), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1220), - [sym_identifier] = STATE(834), - [aux_sym_enum_variant_list_repeat1] = STATE(799), + [sym_attribute_item] = STATE(50), + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2176), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1375), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1159), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(65), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1189), + [sym_identifier] = STATE(833), + [aux_sym_enum_variant_list_repeat1] = STATE(50), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(447), @@ -27149,54 +27187,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [53] = { - [sym_attribute_item] = STATE(52), - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2320), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1374), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1139), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1220), - [sym_identifier] = STATE(834), - [aux_sym_enum_variant_list_repeat1] = STATE(52), + [sym_attribute_item] = STATE(705), + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2176), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1312), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1159), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(65), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1189), + [sym_identifier] = STATE(833), + [aux_sym_enum_variant_list_repeat1] = STATE(705), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(447), @@ -27260,55 +27298,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [54] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2320), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1259), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1139), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_let_condition] = STATE(2246), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1220), - [sym_identifier] = STATE(834), + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2176), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1350), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1159), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(65), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1189), + [sym_identifier] = STATE(833), + [aux_sym_tuple_expression_repeat1] = STATE(57), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(563), [anon_sym_LBRACE] = ACTIONS(447), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), @@ -27320,7 +27359,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(457), [anon_sym_for] = ACTIONS(459), [anon_sym_if] = ACTIONS(461), - [anon_sym_let] = ACTIONS(561), [anon_sym_loop] = ACTIONS(463), [anon_sym_match] = ACTIONS(465), [anon_sym_return] = ACTIONS(53), @@ -27331,7 +27369,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(77), [anon_sym_AMP] = ACTIONS(79), - [anon_sym_DOT_DOT] = ACTIONS(563), + [anon_sym_DOT_DOT] = ACTIONS(81), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(85), @@ -27370,166 +27408,276 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [55] = { - [sym_else_clause] = STATE(113), - [ts_builtin_sym_end] = ACTIONS(565), - [sym__primitive_identifier] = ACTIONS(567), - [anon_sym_SEMI] = ACTIONS(565), - [anon_sym_macro_rules_BANG] = ACTIONS(565), - [anon_sym_LPAREN] = ACTIONS(565), - [anon_sym_LBRACE] = ACTIONS(565), - [anon_sym_RBRACE] = ACTIONS(565), - [anon_sym_LBRACK] = ACTIONS(565), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(567), - [anon_sym_QMARK] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(567), - [anon_sym_as] = ACTIONS(567), - [anon_sym_async] = ACTIONS(567), - [anon_sym_break] = ACTIONS(567), - [anon_sym_const] = ACTIONS(567), - [anon_sym_continue] = ACTIONS(567), - [anon_sym_default] = ACTIONS(567), - [anon_sym_enum] = ACTIONS(567), - [anon_sym_fn] = ACTIONS(567), - [anon_sym_for] = ACTIONS(567), - [anon_sym_if] = ACTIONS(567), - [anon_sym_impl] = ACTIONS(567), - [anon_sym_let] = ACTIONS(567), - [anon_sym_loop] = ACTIONS(567), - [anon_sym_match] = ACTIONS(567), - [anon_sym_mod] = ACTIONS(567), - [anon_sym_pub] = ACTIONS(567), - [anon_sym_return] = ACTIONS(567), - [anon_sym_static] = ACTIONS(567), - [anon_sym_struct] = ACTIONS(567), - [anon_sym_trait] = ACTIONS(567), - [anon_sym_type] = ACTIONS(567), - [anon_sym_union] = ACTIONS(567), - [anon_sym_unsafe] = ACTIONS(567), - [anon_sym_use] = ACTIONS(567), - [anon_sym_while] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(565), - [anon_sym_BANG] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(567), - [anon_sym_extern] = ACTIONS(567), - [anon_sym_LT] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_else] = ACTIONS(569), - [anon_sym_COLON_COLON] = ACTIONS(565), - [anon_sym_AMP] = ACTIONS(567), - [anon_sym_DOT_DOT_DOT] = ACTIONS(565), - [anon_sym_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(567), - [anon_sym_AMP_AMP] = ACTIONS(565), - [anon_sym_PIPE_PIPE] = ACTIONS(565), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_CARET] = ACTIONS(567), - [anon_sym_EQ_EQ] = ACTIONS(565), - [anon_sym_BANG_EQ] = ACTIONS(565), - [anon_sym_LT_EQ] = ACTIONS(565), - [anon_sym_GT_EQ] = ACTIONS(565), - [anon_sym_LT_LT] = ACTIONS(567), - [anon_sym_GT_GT] = ACTIONS(567), - [anon_sym_SLASH] = ACTIONS(567), - [anon_sym_PERCENT] = ACTIONS(567), - [anon_sym_PLUS_EQ] = ACTIONS(565), - [anon_sym_DASH_EQ] = ACTIONS(565), - [anon_sym_STAR_EQ] = ACTIONS(565), - [anon_sym_SLASH_EQ] = ACTIONS(565), - [anon_sym_PERCENT_EQ] = ACTIONS(565), - [anon_sym_AMP_EQ] = ACTIONS(565), - [anon_sym_PIPE_EQ] = ACTIONS(565), - [anon_sym_CARET_EQ] = ACTIONS(565), - [anon_sym_LT_LT_EQ] = ACTIONS(565), - [anon_sym_GT_GT_EQ] = ACTIONS(565), - [anon_sym_yield] = ACTIONS(567), - [anon_sym_move] = ACTIONS(567), - [anon_sym_DOT] = ACTIONS(567), - [sym_integer_literal] = ACTIONS(565), - [aux_sym_string_literal_token1] = ACTIONS(565), - [sym_char_literal] = ACTIONS(565), - [anon_sym_true] = ACTIONS(567), - [anon_sym_false] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(567), - [anon_sym_i8] = ACTIONS(567), - [anon_sym_u16] = ACTIONS(567), - [anon_sym_i16] = ACTIONS(567), - [anon_sym_u32] = ACTIONS(567), - [anon_sym_i32] = ACTIONS(567), - [anon_sym_u64] = ACTIONS(567), - [anon_sym_i64] = ACTIONS(567), - [anon_sym_u128] = ACTIONS(567), - [anon_sym_i128] = ACTIONS(567), - [anon_sym_isize] = ACTIONS(567), - [anon_sym_usize] = ACTIONS(567), - [anon_sym_f32] = ACTIONS(567), - [anon_sym_f64] = ACTIONS(567), - [anon_sym_bool] = ACTIONS(567), - [anon_sym_str] = ACTIONS(567), - [anon_sym_char] = ACTIONS(567), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(565), - [sym_self] = ACTIONS(567), - [sym_super] = ACTIONS(567), - [sym_crate] = ACTIONS(567), - [sym_metavariable] = ACTIONS(565), - [sym_grit_metavariable] = ACTIONS(565), - [sym_raw_string_literal] = ACTIONS(565), - [sym_float_literal] = ACTIONS(565), + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2305), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1382), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1308), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_let_condition] = STATE(2393), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(74), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1313), + [sym_identifier] = STATE(1295), + [sym__primitive_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(447), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(547), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_async] = ACTIONS(453), + [anon_sym_break] = ACTIONS(505), + [anon_sym_const] = ACTIONS(455), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(507), + [anon_sym_for] = ACTIONS(459), + [anon_sym_if] = ACTIONS(461), + [anon_sym_let] = ACTIONS(549), + [anon_sym_loop] = ACTIONS(463), + [anon_sym_match] = ACTIONS(465), + [anon_sym_return] = ACTIONS(509), + [anon_sym_union] = ACTIONS(507), + [anon_sym_unsafe] = ACTIONS(467), + [anon_sym_while] = ACTIONS(469), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_AMP] = ACTIONS(551), + [anon_sym_DOT_DOT] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(547), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(515), + [anon_sym_move] = ACTIONS(517), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [anon_sym_u8] = ACTIONS(95), + [anon_sym_i8] = ACTIONS(95), + [anon_sym_u16] = ACTIONS(95), + [anon_sym_i16] = ACTIONS(95), + [anon_sym_u32] = ACTIONS(95), + [anon_sym_i32] = ACTIONS(95), + [anon_sym_u64] = ACTIONS(95), + [anon_sym_i64] = ACTIONS(95), + [anon_sym_u128] = ACTIONS(95), + [anon_sym_i128] = ACTIONS(95), + [anon_sym_isize] = ACTIONS(95), + [anon_sym_usize] = ACTIONS(95), + [anon_sym_f32] = ACTIONS(95), + [anon_sym_f64] = ACTIONS(95), + [anon_sym_bool] = ACTIONS(95), + [anon_sym_str] = ACTIONS(95), + [anon_sym_char] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(97), + [sym_self] = ACTIONS(519), + [sym_super] = ACTIONS(521), + [sym_crate] = ACTIONS(521), + [sym_metavariable] = ACTIONS(523), + [sym_grit_metavariable] = ACTIONS(525), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [56] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2320), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1351), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1139), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1220), - [sym_identifier] = STATE(834), - [aux_sym_tuple_expression_repeat1] = STATE(59), + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2176), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1407), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1159), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(65), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1189), + [sym_identifier] = STATE(833), + [aux_sym_tuple_expression_repeat1] = STATE(56), + [sym__primitive_identifier] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(570), + [anon_sym_RPAREN] = ACTIONS(573), + [anon_sym_LBRACE] = ACTIONS(575), + [anon_sym_LBRACK] = ACTIONS(578), + [anon_sym_STAR] = ACTIONS(581), + [anon_sym_SQUOTE] = ACTIONS(584), + [anon_sym_async] = ACTIONS(587), + [anon_sym_break] = ACTIONS(590), + [anon_sym_const] = ACTIONS(593), + [anon_sym_continue] = ACTIONS(596), + [anon_sym_default] = ACTIONS(599), + [anon_sym_for] = ACTIONS(602), + [anon_sym_if] = ACTIONS(605), + [anon_sym_loop] = ACTIONS(608), + [anon_sym_match] = ACTIONS(611), + [anon_sym_return] = ACTIONS(614), + [anon_sym_union] = ACTIONS(599), + [anon_sym_unsafe] = ACTIONS(617), + [anon_sym_while] = ACTIONS(620), + [anon_sym_BANG] = ACTIONS(581), + [anon_sym_LT] = ACTIONS(623), + [anon_sym_COLON_COLON] = ACTIONS(626), + [anon_sym_AMP] = ACTIONS(629), + [anon_sym_DOT_DOT] = ACTIONS(632), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_PIPE] = ACTIONS(635), + [anon_sym_yield] = ACTIONS(638), + [anon_sym_move] = ACTIONS(641), + [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_u8] = ACTIONS(653), + [anon_sym_i8] = ACTIONS(653), + [anon_sym_u16] = ACTIONS(653), + [anon_sym_i16] = ACTIONS(653), + [anon_sym_u32] = ACTIONS(653), + [anon_sym_i32] = ACTIONS(653), + [anon_sym_u64] = ACTIONS(653), + [anon_sym_i64] = ACTIONS(653), + [anon_sym_u128] = ACTIONS(653), + [anon_sym_i128] = ACTIONS(653), + [anon_sym_isize] = ACTIONS(653), + [anon_sym_usize] = ACTIONS(653), + [anon_sym_f32] = ACTIONS(653), + [anon_sym_f64] = ACTIONS(653), + [anon_sym_bool] = ACTIONS(653), + [anon_sym_str] = ACTIONS(653), + [anon_sym_char] = ACTIONS(653), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(656), + [sym_self] = ACTIONS(659), + [sym_super] = ACTIONS(662), + [sym_crate] = ACTIONS(662), + [sym_metavariable] = ACTIONS(665), + [sym_grit_metavariable] = ACTIONS(668), + [sym_raw_string_literal] = ACTIONS(644), + [sym_float_literal] = ACTIONS(644), + [sym_block_comment] = ACTIONS(3), + }, + [57] = { + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2176), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1357), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1159), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(65), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1189), + [sym_identifier] = STATE(833), + [aux_sym_tuple_expression_repeat1] = STATE(56), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(571), + [anon_sym_RPAREN] = ACTIONS(671), [anon_sym_LBRACE] = ACTIONS(447), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), @@ -27589,57 +27737,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [57] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2320), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1372), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1139), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1220), - [sym_identifier] = STATE(834), - [aux_sym_tuple_expression_repeat1] = STATE(59), + [58] = { + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2176), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1281), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1159), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_let_condition] = STATE(2393), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(65), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1189), + [sym_identifier] = STATE(833), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(573), [anon_sym_LBRACE] = ACTIONS(447), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), @@ -27651,6 +27798,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(457), [anon_sym_for] = ACTIONS(459), [anon_sym_if] = ACTIONS(461), + [anon_sym_let] = ACTIONS(561), [anon_sym_loop] = ACTIONS(463), [anon_sym_match] = ACTIONS(465), [anon_sym_return] = ACTIONS(53), @@ -27661,7 +27809,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(77), [anon_sym_AMP] = ACTIONS(79), - [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(673), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(85), @@ -27699,57 +27847,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [58] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2320), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1351), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1139), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1220), - [sym_identifier] = STATE(834), - [aux_sym_tuple_expression_repeat1] = STATE(57), + [59] = { + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2176), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1344), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1159), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(65), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1189), + [sym_identifier] = STATE(833), + [aux_sym_tuple_expression_repeat1] = STATE(63), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(571), + [anon_sym_RPAREN] = ACTIONS(675), [anon_sym_LBRACE] = ACTIONS(447), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), @@ -27809,193 +27957,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [59] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2320), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1396), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1139), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1220), - [sym_identifier] = STATE(834), - [aux_sym_tuple_expression_repeat1] = STATE(59), - [sym__primitive_identifier] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(578), - [anon_sym_RPAREN] = ACTIONS(581), - [anon_sym_LBRACE] = ACTIONS(583), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_STAR] = ACTIONS(589), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_async] = ACTIONS(595), - [anon_sym_break] = ACTIONS(598), - [anon_sym_const] = ACTIONS(601), - [anon_sym_continue] = ACTIONS(604), - [anon_sym_default] = ACTIONS(607), - [anon_sym_for] = ACTIONS(610), - [anon_sym_if] = ACTIONS(613), - [anon_sym_loop] = ACTIONS(616), - [anon_sym_match] = ACTIONS(619), - [anon_sym_return] = ACTIONS(622), - [anon_sym_union] = ACTIONS(607), - [anon_sym_unsafe] = ACTIONS(625), - [anon_sym_while] = ACTIONS(628), - [anon_sym_BANG] = ACTIONS(589), - [anon_sym_LT] = ACTIONS(631), - [anon_sym_COLON_COLON] = ACTIONS(634), - [anon_sym_AMP] = ACTIONS(637), - [anon_sym_DOT_DOT] = ACTIONS(640), - [anon_sym_DASH] = ACTIONS(589), - [anon_sym_PIPE] = ACTIONS(643), - [anon_sym_yield] = ACTIONS(646), - [anon_sym_move] = ACTIONS(649), - [sym_integer_literal] = ACTIONS(652), - [aux_sym_string_literal_token1] = ACTIONS(655), - [sym_char_literal] = ACTIONS(652), - [anon_sym_true] = ACTIONS(658), - [anon_sym_false] = ACTIONS(658), - [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), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(664), - [sym_self] = ACTIONS(667), - [sym_super] = ACTIONS(670), - [sym_crate] = ACTIONS(670), - [sym_metavariable] = ACTIONS(673), - [sym_grit_metavariable] = ACTIONS(676), - [sym_raw_string_literal] = ACTIONS(652), - [sym_float_literal] = ACTIONS(652), - [sym_block_comment] = ACTIONS(3), - }, [60] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2289), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1383), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1296), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_let_condition] = STATE(2246), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2176), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1411), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1159), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_let_condition] = STATE(2393), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), [sym_closure_parameters] = STATE(65), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1311), - [sym_identifier] = STATE(1290), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1189), + [sym_identifier] = STATE(833), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(447), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(545), + [anon_sym_STAR] = ACTIONS(19), [anon_sym_SQUOTE] = ACTIONS(21), [anon_sym_async] = ACTIONS(453), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(25), [anon_sym_const] = ACTIONS(455), [anon_sym_continue] = ACTIONS(29), - [anon_sym_default] = ACTIONS(507), + [anon_sym_default] = ACTIONS(457), [anon_sym_for] = ACTIONS(459), [anon_sym_if] = ACTIONS(461), - [anon_sym_let] = ACTIONS(547), + [anon_sym_let] = ACTIONS(561), [anon_sym_loop] = ACTIONS(463), [anon_sym_match] = ACTIONS(465), - [anon_sym_return] = ACTIONS(509), - [anon_sym_union] = ACTIONS(507), + [anon_sym_return] = ACTIONS(53), + [anon_sym_union] = ACTIONS(457), [anon_sym_unsafe] = ACTIONS(467), [anon_sym_while] = ACTIONS(469), - [anon_sym_BANG] = ACTIONS(545), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_AMP] = ACTIONS(549), - [anon_sym_DOT_DOT] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(545), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(83), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), @@ -28020,92 +28058,202 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), [sym__raw_identifier] = ACTIONS(97), - [sym_self] = ACTIONS(519), - [sym_super] = ACTIONS(521), - [sym_crate] = ACTIONS(521), - [sym_metavariable] = ACTIONS(523), - [sym_grit_metavariable] = ACTIONS(525), + [sym_self] = ACTIONS(99), + [sym_super] = ACTIONS(101), + [sym_crate] = ACTIONS(101), + [sym_metavariable] = ACTIONS(105), + [sym_grit_metavariable] = ACTIONS(473), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [61] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2320), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1339), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1139), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1220), - [sym_identifier] = STATE(834), - [aux_sym_tuple_expression_repeat1] = STATE(56), + [sym_else_clause] = STATE(109), + [ts_builtin_sym_end] = ACTIONS(677), + [sym__primitive_identifier] = ACTIONS(679), + [anon_sym_SEMI] = ACTIONS(677), + [anon_sym_macro_rules_BANG] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(677), + [anon_sym_LBRACE] = ACTIONS(677), + [anon_sym_RBRACE] = ACTIONS(677), + [anon_sym_LBRACK] = ACTIONS(677), + [anon_sym_PLUS] = ACTIONS(679), + [anon_sym_STAR] = ACTIONS(679), + [anon_sym_QMARK] = ACTIONS(677), + [anon_sym_SQUOTE] = ACTIONS(679), + [anon_sym_as] = ACTIONS(679), + [anon_sym_async] = ACTIONS(679), + [anon_sym_break] = ACTIONS(679), + [anon_sym_const] = ACTIONS(679), + [anon_sym_continue] = ACTIONS(679), + [anon_sym_default] = ACTIONS(679), + [anon_sym_enum] = ACTIONS(679), + [anon_sym_fn] = ACTIONS(679), + [anon_sym_for] = ACTIONS(679), + [anon_sym_if] = ACTIONS(679), + [anon_sym_impl] = ACTIONS(679), + [anon_sym_let] = ACTIONS(679), + [anon_sym_loop] = ACTIONS(679), + [anon_sym_match] = ACTIONS(679), + [anon_sym_mod] = ACTIONS(679), + [anon_sym_pub] = ACTIONS(679), + [anon_sym_return] = ACTIONS(679), + [anon_sym_static] = ACTIONS(679), + [anon_sym_struct] = ACTIONS(679), + [anon_sym_trait] = ACTIONS(679), + [anon_sym_type] = ACTIONS(679), + [anon_sym_union] = ACTIONS(679), + [anon_sym_unsafe] = ACTIONS(679), + [anon_sym_use] = ACTIONS(679), + [anon_sym_while] = ACTIONS(679), + [anon_sym_POUND] = ACTIONS(677), + [anon_sym_BANG] = ACTIONS(679), + [anon_sym_EQ] = ACTIONS(679), + [anon_sym_extern] = ACTIONS(679), + [anon_sym_LT] = ACTIONS(679), + [anon_sym_GT] = ACTIONS(679), + [anon_sym_else] = ACTIONS(681), + [anon_sym_COLON_COLON] = ACTIONS(677), + [anon_sym_AMP] = ACTIONS(679), + [anon_sym_DOT_DOT_DOT] = ACTIONS(677), + [anon_sym_DOT_DOT] = ACTIONS(679), + [anon_sym_DOT_DOT_EQ] = ACTIONS(677), + [anon_sym_DASH] = ACTIONS(679), + [anon_sym_AMP_AMP] = ACTIONS(677), + [anon_sym_PIPE_PIPE] = ACTIONS(677), + [anon_sym_PIPE] = ACTIONS(679), + [anon_sym_CARET] = ACTIONS(679), + [anon_sym_EQ_EQ] = ACTIONS(677), + [anon_sym_BANG_EQ] = ACTIONS(677), + [anon_sym_LT_EQ] = ACTIONS(677), + [anon_sym_GT_EQ] = ACTIONS(677), + [anon_sym_LT_LT] = ACTIONS(679), + [anon_sym_GT_GT] = ACTIONS(679), + [anon_sym_SLASH] = ACTIONS(679), + [anon_sym_PERCENT] = ACTIONS(679), + [anon_sym_PLUS_EQ] = ACTIONS(677), + [anon_sym_DASH_EQ] = ACTIONS(677), + [anon_sym_STAR_EQ] = ACTIONS(677), + [anon_sym_SLASH_EQ] = ACTIONS(677), + [anon_sym_PERCENT_EQ] = ACTIONS(677), + [anon_sym_AMP_EQ] = ACTIONS(677), + [anon_sym_PIPE_EQ] = ACTIONS(677), + [anon_sym_CARET_EQ] = ACTIONS(677), + [anon_sym_LT_LT_EQ] = ACTIONS(677), + [anon_sym_GT_GT_EQ] = ACTIONS(677), + [anon_sym_yield] = ACTIONS(679), + [anon_sym_move] = ACTIONS(679), + [anon_sym_DOT] = ACTIONS(679), + [sym_integer_literal] = ACTIONS(677), + [aux_sym_string_literal_token1] = ACTIONS(677), + [sym_char_literal] = ACTIONS(677), + [anon_sym_true] = ACTIONS(679), + [anon_sym_false] = ACTIONS(679), + [anon_sym_u8] = ACTIONS(679), + [anon_sym_i8] = ACTIONS(679), + [anon_sym_u16] = ACTIONS(679), + [anon_sym_i16] = ACTIONS(679), + [anon_sym_u32] = ACTIONS(679), + [anon_sym_i32] = ACTIONS(679), + [anon_sym_u64] = ACTIONS(679), + [anon_sym_i64] = ACTIONS(679), + [anon_sym_u128] = ACTIONS(679), + [anon_sym_i128] = ACTIONS(679), + [anon_sym_isize] = ACTIONS(679), + [anon_sym_usize] = ACTIONS(679), + [anon_sym_f32] = ACTIONS(679), + [anon_sym_f64] = ACTIONS(679), + [anon_sym_bool] = ACTIONS(679), + [anon_sym_str] = ACTIONS(679), + [anon_sym_char] = ACTIONS(679), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(677), + [sym_self] = ACTIONS(679), + [sym_super] = ACTIONS(679), + [sym_crate] = ACTIONS(679), + [sym_metavariable] = ACTIONS(677), + [sym_grit_metavariable] = ACTIONS(677), + [sym_raw_string_literal] = ACTIONS(677), + [sym_float_literal] = ACTIONS(677), + [sym_block_comment] = ACTIONS(3), + }, + [62] = { + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2305), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1408), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1308), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_let_condition] = STATE(2393), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(74), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1313), + [sym_identifier] = STATE(1295), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(679), [anon_sym_LBRACE] = ACTIONS(447), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(547), [anon_sym_SQUOTE] = ACTIONS(21), [anon_sym_async] = ACTIONS(453), - [anon_sym_break] = ACTIONS(25), + [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(455), [anon_sym_continue] = ACTIONS(29), - [anon_sym_default] = ACTIONS(457), + [anon_sym_default] = ACTIONS(507), [anon_sym_for] = ACTIONS(459), [anon_sym_if] = ACTIONS(461), + [anon_sym_let] = ACTIONS(549), [anon_sym_loop] = ACTIONS(463), [anon_sym_match] = ACTIONS(465), - [anon_sym_return] = ACTIONS(53), - [anon_sym_union] = ACTIONS(457), + [anon_sym_return] = ACTIONS(509), + [anon_sym_union] = ACTIONS(507), [anon_sym_unsafe] = ACTIONS(467), [anon_sym_while] = ACTIONS(469), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(547), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_AMP] = ACTIONS(79), - [anon_sym_DOT_DOT] = ACTIONS(81), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_AMP] = ACTIONS(551), + [anon_sym_DOT_DOT] = ACTIONS(553), + [anon_sym_DASH] = ACTIONS(547), [anon_sym_PIPE] = ACTIONS(83), - [anon_sym_yield] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(515), + [anon_sym_move] = ACTIONS(517), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), @@ -28130,65 +28278,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), [sym__raw_identifier] = ACTIONS(97), - [sym_self] = ACTIONS(99), - [sym_super] = ACTIONS(101), - [sym_crate] = ACTIONS(101), - [sym_metavariable] = ACTIONS(105), - [sym_grit_metavariable] = ACTIONS(473), + [sym_self] = ACTIONS(519), + [sym_super] = ACTIONS(521), + [sym_crate] = ACTIONS(521), + [sym_metavariable] = ACTIONS(523), + [sym_grit_metavariable] = ACTIONS(525), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [62] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2320), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1379), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1139), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_let_condition] = STATE(2246), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1220), - [sym_identifier] = STATE(834), + [63] = { + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2176), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1350), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1159), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(65), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1189), + [sym_identifier] = STATE(833), + [aux_sym_tuple_expression_repeat1] = STATE(56), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(563), [anon_sym_LBRACE] = ACTIONS(447), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), @@ -28200,7 +28349,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(457), [anon_sym_for] = ACTIONS(459), [anon_sym_if] = ACTIONS(461), - [anon_sym_let] = ACTIONS(561), [anon_sym_loop] = ACTIONS(463), [anon_sym_match] = ACTIONS(465), [anon_sym_return] = ACTIONS(53), @@ -28249,83 +28397,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [63] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2289), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1364), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1296), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_let_condition] = STATE(2246), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), + [64] = { + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2176), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1259), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1159), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), [sym_closure_parameters] = STATE(65), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1311), - [sym_identifier] = STATE(1290), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1189), + [sym_identifier] = STATE(833), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(447), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(545), + [anon_sym_STAR] = ACTIONS(19), [anon_sym_SQUOTE] = ACTIONS(21), [anon_sym_async] = ACTIONS(453), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(25), [anon_sym_const] = ACTIONS(455), [anon_sym_continue] = ACTIONS(29), - [anon_sym_default] = ACTIONS(507), + [anon_sym_default] = ACTIONS(457), [anon_sym_for] = ACTIONS(459), [anon_sym_if] = ACTIONS(461), - [anon_sym_let] = ACTIONS(547), [anon_sym_loop] = ACTIONS(463), [anon_sym_match] = ACTIONS(465), - [anon_sym_return] = ACTIONS(509), - [anon_sym_union] = ACTIONS(507), + [anon_sym_return] = ACTIONS(53), + [anon_sym_union] = ACTIONS(457), [anon_sym_unsafe] = ACTIONS(467), [anon_sym_while] = ACTIONS(469), - [anon_sym_BANG] = ACTIONS(545), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_AMP] = ACTIONS(549), - [anon_sym_DOT_DOT] = ACTIONS(681), - [anon_sym_DASH] = ACTIONS(545), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_AMP] = ACTIONS(79), + [sym_mutable_specifier] = ACTIONS(683), + [anon_sym_DOT_DOT] = ACTIONS(673), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(83), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), @@ -28350,62 +28497,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), [sym__raw_identifier] = ACTIONS(97), - [sym_self] = ACTIONS(519), - [sym_super] = ACTIONS(521), - [sym_crate] = ACTIONS(521), - [sym_metavariable] = ACTIONS(523), - [sym_grit_metavariable] = ACTIONS(525), + [sym_self] = ACTIONS(99), + [sym_super] = ACTIONS(101), + [sym_crate] = ACTIONS(101), + [sym_metavariable] = ACTIONS(105), + [sym_grit_metavariable] = ACTIONS(473), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [64] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2320), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1265), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1139), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1220), - [sym_identifier] = STATE(834), + [65] = { + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2176), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1260), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1159), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(65), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1189), + [sym_identifier] = STATE(833), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(447), @@ -28426,11 +28573,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(467), [anon_sym_while] = ACTIONS(469), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_DASH_GT] = ACTIONS(683), + [anon_sym_DASH_GT] = ACTIONS(685), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(77), [anon_sym_AMP] = ACTIONS(79), - [anon_sym_DOT_DOT] = ACTIONS(563), + [anon_sym_DOT_DOT] = ACTIONS(673), [anon_sym_DASH] = ACTIONS(471), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(85), @@ -28468,82 +28615,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [65] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2289), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1333), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1296), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), + [66] = { + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2176), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1338), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1159), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), [sym_closure_parameters] = STATE(65), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1311), - [sym_identifier] = STATE(1290), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1189), + [sym_identifier] = STATE(833), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(447), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(545), + [anon_sym_RBRACK] = ACTIONS(687), + [anon_sym_STAR] = ACTIONS(19), [anon_sym_SQUOTE] = ACTIONS(21), [anon_sym_async] = ACTIONS(453), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(25), [anon_sym_const] = ACTIONS(455), [anon_sym_continue] = ACTIONS(29), - [anon_sym_default] = ACTIONS(507), + [anon_sym_default] = ACTIONS(457), [anon_sym_for] = ACTIONS(459), [anon_sym_if] = ACTIONS(461), [anon_sym_loop] = ACTIONS(463), [anon_sym_match] = ACTIONS(465), - [anon_sym_return] = ACTIONS(509), - [anon_sym_union] = ACTIONS(507), + [anon_sym_return] = ACTIONS(53), + [anon_sym_union] = ACTIONS(457), [anon_sym_unsafe] = ACTIONS(467), [anon_sym_while] = ACTIONS(469), - [anon_sym_BANG] = ACTIONS(545), - [anon_sym_DASH_GT] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_AMP] = ACTIONS(549), - [anon_sym_DOT_DOT] = ACTIONS(681), - [anon_sym_DASH] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(83), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), @@ -28568,176 +28715,176 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), [sym__raw_identifier] = ACTIONS(97), - [sym_self] = ACTIONS(519), - [sym_super] = ACTIONS(521), - [sym_crate] = ACTIONS(521), - [sym_metavariable] = ACTIONS(523), - [sym_grit_metavariable] = ACTIONS(525), + [sym_self] = ACTIONS(99), + [sym_super] = ACTIONS(101), + [sym_crate] = ACTIONS(101), + [sym_metavariable] = ACTIONS(105), + [sym_grit_metavariable] = ACTIONS(473), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [66] = { - [ts_builtin_sym_end] = ACTIONS(685), - [sym__primitive_identifier] = ACTIONS(687), - [anon_sym_SEMI] = ACTIONS(685), - [anon_sym_macro_rules_BANG] = ACTIONS(685), - [anon_sym_LPAREN] = ACTIONS(685), - [anon_sym_LBRACE] = ACTIONS(685), - [anon_sym_RBRACE] = ACTIONS(685), - [anon_sym_LBRACK] = ACTIONS(685), - [anon_sym_PLUS] = ACTIONS(687), - [anon_sym_STAR] = ACTIONS(687), - [anon_sym_QMARK] = ACTIONS(685), - [anon_sym_SQUOTE] = ACTIONS(687), - [anon_sym_as] = ACTIONS(687), - [anon_sym_async] = ACTIONS(687), - [anon_sym_break] = ACTIONS(687), - [anon_sym_const] = ACTIONS(687), - [anon_sym_continue] = ACTIONS(687), - [anon_sym_default] = ACTIONS(687), - [anon_sym_enum] = ACTIONS(687), - [anon_sym_fn] = ACTIONS(687), - [anon_sym_for] = ACTIONS(687), - [anon_sym_if] = ACTIONS(687), - [anon_sym_impl] = ACTIONS(687), - [anon_sym_let] = ACTIONS(687), - [anon_sym_loop] = ACTIONS(687), - [anon_sym_match] = ACTIONS(687), - [anon_sym_mod] = ACTIONS(687), - [anon_sym_pub] = ACTIONS(687), - [anon_sym_return] = ACTIONS(687), - [anon_sym_static] = ACTIONS(687), - [anon_sym_struct] = ACTIONS(687), - [anon_sym_trait] = ACTIONS(687), - [anon_sym_type] = ACTIONS(687), - [anon_sym_union] = ACTIONS(687), - [anon_sym_unsafe] = ACTIONS(687), - [anon_sym_use] = ACTIONS(687), - [anon_sym_while] = ACTIONS(687), - [anon_sym_POUND] = ACTIONS(685), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_EQ] = ACTIONS(687), - [anon_sym_extern] = ACTIONS(687), - [anon_sym_LT] = ACTIONS(687), - [anon_sym_GT] = ACTIONS(687), - [anon_sym_else] = ACTIONS(687), - [anon_sym_COLON_COLON] = ACTIONS(685), - [anon_sym_AMP] = ACTIONS(687), - [anon_sym_DOT_DOT_DOT] = ACTIONS(685), - [anon_sym_DOT_DOT] = ACTIONS(687), - [anon_sym_DOT_DOT_EQ] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(687), - [anon_sym_AMP_AMP] = ACTIONS(685), - [anon_sym_PIPE_PIPE] = ACTIONS(685), - [anon_sym_PIPE] = ACTIONS(687), - [anon_sym_CARET] = ACTIONS(687), - [anon_sym_EQ_EQ] = ACTIONS(685), - [anon_sym_BANG_EQ] = ACTIONS(685), - [anon_sym_LT_EQ] = ACTIONS(685), - [anon_sym_GT_EQ] = ACTIONS(685), - [anon_sym_LT_LT] = ACTIONS(687), - [anon_sym_GT_GT] = ACTIONS(687), - [anon_sym_SLASH] = ACTIONS(687), - [anon_sym_PERCENT] = ACTIONS(687), - [anon_sym_PLUS_EQ] = ACTIONS(685), - [anon_sym_DASH_EQ] = ACTIONS(685), - [anon_sym_STAR_EQ] = ACTIONS(685), - [anon_sym_SLASH_EQ] = ACTIONS(685), - [anon_sym_PERCENT_EQ] = ACTIONS(685), - [anon_sym_AMP_EQ] = ACTIONS(685), - [anon_sym_PIPE_EQ] = ACTIONS(685), - [anon_sym_CARET_EQ] = ACTIONS(685), - [anon_sym_LT_LT_EQ] = ACTIONS(685), - [anon_sym_GT_GT_EQ] = ACTIONS(685), - [anon_sym_yield] = ACTIONS(687), - [anon_sym_move] = ACTIONS(687), - [anon_sym_DOT] = ACTIONS(687), - [sym_integer_literal] = ACTIONS(685), - [aux_sym_string_literal_token1] = ACTIONS(685), - [sym_char_literal] = ACTIONS(685), - [anon_sym_true] = ACTIONS(687), - [anon_sym_false] = ACTIONS(687), - [anon_sym_u8] = ACTIONS(687), - [anon_sym_i8] = ACTIONS(687), - [anon_sym_u16] = ACTIONS(687), - [anon_sym_i16] = ACTIONS(687), - [anon_sym_u32] = ACTIONS(687), - [anon_sym_i32] = ACTIONS(687), - [anon_sym_u64] = ACTIONS(687), - [anon_sym_i64] = ACTIONS(687), - [anon_sym_u128] = ACTIONS(687), - [anon_sym_i128] = ACTIONS(687), - [anon_sym_isize] = ACTIONS(687), - [anon_sym_usize] = ACTIONS(687), - [anon_sym_f32] = ACTIONS(687), - [anon_sym_f64] = ACTIONS(687), - [anon_sym_bool] = ACTIONS(687), - [anon_sym_str] = ACTIONS(687), - [anon_sym_char] = ACTIONS(687), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(685), - [sym_self] = ACTIONS(687), - [sym_super] = ACTIONS(687), - [sym_crate] = ACTIONS(687), - [sym_metavariable] = ACTIONS(685), - [sym_grit_metavariable] = ACTIONS(685), - [sym_raw_string_literal] = ACTIONS(685), - [sym_float_literal] = ACTIONS(685), + [67] = { + [ts_builtin_sym_end] = ACTIONS(689), + [sym__primitive_identifier] = ACTIONS(691), + [anon_sym_SEMI] = ACTIONS(689), + [anon_sym_macro_rules_BANG] = ACTIONS(689), + [anon_sym_LPAREN] = ACTIONS(689), + [anon_sym_LBRACE] = ACTIONS(689), + [anon_sym_RBRACE] = ACTIONS(689), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_PLUS] = ACTIONS(691), + [anon_sym_STAR] = ACTIONS(691), + [anon_sym_QMARK] = ACTIONS(689), + [anon_sym_SQUOTE] = ACTIONS(691), + [anon_sym_as] = ACTIONS(691), + [anon_sym_async] = ACTIONS(691), + [anon_sym_break] = ACTIONS(691), + [anon_sym_const] = ACTIONS(691), + [anon_sym_continue] = ACTIONS(691), + [anon_sym_default] = ACTIONS(691), + [anon_sym_enum] = ACTIONS(691), + [anon_sym_fn] = ACTIONS(691), + [anon_sym_for] = ACTIONS(691), + [anon_sym_if] = ACTIONS(691), + [anon_sym_impl] = ACTIONS(691), + [anon_sym_let] = ACTIONS(691), + [anon_sym_loop] = ACTIONS(691), + [anon_sym_match] = ACTIONS(691), + [anon_sym_mod] = ACTIONS(691), + [anon_sym_pub] = ACTIONS(691), + [anon_sym_return] = ACTIONS(691), + [anon_sym_static] = ACTIONS(691), + [anon_sym_struct] = ACTIONS(691), + [anon_sym_trait] = ACTIONS(691), + [anon_sym_type] = ACTIONS(691), + [anon_sym_union] = ACTIONS(691), + [anon_sym_unsafe] = ACTIONS(691), + [anon_sym_use] = ACTIONS(691), + [anon_sym_while] = ACTIONS(691), + [anon_sym_POUND] = ACTIONS(689), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_EQ] = ACTIONS(691), + [anon_sym_extern] = ACTIONS(691), + [anon_sym_LT] = ACTIONS(691), + [anon_sym_GT] = ACTIONS(691), + [anon_sym_else] = ACTIONS(691), + [anon_sym_COLON_COLON] = ACTIONS(689), + [anon_sym_AMP] = ACTIONS(691), + [anon_sym_DOT_DOT_DOT] = ACTIONS(689), + [anon_sym_DOT_DOT] = ACTIONS(691), + [anon_sym_DOT_DOT_EQ] = ACTIONS(689), + [anon_sym_DASH] = ACTIONS(691), + [anon_sym_AMP_AMP] = ACTIONS(689), + [anon_sym_PIPE_PIPE] = ACTIONS(689), + [anon_sym_PIPE] = ACTIONS(691), + [anon_sym_CARET] = ACTIONS(691), + [anon_sym_EQ_EQ] = ACTIONS(689), + [anon_sym_BANG_EQ] = ACTIONS(689), + [anon_sym_LT_EQ] = ACTIONS(689), + [anon_sym_GT_EQ] = ACTIONS(689), + [anon_sym_LT_LT] = ACTIONS(691), + [anon_sym_GT_GT] = ACTIONS(691), + [anon_sym_SLASH] = ACTIONS(691), + [anon_sym_PERCENT] = ACTIONS(691), + [anon_sym_PLUS_EQ] = ACTIONS(689), + [anon_sym_DASH_EQ] = ACTIONS(689), + [anon_sym_STAR_EQ] = ACTIONS(689), + [anon_sym_SLASH_EQ] = ACTIONS(689), + [anon_sym_PERCENT_EQ] = ACTIONS(689), + [anon_sym_AMP_EQ] = ACTIONS(689), + [anon_sym_PIPE_EQ] = ACTIONS(689), + [anon_sym_CARET_EQ] = ACTIONS(689), + [anon_sym_LT_LT_EQ] = ACTIONS(689), + [anon_sym_GT_GT_EQ] = ACTIONS(689), + [anon_sym_yield] = ACTIONS(691), + [anon_sym_move] = ACTIONS(691), + [anon_sym_DOT] = ACTIONS(691), + [sym_integer_literal] = ACTIONS(689), + [aux_sym_string_literal_token1] = ACTIONS(689), + [sym_char_literal] = ACTIONS(689), + [anon_sym_true] = ACTIONS(691), + [anon_sym_false] = ACTIONS(691), + [anon_sym_u8] = ACTIONS(691), + [anon_sym_i8] = ACTIONS(691), + [anon_sym_u16] = ACTIONS(691), + [anon_sym_i16] = ACTIONS(691), + [anon_sym_u32] = ACTIONS(691), + [anon_sym_i32] = ACTIONS(691), + [anon_sym_u64] = ACTIONS(691), + [anon_sym_i64] = ACTIONS(691), + [anon_sym_u128] = ACTIONS(691), + [anon_sym_i128] = ACTIONS(691), + [anon_sym_isize] = ACTIONS(691), + [anon_sym_usize] = ACTIONS(691), + [anon_sym_f32] = ACTIONS(691), + [anon_sym_f64] = ACTIONS(691), + [anon_sym_bool] = ACTIONS(691), + [anon_sym_str] = ACTIONS(691), + [anon_sym_char] = ACTIONS(691), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(689), + [sym_self] = ACTIONS(691), + [sym_super] = ACTIONS(691), + [sym_crate] = ACTIONS(691), + [sym_metavariable] = ACTIONS(689), + [sym_grit_metavariable] = ACTIONS(689), + [sym_raw_string_literal] = ACTIONS(689), + [sym_float_literal] = ACTIONS(689), [sym_block_comment] = ACTIONS(3), }, - [67] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2320), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1355), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1139), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1220), - [sym_identifier] = STATE(834), + [68] = { + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2176), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1338), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1159), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(65), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1189), + [sym_identifier] = STATE(833), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(447), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(689), + [anon_sym_RBRACK] = ACTIONS(693), [anon_sym_STAR] = ACTIONS(19), [anon_sym_SQUOTE] = ACTIONS(21), [anon_sym_async] = ACTIONS(453), @@ -28795,58 +28942,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [68] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2320), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1355), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1139), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1220), - [sym_identifier] = STATE(834), + [69] = { + [ts_builtin_sym_end] = ACTIONS(695), + [sym__primitive_identifier] = ACTIONS(697), + [anon_sym_SEMI] = ACTIONS(695), + [anon_sym_macro_rules_BANG] = ACTIONS(695), + [anon_sym_LPAREN] = ACTIONS(695), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_RBRACE] = ACTIONS(695), + [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_PLUS] = ACTIONS(697), + [anon_sym_STAR] = ACTIONS(697), + [anon_sym_QMARK] = ACTIONS(695), + [anon_sym_SQUOTE] = ACTIONS(697), + [anon_sym_as] = ACTIONS(697), + [anon_sym_async] = ACTIONS(697), + [anon_sym_break] = ACTIONS(697), + [anon_sym_const] = ACTIONS(697), + [anon_sym_continue] = ACTIONS(697), + [anon_sym_default] = ACTIONS(697), + [anon_sym_enum] = ACTIONS(697), + [anon_sym_fn] = ACTIONS(697), + [anon_sym_for] = ACTIONS(697), + [anon_sym_if] = ACTIONS(697), + [anon_sym_impl] = ACTIONS(697), + [anon_sym_let] = ACTIONS(697), + [anon_sym_loop] = ACTIONS(697), + [anon_sym_match] = ACTIONS(697), + [anon_sym_mod] = ACTIONS(697), + [anon_sym_pub] = ACTIONS(697), + [anon_sym_return] = ACTIONS(697), + [anon_sym_static] = ACTIONS(697), + [anon_sym_struct] = ACTIONS(697), + [anon_sym_trait] = ACTIONS(697), + [anon_sym_type] = ACTIONS(697), + [anon_sym_union] = ACTIONS(697), + [anon_sym_unsafe] = ACTIONS(697), + [anon_sym_use] = ACTIONS(697), + [anon_sym_while] = ACTIONS(697), + [anon_sym_POUND] = ACTIONS(695), + [anon_sym_BANG] = ACTIONS(697), + [anon_sym_EQ] = ACTIONS(697), + [anon_sym_extern] = ACTIONS(697), + [anon_sym_LT] = ACTIONS(697), + [anon_sym_GT] = ACTIONS(697), + [anon_sym_else] = ACTIONS(697), + [anon_sym_COLON_COLON] = ACTIONS(695), + [anon_sym_AMP] = ACTIONS(697), + [anon_sym_DOT_DOT_DOT] = ACTIONS(695), + [anon_sym_DOT_DOT] = ACTIONS(697), + [anon_sym_DOT_DOT_EQ] = ACTIONS(695), + [anon_sym_DASH] = ACTIONS(697), + [anon_sym_AMP_AMP] = ACTIONS(695), + [anon_sym_PIPE_PIPE] = ACTIONS(695), + [anon_sym_PIPE] = ACTIONS(697), + [anon_sym_CARET] = ACTIONS(697), + [anon_sym_EQ_EQ] = ACTIONS(695), + [anon_sym_BANG_EQ] = ACTIONS(695), + [anon_sym_LT_EQ] = ACTIONS(695), + [anon_sym_GT_EQ] = ACTIONS(695), + [anon_sym_LT_LT] = ACTIONS(697), + [anon_sym_GT_GT] = ACTIONS(697), + [anon_sym_SLASH] = ACTIONS(697), + [anon_sym_PERCENT] = ACTIONS(697), + [anon_sym_PLUS_EQ] = ACTIONS(695), + [anon_sym_DASH_EQ] = ACTIONS(695), + [anon_sym_STAR_EQ] = ACTIONS(695), + [anon_sym_SLASH_EQ] = ACTIONS(695), + [anon_sym_PERCENT_EQ] = ACTIONS(695), + [anon_sym_AMP_EQ] = ACTIONS(695), + [anon_sym_PIPE_EQ] = ACTIONS(695), + [anon_sym_CARET_EQ] = ACTIONS(695), + [anon_sym_LT_LT_EQ] = ACTIONS(695), + [anon_sym_GT_GT_EQ] = ACTIONS(695), + [anon_sym_yield] = ACTIONS(697), + [anon_sym_move] = ACTIONS(697), + [anon_sym_DOT] = ACTIONS(697), + [sym_integer_literal] = ACTIONS(695), + [aux_sym_string_literal_token1] = ACTIONS(695), + [sym_char_literal] = ACTIONS(695), + [anon_sym_true] = ACTIONS(697), + [anon_sym_false] = ACTIONS(697), + [anon_sym_u8] = ACTIONS(697), + [anon_sym_i8] = ACTIONS(697), + [anon_sym_u16] = ACTIONS(697), + [anon_sym_i16] = ACTIONS(697), + [anon_sym_u32] = ACTIONS(697), + [anon_sym_i32] = ACTIONS(697), + [anon_sym_u64] = ACTIONS(697), + [anon_sym_i64] = ACTIONS(697), + [anon_sym_u128] = ACTIONS(697), + [anon_sym_i128] = ACTIONS(697), + [anon_sym_isize] = ACTIONS(697), + [anon_sym_usize] = ACTIONS(697), + [anon_sym_f32] = ACTIONS(697), + [anon_sym_f64] = ACTIONS(697), + [anon_sym_bool] = ACTIONS(697), + [anon_sym_str] = ACTIONS(697), + [anon_sym_char] = ACTIONS(697), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(695), + [sym_self] = ACTIONS(697), + [sym_super] = ACTIONS(697), + [sym_crate] = ACTIONS(697), + [sym_metavariable] = ACTIONS(695), + [sym_grit_metavariable] = ACTIONS(695), + [sym_raw_string_literal] = ACTIONS(695), + [sym_float_literal] = ACTIONS(695), + [sym_block_comment] = ACTIONS(3), + }, + [70] = { + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2176), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1261), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1159), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(65), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1189), + [sym_identifier] = STATE(833), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(447), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(691), [anon_sym_STAR] = ACTIONS(19), [anon_sym_SQUOTE] = ACTIONS(21), [anon_sym_async] = ACTIONS(453), @@ -28863,11 +29118,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(467), [anon_sym_while] = ACTIONS(469), [anon_sym_BANG] = ACTIONS(19), + [anon_sym_DASH_GT] = ACTIONS(699), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(77), [anon_sym_AMP] = ACTIONS(79), - [anon_sym_DOT_DOT] = ACTIONS(81), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_DOT_DOT] = ACTIONS(673), + [anon_sym_DASH] = ACTIONS(471), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), @@ -28904,166 +29160,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [69] = { - [ts_builtin_sym_end] = ACTIONS(693), - [sym__primitive_identifier] = ACTIONS(695), - [anon_sym_SEMI] = ACTIONS(693), - [anon_sym_macro_rules_BANG] = ACTIONS(693), - [anon_sym_LPAREN] = ACTIONS(693), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(693), - [anon_sym_LBRACK] = ACTIONS(693), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_QMARK] = ACTIONS(693), - [anon_sym_SQUOTE] = ACTIONS(695), - [anon_sym_as] = ACTIONS(695), - [anon_sym_async] = ACTIONS(695), - [anon_sym_break] = ACTIONS(695), - [anon_sym_const] = ACTIONS(695), - [anon_sym_continue] = ACTIONS(695), - [anon_sym_default] = ACTIONS(695), - [anon_sym_enum] = ACTIONS(695), - [anon_sym_fn] = ACTIONS(695), - [anon_sym_for] = ACTIONS(695), - [anon_sym_if] = ACTIONS(695), - [anon_sym_impl] = ACTIONS(695), - [anon_sym_let] = ACTIONS(695), - [anon_sym_loop] = ACTIONS(695), - [anon_sym_match] = ACTIONS(695), - [anon_sym_mod] = ACTIONS(695), - [anon_sym_pub] = ACTIONS(695), - [anon_sym_return] = ACTIONS(695), - [anon_sym_static] = ACTIONS(695), - [anon_sym_struct] = ACTIONS(695), - [anon_sym_trait] = ACTIONS(695), - [anon_sym_type] = ACTIONS(695), - [anon_sym_union] = ACTIONS(695), - [anon_sym_unsafe] = ACTIONS(695), - [anon_sym_use] = ACTIONS(695), - [anon_sym_while] = ACTIONS(695), - [anon_sym_POUND] = ACTIONS(693), - [anon_sym_BANG] = ACTIONS(695), - [anon_sym_EQ] = ACTIONS(695), - [anon_sym_extern] = ACTIONS(695), - [anon_sym_LT] = ACTIONS(695), - [anon_sym_GT] = ACTIONS(695), - [anon_sym_else] = ACTIONS(695), - [anon_sym_COLON_COLON] = ACTIONS(693), - [anon_sym_AMP] = ACTIONS(695), - [anon_sym_DOT_DOT_DOT] = ACTIONS(693), - [anon_sym_DOT_DOT] = ACTIONS(695), - [anon_sym_DOT_DOT_EQ] = ACTIONS(693), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_AMP_AMP] = ACTIONS(693), - [anon_sym_PIPE_PIPE] = ACTIONS(693), - [anon_sym_PIPE] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(695), - [anon_sym_EQ_EQ] = ACTIONS(693), - [anon_sym_BANG_EQ] = ACTIONS(693), - [anon_sym_LT_EQ] = ACTIONS(693), - [anon_sym_GT_EQ] = ACTIONS(693), - [anon_sym_LT_LT] = ACTIONS(695), - [anon_sym_GT_GT] = ACTIONS(695), - [anon_sym_SLASH] = ACTIONS(695), - [anon_sym_PERCENT] = ACTIONS(695), - [anon_sym_PLUS_EQ] = ACTIONS(693), - [anon_sym_DASH_EQ] = ACTIONS(693), - [anon_sym_STAR_EQ] = ACTIONS(693), - [anon_sym_SLASH_EQ] = ACTIONS(693), - [anon_sym_PERCENT_EQ] = ACTIONS(693), - [anon_sym_AMP_EQ] = ACTIONS(693), - [anon_sym_PIPE_EQ] = ACTIONS(693), - [anon_sym_CARET_EQ] = ACTIONS(693), - [anon_sym_LT_LT_EQ] = ACTIONS(693), - [anon_sym_GT_GT_EQ] = ACTIONS(693), - [anon_sym_yield] = ACTIONS(695), - [anon_sym_move] = ACTIONS(695), - [anon_sym_DOT] = ACTIONS(695), - [sym_integer_literal] = ACTIONS(693), - [aux_sym_string_literal_token1] = ACTIONS(693), - [sym_char_literal] = ACTIONS(693), - [anon_sym_true] = ACTIONS(695), - [anon_sym_false] = ACTIONS(695), - [anon_sym_u8] = ACTIONS(695), - [anon_sym_i8] = ACTIONS(695), - [anon_sym_u16] = ACTIONS(695), - [anon_sym_i16] = ACTIONS(695), - [anon_sym_u32] = ACTIONS(695), - [anon_sym_i32] = ACTIONS(695), - [anon_sym_u64] = ACTIONS(695), - [anon_sym_i64] = ACTIONS(695), - [anon_sym_u128] = ACTIONS(695), - [anon_sym_i128] = ACTIONS(695), - [anon_sym_isize] = ACTIONS(695), - [anon_sym_usize] = ACTIONS(695), - [anon_sym_f32] = ACTIONS(695), - [anon_sym_f64] = ACTIONS(695), - [anon_sym_bool] = ACTIONS(695), - [anon_sym_str] = ACTIONS(695), - [anon_sym_char] = ACTIONS(695), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(693), - [sym_self] = ACTIONS(695), - [sym_super] = ACTIONS(695), - [sym_crate] = ACTIONS(695), - [sym_metavariable] = ACTIONS(693), - [sym_grit_metavariable] = ACTIONS(693), - [sym_raw_string_literal] = ACTIONS(693), - [sym_float_literal] = ACTIONS(693), - [sym_block_comment] = ACTIONS(3), - }, - [70] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2320), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1257), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1139), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1220), - [sym_identifier] = STATE(834), + [71] = { + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2176), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1338), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1159), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(65), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1189), + [sym_identifier] = STATE(833), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(447), [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(701), [anon_sym_STAR] = ACTIONS(19), [anon_sym_SQUOTE] = ACTIONS(21), [anon_sym_async] = ACTIONS(453), @@ -29080,12 +29228,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(467), [anon_sym_while] = ACTIONS(469), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_DASH_GT] = ACTIONS(697), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(77), [anon_sym_AMP] = ACTIONS(79), - [anon_sym_DOT_DOT] = ACTIONS(563), - [anon_sym_DASH] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), @@ -29122,191 +29269,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [71] = { - [ts_builtin_sym_end] = ACTIONS(699), - [sym__primitive_identifier] = ACTIONS(701), - [anon_sym_SEMI] = ACTIONS(699), - [anon_sym_macro_rules_BANG] = ACTIONS(699), - [anon_sym_LPAREN] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(699), - [anon_sym_RBRACE] = ACTIONS(699), - [anon_sym_LBRACK] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(701), - [anon_sym_QMARK] = ACTIONS(699), - [anon_sym_SQUOTE] = ACTIONS(701), - [anon_sym_as] = ACTIONS(701), - [anon_sym_async] = ACTIONS(701), - [anon_sym_break] = ACTIONS(701), - [anon_sym_const] = ACTIONS(701), - [anon_sym_continue] = ACTIONS(701), - [anon_sym_default] = ACTIONS(701), - [anon_sym_enum] = ACTIONS(701), - [anon_sym_fn] = ACTIONS(701), - [anon_sym_for] = ACTIONS(701), - [anon_sym_if] = ACTIONS(701), - [anon_sym_impl] = ACTIONS(701), - [anon_sym_let] = ACTIONS(701), - [anon_sym_loop] = ACTIONS(701), - [anon_sym_match] = ACTIONS(701), - [anon_sym_mod] = ACTIONS(701), - [anon_sym_pub] = ACTIONS(701), - [anon_sym_return] = ACTIONS(701), - [anon_sym_static] = ACTIONS(701), - [anon_sym_struct] = ACTIONS(701), - [anon_sym_trait] = ACTIONS(701), - [anon_sym_type] = ACTIONS(701), - [anon_sym_union] = ACTIONS(701), - [anon_sym_unsafe] = ACTIONS(701), - [anon_sym_use] = ACTIONS(701), - [anon_sym_while] = ACTIONS(701), - [anon_sym_POUND] = ACTIONS(699), - [anon_sym_BANG] = ACTIONS(701), - [anon_sym_EQ] = ACTIONS(701), - [anon_sym_extern] = ACTIONS(701), - [anon_sym_LT] = ACTIONS(701), - [anon_sym_GT] = ACTIONS(701), - [anon_sym_else] = ACTIONS(701), - [anon_sym_COLON_COLON] = ACTIONS(699), - [anon_sym_AMP] = ACTIONS(701), - [anon_sym_DOT_DOT_DOT] = ACTIONS(699), - [anon_sym_DOT_DOT] = ACTIONS(701), - [anon_sym_DOT_DOT_EQ] = ACTIONS(699), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_AMP_AMP] = ACTIONS(699), - [anon_sym_PIPE_PIPE] = ACTIONS(699), - [anon_sym_PIPE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_EQ_EQ] = ACTIONS(699), - [anon_sym_BANG_EQ] = ACTIONS(699), - [anon_sym_LT_EQ] = ACTIONS(699), - [anon_sym_GT_EQ] = ACTIONS(699), - [anon_sym_LT_LT] = ACTIONS(701), - [anon_sym_GT_GT] = ACTIONS(701), - [anon_sym_SLASH] = ACTIONS(701), - [anon_sym_PERCENT] = ACTIONS(701), - [anon_sym_PLUS_EQ] = ACTIONS(699), - [anon_sym_DASH_EQ] = ACTIONS(699), - [anon_sym_STAR_EQ] = ACTIONS(699), - [anon_sym_SLASH_EQ] = ACTIONS(699), - [anon_sym_PERCENT_EQ] = ACTIONS(699), - [anon_sym_AMP_EQ] = ACTIONS(699), - [anon_sym_PIPE_EQ] = ACTIONS(699), - [anon_sym_CARET_EQ] = ACTIONS(699), - [anon_sym_LT_LT_EQ] = ACTIONS(699), - [anon_sym_GT_GT_EQ] = ACTIONS(699), - [anon_sym_yield] = ACTIONS(701), - [anon_sym_move] = ACTIONS(701), - [anon_sym_DOT] = ACTIONS(701), - [sym_integer_literal] = ACTIONS(699), - [aux_sym_string_literal_token1] = ACTIONS(699), - [sym_char_literal] = ACTIONS(699), - [anon_sym_true] = ACTIONS(701), - [anon_sym_false] = ACTIONS(701), - [anon_sym_u8] = ACTIONS(701), - [anon_sym_i8] = ACTIONS(701), - [anon_sym_u16] = ACTIONS(701), - [anon_sym_i16] = ACTIONS(701), - [anon_sym_u32] = ACTIONS(701), - [anon_sym_i32] = ACTIONS(701), - [anon_sym_u64] = ACTIONS(701), - [anon_sym_i64] = ACTIONS(701), - [anon_sym_u128] = ACTIONS(701), - [anon_sym_i128] = ACTIONS(701), - [anon_sym_isize] = ACTIONS(701), - [anon_sym_usize] = ACTIONS(701), - [anon_sym_f32] = ACTIONS(701), - [anon_sym_f64] = ACTIONS(701), - [anon_sym_bool] = ACTIONS(701), - [anon_sym_str] = ACTIONS(701), - [anon_sym_char] = ACTIONS(701), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(699), - [sym_self] = ACTIONS(701), - [sym_super] = ACTIONS(701), - [sym_crate] = ACTIONS(701), - [sym_metavariable] = ACTIONS(699), - [sym_grit_metavariable] = ACTIONS(699), - [sym_raw_string_literal] = ACTIONS(699), - [sym_float_literal] = ACTIONS(699), - [sym_block_comment] = ACTIONS(3), - }, [72] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2320), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1261), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1139), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1220), - [sym_identifier] = STATE(834), + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2305), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1351), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1308), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(74), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1313), + [sym_identifier] = STATE(1295), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(447), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(547), [anon_sym_SQUOTE] = ACTIONS(21), [anon_sym_async] = ACTIONS(453), - [anon_sym_break] = ACTIONS(25), + [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(455), [anon_sym_continue] = ACTIONS(29), - [anon_sym_default] = ACTIONS(457), + [anon_sym_default] = ACTIONS(507), [anon_sym_for] = ACTIONS(459), [anon_sym_if] = ACTIONS(461), [anon_sym_loop] = ACTIONS(463), [anon_sym_match] = ACTIONS(465), - [anon_sym_return] = ACTIONS(53), - [anon_sym_union] = ACTIONS(457), + [anon_sym_return] = ACTIONS(509), + [anon_sym_union] = ACTIONS(507), [anon_sym_unsafe] = ACTIONS(467), [anon_sym_while] = ACTIONS(469), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(547), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_AMP] = ACTIONS(79), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_AMP] = ACTIONS(551), [sym_mutable_specifier] = ACTIONS(703), - [anon_sym_DOT_DOT] = ACTIONS(563), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_DOT_DOT] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(547), [anon_sym_PIPE] = ACTIONS(83), - [anon_sym_yield] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(515), + [anon_sym_move] = ACTIONS(517), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), @@ -29331,67 +29369,176 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), [sym__raw_identifier] = ACTIONS(97), - [sym_self] = ACTIONS(99), - [sym_super] = ACTIONS(101), - [sym_crate] = ACTIONS(101), - [sym_metavariable] = ACTIONS(105), - [sym_grit_metavariable] = ACTIONS(473), + [sym_self] = ACTIONS(519), + [sym_super] = ACTIONS(521), + [sym_crate] = ACTIONS(521), + [sym_metavariable] = ACTIONS(523), + [sym_grit_metavariable] = ACTIONS(525), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [73] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2289), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1342), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1296), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(65), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1311), - [sym_identifier] = STATE(1290), + [ts_builtin_sym_end] = ACTIONS(705), + [sym__primitive_identifier] = ACTIONS(707), + [anon_sym_SEMI] = ACTIONS(705), + [anon_sym_macro_rules_BANG] = ACTIONS(705), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_RBRACE] = ACTIONS(705), + [anon_sym_LBRACK] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_STAR] = ACTIONS(707), + [anon_sym_QMARK] = ACTIONS(705), + [anon_sym_SQUOTE] = ACTIONS(707), + [anon_sym_as] = ACTIONS(707), + [anon_sym_async] = ACTIONS(707), + [anon_sym_break] = ACTIONS(707), + [anon_sym_const] = ACTIONS(707), + [anon_sym_continue] = ACTIONS(707), + [anon_sym_default] = ACTIONS(707), + [anon_sym_enum] = ACTIONS(707), + [anon_sym_fn] = ACTIONS(707), + [anon_sym_for] = ACTIONS(707), + [anon_sym_if] = ACTIONS(707), + [anon_sym_impl] = ACTIONS(707), + [anon_sym_let] = ACTIONS(707), + [anon_sym_loop] = ACTIONS(707), + [anon_sym_match] = ACTIONS(707), + [anon_sym_mod] = ACTIONS(707), + [anon_sym_pub] = ACTIONS(707), + [anon_sym_return] = ACTIONS(707), + [anon_sym_static] = ACTIONS(707), + [anon_sym_struct] = ACTIONS(707), + [anon_sym_trait] = ACTIONS(707), + [anon_sym_type] = ACTIONS(707), + [anon_sym_union] = ACTIONS(707), + [anon_sym_unsafe] = ACTIONS(707), + [anon_sym_use] = ACTIONS(707), + [anon_sym_while] = ACTIONS(707), + [anon_sym_POUND] = ACTIONS(705), + [anon_sym_BANG] = ACTIONS(707), + [anon_sym_EQ] = ACTIONS(707), + [anon_sym_extern] = ACTIONS(707), + [anon_sym_LT] = ACTIONS(707), + [anon_sym_GT] = ACTIONS(707), + [anon_sym_else] = ACTIONS(707), + [anon_sym_COLON_COLON] = ACTIONS(705), + [anon_sym_AMP] = ACTIONS(707), + [anon_sym_DOT_DOT_DOT] = ACTIONS(705), + [anon_sym_DOT_DOT] = ACTIONS(707), + [anon_sym_DOT_DOT_EQ] = ACTIONS(705), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_AMP_AMP] = ACTIONS(705), + [anon_sym_PIPE_PIPE] = ACTIONS(705), + [anon_sym_PIPE] = ACTIONS(707), + [anon_sym_CARET] = ACTIONS(707), + [anon_sym_EQ_EQ] = ACTIONS(705), + [anon_sym_BANG_EQ] = ACTIONS(705), + [anon_sym_LT_EQ] = ACTIONS(705), + [anon_sym_GT_EQ] = ACTIONS(705), + [anon_sym_LT_LT] = ACTIONS(707), + [anon_sym_GT_GT] = ACTIONS(707), + [anon_sym_SLASH] = ACTIONS(707), + [anon_sym_PERCENT] = ACTIONS(707), + [anon_sym_PLUS_EQ] = ACTIONS(705), + [anon_sym_DASH_EQ] = ACTIONS(705), + [anon_sym_STAR_EQ] = ACTIONS(705), + [anon_sym_SLASH_EQ] = ACTIONS(705), + [anon_sym_PERCENT_EQ] = ACTIONS(705), + [anon_sym_AMP_EQ] = ACTIONS(705), + [anon_sym_PIPE_EQ] = ACTIONS(705), + [anon_sym_CARET_EQ] = ACTIONS(705), + [anon_sym_LT_LT_EQ] = ACTIONS(705), + [anon_sym_GT_GT_EQ] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_move] = ACTIONS(707), + [anon_sym_DOT] = ACTIONS(707), + [sym_integer_literal] = ACTIONS(705), + [aux_sym_string_literal_token1] = ACTIONS(705), + [sym_char_literal] = ACTIONS(705), + [anon_sym_true] = ACTIONS(707), + [anon_sym_false] = ACTIONS(707), + [anon_sym_u8] = ACTIONS(707), + [anon_sym_i8] = ACTIONS(707), + [anon_sym_u16] = ACTIONS(707), + [anon_sym_i16] = ACTIONS(707), + [anon_sym_u32] = ACTIONS(707), + [anon_sym_i32] = ACTIONS(707), + [anon_sym_u64] = ACTIONS(707), + [anon_sym_i64] = ACTIONS(707), + [anon_sym_u128] = ACTIONS(707), + [anon_sym_i128] = ACTIONS(707), + [anon_sym_isize] = ACTIONS(707), + [anon_sym_usize] = ACTIONS(707), + [anon_sym_f32] = ACTIONS(707), + [anon_sym_f64] = ACTIONS(707), + [anon_sym_bool] = ACTIONS(707), + [anon_sym_str] = ACTIONS(707), + [anon_sym_char] = ACTIONS(707), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(705), + [sym_self] = ACTIONS(707), + [sym_super] = ACTIONS(707), + [sym_crate] = ACTIONS(707), + [sym_metavariable] = ACTIONS(705), + [sym_grit_metavariable] = ACTIONS(705), + [sym_raw_string_literal] = ACTIONS(705), + [sym_float_literal] = ACTIONS(705), + [sym_block_comment] = ACTIONS(3), + }, + [74] = { + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2305), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1340), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1308), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(74), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1313), + [sym_identifier] = STATE(1295), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(447), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(545), + [anon_sym_STAR] = ACTIONS(547), [anon_sym_SQUOTE] = ACTIONS(21), [anon_sym_async] = ACTIONS(453), [anon_sym_break] = ACTIONS(505), @@ -29406,13 +29553,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(507), [anon_sym_unsafe] = ACTIONS(467), [anon_sym_while] = ACTIONS(469), - [anon_sym_BANG] = ACTIONS(545), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_DASH_GT] = ACTIONS(685), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_AMP] = ACTIONS(549), - [sym_mutable_specifier] = ACTIONS(705), - [anon_sym_DOT_DOT] = ACTIONS(681), - [anon_sym_DASH] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(551), + [anon_sym_DOT_DOT] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(511), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(515), [anon_sym_move] = ACTIONS(517), @@ -29449,58 +29596,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [74] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2320), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1355), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1139), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1220), - [sym_identifier] = STATE(834), + [75] = { + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2176), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1338), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1159), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(65), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1189), + [sym_identifier] = STATE(833), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(447), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(707), + [anon_sym_RBRACK] = ACTIONS(709), [anon_sym_STAR] = ACTIONS(19), [anon_sym_SQUOTE] = ACTIONS(21), [anon_sym_async] = ACTIONS(453), @@ -29558,58 +29705,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [75] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2289), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1335), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1296), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(65), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1311), - [sym_identifier] = STATE(1290), + [76] = { + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2305), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1343), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1308), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(74), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1313), + [sym_identifier] = STATE(1295), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(447), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(545), + [anon_sym_STAR] = ACTIONS(547), [anon_sym_SQUOTE] = ACTIONS(21), [anon_sym_async] = ACTIONS(453), [anon_sym_break] = ACTIONS(505), @@ -29624,12 +29771,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(507), [anon_sym_unsafe] = ACTIONS(467), [anon_sym_while] = ACTIONS(469), - [anon_sym_BANG] = ACTIONS(545), - [anon_sym_DASH_GT] = ACTIONS(697), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_DASH_GT] = ACTIONS(699), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_AMP] = ACTIONS(549), - [anon_sym_DOT_DOT] = ACTIONS(681), + [anon_sym_AMP] = ACTIONS(551), + [anon_sym_DOT_DOT] = ACTIONS(565), [anon_sym_DASH] = ACTIONS(511), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(515), @@ -29667,377 +29814,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [76] = { - [ts_builtin_sym_end] = ACTIONS(709), - [sym__primitive_identifier] = ACTIONS(711), - [anon_sym_SEMI] = ACTIONS(709), - [anon_sym_macro_rules_BANG] = ACTIONS(709), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_LBRACE] = ACTIONS(709), - [anon_sym_RBRACE] = ACTIONS(709), - [anon_sym_LBRACK] = ACTIONS(709), - [anon_sym_PLUS] = ACTIONS(711), - [anon_sym_STAR] = ACTIONS(711), - [anon_sym_QMARK] = ACTIONS(709), - [anon_sym_SQUOTE] = ACTIONS(711), - [anon_sym_as] = ACTIONS(711), - [anon_sym_async] = ACTIONS(711), - [anon_sym_break] = ACTIONS(711), - [anon_sym_const] = ACTIONS(711), - [anon_sym_continue] = ACTIONS(711), - [anon_sym_default] = ACTIONS(711), - [anon_sym_enum] = ACTIONS(711), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_for] = ACTIONS(711), - [anon_sym_if] = ACTIONS(711), - [anon_sym_impl] = ACTIONS(711), - [anon_sym_let] = ACTIONS(711), - [anon_sym_loop] = ACTIONS(711), - [anon_sym_match] = ACTIONS(711), - [anon_sym_mod] = ACTIONS(711), - [anon_sym_pub] = ACTIONS(711), - [anon_sym_return] = ACTIONS(711), - [anon_sym_static] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(711), - [anon_sym_trait] = ACTIONS(711), - [anon_sym_type] = ACTIONS(711), - [anon_sym_union] = ACTIONS(711), - [anon_sym_unsafe] = ACTIONS(711), - [anon_sym_use] = ACTIONS(711), - [anon_sym_while] = ACTIONS(711), - [anon_sym_POUND] = ACTIONS(709), - [anon_sym_BANG] = ACTIONS(711), - [anon_sym_EQ] = ACTIONS(711), - [anon_sym_extern] = ACTIONS(711), - [anon_sym_LT] = ACTIONS(711), - [anon_sym_GT] = ACTIONS(711), - [anon_sym_COLON_COLON] = ACTIONS(709), - [anon_sym_AMP] = ACTIONS(711), - [anon_sym_DOT_DOT_DOT] = ACTIONS(709), - [anon_sym_DOT_DOT] = ACTIONS(711), - [anon_sym_DOT_DOT_EQ] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(711), - [anon_sym_AMP_AMP] = ACTIONS(709), - [anon_sym_PIPE_PIPE] = ACTIONS(709), - [anon_sym_PIPE] = ACTIONS(711), - [anon_sym_CARET] = ACTIONS(711), - [anon_sym_EQ_EQ] = ACTIONS(709), - [anon_sym_BANG_EQ] = ACTIONS(709), - [anon_sym_LT_EQ] = ACTIONS(709), - [anon_sym_GT_EQ] = ACTIONS(709), - [anon_sym_LT_LT] = ACTIONS(711), - [anon_sym_GT_GT] = ACTIONS(711), - [anon_sym_SLASH] = ACTIONS(711), - [anon_sym_PERCENT] = ACTIONS(711), - [anon_sym_PLUS_EQ] = ACTIONS(709), - [anon_sym_DASH_EQ] = ACTIONS(709), - [anon_sym_STAR_EQ] = ACTIONS(709), - [anon_sym_SLASH_EQ] = ACTIONS(709), - [anon_sym_PERCENT_EQ] = ACTIONS(709), - [anon_sym_AMP_EQ] = ACTIONS(709), - [anon_sym_PIPE_EQ] = ACTIONS(709), - [anon_sym_CARET_EQ] = ACTIONS(709), - [anon_sym_LT_LT_EQ] = ACTIONS(709), - [anon_sym_GT_GT_EQ] = ACTIONS(709), - [anon_sym_yield] = ACTIONS(711), - [anon_sym_move] = ACTIONS(711), - [anon_sym_DOT] = ACTIONS(711), - [sym_integer_literal] = ACTIONS(709), - [aux_sym_string_literal_token1] = ACTIONS(709), - [sym_char_literal] = ACTIONS(709), - [anon_sym_true] = ACTIONS(711), - [anon_sym_false] = ACTIONS(711), - [anon_sym_u8] = ACTIONS(711), - [anon_sym_i8] = ACTIONS(711), - [anon_sym_u16] = ACTIONS(711), - [anon_sym_i16] = ACTIONS(711), - [anon_sym_u32] = ACTIONS(711), - [anon_sym_i32] = ACTIONS(711), - [anon_sym_u64] = ACTIONS(711), - [anon_sym_i64] = ACTIONS(711), - [anon_sym_u128] = ACTIONS(711), - [anon_sym_i128] = ACTIONS(711), - [anon_sym_isize] = ACTIONS(711), - [anon_sym_usize] = ACTIONS(711), - [anon_sym_f32] = ACTIONS(711), - [anon_sym_f64] = ACTIONS(711), - [anon_sym_bool] = ACTIONS(711), - [anon_sym_str] = ACTIONS(711), - [anon_sym_char] = ACTIONS(711), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(709), - [sym_self] = ACTIONS(711), - [sym_super] = ACTIONS(711), - [sym_crate] = ACTIONS(711), - [sym_metavariable] = ACTIONS(709), - [sym_grit_metavariable] = ACTIONS(709), - [sym_raw_string_literal] = ACTIONS(709), - [sym_float_literal] = ACTIONS(709), - [sym_block_comment] = ACTIONS(3), - }, [77] = { - [ts_builtin_sym_end] = ACTIONS(713), - [sym__primitive_identifier] = ACTIONS(715), - [anon_sym_SEMI] = ACTIONS(713), - [anon_sym_macro_rules_BANG] = ACTIONS(713), - [anon_sym_LPAREN] = ACTIONS(713), - [anon_sym_LBRACE] = ACTIONS(713), - [anon_sym_RBRACE] = ACTIONS(713), - [anon_sym_LBRACK] = ACTIONS(713), - [anon_sym_PLUS] = ACTIONS(715), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_QMARK] = ACTIONS(713), - [anon_sym_SQUOTE] = ACTIONS(715), - [anon_sym_as] = ACTIONS(715), - [anon_sym_async] = ACTIONS(715), - [anon_sym_break] = ACTIONS(715), - [anon_sym_const] = ACTIONS(715), - [anon_sym_continue] = ACTIONS(715), - [anon_sym_default] = ACTIONS(715), - [anon_sym_enum] = ACTIONS(715), - [anon_sym_fn] = ACTIONS(715), - [anon_sym_for] = ACTIONS(715), - [anon_sym_if] = ACTIONS(715), - [anon_sym_impl] = ACTIONS(715), - [anon_sym_let] = ACTIONS(715), - [anon_sym_loop] = ACTIONS(715), - [anon_sym_match] = ACTIONS(715), - [anon_sym_mod] = ACTIONS(715), - [anon_sym_pub] = ACTIONS(715), - [anon_sym_return] = ACTIONS(715), - [anon_sym_static] = ACTIONS(715), - [anon_sym_struct] = ACTIONS(715), - [anon_sym_trait] = ACTIONS(715), - [anon_sym_type] = ACTIONS(715), - [anon_sym_union] = ACTIONS(715), - [anon_sym_unsafe] = ACTIONS(715), - [anon_sym_use] = ACTIONS(715), - [anon_sym_while] = ACTIONS(715), - [anon_sym_POUND] = ACTIONS(713), - [anon_sym_BANG] = ACTIONS(715), - [anon_sym_EQ] = ACTIONS(715), - [anon_sym_extern] = ACTIONS(715), - [anon_sym_LT] = ACTIONS(715), - [anon_sym_GT] = ACTIONS(715), - [anon_sym_COLON_COLON] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(715), - [anon_sym_DOT_DOT_DOT] = ACTIONS(713), - [anon_sym_DOT_DOT] = ACTIONS(715), - [anon_sym_DOT_DOT_EQ] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(715), - [anon_sym_AMP_AMP] = ACTIONS(713), - [anon_sym_PIPE_PIPE] = ACTIONS(713), - [anon_sym_PIPE] = ACTIONS(715), - [anon_sym_CARET] = ACTIONS(715), - [anon_sym_EQ_EQ] = ACTIONS(713), - [anon_sym_BANG_EQ] = ACTIONS(713), - [anon_sym_LT_EQ] = ACTIONS(713), - [anon_sym_GT_EQ] = ACTIONS(713), - [anon_sym_LT_LT] = ACTIONS(715), - [anon_sym_GT_GT] = ACTIONS(715), - [anon_sym_SLASH] = ACTIONS(715), - [anon_sym_PERCENT] = ACTIONS(715), - [anon_sym_PLUS_EQ] = ACTIONS(713), - [anon_sym_DASH_EQ] = ACTIONS(713), - [anon_sym_STAR_EQ] = ACTIONS(713), - [anon_sym_SLASH_EQ] = ACTIONS(713), - [anon_sym_PERCENT_EQ] = ACTIONS(713), - [anon_sym_AMP_EQ] = ACTIONS(713), - [anon_sym_PIPE_EQ] = ACTIONS(713), - [anon_sym_CARET_EQ] = ACTIONS(713), - [anon_sym_LT_LT_EQ] = ACTIONS(713), - [anon_sym_GT_GT_EQ] = ACTIONS(713), - [anon_sym_yield] = ACTIONS(715), - [anon_sym_move] = ACTIONS(715), - [anon_sym_DOT] = ACTIONS(715), - [sym_integer_literal] = ACTIONS(713), - [aux_sym_string_literal_token1] = ACTIONS(713), - [sym_char_literal] = ACTIONS(713), - [anon_sym_true] = ACTIONS(715), - [anon_sym_false] = ACTIONS(715), - [anon_sym_u8] = ACTIONS(715), - [anon_sym_i8] = ACTIONS(715), - [anon_sym_u16] = ACTIONS(715), - [anon_sym_i16] = ACTIONS(715), - [anon_sym_u32] = ACTIONS(715), - [anon_sym_i32] = ACTIONS(715), - [anon_sym_u64] = ACTIONS(715), - [anon_sym_i64] = ACTIONS(715), - [anon_sym_u128] = ACTIONS(715), - [anon_sym_i128] = ACTIONS(715), - [anon_sym_isize] = ACTIONS(715), - [anon_sym_usize] = ACTIONS(715), - [anon_sym_f32] = ACTIONS(715), - [anon_sym_f64] = ACTIONS(715), - [anon_sym_bool] = ACTIONS(715), - [anon_sym_str] = ACTIONS(715), - [anon_sym_char] = ACTIONS(715), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(713), - [sym_self] = ACTIONS(715), - [sym_super] = ACTIONS(715), - [sym_crate] = ACTIONS(715), - [sym_metavariable] = ACTIONS(713), - [sym_grit_metavariable] = ACTIONS(713), - [sym_raw_string_literal] = ACTIONS(713), - [sym_float_literal] = ACTIONS(713), + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2305), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1356), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1308), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(74), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1313), + [sym_identifier] = STATE(1295), + [sym__primitive_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(447), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(547), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_async] = ACTIONS(453), + [anon_sym_break] = ACTIONS(505), + [anon_sym_const] = ACTIONS(455), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(507), + [anon_sym_for] = ACTIONS(459), + [anon_sym_if] = ACTIONS(461), + [anon_sym_loop] = ACTIONS(463), + [anon_sym_match] = ACTIONS(465), + [anon_sym_return] = ACTIONS(509), + [anon_sym_union] = ACTIONS(507), + [anon_sym_unsafe] = ACTIONS(467), + [anon_sym_while] = ACTIONS(469), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_AMP] = ACTIONS(551), + [anon_sym_DOT_DOT] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(547), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(515), + [anon_sym_move] = ACTIONS(517), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [anon_sym_u8] = ACTIONS(95), + [anon_sym_i8] = ACTIONS(95), + [anon_sym_u16] = ACTIONS(95), + [anon_sym_i16] = ACTIONS(95), + [anon_sym_u32] = ACTIONS(95), + [anon_sym_i32] = ACTIONS(95), + [anon_sym_u64] = ACTIONS(95), + [anon_sym_i64] = ACTIONS(95), + [anon_sym_u128] = ACTIONS(95), + [anon_sym_i128] = ACTIONS(95), + [anon_sym_isize] = ACTIONS(95), + [anon_sym_usize] = ACTIONS(95), + [anon_sym_f32] = ACTIONS(95), + [anon_sym_f64] = ACTIONS(95), + [anon_sym_bool] = ACTIONS(95), + [anon_sym_str] = ACTIONS(95), + [anon_sym_char] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(97), + [sym_self] = ACTIONS(519), + [sym_super] = ACTIONS(521), + [sym_crate] = ACTIONS(521), + [sym_metavariable] = ACTIONS(523), + [sym_grit_metavariable] = ACTIONS(525), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [78] = { - [ts_builtin_sym_end] = ACTIONS(717), - [sym__primitive_identifier] = ACTIONS(719), - [anon_sym_SEMI] = ACTIONS(717), - [anon_sym_macro_rules_BANG] = ACTIONS(717), - [anon_sym_LPAREN] = ACTIONS(717), - [anon_sym_LBRACE] = ACTIONS(717), - [anon_sym_RBRACE] = ACTIONS(717), - [anon_sym_LBRACK] = ACTIONS(717), - [anon_sym_PLUS] = ACTIONS(719), - [anon_sym_STAR] = ACTIONS(719), - [anon_sym_QMARK] = ACTIONS(717), - [anon_sym_SQUOTE] = ACTIONS(719), - [anon_sym_as] = ACTIONS(719), - [anon_sym_async] = ACTIONS(719), - [anon_sym_break] = ACTIONS(719), - [anon_sym_const] = ACTIONS(719), - [anon_sym_continue] = ACTIONS(719), - [anon_sym_default] = ACTIONS(719), - [anon_sym_enum] = ACTIONS(719), - [anon_sym_fn] = ACTIONS(719), - [anon_sym_for] = ACTIONS(719), - [anon_sym_if] = ACTIONS(719), - [anon_sym_impl] = ACTIONS(719), - [anon_sym_let] = ACTIONS(719), - [anon_sym_loop] = ACTIONS(719), - [anon_sym_match] = ACTIONS(719), - [anon_sym_mod] = ACTIONS(719), - [anon_sym_pub] = ACTIONS(719), - [anon_sym_return] = ACTIONS(719), - [anon_sym_static] = ACTIONS(719), - [anon_sym_struct] = ACTIONS(719), - [anon_sym_trait] = ACTIONS(719), - [anon_sym_type] = ACTIONS(719), - [anon_sym_union] = ACTIONS(719), - [anon_sym_unsafe] = ACTIONS(719), - [anon_sym_use] = ACTIONS(719), - [anon_sym_while] = ACTIONS(719), - [anon_sym_POUND] = ACTIONS(717), - [anon_sym_BANG] = ACTIONS(719), - [anon_sym_EQ] = ACTIONS(719), - [anon_sym_extern] = ACTIONS(719), - [anon_sym_LT] = ACTIONS(719), - [anon_sym_GT] = ACTIONS(719), - [anon_sym_COLON_COLON] = ACTIONS(717), - [anon_sym_AMP] = ACTIONS(719), - [anon_sym_DOT_DOT_DOT] = ACTIONS(717), - [anon_sym_DOT_DOT] = ACTIONS(719), - [anon_sym_DOT_DOT_EQ] = ACTIONS(717), - [anon_sym_DASH] = ACTIONS(719), - [anon_sym_AMP_AMP] = ACTIONS(717), - [anon_sym_PIPE_PIPE] = ACTIONS(717), - [anon_sym_PIPE] = ACTIONS(719), - [anon_sym_CARET] = ACTIONS(719), - [anon_sym_EQ_EQ] = ACTIONS(717), - [anon_sym_BANG_EQ] = ACTIONS(717), - [anon_sym_LT_EQ] = ACTIONS(717), - [anon_sym_GT_EQ] = ACTIONS(717), - [anon_sym_LT_LT] = ACTIONS(719), - [anon_sym_GT_GT] = ACTIONS(719), - [anon_sym_SLASH] = ACTIONS(719), - [anon_sym_PERCENT] = ACTIONS(719), - [anon_sym_PLUS_EQ] = ACTIONS(717), - [anon_sym_DASH_EQ] = ACTIONS(717), - [anon_sym_STAR_EQ] = ACTIONS(717), - [anon_sym_SLASH_EQ] = ACTIONS(717), - [anon_sym_PERCENT_EQ] = ACTIONS(717), - [anon_sym_AMP_EQ] = ACTIONS(717), - [anon_sym_PIPE_EQ] = ACTIONS(717), - [anon_sym_CARET_EQ] = ACTIONS(717), - [anon_sym_LT_LT_EQ] = ACTIONS(717), - [anon_sym_GT_GT_EQ] = ACTIONS(717), - [anon_sym_yield] = ACTIONS(719), - [anon_sym_move] = ACTIONS(719), - [anon_sym_DOT] = ACTIONS(719), - [sym_integer_literal] = ACTIONS(717), - [aux_sym_string_literal_token1] = ACTIONS(717), - [sym_char_literal] = ACTIONS(717), - [anon_sym_true] = ACTIONS(719), - [anon_sym_false] = ACTIONS(719), - [anon_sym_u8] = ACTIONS(719), - [anon_sym_i8] = ACTIONS(719), - [anon_sym_u16] = ACTIONS(719), - [anon_sym_i16] = ACTIONS(719), - [anon_sym_u32] = ACTIONS(719), - [anon_sym_i32] = ACTIONS(719), - [anon_sym_u64] = ACTIONS(719), - [anon_sym_i64] = ACTIONS(719), - [anon_sym_u128] = ACTIONS(719), - [anon_sym_i128] = ACTIONS(719), - [anon_sym_isize] = ACTIONS(719), - [anon_sym_usize] = ACTIONS(719), - [anon_sym_f32] = ACTIONS(719), - [anon_sym_f64] = ACTIONS(719), - [anon_sym_bool] = ACTIONS(719), - [anon_sym_str] = ACTIONS(719), - [anon_sym_char] = ACTIONS(719), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(717), - [sym_self] = ACTIONS(719), - [sym_super] = ACTIONS(719), - [sym_crate] = ACTIONS(719), - [sym_metavariable] = ACTIONS(717), - [sym_grit_metavariable] = ACTIONS(717), - [sym_raw_string_literal] = ACTIONS(717), - [sym_float_literal] = ACTIONS(717), - [sym_block_comment] = ACTIONS(3), - }, - [79] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2320), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1393), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1139), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1220), - [sym_identifier] = STATE(834), + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2176), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1280), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1159), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(65), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1189), + [sym_identifier] = STATE(833), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(447), @@ -30061,7 +29992,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(77), [anon_sym_AMP] = ACTIONS(79), - [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(673), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(85), @@ -30099,161 +30030,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [80] = { - [ts_builtin_sym_end] = ACTIONS(721), - [sym__primitive_identifier] = ACTIONS(723), - [anon_sym_SEMI] = ACTIONS(725), - [anon_sym_macro_rules_BANG] = ACTIONS(721), - [anon_sym_LPAREN] = ACTIONS(725), - [anon_sym_LBRACE] = ACTIONS(721), - [anon_sym_RBRACE] = ACTIONS(725), - [anon_sym_LBRACK] = ACTIONS(725), - [anon_sym_PLUS] = ACTIONS(727), - [anon_sym_STAR] = ACTIONS(727), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_SQUOTE] = ACTIONS(723), - [anon_sym_as] = ACTIONS(727), - [anon_sym_async] = ACTIONS(723), - [anon_sym_break] = ACTIONS(723), - [anon_sym_const] = ACTIONS(723), - [anon_sym_continue] = ACTIONS(723), - [anon_sym_default] = ACTIONS(723), - [anon_sym_enum] = ACTIONS(723), - [anon_sym_fn] = ACTIONS(723), - [anon_sym_for] = ACTIONS(723), - [anon_sym_if] = ACTIONS(723), - [anon_sym_impl] = ACTIONS(723), - [anon_sym_let] = ACTIONS(723), - [anon_sym_loop] = ACTIONS(723), - [anon_sym_match] = ACTIONS(723), - [anon_sym_mod] = ACTIONS(723), - [anon_sym_pub] = ACTIONS(723), - [anon_sym_return] = ACTIONS(723), - [anon_sym_static] = ACTIONS(723), - [anon_sym_struct] = ACTIONS(723), - [anon_sym_trait] = ACTIONS(723), - [anon_sym_type] = ACTIONS(723), - [anon_sym_union] = ACTIONS(723), - [anon_sym_unsafe] = ACTIONS(723), - [anon_sym_use] = ACTIONS(723), - [anon_sym_while] = ACTIONS(723), - [anon_sym_POUND] = ACTIONS(721), - [anon_sym_BANG] = ACTIONS(723), - [anon_sym_EQ] = ACTIONS(727), - [anon_sym_extern] = ACTIONS(723), - [anon_sym_LT] = ACTIONS(727), - [anon_sym_GT] = ACTIONS(727), - [anon_sym_COLON_COLON] = ACTIONS(721), - [anon_sym_AMP] = ACTIONS(727), - [anon_sym_DOT_DOT_DOT] = ACTIONS(725), - [anon_sym_DOT_DOT] = ACTIONS(727), - [anon_sym_DOT_DOT_EQ] = ACTIONS(725), - [anon_sym_DASH] = ACTIONS(727), - [anon_sym_AMP_AMP] = ACTIONS(725), - [anon_sym_PIPE_PIPE] = ACTIONS(725), - [anon_sym_PIPE] = ACTIONS(727), - [anon_sym_CARET] = ACTIONS(727), - [anon_sym_EQ_EQ] = ACTIONS(725), - [anon_sym_BANG_EQ] = ACTIONS(725), - [anon_sym_LT_EQ] = ACTIONS(725), - [anon_sym_GT_EQ] = ACTIONS(725), - [anon_sym_LT_LT] = ACTIONS(727), - [anon_sym_GT_GT] = ACTIONS(727), - [anon_sym_SLASH] = ACTIONS(727), - [anon_sym_PERCENT] = ACTIONS(727), - [anon_sym_PLUS_EQ] = ACTIONS(725), - [anon_sym_DASH_EQ] = ACTIONS(725), - [anon_sym_STAR_EQ] = ACTIONS(725), - [anon_sym_SLASH_EQ] = ACTIONS(725), - [anon_sym_PERCENT_EQ] = ACTIONS(725), - [anon_sym_AMP_EQ] = ACTIONS(725), - [anon_sym_PIPE_EQ] = ACTIONS(725), - [anon_sym_CARET_EQ] = ACTIONS(725), - [anon_sym_LT_LT_EQ] = ACTIONS(725), - [anon_sym_GT_GT_EQ] = ACTIONS(725), - [anon_sym_yield] = ACTIONS(723), - [anon_sym_move] = ACTIONS(723), - [anon_sym_DOT] = ACTIONS(727), - [sym_integer_literal] = ACTIONS(721), - [aux_sym_string_literal_token1] = ACTIONS(721), - [sym_char_literal] = ACTIONS(721), - [anon_sym_true] = ACTIONS(723), - [anon_sym_false] = ACTIONS(723), - [anon_sym_u8] = ACTIONS(723), - [anon_sym_i8] = ACTIONS(723), - [anon_sym_u16] = ACTIONS(723), - [anon_sym_i16] = ACTIONS(723), - [anon_sym_u32] = ACTIONS(723), - [anon_sym_i32] = ACTIONS(723), - [anon_sym_u64] = ACTIONS(723), - [anon_sym_i64] = ACTIONS(723), - [anon_sym_u128] = ACTIONS(723), - [anon_sym_i128] = ACTIONS(723), - [anon_sym_isize] = ACTIONS(723), - [anon_sym_usize] = ACTIONS(723), - [anon_sym_f32] = ACTIONS(723), - [anon_sym_f64] = ACTIONS(723), - [anon_sym_bool] = ACTIONS(723), - [anon_sym_str] = ACTIONS(723), - [anon_sym_char] = ACTIONS(723), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(721), - [sym_self] = ACTIONS(723), - [sym_super] = ACTIONS(723), - [sym_crate] = ACTIONS(723), - [sym_metavariable] = ACTIONS(721), - [sym_grit_metavariable] = ACTIONS(721), - [sym_raw_string_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(721), - [sym_block_comment] = ACTIONS(3), - }, - [81] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2320), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1397), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1139), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1220), - [sym_identifier] = STATE(834), + [79] = { + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2176), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1403), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1159), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(65), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1189), + [sym_identifier] = STATE(833), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(447), @@ -30315,53 +30138,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [82] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2320), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1380), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1139), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1220), - [sym_identifier] = STATE(834), + [80] = { + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2176), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1394), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1159), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(65), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1189), + [sym_identifier] = STATE(833), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(447), @@ -30423,161 +30246,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [83] = { - [ts_builtin_sym_end] = ACTIONS(729), - [sym__primitive_identifier] = ACTIONS(731), - [anon_sym_SEMI] = ACTIONS(729), - [anon_sym_macro_rules_BANG] = ACTIONS(729), - [anon_sym_LPAREN] = ACTIONS(729), - [anon_sym_LBRACE] = ACTIONS(729), - [anon_sym_RBRACE] = ACTIONS(729), - [anon_sym_LBRACK] = ACTIONS(729), - [anon_sym_PLUS] = ACTIONS(727), - [anon_sym_STAR] = ACTIONS(731), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_SQUOTE] = ACTIONS(731), - [anon_sym_as] = ACTIONS(727), - [anon_sym_async] = 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_while] = ACTIONS(731), - [anon_sym_POUND] = ACTIONS(729), - [anon_sym_BANG] = ACTIONS(731), - [anon_sym_EQ] = ACTIONS(727), - [anon_sym_extern] = ACTIONS(731), - [anon_sym_LT] = ACTIONS(731), - [anon_sym_GT] = ACTIONS(727), - [anon_sym_COLON_COLON] = ACTIONS(729), - [anon_sym_AMP] = ACTIONS(731), - [anon_sym_DOT_DOT_DOT] = ACTIONS(725), - [anon_sym_DOT_DOT] = ACTIONS(731), - [anon_sym_DOT_DOT_EQ] = ACTIONS(725), - [anon_sym_DASH] = ACTIONS(731), - [anon_sym_AMP_AMP] = ACTIONS(725), - [anon_sym_PIPE_PIPE] = ACTIONS(725), - [anon_sym_PIPE] = ACTIONS(731), - [anon_sym_CARET] = ACTIONS(727), - [anon_sym_EQ_EQ] = ACTIONS(725), - [anon_sym_BANG_EQ] = ACTIONS(725), - [anon_sym_LT_EQ] = ACTIONS(725), - [anon_sym_GT_EQ] = ACTIONS(725), - [anon_sym_LT_LT] = ACTIONS(727), - [anon_sym_GT_GT] = ACTIONS(727), - [anon_sym_SLASH] = ACTIONS(727), - [anon_sym_PERCENT] = ACTIONS(727), - [anon_sym_PLUS_EQ] = ACTIONS(725), - [anon_sym_DASH_EQ] = ACTIONS(725), - [anon_sym_STAR_EQ] = ACTIONS(725), - [anon_sym_SLASH_EQ] = ACTIONS(725), - [anon_sym_PERCENT_EQ] = ACTIONS(725), - [anon_sym_AMP_EQ] = ACTIONS(725), - [anon_sym_PIPE_EQ] = ACTIONS(725), - [anon_sym_CARET_EQ] = ACTIONS(725), - [anon_sym_LT_LT_EQ] = ACTIONS(725), - [anon_sym_GT_GT_EQ] = ACTIONS(725), - [anon_sym_yield] = ACTIONS(731), - [anon_sym_move] = ACTIONS(731), - [anon_sym_DOT] = ACTIONS(727), - [sym_integer_literal] = ACTIONS(729), - [aux_sym_string_literal_token1] = ACTIONS(729), - [sym_char_literal] = ACTIONS(729), - [anon_sym_true] = ACTIONS(731), - [anon_sym_false] = ACTIONS(731), - [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), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(729), - [sym_self] = ACTIONS(731), - [sym_super] = ACTIONS(731), - [sym_crate] = ACTIONS(731), - [sym_metavariable] = ACTIONS(729), - [sym_grit_metavariable] = ACTIONS(729), - [sym_raw_string_literal] = ACTIONS(729), - [sym_float_literal] = ACTIONS(729), + [81] = { + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2305), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1334), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1308), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(74), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1313), + [sym_identifier] = STATE(1295), + [sym__primitive_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(447), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(547), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_async] = ACTIONS(453), + [anon_sym_break] = ACTIONS(505), + [anon_sym_const] = ACTIONS(455), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(507), + [anon_sym_for] = ACTIONS(459), + [anon_sym_if] = ACTIONS(461), + [anon_sym_loop] = ACTIONS(463), + [anon_sym_match] = ACTIONS(465), + [anon_sym_return] = ACTIONS(509), + [anon_sym_union] = ACTIONS(507), + [anon_sym_unsafe] = ACTIONS(467), + [anon_sym_while] = ACTIONS(469), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_AMP] = ACTIONS(551), + [anon_sym_DOT_DOT] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(547), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(515), + [anon_sym_move] = ACTIONS(517), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [anon_sym_u8] = ACTIONS(95), + [anon_sym_i8] = ACTIONS(95), + [anon_sym_u16] = ACTIONS(95), + [anon_sym_i16] = ACTIONS(95), + [anon_sym_u32] = ACTIONS(95), + [anon_sym_i32] = ACTIONS(95), + [anon_sym_u64] = ACTIONS(95), + [anon_sym_i64] = ACTIONS(95), + [anon_sym_u128] = ACTIONS(95), + [anon_sym_i128] = ACTIONS(95), + [anon_sym_isize] = ACTIONS(95), + [anon_sym_usize] = ACTIONS(95), + [anon_sym_f32] = ACTIONS(95), + [anon_sym_f64] = ACTIONS(95), + [anon_sym_bool] = ACTIONS(95), + [anon_sym_str] = ACTIONS(95), + [anon_sym_char] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(97), + [sym_self] = ACTIONS(519), + [sym_super] = ACTIONS(521), + [sym_crate] = ACTIONS(521), + [sym_metavariable] = ACTIONS(523), + [sym_grit_metavariable] = ACTIONS(525), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [84] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2320), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1398), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1139), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1220), - [sym_identifier] = STATE(834), + [82] = { + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2176), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1277), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1159), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(65), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1189), + [sym_identifier] = STATE(833), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(447), @@ -30601,7 +30424,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(77), [anon_sym_AMP] = ACTIONS(79), - [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(673), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(85), @@ -30639,53 +30462,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [85] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2320), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1386), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1139), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1220), - [sym_identifier] = STATE(834), + [83] = { + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2176), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1405), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1159), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(65), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1189), + [sym_identifier] = STATE(833), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(447), @@ -30747,53 +30570,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [86] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2320), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1352), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1139), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1220), - [sym_identifier] = STATE(834), + [84] = { + [ts_builtin_sym_end] = ACTIONS(711), + [sym__primitive_identifier] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(711), + [anon_sym_macro_rules_BANG] = ACTIONS(711), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_LBRACE] = ACTIONS(711), + [anon_sym_RBRACE] = ACTIONS(711), + [anon_sym_LBRACK] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [anon_sym_as] = ACTIONS(713), + [anon_sym_async] = ACTIONS(713), + [anon_sym_break] = ACTIONS(713), + [anon_sym_const] = ACTIONS(713), + [anon_sym_continue] = ACTIONS(713), + [anon_sym_default] = ACTIONS(713), + [anon_sym_enum] = ACTIONS(713), + [anon_sym_fn] = ACTIONS(713), + [anon_sym_for] = ACTIONS(713), + [anon_sym_if] = ACTIONS(713), + [anon_sym_impl] = ACTIONS(713), + [anon_sym_let] = ACTIONS(713), + [anon_sym_loop] = ACTIONS(713), + [anon_sym_match] = ACTIONS(713), + [anon_sym_mod] = ACTIONS(713), + [anon_sym_pub] = ACTIONS(713), + [anon_sym_return] = ACTIONS(713), + [anon_sym_static] = ACTIONS(713), + [anon_sym_struct] = ACTIONS(713), + [anon_sym_trait] = ACTIONS(713), + [anon_sym_type] = ACTIONS(713), + [anon_sym_union] = ACTIONS(713), + [anon_sym_unsafe] = ACTIONS(713), + [anon_sym_use] = ACTIONS(713), + [anon_sym_while] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(711), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_EQ] = ACTIONS(713), + [anon_sym_extern] = ACTIONS(713), + [anon_sym_LT] = ACTIONS(713), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_COLON_COLON] = ACTIONS(711), + [anon_sym_AMP] = ACTIONS(713), + [anon_sym_DOT_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(713), + [anon_sym_DOT_DOT_EQ] = ACTIONS(711), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_AMP_AMP] = ACTIONS(711), + [anon_sym_PIPE_PIPE] = ACTIONS(711), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_EQ_EQ] = ACTIONS(711), + [anon_sym_BANG_EQ] = ACTIONS(711), + [anon_sym_LT_EQ] = ACTIONS(711), + [anon_sym_GT_EQ] = ACTIONS(711), + [anon_sym_LT_LT] = ACTIONS(713), + [anon_sym_GT_GT] = ACTIONS(713), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_PLUS_EQ] = ACTIONS(711), + [anon_sym_DASH_EQ] = ACTIONS(711), + [anon_sym_STAR_EQ] = ACTIONS(711), + [anon_sym_SLASH_EQ] = ACTIONS(711), + [anon_sym_PERCENT_EQ] = ACTIONS(711), + [anon_sym_AMP_EQ] = ACTIONS(711), + [anon_sym_PIPE_EQ] = ACTIONS(711), + [anon_sym_CARET_EQ] = ACTIONS(711), + [anon_sym_LT_LT_EQ] = ACTIONS(711), + [anon_sym_GT_GT_EQ] = ACTIONS(711), + [anon_sym_yield] = ACTIONS(713), + [anon_sym_move] = ACTIONS(713), + [anon_sym_DOT] = ACTIONS(713), + [sym_integer_literal] = ACTIONS(711), + [aux_sym_string_literal_token1] = ACTIONS(711), + [sym_char_literal] = ACTIONS(711), + [anon_sym_true] = ACTIONS(713), + [anon_sym_false] = ACTIONS(713), + [anon_sym_u8] = ACTIONS(713), + [anon_sym_i8] = ACTIONS(713), + [anon_sym_u16] = ACTIONS(713), + [anon_sym_i16] = ACTIONS(713), + [anon_sym_u32] = ACTIONS(713), + [anon_sym_i32] = ACTIONS(713), + [anon_sym_u64] = ACTIONS(713), + [anon_sym_i64] = ACTIONS(713), + [anon_sym_u128] = ACTIONS(713), + [anon_sym_i128] = ACTIONS(713), + [anon_sym_isize] = ACTIONS(713), + [anon_sym_usize] = ACTIONS(713), + [anon_sym_f32] = ACTIONS(713), + [anon_sym_f64] = ACTIONS(713), + [anon_sym_bool] = ACTIONS(713), + [anon_sym_str] = ACTIONS(713), + [anon_sym_char] = ACTIONS(713), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(711), + [sym_self] = ACTIONS(713), + [sym_super] = ACTIONS(713), + [sym_crate] = ACTIONS(713), + [sym_metavariable] = ACTIONS(711), + [sym_grit_metavariable] = ACTIONS(711), + [sym_raw_string_literal] = ACTIONS(711), + [sym_float_literal] = ACTIONS(711), + [sym_block_comment] = ACTIONS(3), + }, + [85] = { + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2176), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1388), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1159), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(65), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1189), + [sym_identifier] = STATE(833), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(447), @@ -30855,81 +30786,189 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, + [86] = { + [ts_builtin_sym_end] = ACTIONS(715), + [sym__primitive_identifier] = ACTIONS(717), + [anon_sym_SEMI] = ACTIONS(715), + [anon_sym_macro_rules_BANG] = ACTIONS(715), + [anon_sym_LPAREN] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(715), + [anon_sym_RBRACE] = ACTIONS(715), + [anon_sym_LBRACK] = ACTIONS(715), + [anon_sym_PLUS] = ACTIONS(717), + [anon_sym_STAR] = ACTIONS(717), + [anon_sym_QMARK] = ACTIONS(715), + [anon_sym_SQUOTE] = ACTIONS(717), + [anon_sym_as] = ACTIONS(717), + [anon_sym_async] = ACTIONS(717), + [anon_sym_break] = ACTIONS(717), + [anon_sym_const] = ACTIONS(717), + [anon_sym_continue] = ACTIONS(717), + [anon_sym_default] = ACTIONS(717), + [anon_sym_enum] = ACTIONS(717), + [anon_sym_fn] = ACTIONS(717), + [anon_sym_for] = ACTIONS(717), + [anon_sym_if] = ACTIONS(717), + [anon_sym_impl] = ACTIONS(717), + [anon_sym_let] = ACTIONS(717), + [anon_sym_loop] = ACTIONS(717), + [anon_sym_match] = ACTIONS(717), + [anon_sym_mod] = ACTIONS(717), + [anon_sym_pub] = ACTIONS(717), + [anon_sym_return] = ACTIONS(717), + [anon_sym_static] = ACTIONS(717), + [anon_sym_struct] = ACTIONS(717), + [anon_sym_trait] = ACTIONS(717), + [anon_sym_type] = ACTIONS(717), + [anon_sym_union] = ACTIONS(717), + [anon_sym_unsafe] = ACTIONS(717), + [anon_sym_use] = ACTIONS(717), + [anon_sym_while] = ACTIONS(717), + [anon_sym_POUND] = ACTIONS(715), + [anon_sym_BANG] = ACTIONS(717), + [anon_sym_EQ] = ACTIONS(717), + [anon_sym_extern] = ACTIONS(717), + [anon_sym_LT] = ACTIONS(717), + [anon_sym_GT] = ACTIONS(717), + [anon_sym_COLON_COLON] = ACTIONS(715), + [anon_sym_AMP] = ACTIONS(717), + [anon_sym_DOT_DOT_DOT] = ACTIONS(715), + [anon_sym_DOT_DOT] = ACTIONS(717), + [anon_sym_DOT_DOT_EQ] = ACTIONS(715), + [anon_sym_DASH] = ACTIONS(717), + [anon_sym_AMP_AMP] = ACTIONS(715), + [anon_sym_PIPE_PIPE] = ACTIONS(715), + [anon_sym_PIPE] = ACTIONS(717), + [anon_sym_CARET] = ACTIONS(717), + [anon_sym_EQ_EQ] = ACTIONS(715), + [anon_sym_BANG_EQ] = ACTIONS(715), + [anon_sym_LT_EQ] = ACTIONS(715), + [anon_sym_GT_EQ] = ACTIONS(715), + [anon_sym_LT_LT] = ACTIONS(717), + [anon_sym_GT_GT] = ACTIONS(717), + [anon_sym_SLASH] = ACTIONS(717), + [anon_sym_PERCENT] = ACTIONS(717), + [anon_sym_PLUS_EQ] = ACTIONS(715), + [anon_sym_DASH_EQ] = ACTIONS(715), + [anon_sym_STAR_EQ] = ACTIONS(715), + [anon_sym_SLASH_EQ] = ACTIONS(715), + [anon_sym_PERCENT_EQ] = ACTIONS(715), + [anon_sym_AMP_EQ] = ACTIONS(715), + [anon_sym_PIPE_EQ] = ACTIONS(715), + [anon_sym_CARET_EQ] = ACTIONS(715), + [anon_sym_LT_LT_EQ] = ACTIONS(715), + [anon_sym_GT_GT_EQ] = ACTIONS(715), + [anon_sym_yield] = ACTIONS(717), + [anon_sym_move] = ACTIONS(717), + [anon_sym_DOT] = ACTIONS(717), + [sym_integer_literal] = ACTIONS(715), + [aux_sym_string_literal_token1] = ACTIONS(715), + [sym_char_literal] = ACTIONS(715), + [anon_sym_true] = ACTIONS(717), + [anon_sym_false] = ACTIONS(717), + [anon_sym_u8] = ACTIONS(717), + [anon_sym_i8] = ACTIONS(717), + [anon_sym_u16] = ACTIONS(717), + [anon_sym_i16] = ACTIONS(717), + [anon_sym_u32] = ACTIONS(717), + [anon_sym_i32] = ACTIONS(717), + [anon_sym_u64] = ACTIONS(717), + [anon_sym_i64] = ACTIONS(717), + [anon_sym_u128] = ACTIONS(717), + [anon_sym_i128] = ACTIONS(717), + [anon_sym_isize] = ACTIONS(717), + [anon_sym_usize] = ACTIONS(717), + [anon_sym_f32] = ACTIONS(717), + [anon_sym_f64] = ACTIONS(717), + [anon_sym_bool] = ACTIONS(717), + [anon_sym_str] = ACTIONS(717), + [anon_sym_char] = ACTIONS(717), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(715), + [sym_self] = ACTIONS(717), + [sym_super] = ACTIONS(717), + [sym_crate] = ACTIONS(717), + [sym_metavariable] = ACTIONS(715), + [sym_grit_metavariable] = ACTIONS(715), + [sym_raw_string_literal] = ACTIONS(715), + [sym_float_literal] = ACTIONS(715), + [sym_block_comment] = ACTIONS(3), + }, [87] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2320), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1334), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1139), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1220), - [sym_identifier] = STATE(834), + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2305), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1330), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1308), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(74), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1313), + [sym_identifier] = STATE(1295), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(447), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(547), [anon_sym_SQUOTE] = ACTIONS(21), [anon_sym_async] = ACTIONS(453), - [anon_sym_break] = ACTIONS(25), + [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(455), [anon_sym_continue] = ACTIONS(29), - [anon_sym_default] = ACTIONS(457), + [anon_sym_default] = ACTIONS(507), [anon_sym_for] = ACTIONS(459), [anon_sym_if] = ACTIONS(461), [anon_sym_loop] = ACTIONS(463), [anon_sym_match] = ACTIONS(465), - [anon_sym_return] = ACTIONS(53), - [anon_sym_union] = ACTIONS(457), + [anon_sym_return] = ACTIONS(509), + [anon_sym_union] = ACTIONS(507), [anon_sym_unsafe] = ACTIONS(467), [anon_sym_while] = ACTIONS(469), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(547), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_AMP] = ACTIONS(79), - [anon_sym_DOT_DOT] = ACTIONS(81), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_AMP] = ACTIONS(551), + [anon_sym_DOT_DOT] = ACTIONS(553), + [anon_sym_DASH] = ACTIONS(547), [anon_sym_PIPE] = ACTIONS(83), - [anon_sym_yield] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(515), + [anon_sym_move] = ACTIONS(517), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), @@ -30954,170 +30993,170 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), [sym__raw_identifier] = ACTIONS(97), - [sym_self] = ACTIONS(99), - [sym_super] = ACTIONS(101), - [sym_crate] = ACTIONS(101), - [sym_metavariable] = ACTIONS(105), - [sym_grit_metavariable] = ACTIONS(473), + [sym_self] = ACTIONS(519), + [sym_super] = ACTIONS(521), + [sym_crate] = ACTIONS(521), + [sym_metavariable] = ACTIONS(523), + [sym_grit_metavariable] = ACTIONS(525), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [88] = { - [ts_builtin_sym_end] = ACTIONS(733), - [sym__primitive_identifier] = ACTIONS(735), - [anon_sym_SEMI] = ACTIONS(733), - [anon_sym_macro_rules_BANG] = ACTIONS(733), - [anon_sym_LPAREN] = ACTIONS(733), - [anon_sym_LBRACE] = ACTIONS(733), - [anon_sym_RBRACE] = ACTIONS(733), - [anon_sym_LBRACK] = ACTIONS(733), - [anon_sym_PLUS] = ACTIONS(735), - [anon_sym_STAR] = ACTIONS(735), - [anon_sym_QMARK] = ACTIONS(733), - [anon_sym_SQUOTE] = ACTIONS(735), - [anon_sym_as] = ACTIONS(735), - [anon_sym_async] = 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_while] = ACTIONS(735), - [anon_sym_POUND] = ACTIONS(733), - [anon_sym_BANG] = ACTIONS(735), - [anon_sym_EQ] = ACTIONS(735), - [anon_sym_extern] = ACTIONS(735), - [anon_sym_LT] = ACTIONS(735), - [anon_sym_GT] = ACTIONS(735), - [anon_sym_COLON_COLON] = ACTIONS(733), - [anon_sym_AMP] = ACTIONS(735), - [anon_sym_DOT_DOT_DOT] = ACTIONS(733), - [anon_sym_DOT_DOT] = ACTIONS(735), - [anon_sym_DOT_DOT_EQ] = ACTIONS(733), - [anon_sym_DASH] = ACTIONS(735), - [anon_sym_AMP_AMP] = ACTIONS(733), - [anon_sym_PIPE_PIPE] = ACTIONS(733), - [anon_sym_PIPE] = ACTIONS(735), - [anon_sym_CARET] = ACTIONS(735), - [anon_sym_EQ_EQ] = ACTIONS(733), - [anon_sym_BANG_EQ] = ACTIONS(733), - [anon_sym_LT_EQ] = ACTIONS(733), - [anon_sym_GT_EQ] = ACTIONS(733), - [anon_sym_LT_LT] = ACTIONS(735), - [anon_sym_GT_GT] = ACTIONS(735), - [anon_sym_SLASH] = ACTIONS(735), - [anon_sym_PERCENT] = ACTIONS(735), - [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_AMP_EQ] = ACTIONS(733), - [anon_sym_PIPE_EQ] = ACTIONS(733), - [anon_sym_CARET_EQ] = ACTIONS(733), - [anon_sym_LT_LT_EQ] = ACTIONS(733), - [anon_sym_GT_GT_EQ] = ACTIONS(733), - [anon_sym_yield] = ACTIONS(735), - [anon_sym_move] = ACTIONS(735), - [anon_sym_DOT] = ACTIONS(735), - [sym_integer_literal] = ACTIONS(733), - [aux_sym_string_literal_token1] = ACTIONS(733), - [sym_char_literal] = ACTIONS(733), - [anon_sym_true] = ACTIONS(735), - [anon_sym_false] = ACTIONS(735), - [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), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(733), - [sym_self] = ACTIONS(735), - [sym_super] = ACTIONS(735), - [sym_crate] = ACTIONS(735), - [sym_metavariable] = ACTIONS(733), - [sym_grit_metavariable] = ACTIONS(733), - [sym_raw_string_literal] = ACTIONS(733), - [sym_float_literal] = ACTIONS(733), + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2305), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1216), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1308), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(74), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1313), + [sym_identifier] = STATE(1295), + [sym__primitive_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(447), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(547), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_async] = ACTIONS(453), + [anon_sym_break] = ACTIONS(505), + [anon_sym_const] = ACTIONS(455), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(507), + [anon_sym_for] = ACTIONS(459), + [anon_sym_if] = ACTIONS(461), + [anon_sym_loop] = ACTIONS(463), + [anon_sym_match] = ACTIONS(465), + [anon_sym_return] = ACTIONS(509), + [anon_sym_union] = ACTIONS(507), + [anon_sym_unsafe] = ACTIONS(467), + [anon_sym_while] = ACTIONS(469), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_AMP] = ACTIONS(551), + [anon_sym_DOT_DOT] = ACTIONS(553), + [anon_sym_DASH] = ACTIONS(547), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(515), + [anon_sym_move] = ACTIONS(517), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [anon_sym_u8] = ACTIONS(95), + [anon_sym_i8] = ACTIONS(95), + [anon_sym_u16] = ACTIONS(95), + [anon_sym_i16] = ACTIONS(95), + [anon_sym_u32] = ACTIONS(95), + [anon_sym_i32] = ACTIONS(95), + [anon_sym_u64] = ACTIONS(95), + [anon_sym_i64] = ACTIONS(95), + [anon_sym_u128] = ACTIONS(95), + [anon_sym_i128] = ACTIONS(95), + [anon_sym_isize] = ACTIONS(95), + [anon_sym_usize] = ACTIONS(95), + [anon_sym_f32] = ACTIONS(95), + [anon_sym_f64] = ACTIONS(95), + [anon_sym_bool] = ACTIONS(95), + [anon_sym_str] = ACTIONS(95), + [anon_sym_char] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(97), + [sym_self] = ACTIONS(519), + [sym_super] = ACTIONS(521), + [sym_crate] = ACTIONS(521), + [sym_metavariable] = ACTIONS(523), + [sym_grit_metavariable] = ACTIONS(525), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [89] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2320), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1332), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1139), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1220), - [sym_identifier] = STATE(834), + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2176), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1348), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1159), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(65), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1189), + [sym_identifier] = STATE(833), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(447), @@ -31180,57 +31219,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [90] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2289), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1376), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1296), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(65), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1311), - [sym_identifier] = STATE(1290), + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2305), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1352), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1308), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(74), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1313), + [sym_identifier] = STATE(1295), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(447), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(545), + [anon_sym_STAR] = ACTIONS(547), [anon_sym_SQUOTE] = ACTIONS(21), [anon_sym_async] = ACTIONS(453), [anon_sym_break] = ACTIONS(505), @@ -31245,12 +31284,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(507), [anon_sym_unsafe] = ACTIONS(467), [anon_sym_while] = ACTIONS(469), - [anon_sym_BANG] = ACTIONS(545), + [anon_sym_BANG] = ACTIONS(547), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_AMP] = ACTIONS(549), - [anon_sym_DOT_DOT] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(551), + [anon_sym_DOT_DOT] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(547), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(515), [anon_sym_move] = ACTIONS(517), @@ -31288,52 +31327,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [91] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2320), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1381), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1139), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1220), - [sym_identifier] = STATE(834), + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2176), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1325), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1159), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(65), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1189), + [sym_identifier] = STATE(833), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(447), @@ -31396,381 +31435,273 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [92] = { - [ts_builtin_sym_end] = ACTIONS(737), - [sym__primitive_identifier] = ACTIONS(739), - [anon_sym_SEMI] = ACTIONS(737), - [anon_sym_macro_rules_BANG] = ACTIONS(737), - [anon_sym_LPAREN] = ACTIONS(737), - [anon_sym_LBRACE] = ACTIONS(737), - [anon_sym_RBRACE] = ACTIONS(737), - [anon_sym_LBRACK] = ACTIONS(737), - [anon_sym_PLUS] = ACTIONS(739), - [anon_sym_STAR] = ACTIONS(739), - [anon_sym_QMARK] = ACTIONS(737), - [anon_sym_SQUOTE] = ACTIONS(739), - [anon_sym_as] = ACTIONS(739), - [anon_sym_async] = ACTIONS(739), - [anon_sym_break] = ACTIONS(739), - [anon_sym_const] = ACTIONS(739), - [anon_sym_continue] = ACTIONS(739), - [anon_sym_default] = ACTIONS(739), - [anon_sym_enum] = ACTIONS(739), - [anon_sym_fn] = ACTIONS(739), - [anon_sym_for] = ACTIONS(739), - [anon_sym_if] = ACTIONS(739), - [anon_sym_impl] = ACTIONS(739), - [anon_sym_let] = ACTIONS(739), - [anon_sym_loop] = ACTIONS(739), - [anon_sym_match] = ACTIONS(739), - [anon_sym_mod] = ACTIONS(739), - [anon_sym_pub] = ACTIONS(739), - [anon_sym_return] = ACTIONS(739), - [anon_sym_static] = ACTIONS(739), - [anon_sym_struct] = ACTIONS(739), - [anon_sym_trait] = ACTIONS(739), - [anon_sym_type] = ACTIONS(739), - [anon_sym_union] = ACTIONS(739), - [anon_sym_unsafe] = ACTIONS(739), - [anon_sym_use] = ACTIONS(739), - [anon_sym_while] = ACTIONS(739), - [anon_sym_POUND] = ACTIONS(737), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_EQ] = ACTIONS(739), - [anon_sym_extern] = ACTIONS(739), - [anon_sym_LT] = ACTIONS(739), - [anon_sym_GT] = ACTIONS(739), - [anon_sym_COLON_COLON] = ACTIONS(737), - [anon_sym_AMP] = ACTIONS(739), - [anon_sym_DOT_DOT_DOT] = ACTIONS(737), - [anon_sym_DOT_DOT] = ACTIONS(739), - [anon_sym_DOT_DOT_EQ] = ACTIONS(737), - [anon_sym_DASH] = ACTIONS(739), - [anon_sym_AMP_AMP] = ACTIONS(737), - [anon_sym_PIPE_PIPE] = ACTIONS(737), - [anon_sym_PIPE] = ACTIONS(739), - [anon_sym_CARET] = ACTIONS(739), - [anon_sym_EQ_EQ] = ACTIONS(737), - [anon_sym_BANG_EQ] = ACTIONS(737), - [anon_sym_LT_EQ] = ACTIONS(737), - [anon_sym_GT_EQ] = ACTIONS(737), - [anon_sym_LT_LT] = ACTIONS(739), - [anon_sym_GT_GT] = ACTIONS(739), - [anon_sym_SLASH] = ACTIONS(739), - [anon_sym_PERCENT] = ACTIONS(739), - [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_AMP_EQ] = ACTIONS(737), - [anon_sym_PIPE_EQ] = ACTIONS(737), - [anon_sym_CARET_EQ] = ACTIONS(737), - [anon_sym_LT_LT_EQ] = ACTIONS(737), - [anon_sym_GT_GT_EQ] = ACTIONS(737), - [anon_sym_yield] = ACTIONS(739), - [anon_sym_move] = ACTIONS(739), - [anon_sym_DOT] = ACTIONS(739), - [sym_integer_literal] = ACTIONS(737), - [aux_sym_string_literal_token1] = ACTIONS(737), - [sym_char_literal] = ACTIONS(737), - [anon_sym_true] = ACTIONS(739), - [anon_sym_false] = ACTIONS(739), - [anon_sym_u8] = ACTIONS(739), - [anon_sym_i8] = ACTIONS(739), - [anon_sym_u16] = ACTIONS(739), - [anon_sym_i16] = ACTIONS(739), - [anon_sym_u32] = ACTIONS(739), - [anon_sym_i32] = ACTIONS(739), - [anon_sym_u64] = ACTIONS(739), - [anon_sym_i64] = ACTIONS(739), - [anon_sym_u128] = ACTIONS(739), - [anon_sym_i128] = ACTIONS(739), - [anon_sym_isize] = ACTIONS(739), - [anon_sym_usize] = ACTIONS(739), - [anon_sym_f32] = ACTIONS(739), - [anon_sym_f64] = ACTIONS(739), - [anon_sym_bool] = ACTIONS(739), - [anon_sym_str] = ACTIONS(739), - [anon_sym_char] = ACTIONS(739), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(737), - [sym_self] = ACTIONS(739), - [sym_super] = ACTIONS(739), - [sym_crate] = ACTIONS(739), - [sym_metavariable] = ACTIONS(737), - [sym_grit_metavariable] = ACTIONS(737), - [sym_raw_string_literal] = ACTIONS(737), - [sym_float_literal] = ACTIONS(737), + [ts_builtin_sym_end] = ACTIONS(719), + [sym__primitive_identifier] = ACTIONS(721), + [anon_sym_SEMI] = ACTIONS(723), + [anon_sym_macro_rules_BANG] = ACTIONS(719), + [anon_sym_LPAREN] = ACTIONS(723), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_RBRACE] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(723), + [anon_sym_PLUS] = ACTIONS(725), + [anon_sym_STAR] = ACTIONS(725), + [anon_sym_QMARK] = ACTIONS(723), + [anon_sym_SQUOTE] = ACTIONS(721), + [anon_sym_as] = ACTIONS(725), + [anon_sym_async] = ACTIONS(721), + [anon_sym_break] = ACTIONS(721), + [anon_sym_const] = ACTIONS(721), + [anon_sym_continue] = ACTIONS(721), + [anon_sym_default] = ACTIONS(721), + [anon_sym_enum] = ACTIONS(721), + [anon_sym_fn] = ACTIONS(721), + [anon_sym_for] = ACTIONS(721), + [anon_sym_if] = ACTIONS(721), + [anon_sym_impl] = ACTIONS(721), + [anon_sym_let] = ACTIONS(721), + [anon_sym_loop] = ACTIONS(721), + [anon_sym_match] = ACTIONS(721), + [anon_sym_mod] = ACTIONS(721), + [anon_sym_pub] = ACTIONS(721), + [anon_sym_return] = ACTIONS(721), + [anon_sym_static] = ACTIONS(721), + [anon_sym_struct] = ACTIONS(721), + [anon_sym_trait] = ACTIONS(721), + [anon_sym_type] = ACTIONS(721), + [anon_sym_union] = ACTIONS(721), + [anon_sym_unsafe] = ACTIONS(721), + [anon_sym_use] = ACTIONS(721), + [anon_sym_while] = ACTIONS(721), + [anon_sym_POUND] = ACTIONS(719), + [anon_sym_BANG] = ACTIONS(721), + [anon_sym_EQ] = ACTIONS(725), + [anon_sym_extern] = ACTIONS(721), + [anon_sym_LT] = ACTIONS(725), + [anon_sym_GT] = ACTIONS(725), + [anon_sym_COLON_COLON] = ACTIONS(719), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_DOT_DOT_DOT] = ACTIONS(723), + [anon_sym_DOT_DOT] = ACTIONS(725), + [anon_sym_DOT_DOT_EQ] = ACTIONS(723), + [anon_sym_DASH] = ACTIONS(725), + [anon_sym_AMP_AMP] = ACTIONS(723), + [anon_sym_PIPE_PIPE] = ACTIONS(723), + [anon_sym_PIPE] = ACTIONS(725), + [anon_sym_CARET] = ACTIONS(725), + [anon_sym_EQ_EQ] = ACTIONS(723), + [anon_sym_BANG_EQ] = ACTIONS(723), + [anon_sym_LT_EQ] = ACTIONS(723), + [anon_sym_GT_EQ] = ACTIONS(723), + [anon_sym_LT_LT] = ACTIONS(725), + [anon_sym_GT_GT] = ACTIONS(725), + [anon_sym_SLASH] = ACTIONS(725), + [anon_sym_PERCENT] = ACTIONS(725), + [anon_sym_PLUS_EQ] = ACTIONS(723), + [anon_sym_DASH_EQ] = ACTIONS(723), + [anon_sym_STAR_EQ] = ACTIONS(723), + [anon_sym_SLASH_EQ] = ACTIONS(723), + [anon_sym_PERCENT_EQ] = ACTIONS(723), + [anon_sym_AMP_EQ] = ACTIONS(723), + [anon_sym_PIPE_EQ] = ACTIONS(723), + [anon_sym_CARET_EQ] = ACTIONS(723), + [anon_sym_LT_LT_EQ] = ACTIONS(723), + [anon_sym_GT_GT_EQ] = ACTIONS(723), + [anon_sym_yield] = ACTIONS(721), + [anon_sym_move] = ACTIONS(721), + [anon_sym_DOT] = ACTIONS(725), + [sym_integer_literal] = ACTIONS(719), + [aux_sym_string_literal_token1] = ACTIONS(719), + [sym_char_literal] = ACTIONS(719), + [anon_sym_true] = ACTIONS(721), + [anon_sym_false] = ACTIONS(721), + [anon_sym_u8] = ACTIONS(721), + [anon_sym_i8] = ACTIONS(721), + [anon_sym_u16] = ACTIONS(721), + [anon_sym_i16] = ACTIONS(721), + [anon_sym_u32] = ACTIONS(721), + [anon_sym_i32] = ACTIONS(721), + [anon_sym_u64] = ACTIONS(721), + [anon_sym_i64] = ACTIONS(721), + [anon_sym_u128] = ACTIONS(721), + [anon_sym_i128] = ACTIONS(721), + [anon_sym_isize] = ACTIONS(721), + [anon_sym_usize] = ACTIONS(721), + [anon_sym_f32] = ACTIONS(721), + [anon_sym_f64] = ACTIONS(721), + [anon_sym_bool] = ACTIONS(721), + [anon_sym_str] = ACTIONS(721), + [anon_sym_char] = ACTIONS(721), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(719), + [sym_self] = ACTIONS(721), + [sym_super] = ACTIONS(721), + [sym_crate] = ACTIONS(721), + [sym_metavariable] = ACTIONS(719), + [sym_grit_metavariable] = ACTIONS(719), + [sym_raw_string_literal] = ACTIONS(719), + [sym_float_literal] = ACTIONS(719), [sym_block_comment] = ACTIONS(3), }, [93] = { - [ts_builtin_sym_end] = ACTIONS(741), - [sym__primitive_identifier] = ACTIONS(743), - [anon_sym_SEMI] = ACTIONS(741), - [anon_sym_macro_rules_BANG] = ACTIONS(741), - [anon_sym_LPAREN] = ACTIONS(741), - [anon_sym_LBRACE] = ACTIONS(741), - [anon_sym_RBRACE] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_PLUS] = ACTIONS(743), - [anon_sym_STAR] = ACTIONS(743), - [anon_sym_QMARK] = ACTIONS(741), - [anon_sym_SQUOTE] = ACTIONS(743), - [anon_sym_as] = ACTIONS(743), - [anon_sym_async] = ACTIONS(743), - [anon_sym_break] = ACTIONS(743), - [anon_sym_const] = ACTIONS(743), - [anon_sym_continue] = ACTIONS(743), - [anon_sym_default] = ACTIONS(743), - [anon_sym_enum] = ACTIONS(743), - [anon_sym_fn] = ACTIONS(743), - [anon_sym_for] = ACTIONS(743), - [anon_sym_if] = ACTIONS(743), - [anon_sym_impl] = ACTIONS(743), - [anon_sym_let] = ACTIONS(743), - [anon_sym_loop] = ACTIONS(743), - [anon_sym_match] = ACTIONS(743), - [anon_sym_mod] = ACTIONS(743), - [anon_sym_pub] = ACTIONS(743), - [anon_sym_return] = ACTIONS(743), - [anon_sym_static] = ACTIONS(743), - [anon_sym_struct] = ACTIONS(743), - [anon_sym_trait] = ACTIONS(743), - [anon_sym_type] = ACTIONS(743), - [anon_sym_union] = ACTIONS(743), - [anon_sym_unsafe] = ACTIONS(743), - [anon_sym_use] = ACTIONS(743), - [anon_sym_while] = ACTIONS(743), - [anon_sym_POUND] = ACTIONS(741), - [anon_sym_BANG] = ACTIONS(743), - [anon_sym_EQ] = ACTIONS(743), - [anon_sym_extern] = ACTIONS(743), - [anon_sym_LT] = ACTIONS(743), - [anon_sym_GT] = ACTIONS(743), - [anon_sym_COLON_COLON] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(743), - [anon_sym_DOT_DOT_DOT] = ACTIONS(741), - [anon_sym_DOT_DOT] = ACTIONS(743), - [anon_sym_DOT_DOT_EQ] = ACTIONS(741), - [anon_sym_DASH] = ACTIONS(743), - [anon_sym_AMP_AMP] = ACTIONS(741), - [anon_sym_PIPE_PIPE] = ACTIONS(741), - [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_CARET] = ACTIONS(743), - [anon_sym_EQ_EQ] = ACTIONS(741), - [anon_sym_BANG_EQ] = ACTIONS(741), - [anon_sym_LT_EQ] = ACTIONS(741), - [anon_sym_GT_EQ] = ACTIONS(741), - [anon_sym_LT_LT] = ACTIONS(743), - [anon_sym_GT_GT] = ACTIONS(743), - [anon_sym_SLASH] = ACTIONS(743), - [anon_sym_PERCENT] = ACTIONS(743), - [anon_sym_PLUS_EQ] = ACTIONS(741), - [anon_sym_DASH_EQ] = ACTIONS(741), - [anon_sym_STAR_EQ] = ACTIONS(741), - [anon_sym_SLASH_EQ] = ACTIONS(741), - [anon_sym_PERCENT_EQ] = ACTIONS(741), - [anon_sym_AMP_EQ] = ACTIONS(741), - [anon_sym_PIPE_EQ] = ACTIONS(741), - [anon_sym_CARET_EQ] = ACTIONS(741), - [anon_sym_LT_LT_EQ] = ACTIONS(741), - [anon_sym_GT_GT_EQ] = ACTIONS(741), - [anon_sym_yield] = ACTIONS(743), - [anon_sym_move] = ACTIONS(743), - [anon_sym_DOT] = ACTIONS(743), - [sym_integer_literal] = ACTIONS(741), - [aux_sym_string_literal_token1] = ACTIONS(741), - [sym_char_literal] = ACTIONS(741), - [anon_sym_true] = ACTIONS(743), - [anon_sym_false] = ACTIONS(743), - [anon_sym_u8] = ACTIONS(743), - [anon_sym_i8] = ACTIONS(743), - [anon_sym_u16] = ACTIONS(743), - [anon_sym_i16] = ACTIONS(743), - [anon_sym_u32] = ACTIONS(743), - [anon_sym_i32] = ACTIONS(743), - [anon_sym_u64] = ACTIONS(743), - [anon_sym_i64] = ACTIONS(743), - [anon_sym_u128] = ACTIONS(743), - [anon_sym_i128] = ACTIONS(743), - [anon_sym_isize] = ACTIONS(743), - [anon_sym_usize] = ACTIONS(743), - [anon_sym_f32] = ACTIONS(743), - [anon_sym_f64] = ACTIONS(743), - [anon_sym_bool] = ACTIONS(743), - [anon_sym_str] = ACTIONS(743), - [anon_sym_char] = ACTIONS(743), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(741), - [sym_self] = ACTIONS(743), - [sym_super] = ACTIONS(743), - [sym_crate] = ACTIONS(743), - [sym_metavariable] = ACTIONS(741), - [sym_grit_metavariable] = ACTIONS(741), - [sym_raw_string_literal] = ACTIONS(741), - [sym_float_literal] = ACTIONS(741), + [ts_builtin_sym_end] = ACTIONS(727), + [sym__primitive_identifier] = ACTIONS(729), + [anon_sym_SEMI] = ACTIONS(727), + [anon_sym_macro_rules_BANG] = ACTIONS(727), + [anon_sym_LPAREN] = ACTIONS(727), + [anon_sym_LBRACE] = ACTIONS(727), + [anon_sym_RBRACE] = ACTIONS(727), + [anon_sym_LBRACK] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(729), + [anon_sym_STAR] = ACTIONS(729), + [anon_sym_QMARK] = ACTIONS(727), + [anon_sym_SQUOTE] = ACTIONS(729), + [anon_sym_as] = ACTIONS(729), + [anon_sym_async] = ACTIONS(729), + [anon_sym_break] = ACTIONS(729), + [anon_sym_const] = ACTIONS(729), + [anon_sym_continue] = ACTIONS(729), + [anon_sym_default] = ACTIONS(729), + [anon_sym_enum] = ACTIONS(729), + [anon_sym_fn] = ACTIONS(729), + [anon_sym_for] = ACTIONS(729), + [anon_sym_if] = ACTIONS(729), + [anon_sym_impl] = ACTIONS(729), + [anon_sym_let] = ACTIONS(729), + [anon_sym_loop] = ACTIONS(729), + [anon_sym_match] = ACTIONS(729), + [anon_sym_mod] = ACTIONS(729), + [anon_sym_pub] = ACTIONS(729), + [anon_sym_return] = ACTIONS(729), + [anon_sym_static] = ACTIONS(729), + [anon_sym_struct] = ACTIONS(729), + [anon_sym_trait] = ACTIONS(729), + [anon_sym_type] = ACTIONS(729), + [anon_sym_union] = ACTIONS(729), + [anon_sym_unsafe] = ACTIONS(729), + [anon_sym_use] = ACTIONS(729), + [anon_sym_while] = ACTIONS(729), + [anon_sym_POUND] = ACTIONS(727), + [anon_sym_BANG] = ACTIONS(729), + [anon_sym_EQ] = ACTIONS(729), + [anon_sym_extern] = ACTIONS(729), + [anon_sym_LT] = ACTIONS(729), + [anon_sym_GT] = ACTIONS(729), + [anon_sym_COLON_COLON] = ACTIONS(727), + [anon_sym_AMP] = ACTIONS(729), + [anon_sym_DOT_DOT_DOT] = ACTIONS(727), + [anon_sym_DOT_DOT] = ACTIONS(729), + [anon_sym_DOT_DOT_EQ] = ACTIONS(727), + [anon_sym_DASH] = ACTIONS(729), + [anon_sym_AMP_AMP] = ACTIONS(727), + [anon_sym_PIPE_PIPE] = ACTIONS(727), + [anon_sym_PIPE] = ACTIONS(729), + [anon_sym_CARET] = ACTIONS(729), + [anon_sym_EQ_EQ] = ACTIONS(727), + [anon_sym_BANG_EQ] = ACTIONS(727), + [anon_sym_LT_EQ] = ACTIONS(727), + [anon_sym_GT_EQ] = ACTIONS(727), + [anon_sym_LT_LT] = ACTIONS(729), + [anon_sym_GT_GT] = ACTIONS(729), + [anon_sym_SLASH] = ACTIONS(729), + [anon_sym_PERCENT] = ACTIONS(729), + [anon_sym_PLUS_EQ] = ACTIONS(727), + [anon_sym_DASH_EQ] = ACTIONS(727), + [anon_sym_STAR_EQ] = ACTIONS(727), + [anon_sym_SLASH_EQ] = ACTIONS(727), + [anon_sym_PERCENT_EQ] = ACTIONS(727), + [anon_sym_AMP_EQ] = ACTIONS(727), + [anon_sym_PIPE_EQ] = ACTIONS(727), + [anon_sym_CARET_EQ] = ACTIONS(727), + [anon_sym_LT_LT_EQ] = ACTIONS(727), + [anon_sym_GT_GT_EQ] = ACTIONS(727), + [anon_sym_yield] = ACTIONS(729), + [anon_sym_move] = ACTIONS(729), + [anon_sym_DOT] = ACTIONS(729), + [sym_integer_literal] = ACTIONS(727), + [aux_sym_string_literal_token1] = ACTIONS(727), + [sym_char_literal] = ACTIONS(727), + [anon_sym_true] = ACTIONS(729), + [anon_sym_false] = ACTIONS(729), + [anon_sym_u8] = ACTIONS(729), + [anon_sym_i8] = ACTIONS(729), + [anon_sym_u16] = ACTIONS(729), + [anon_sym_i16] = ACTIONS(729), + [anon_sym_u32] = ACTIONS(729), + [anon_sym_i32] = ACTIONS(729), + [anon_sym_u64] = ACTIONS(729), + [anon_sym_i64] = ACTIONS(729), + [anon_sym_u128] = ACTIONS(729), + [anon_sym_i128] = ACTIONS(729), + [anon_sym_isize] = ACTIONS(729), + [anon_sym_usize] = ACTIONS(729), + [anon_sym_f32] = ACTIONS(729), + [anon_sym_f64] = ACTIONS(729), + [anon_sym_bool] = ACTIONS(729), + [anon_sym_str] = ACTIONS(729), + [anon_sym_char] = ACTIONS(729), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(727), + [sym_self] = ACTIONS(729), + [sym_super] = ACTIONS(729), + [sym_crate] = ACTIONS(729), + [sym_metavariable] = ACTIONS(727), + [sym_grit_metavariable] = ACTIONS(727), + [sym_raw_string_literal] = ACTIONS(727), + [sym_float_literal] = ACTIONS(727), [sym_block_comment] = ACTIONS(3), }, [94] = { - [ts_builtin_sym_end] = ACTIONS(745), - [sym__primitive_identifier] = ACTIONS(747), - [anon_sym_SEMI] = ACTIONS(745), - [anon_sym_macro_rules_BANG] = ACTIONS(745), - [anon_sym_LPAREN] = ACTIONS(745), - [anon_sym_LBRACE] = ACTIONS(745), - [anon_sym_RBRACE] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(745), - [anon_sym_PLUS] = ACTIONS(747), - [anon_sym_STAR] = ACTIONS(747), - [anon_sym_QMARK] = ACTIONS(745), - [anon_sym_SQUOTE] = ACTIONS(747), - [anon_sym_as] = ACTIONS(747), - [anon_sym_async] = ACTIONS(747), - [anon_sym_break] = ACTIONS(747), - [anon_sym_const] = ACTIONS(747), - [anon_sym_continue] = ACTIONS(747), - [anon_sym_default] = ACTIONS(747), - [anon_sym_enum] = ACTIONS(747), - [anon_sym_fn] = ACTIONS(747), - [anon_sym_for] = ACTIONS(747), - [anon_sym_if] = ACTIONS(747), - [anon_sym_impl] = ACTIONS(747), - [anon_sym_let] = ACTIONS(747), - [anon_sym_loop] = ACTIONS(747), - [anon_sym_match] = ACTIONS(747), - [anon_sym_mod] = ACTIONS(747), - [anon_sym_pub] = ACTIONS(747), - [anon_sym_return] = ACTIONS(747), - [anon_sym_static] = ACTIONS(747), - [anon_sym_struct] = ACTIONS(747), - [anon_sym_trait] = ACTIONS(747), - [anon_sym_type] = ACTIONS(747), - [anon_sym_union] = ACTIONS(747), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_use] = ACTIONS(747), - [anon_sym_while] = ACTIONS(747), - [anon_sym_POUND] = ACTIONS(745), - [anon_sym_BANG] = ACTIONS(747), - [anon_sym_EQ] = ACTIONS(747), - [anon_sym_extern] = ACTIONS(747), - [anon_sym_LT] = ACTIONS(747), - [anon_sym_GT] = ACTIONS(747), - [anon_sym_COLON_COLON] = ACTIONS(745), - [anon_sym_AMP] = ACTIONS(747), - [anon_sym_DOT_DOT_DOT] = ACTIONS(745), - [anon_sym_DOT_DOT] = ACTIONS(747), - [anon_sym_DOT_DOT_EQ] = ACTIONS(745), - [anon_sym_DASH] = ACTIONS(747), - [anon_sym_AMP_AMP] = ACTIONS(745), - [anon_sym_PIPE_PIPE] = ACTIONS(745), - [anon_sym_PIPE] = ACTIONS(747), - [anon_sym_CARET] = ACTIONS(747), - [anon_sym_EQ_EQ] = ACTIONS(745), - [anon_sym_BANG_EQ] = ACTIONS(745), - [anon_sym_LT_EQ] = ACTIONS(745), - [anon_sym_GT_EQ] = ACTIONS(745), - [anon_sym_LT_LT] = ACTIONS(747), - [anon_sym_GT_GT] = ACTIONS(747), - [anon_sym_SLASH] = ACTIONS(747), - [anon_sym_PERCENT] = ACTIONS(747), - [anon_sym_PLUS_EQ] = ACTIONS(745), - [anon_sym_DASH_EQ] = ACTIONS(745), - [anon_sym_STAR_EQ] = ACTIONS(745), - [anon_sym_SLASH_EQ] = ACTIONS(745), - [anon_sym_PERCENT_EQ] = ACTIONS(745), - [anon_sym_AMP_EQ] = ACTIONS(745), - [anon_sym_PIPE_EQ] = ACTIONS(745), - [anon_sym_CARET_EQ] = ACTIONS(745), - [anon_sym_LT_LT_EQ] = ACTIONS(745), - [anon_sym_GT_GT_EQ] = ACTIONS(745), - [anon_sym_yield] = ACTIONS(747), - [anon_sym_move] = ACTIONS(747), - [anon_sym_DOT] = ACTIONS(747), - [sym_integer_literal] = ACTIONS(745), - [aux_sym_string_literal_token1] = ACTIONS(745), - [sym_char_literal] = ACTIONS(745), - [anon_sym_true] = ACTIONS(747), - [anon_sym_false] = ACTIONS(747), - [anon_sym_u8] = ACTIONS(747), - [anon_sym_i8] = ACTIONS(747), - [anon_sym_u16] = ACTIONS(747), - [anon_sym_i16] = ACTIONS(747), - [anon_sym_u32] = ACTIONS(747), - [anon_sym_i32] = ACTIONS(747), - [anon_sym_u64] = ACTIONS(747), - [anon_sym_i64] = ACTIONS(747), - [anon_sym_u128] = ACTIONS(747), - [anon_sym_i128] = ACTIONS(747), - [anon_sym_isize] = ACTIONS(747), - [anon_sym_usize] = ACTIONS(747), - [anon_sym_f32] = ACTIONS(747), - [anon_sym_f64] = ACTIONS(747), - [anon_sym_bool] = ACTIONS(747), - [anon_sym_str] = ACTIONS(747), - [anon_sym_char] = ACTIONS(747), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(745), - [sym_self] = ACTIONS(747), - [sym_super] = ACTIONS(747), - [sym_crate] = ACTIONS(747), - [sym_metavariable] = ACTIONS(745), - [sym_grit_metavariable] = ACTIONS(745), - [sym_raw_string_literal] = ACTIONS(745), - [sym_float_literal] = ACTIONS(745), - [sym_block_comment] = ACTIONS(3), - }, - [95] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2289), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1321), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1296), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(65), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1311), - [sym_identifier] = STATE(1290), + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2305), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1362), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1308), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(74), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1313), + [sym_identifier] = STATE(1295), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(447), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(545), + [anon_sym_STAR] = ACTIONS(547), [anon_sym_SQUOTE] = ACTIONS(21), [anon_sym_async] = ACTIONS(453), [anon_sym_break] = ACTIONS(505), @@ -31785,12 +31716,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(507), [anon_sym_unsafe] = ACTIONS(467), [anon_sym_while] = ACTIONS(469), - [anon_sym_BANG] = ACTIONS(545), + [anon_sym_BANG] = ACTIONS(547), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_AMP] = ACTIONS(549), - [anon_sym_DOT_DOT] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(551), + [anon_sym_DOT_DOT] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(547), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(515), [anon_sym_move] = ACTIONS(517), @@ -31827,382 +31758,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [96] = { - [ts_builtin_sym_end] = ACTIONS(749), - [sym__primitive_identifier] = ACTIONS(751), - [anon_sym_SEMI] = ACTIONS(749), - [anon_sym_macro_rules_BANG] = ACTIONS(749), - [anon_sym_LPAREN] = ACTIONS(749), - [anon_sym_LBRACE] = ACTIONS(749), - [anon_sym_RBRACE] = ACTIONS(749), - [anon_sym_LBRACK] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(751), - [anon_sym_STAR] = ACTIONS(751), - [anon_sym_QMARK] = ACTIONS(749), - [anon_sym_SQUOTE] = ACTIONS(751), - [anon_sym_as] = ACTIONS(751), - [anon_sym_async] = ACTIONS(751), - [anon_sym_break] = ACTIONS(751), - [anon_sym_const] = ACTIONS(751), - [anon_sym_continue] = ACTIONS(751), - [anon_sym_default] = ACTIONS(751), - [anon_sym_enum] = ACTIONS(751), - [anon_sym_fn] = ACTIONS(751), - [anon_sym_for] = ACTIONS(751), - [anon_sym_if] = ACTIONS(751), - [anon_sym_impl] = ACTIONS(751), - [anon_sym_let] = ACTIONS(751), - [anon_sym_loop] = ACTIONS(751), - [anon_sym_match] = ACTIONS(751), - [anon_sym_mod] = ACTIONS(751), - [anon_sym_pub] = ACTIONS(751), - [anon_sym_return] = ACTIONS(751), - [anon_sym_static] = ACTIONS(751), - [anon_sym_struct] = ACTIONS(751), - [anon_sym_trait] = ACTIONS(751), - [anon_sym_type] = ACTIONS(751), - [anon_sym_union] = ACTIONS(751), - [anon_sym_unsafe] = ACTIONS(751), - [anon_sym_use] = ACTIONS(751), - [anon_sym_while] = ACTIONS(751), - [anon_sym_POUND] = ACTIONS(749), - [anon_sym_BANG] = ACTIONS(751), - [anon_sym_EQ] = ACTIONS(751), - [anon_sym_extern] = ACTIONS(751), - [anon_sym_LT] = ACTIONS(751), - [anon_sym_GT] = ACTIONS(751), - [anon_sym_COLON_COLON] = ACTIONS(749), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_DOT_DOT_DOT] = ACTIONS(749), - [anon_sym_DOT_DOT] = ACTIONS(751), - [anon_sym_DOT_DOT_EQ] = ACTIONS(749), - [anon_sym_DASH] = ACTIONS(751), - [anon_sym_AMP_AMP] = ACTIONS(749), - [anon_sym_PIPE_PIPE] = ACTIONS(749), - [anon_sym_PIPE] = ACTIONS(751), - [anon_sym_CARET] = ACTIONS(751), - [anon_sym_EQ_EQ] = ACTIONS(749), - [anon_sym_BANG_EQ] = ACTIONS(749), - [anon_sym_LT_EQ] = ACTIONS(749), - [anon_sym_GT_EQ] = ACTIONS(749), - [anon_sym_LT_LT] = ACTIONS(751), - [anon_sym_GT_GT] = ACTIONS(751), - [anon_sym_SLASH] = ACTIONS(751), - [anon_sym_PERCENT] = ACTIONS(751), - [anon_sym_PLUS_EQ] = ACTIONS(749), - [anon_sym_DASH_EQ] = ACTIONS(749), - [anon_sym_STAR_EQ] = ACTIONS(749), - [anon_sym_SLASH_EQ] = ACTIONS(749), - [anon_sym_PERCENT_EQ] = ACTIONS(749), - [anon_sym_AMP_EQ] = ACTIONS(749), - [anon_sym_PIPE_EQ] = ACTIONS(749), - [anon_sym_CARET_EQ] = ACTIONS(749), - [anon_sym_LT_LT_EQ] = ACTIONS(749), - [anon_sym_GT_GT_EQ] = ACTIONS(749), - [anon_sym_yield] = ACTIONS(751), - [anon_sym_move] = ACTIONS(751), - [anon_sym_DOT] = ACTIONS(751), - [sym_integer_literal] = ACTIONS(749), - [aux_sym_string_literal_token1] = ACTIONS(749), - [sym_char_literal] = ACTIONS(749), - [anon_sym_true] = ACTIONS(751), - [anon_sym_false] = ACTIONS(751), - [anon_sym_u8] = ACTIONS(751), - [anon_sym_i8] = ACTIONS(751), - [anon_sym_u16] = ACTIONS(751), - [anon_sym_i16] = ACTIONS(751), - [anon_sym_u32] = ACTIONS(751), - [anon_sym_i32] = ACTIONS(751), - [anon_sym_u64] = ACTIONS(751), - [anon_sym_i64] = ACTIONS(751), - [anon_sym_u128] = ACTIONS(751), - [anon_sym_i128] = ACTIONS(751), - [anon_sym_isize] = ACTIONS(751), - [anon_sym_usize] = ACTIONS(751), - [anon_sym_f32] = ACTIONS(751), - [anon_sym_f64] = ACTIONS(751), - [anon_sym_bool] = ACTIONS(751), - [anon_sym_str] = ACTIONS(751), - [anon_sym_char] = ACTIONS(751), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(749), - [sym_self] = ACTIONS(751), - [sym_super] = ACTIONS(751), - [sym_crate] = ACTIONS(751), - [sym_metavariable] = ACTIONS(749), - [sym_grit_metavariable] = ACTIONS(749), - [sym_raw_string_literal] = ACTIONS(749), - [sym_float_literal] = ACTIONS(749), - [sym_block_comment] = ACTIONS(3), - }, - [97] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2320), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1338), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1139), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1220), - [sym_identifier] = STATE(834), - [sym__primitive_identifier] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(447), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_async] = ACTIONS(453), - [anon_sym_break] = ACTIONS(25), - [anon_sym_const] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(29), - [anon_sym_default] = ACTIONS(457), - [anon_sym_for] = ACTIONS(459), - [anon_sym_if] = ACTIONS(461), - [anon_sym_loop] = ACTIONS(463), - [anon_sym_match] = ACTIONS(465), - [anon_sym_return] = ACTIONS(53), - [anon_sym_union] = ACTIONS(457), - [anon_sym_unsafe] = ACTIONS(467), - [anon_sym_while] = ACTIONS(469), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_AMP] = ACTIONS(79), - [anon_sym_DOT_DOT] = ACTIONS(81), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(83), - [anon_sym_yield] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [anon_sym_u8] = ACTIONS(95), - [anon_sym_i8] = ACTIONS(95), - [anon_sym_u16] = ACTIONS(95), - [anon_sym_i16] = ACTIONS(95), - [anon_sym_u32] = ACTIONS(95), - [anon_sym_i32] = ACTIONS(95), - [anon_sym_u64] = ACTIONS(95), - [anon_sym_i64] = ACTIONS(95), - [anon_sym_u128] = ACTIONS(95), - [anon_sym_i128] = ACTIONS(95), - [anon_sym_isize] = ACTIONS(95), - [anon_sym_usize] = ACTIONS(95), - [anon_sym_f32] = ACTIONS(95), - [anon_sym_f64] = ACTIONS(95), - [anon_sym_bool] = ACTIONS(95), - [anon_sym_str] = ACTIONS(95), - [anon_sym_char] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(97), - [sym_self] = ACTIONS(99), - [sym_super] = ACTIONS(101), - [sym_crate] = ACTIONS(101), - [sym_metavariable] = ACTIONS(105), - [sym_grit_metavariable] = ACTIONS(473), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [98] = { - [ts_builtin_sym_end] = ACTIONS(753), - [sym__primitive_identifier] = ACTIONS(755), - [anon_sym_SEMI] = ACTIONS(753), - [anon_sym_macro_rules_BANG] = ACTIONS(753), - [anon_sym_LPAREN] = ACTIONS(753), - [anon_sym_LBRACE] = ACTIONS(753), - [anon_sym_RBRACE] = ACTIONS(753), - [anon_sym_LBRACK] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(755), - [anon_sym_STAR] = ACTIONS(755), - [anon_sym_QMARK] = ACTIONS(753), - [anon_sym_SQUOTE] = ACTIONS(755), - [anon_sym_as] = ACTIONS(755), - [anon_sym_async] = ACTIONS(755), - [anon_sym_break] = ACTIONS(755), - [anon_sym_const] = ACTIONS(755), - [anon_sym_continue] = ACTIONS(755), - [anon_sym_default] = ACTIONS(755), - [anon_sym_enum] = ACTIONS(755), - [anon_sym_fn] = ACTIONS(755), - [anon_sym_for] = ACTIONS(755), - [anon_sym_if] = ACTIONS(755), - [anon_sym_impl] = ACTIONS(755), - [anon_sym_let] = ACTIONS(755), - [anon_sym_loop] = ACTIONS(755), - [anon_sym_match] = ACTIONS(755), - [anon_sym_mod] = ACTIONS(755), - [anon_sym_pub] = ACTIONS(755), - [anon_sym_return] = ACTIONS(755), - [anon_sym_static] = ACTIONS(755), - [anon_sym_struct] = ACTIONS(755), - [anon_sym_trait] = ACTIONS(755), - [anon_sym_type] = ACTIONS(755), - [anon_sym_union] = ACTIONS(755), - [anon_sym_unsafe] = ACTIONS(755), - [anon_sym_use] = ACTIONS(755), - [anon_sym_while] = ACTIONS(755), - [anon_sym_POUND] = ACTIONS(753), - [anon_sym_BANG] = ACTIONS(755), - [anon_sym_EQ] = ACTIONS(755), - [anon_sym_extern] = ACTIONS(755), - [anon_sym_LT] = ACTIONS(755), - [anon_sym_GT] = ACTIONS(755), - [anon_sym_COLON_COLON] = ACTIONS(753), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_DOT_DOT_DOT] = ACTIONS(753), - [anon_sym_DOT_DOT] = ACTIONS(755), - [anon_sym_DOT_DOT_EQ] = ACTIONS(753), - [anon_sym_DASH] = ACTIONS(755), - [anon_sym_AMP_AMP] = ACTIONS(753), - [anon_sym_PIPE_PIPE] = ACTIONS(753), - [anon_sym_PIPE] = ACTIONS(755), - [anon_sym_CARET] = ACTIONS(755), - [anon_sym_EQ_EQ] = ACTIONS(753), - [anon_sym_BANG_EQ] = ACTIONS(753), - [anon_sym_LT_EQ] = ACTIONS(753), - [anon_sym_GT_EQ] = ACTIONS(753), - [anon_sym_LT_LT] = ACTIONS(755), - [anon_sym_GT_GT] = ACTIONS(755), - [anon_sym_SLASH] = ACTIONS(755), - [anon_sym_PERCENT] = ACTIONS(755), - [anon_sym_PLUS_EQ] = ACTIONS(753), - [anon_sym_DASH_EQ] = ACTIONS(753), - [anon_sym_STAR_EQ] = ACTIONS(753), - [anon_sym_SLASH_EQ] = ACTIONS(753), - [anon_sym_PERCENT_EQ] = ACTIONS(753), - [anon_sym_AMP_EQ] = ACTIONS(753), - [anon_sym_PIPE_EQ] = ACTIONS(753), - [anon_sym_CARET_EQ] = ACTIONS(753), - [anon_sym_LT_LT_EQ] = ACTIONS(753), - [anon_sym_GT_GT_EQ] = ACTIONS(753), - [anon_sym_yield] = ACTIONS(755), - [anon_sym_move] = ACTIONS(755), - [anon_sym_DOT] = ACTIONS(755), - [sym_integer_literal] = ACTIONS(753), - [aux_sym_string_literal_token1] = ACTIONS(753), - [sym_char_literal] = ACTIONS(753), - [anon_sym_true] = ACTIONS(755), - [anon_sym_false] = ACTIONS(755), - [anon_sym_u8] = ACTIONS(755), - [anon_sym_i8] = ACTIONS(755), - [anon_sym_u16] = ACTIONS(755), - [anon_sym_i16] = ACTIONS(755), - [anon_sym_u32] = ACTIONS(755), - [anon_sym_i32] = ACTIONS(755), - [anon_sym_u64] = ACTIONS(755), - [anon_sym_i64] = ACTIONS(755), - [anon_sym_u128] = ACTIONS(755), - [anon_sym_i128] = ACTIONS(755), - [anon_sym_isize] = ACTIONS(755), - [anon_sym_usize] = ACTIONS(755), - [anon_sym_f32] = ACTIONS(755), - [anon_sym_f64] = ACTIONS(755), - [anon_sym_bool] = ACTIONS(755), - [anon_sym_str] = ACTIONS(755), - [anon_sym_char] = ACTIONS(755), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(753), - [sym_self] = ACTIONS(755), - [sym_super] = ACTIONS(755), - [sym_crate] = ACTIONS(755), - [sym_metavariable] = ACTIONS(753), - [sym_grit_metavariable] = ACTIONS(753), - [sym_raw_string_literal] = ACTIONS(753), - [sym_float_literal] = ACTIONS(753), + [95] = { + [ts_builtin_sym_end] = ACTIONS(731), + [sym__primitive_identifier] = ACTIONS(733), + [anon_sym_SEMI] = ACTIONS(731), + [anon_sym_macro_rules_BANG] = ACTIONS(731), + [anon_sym_LPAREN] = ACTIONS(731), + [anon_sym_LBRACE] = ACTIONS(731), + [anon_sym_RBRACE] = ACTIONS(731), + [anon_sym_LBRACK] = ACTIONS(731), + [anon_sym_PLUS] = ACTIONS(733), + [anon_sym_STAR] = ACTIONS(733), + [anon_sym_QMARK] = ACTIONS(731), + [anon_sym_SQUOTE] = ACTIONS(733), + [anon_sym_as] = ACTIONS(733), + [anon_sym_async] = ACTIONS(733), + [anon_sym_break] = ACTIONS(733), + [anon_sym_const] = ACTIONS(733), + [anon_sym_continue] = ACTIONS(733), + [anon_sym_default] = ACTIONS(733), + [anon_sym_enum] = ACTIONS(733), + [anon_sym_fn] = ACTIONS(733), + [anon_sym_for] = ACTIONS(733), + [anon_sym_if] = ACTIONS(733), + [anon_sym_impl] = ACTIONS(733), + [anon_sym_let] = ACTIONS(733), + [anon_sym_loop] = ACTIONS(733), + [anon_sym_match] = ACTIONS(733), + [anon_sym_mod] = ACTIONS(733), + [anon_sym_pub] = ACTIONS(733), + [anon_sym_return] = ACTIONS(733), + [anon_sym_static] = ACTIONS(733), + [anon_sym_struct] = ACTIONS(733), + [anon_sym_trait] = ACTIONS(733), + [anon_sym_type] = ACTIONS(733), + [anon_sym_union] = ACTIONS(733), + [anon_sym_unsafe] = ACTIONS(733), + [anon_sym_use] = ACTIONS(733), + [anon_sym_while] = ACTIONS(733), + [anon_sym_POUND] = ACTIONS(731), + [anon_sym_BANG] = ACTIONS(733), + [anon_sym_EQ] = ACTIONS(733), + [anon_sym_extern] = ACTIONS(733), + [anon_sym_LT] = ACTIONS(733), + [anon_sym_GT] = ACTIONS(733), + [anon_sym_COLON_COLON] = ACTIONS(731), + [anon_sym_AMP] = ACTIONS(733), + [anon_sym_DOT_DOT_DOT] = ACTIONS(731), + [anon_sym_DOT_DOT] = ACTIONS(733), + [anon_sym_DOT_DOT_EQ] = ACTIONS(731), + [anon_sym_DASH] = ACTIONS(733), + [anon_sym_AMP_AMP] = ACTIONS(731), + [anon_sym_PIPE_PIPE] = ACTIONS(731), + [anon_sym_PIPE] = ACTIONS(733), + [anon_sym_CARET] = ACTIONS(733), + [anon_sym_EQ_EQ] = ACTIONS(731), + [anon_sym_BANG_EQ] = ACTIONS(731), + [anon_sym_LT_EQ] = ACTIONS(731), + [anon_sym_GT_EQ] = ACTIONS(731), + [anon_sym_LT_LT] = ACTIONS(733), + [anon_sym_GT_GT] = ACTIONS(733), + [anon_sym_SLASH] = ACTIONS(733), + [anon_sym_PERCENT] = ACTIONS(733), + [anon_sym_PLUS_EQ] = ACTIONS(731), + [anon_sym_DASH_EQ] = ACTIONS(731), + [anon_sym_STAR_EQ] = ACTIONS(731), + [anon_sym_SLASH_EQ] = ACTIONS(731), + [anon_sym_PERCENT_EQ] = ACTIONS(731), + [anon_sym_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_EQ] = ACTIONS(731), + [anon_sym_CARET_EQ] = ACTIONS(731), + [anon_sym_LT_LT_EQ] = ACTIONS(731), + [anon_sym_GT_GT_EQ] = ACTIONS(731), + [anon_sym_yield] = ACTIONS(733), + [anon_sym_move] = ACTIONS(733), + [anon_sym_DOT] = ACTIONS(733), + [sym_integer_literal] = ACTIONS(731), + [aux_sym_string_literal_token1] = ACTIONS(731), + [sym_char_literal] = ACTIONS(731), + [anon_sym_true] = ACTIONS(733), + [anon_sym_false] = ACTIONS(733), + [anon_sym_u8] = ACTIONS(733), + [anon_sym_i8] = ACTIONS(733), + [anon_sym_u16] = ACTIONS(733), + [anon_sym_i16] = ACTIONS(733), + [anon_sym_u32] = ACTIONS(733), + [anon_sym_i32] = ACTIONS(733), + [anon_sym_u64] = ACTIONS(733), + [anon_sym_i64] = ACTIONS(733), + [anon_sym_u128] = ACTIONS(733), + [anon_sym_i128] = ACTIONS(733), + [anon_sym_isize] = ACTIONS(733), + [anon_sym_usize] = ACTIONS(733), + [anon_sym_f32] = ACTIONS(733), + [anon_sym_f64] = ACTIONS(733), + [anon_sym_bool] = ACTIONS(733), + [anon_sym_str] = ACTIONS(733), + [anon_sym_char] = ACTIONS(733), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(731), + [sym_self] = ACTIONS(733), + [sym_super] = ACTIONS(733), + [sym_crate] = ACTIONS(733), + [sym_metavariable] = ACTIONS(731), + [sym_grit_metavariable] = ACTIONS(731), + [sym_raw_string_literal] = ACTIONS(731), + [sym_float_literal] = ACTIONS(731), [sym_block_comment] = ACTIONS(3), }, - [99] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2289), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1349), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1296), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(65), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1311), - [sym_identifier] = STATE(1290), + [96] = { + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2305), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1324), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1308), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(74), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1313), + [sym_identifier] = STATE(1295), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(447), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(545), + [anon_sym_STAR] = ACTIONS(547), [anon_sym_SQUOTE] = ACTIONS(21), [anon_sym_async] = ACTIONS(453), [anon_sym_break] = ACTIONS(505), @@ -32217,12 +31932,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(507), [anon_sym_unsafe] = ACTIONS(467), [anon_sym_while] = ACTIONS(469), - [anon_sym_BANG] = ACTIONS(545), + [anon_sym_BANG] = ACTIONS(547), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_AMP] = ACTIONS(549), - [anon_sym_DOT_DOT] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(551), + [anon_sym_DOT_DOT] = ACTIONS(553), + [anon_sym_DASH] = ACTIONS(547), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(515), [anon_sym_move] = ACTIONS(517), @@ -32259,72 +31974,180 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [100] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2320), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1337), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1139), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1220), - [sym_identifier] = STATE(834), + [97] = { + [ts_builtin_sym_end] = ACTIONS(735), + [sym__primitive_identifier] = ACTIONS(737), + [anon_sym_SEMI] = ACTIONS(735), + [anon_sym_macro_rules_BANG] = ACTIONS(735), + [anon_sym_LPAREN] = ACTIONS(735), + [anon_sym_LBRACE] = ACTIONS(735), + [anon_sym_RBRACE] = ACTIONS(735), + [anon_sym_LBRACK] = ACTIONS(735), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_STAR] = ACTIONS(737), + [anon_sym_QMARK] = ACTIONS(735), + [anon_sym_SQUOTE] = ACTIONS(737), + [anon_sym_as] = ACTIONS(737), + [anon_sym_async] = ACTIONS(737), + [anon_sym_break] = ACTIONS(737), + [anon_sym_const] = ACTIONS(737), + [anon_sym_continue] = ACTIONS(737), + [anon_sym_default] = ACTIONS(737), + [anon_sym_enum] = ACTIONS(737), + [anon_sym_fn] = ACTIONS(737), + [anon_sym_for] = ACTIONS(737), + [anon_sym_if] = ACTIONS(737), + [anon_sym_impl] = ACTIONS(737), + [anon_sym_let] = ACTIONS(737), + [anon_sym_loop] = ACTIONS(737), + [anon_sym_match] = ACTIONS(737), + [anon_sym_mod] = ACTIONS(737), + [anon_sym_pub] = ACTIONS(737), + [anon_sym_return] = ACTIONS(737), + [anon_sym_static] = ACTIONS(737), + [anon_sym_struct] = ACTIONS(737), + [anon_sym_trait] = ACTIONS(737), + [anon_sym_type] = ACTIONS(737), + [anon_sym_union] = ACTIONS(737), + [anon_sym_unsafe] = ACTIONS(737), + [anon_sym_use] = ACTIONS(737), + [anon_sym_while] = ACTIONS(737), + [anon_sym_POUND] = ACTIONS(735), + [anon_sym_BANG] = ACTIONS(737), + [anon_sym_EQ] = ACTIONS(737), + [anon_sym_extern] = ACTIONS(737), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_GT] = ACTIONS(737), + [anon_sym_COLON_COLON] = ACTIONS(735), + [anon_sym_AMP] = ACTIONS(737), + [anon_sym_DOT_DOT_DOT] = ACTIONS(735), + [anon_sym_DOT_DOT] = ACTIONS(737), + [anon_sym_DOT_DOT_EQ] = ACTIONS(735), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_AMP_AMP] = ACTIONS(735), + [anon_sym_PIPE_PIPE] = ACTIONS(735), + [anon_sym_PIPE] = ACTIONS(737), + [anon_sym_CARET] = ACTIONS(737), + [anon_sym_EQ_EQ] = ACTIONS(735), + [anon_sym_BANG_EQ] = ACTIONS(735), + [anon_sym_LT_EQ] = ACTIONS(735), + [anon_sym_GT_EQ] = ACTIONS(735), + [anon_sym_LT_LT] = ACTIONS(737), + [anon_sym_GT_GT] = ACTIONS(737), + [anon_sym_SLASH] = ACTIONS(737), + [anon_sym_PERCENT] = ACTIONS(737), + [anon_sym_PLUS_EQ] = ACTIONS(735), + [anon_sym_DASH_EQ] = ACTIONS(735), + [anon_sym_STAR_EQ] = ACTIONS(735), + [anon_sym_SLASH_EQ] = ACTIONS(735), + [anon_sym_PERCENT_EQ] = ACTIONS(735), + [anon_sym_AMP_EQ] = ACTIONS(735), + [anon_sym_PIPE_EQ] = ACTIONS(735), + [anon_sym_CARET_EQ] = ACTIONS(735), + [anon_sym_LT_LT_EQ] = ACTIONS(735), + [anon_sym_GT_GT_EQ] = ACTIONS(735), + [anon_sym_yield] = ACTIONS(737), + [anon_sym_move] = ACTIONS(737), + [anon_sym_DOT] = ACTIONS(737), + [sym_integer_literal] = ACTIONS(735), + [aux_sym_string_literal_token1] = ACTIONS(735), + [sym_char_literal] = ACTIONS(735), + [anon_sym_true] = ACTIONS(737), + [anon_sym_false] = ACTIONS(737), + [anon_sym_u8] = ACTIONS(737), + [anon_sym_i8] = ACTIONS(737), + [anon_sym_u16] = ACTIONS(737), + [anon_sym_i16] = ACTIONS(737), + [anon_sym_u32] = ACTIONS(737), + [anon_sym_i32] = ACTIONS(737), + [anon_sym_u64] = ACTIONS(737), + [anon_sym_i64] = ACTIONS(737), + [anon_sym_u128] = ACTIONS(737), + [anon_sym_i128] = ACTIONS(737), + [anon_sym_isize] = ACTIONS(737), + [anon_sym_usize] = ACTIONS(737), + [anon_sym_f32] = ACTIONS(737), + [anon_sym_f64] = ACTIONS(737), + [anon_sym_bool] = ACTIONS(737), + [anon_sym_str] = ACTIONS(737), + [anon_sym_char] = ACTIONS(737), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(735), + [sym_self] = ACTIONS(737), + [sym_super] = ACTIONS(737), + [sym_crate] = ACTIONS(737), + [sym_metavariable] = ACTIONS(735), + [sym_grit_metavariable] = ACTIONS(735), + [sym_raw_string_literal] = ACTIONS(735), + [sym_float_literal] = ACTIONS(735), + [sym_block_comment] = ACTIONS(3), + }, + [98] = { + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2176), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1413), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1159), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(242), + [sym_match_expression] = STATE(242), + [sym_while_expression] = STATE(242), + [sym_loop_expression] = STATE(242), + [sym_for_expression] = STATE(242), + [sym_const_block] = STATE(242), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(65), + [sym_loop_label] = STATE(2740), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(242), + [sym_async_block] = STATE(242), + [sym_block] = STATE(242), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1189), + [sym_identifier] = STATE(833), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(447), + [anon_sym_LBRACE] = ACTIONS(739), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_async] = ACTIONS(453), + [anon_sym_async] = ACTIONS(741), [anon_sym_break] = ACTIONS(25), - [anon_sym_const] = ACTIONS(455), + [anon_sym_const] = ACTIONS(743), [anon_sym_continue] = ACTIONS(29), [anon_sym_default] = ACTIONS(457), - [anon_sym_for] = ACTIONS(459), - [anon_sym_if] = ACTIONS(461), - [anon_sym_loop] = ACTIONS(463), - [anon_sym_match] = ACTIONS(465), + [anon_sym_for] = ACTIONS(745), + [anon_sym_if] = ACTIONS(747), + [anon_sym_loop] = ACTIONS(749), + [anon_sym_match] = ACTIONS(751), [anon_sym_return] = ACTIONS(53), [anon_sym_union] = ACTIONS(457), - [anon_sym_unsafe] = ACTIONS(467), - [anon_sym_while] = ACTIONS(469), + [anon_sym_unsafe] = ACTIONS(753), + [anon_sym_while] = ACTIONS(755), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(77), @@ -32367,161 +32190,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [101] = { - [ts_builtin_sym_end] = ACTIONS(757), - [sym__primitive_identifier] = ACTIONS(759), - [anon_sym_SEMI] = ACTIONS(757), - [anon_sym_macro_rules_BANG] = ACTIONS(757), - [anon_sym_LPAREN] = ACTIONS(757), - [anon_sym_LBRACE] = ACTIONS(757), - [anon_sym_RBRACE] = ACTIONS(757), - [anon_sym_LBRACK] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_STAR] = ACTIONS(759), - [anon_sym_QMARK] = ACTIONS(757), - [anon_sym_SQUOTE] = ACTIONS(759), - [anon_sym_as] = ACTIONS(759), - [anon_sym_async] = ACTIONS(759), - [anon_sym_break] = ACTIONS(759), - [anon_sym_const] = ACTIONS(759), - [anon_sym_continue] = ACTIONS(759), - [anon_sym_default] = ACTIONS(759), - [anon_sym_enum] = ACTIONS(759), - [anon_sym_fn] = ACTIONS(759), - [anon_sym_for] = ACTIONS(759), - [anon_sym_if] = ACTIONS(759), - [anon_sym_impl] = ACTIONS(759), - [anon_sym_let] = ACTIONS(759), - [anon_sym_loop] = ACTIONS(759), - [anon_sym_match] = ACTIONS(759), - [anon_sym_mod] = ACTIONS(759), - [anon_sym_pub] = ACTIONS(759), - [anon_sym_return] = ACTIONS(759), - [anon_sym_static] = ACTIONS(759), - [anon_sym_struct] = ACTIONS(759), - [anon_sym_trait] = ACTIONS(759), - [anon_sym_type] = ACTIONS(759), - [anon_sym_union] = ACTIONS(759), - [anon_sym_unsafe] = ACTIONS(759), - [anon_sym_use] = ACTIONS(759), - [anon_sym_while] = ACTIONS(759), - [anon_sym_POUND] = ACTIONS(757), - [anon_sym_BANG] = ACTIONS(759), - [anon_sym_EQ] = ACTIONS(759), - [anon_sym_extern] = ACTIONS(759), - [anon_sym_LT] = ACTIONS(759), - [anon_sym_GT] = ACTIONS(759), - [anon_sym_COLON_COLON] = ACTIONS(757), - [anon_sym_AMP] = ACTIONS(759), - [anon_sym_DOT_DOT_DOT] = ACTIONS(757), - [anon_sym_DOT_DOT] = ACTIONS(759), - [anon_sym_DOT_DOT_EQ] = ACTIONS(757), - [anon_sym_DASH] = ACTIONS(759), - [anon_sym_AMP_AMP] = ACTIONS(757), - [anon_sym_PIPE_PIPE] = ACTIONS(757), - [anon_sym_PIPE] = ACTIONS(759), - [anon_sym_CARET] = ACTIONS(759), - [anon_sym_EQ_EQ] = ACTIONS(757), - [anon_sym_BANG_EQ] = ACTIONS(757), - [anon_sym_LT_EQ] = ACTIONS(757), - [anon_sym_GT_EQ] = ACTIONS(757), - [anon_sym_LT_LT] = ACTIONS(759), - [anon_sym_GT_GT] = ACTIONS(759), - [anon_sym_SLASH] = ACTIONS(759), - [anon_sym_PERCENT] = ACTIONS(759), - [anon_sym_PLUS_EQ] = ACTIONS(757), - [anon_sym_DASH_EQ] = ACTIONS(757), - [anon_sym_STAR_EQ] = ACTIONS(757), - [anon_sym_SLASH_EQ] = ACTIONS(757), - [anon_sym_PERCENT_EQ] = ACTIONS(757), - [anon_sym_AMP_EQ] = ACTIONS(757), - [anon_sym_PIPE_EQ] = ACTIONS(757), - [anon_sym_CARET_EQ] = ACTIONS(757), - [anon_sym_LT_LT_EQ] = ACTIONS(757), - [anon_sym_GT_GT_EQ] = ACTIONS(757), - [anon_sym_yield] = ACTIONS(759), - [anon_sym_move] = ACTIONS(759), - [anon_sym_DOT] = ACTIONS(759), - [sym_integer_literal] = ACTIONS(757), - [aux_sym_string_literal_token1] = ACTIONS(757), - [sym_char_literal] = ACTIONS(757), - [anon_sym_true] = ACTIONS(759), - [anon_sym_false] = ACTIONS(759), - [anon_sym_u8] = ACTIONS(759), - [anon_sym_i8] = ACTIONS(759), - [anon_sym_u16] = ACTIONS(759), - [anon_sym_i16] = ACTIONS(759), - [anon_sym_u32] = ACTIONS(759), - [anon_sym_i32] = ACTIONS(759), - [anon_sym_u64] = ACTIONS(759), - [anon_sym_i64] = ACTIONS(759), - [anon_sym_u128] = ACTIONS(759), - [anon_sym_i128] = ACTIONS(759), - [anon_sym_isize] = ACTIONS(759), - [anon_sym_usize] = ACTIONS(759), - [anon_sym_f32] = ACTIONS(759), - [anon_sym_f64] = ACTIONS(759), - [anon_sym_bool] = ACTIONS(759), - [anon_sym_str] = ACTIONS(759), - [anon_sym_char] = ACTIONS(759), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(757), - [sym_self] = ACTIONS(759), - [sym_super] = ACTIONS(759), - [sym_crate] = ACTIONS(759), - [sym_metavariable] = ACTIONS(757), - [sym_grit_metavariable] = ACTIONS(757), - [sym_raw_string_literal] = ACTIONS(757), - [sym_float_literal] = ACTIONS(757), - [sym_block_comment] = ACTIONS(3), - }, - [102] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2320), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1260), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1139), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1220), - [sym_identifier] = STATE(834), + [99] = { + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2176), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1401), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1159), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(65), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1189), + [sym_identifier] = STATE(833), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(447), @@ -32545,7 +32260,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(77), [anon_sym_AMP] = ACTIONS(79), - [anon_sym_DOT_DOT] = ACTIONS(563), + [anon_sym_DOT_DOT] = ACTIONS(81), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(85), @@ -32583,189 +32298,189 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [103] = { - [ts_builtin_sym_end] = ACTIONS(721), - [sym__primitive_identifier] = ACTIONS(723), - [anon_sym_SEMI] = ACTIONS(761), - [anon_sym_macro_rules_BANG] = ACTIONS(721), - [anon_sym_LPAREN] = ACTIONS(761), - [anon_sym_LBRACE] = ACTIONS(765), - [anon_sym_RBRACE] = ACTIONS(761), - [anon_sym_LBRACK] = ACTIONS(761), - [anon_sym_PLUS] = ACTIONS(768), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_QMARK] = ACTIONS(775), - [anon_sym_SQUOTE] = ACTIONS(723), - [anon_sym_as] = ACTIONS(768), - [anon_sym_async] = ACTIONS(778), - [anon_sym_break] = ACTIONS(723), - [anon_sym_const] = ACTIONS(778), - [anon_sym_continue] = ACTIONS(723), - [anon_sym_default] = ACTIONS(778), - [anon_sym_enum] = ACTIONS(778), - [anon_sym_fn] = ACTIONS(778), - [anon_sym_for] = ACTIONS(723), - [anon_sym_if] = ACTIONS(723), - [anon_sym_impl] = ACTIONS(723), - [anon_sym_let] = ACTIONS(723), - [anon_sym_loop] = ACTIONS(723), - [anon_sym_match] = ACTIONS(723), - [anon_sym_mod] = ACTIONS(778), - [anon_sym_pub] = ACTIONS(723), - [anon_sym_return] = ACTIONS(723), - [anon_sym_static] = ACTIONS(778), - [anon_sym_struct] = ACTIONS(778), - [anon_sym_trait] = ACTIONS(778), - [anon_sym_type] = ACTIONS(778), - [anon_sym_union] = ACTIONS(778), - [anon_sym_unsafe] = ACTIONS(778), - [anon_sym_use] = ACTIONS(778), - [anon_sym_while] = ACTIONS(723), - [anon_sym_POUND] = ACTIONS(721), - [anon_sym_BANG] = ACTIONS(781), - [anon_sym_EQ] = ACTIONS(768), - [anon_sym_extern] = ACTIONS(778), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_GT] = ACTIONS(768), - [anon_sym_COLON_COLON] = ACTIONS(765), - [anon_sym_AMP] = ACTIONS(771), - [anon_sym_DOT_DOT_DOT] = ACTIONS(775), - [anon_sym_DOT_DOT] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(771), - [anon_sym_AMP_AMP] = ACTIONS(775), - [anon_sym_PIPE_PIPE] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_CARET] = ACTIONS(768), - [anon_sym_EQ_EQ] = ACTIONS(775), - [anon_sym_BANG_EQ] = ACTIONS(775), - [anon_sym_LT_EQ] = ACTIONS(775), - [anon_sym_GT_EQ] = ACTIONS(775), - [anon_sym_LT_LT] = ACTIONS(768), - [anon_sym_GT_GT] = ACTIONS(768), - [anon_sym_SLASH] = ACTIONS(768), - [anon_sym_PERCENT] = ACTIONS(768), - [anon_sym_PLUS_EQ] = ACTIONS(775), - [anon_sym_DASH_EQ] = ACTIONS(775), - [anon_sym_STAR_EQ] = ACTIONS(775), - [anon_sym_SLASH_EQ] = ACTIONS(775), - [anon_sym_PERCENT_EQ] = ACTIONS(775), - [anon_sym_AMP_EQ] = ACTIONS(775), - [anon_sym_PIPE_EQ] = ACTIONS(775), - [anon_sym_CARET_EQ] = ACTIONS(775), - [anon_sym_LT_LT_EQ] = ACTIONS(775), - [anon_sym_GT_GT_EQ] = ACTIONS(775), - [anon_sym_yield] = ACTIONS(723), - [anon_sym_move] = ACTIONS(723), - [anon_sym_DOT] = ACTIONS(768), - [sym_integer_literal] = ACTIONS(721), - [aux_sym_string_literal_token1] = ACTIONS(721), - [sym_char_literal] = ACTIONS(721), - [anon_sym_true] = ACTIONS(723), - [anon_sym_false] = ACTIONS(723), - [anon_sym_u8] = ACTIONS(723), - [anon_sym_i8] = ACTIONS(723), - [anon_sym_u16] = ACTIONS(723), - [anon_sym_i16] = ACTIONS(723), - [anon_sym_u32] = ACTIONS(723), - [anon_sym_i32] = ACTIONS(723), - [anon_sym_u64] = ACTIONS(723), - [anon_sym_i64] = ACTIONS(723), - [anon_sym_u128] = ACTIONS(723), - [anon_sym_i128] = ACTIONS(723), - [anon_sym_isize] = ACTIONS(723), - [anon_sym_usize] = ACTIONS(723), - [anon_sym_f32] = ACTIONS(723), - [anon_sym_f64] = ACTIONS(723), - [anon_sym_bool] = ACTIONS(723), - [anon_sym_str] = ACTIONS(723), - [anon_sym_char] = ACTIONS(723), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(721), - [sym_self] = ACTIONS(723), - [sym_super] = ACTIONS(723), - [sym_crate] = ACTIONS(723), - [sym_metavariable] = ACTIONS(721), - [sym_grit_metavariable] = ACTIONS(721), - [sym_raw_string_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(721), + [100] = { + [ts_builtin_sym_end] = ACTIONS(719), + [sym__primitive_identifier] = ACTIONS(721), + [anon_sym_SEMI] = ACTIONS(757), + [anon_sym_macro_rules_BANG] = ACTIONS(719), + [anon_sym_LPAREN] = ACTIONS(757), + [anon_sym_LBRACE] = ACTIONS(761), + [anon_sym_RBRACE] = ACTIONS(757), + [anon_sym_LBRACK] = ACTIONS(757), + [anon_sym_PLUS] = ACTIONS(764), + [anon_sym_STAR] = ACTIONS(767), + [anon_sym_QMARK] = ACTIONS(771), + [anon_sym_SQUOTE] = ACTIONS(721), + [anon_sym_as] = ACTIONS(764), + [anon_sym_async] = ACTIONS(774), + [anon_sym_break] = ACTIONS(721), + [anon_sym_const] = ACTIONS(774), + [anon_sym_continue] = ACTIONS(721), + [anon_sym_default] = ACTIONS(774), + [anon_sym_enum] = ACTIONS(774), + [anon_sym_fn] = ACTIONS(774), + [anon_sym_for] = ACTIONS(721), + [anon_sym_if] = ACTIONS(721), + [anon_sym_impl] = ACTIONS(721), + [anon_sym_let] = ACTIONS(721), + [anon_sym_loop] = ACTIONS(721), + [anon_sym_match] = ACTIONS(721), + [anon_sym_mod] = ACTIONS(774), + [anon_sym_pub] = ACTIONS(721), + [anon_sym_return] = ACTIONS(721), + [anon_sym_static] = ACTIONS(774), + [anon_sym_struct] = ACTIONS(774), + [anon_sym_trait] = ACTIONS(774), + [anon_sym_type] = ACTIONS(774), + [anon_sym_union] = ACTIONS(774), + [anon_sym_unsafe] = ACTIONS(774), + [anon_sym_use] = ACTIONS(774), + [anon_sym_while] = ACTIONS(721), + [anon_sym_POUND] = ACTIONS(719), + [anon_sym_BANG] = ACTIONS(777), + [anon_sym_EQ] = ACTIONS(764), + [anon_sym_extern] = ACTIONS(774), + [anon_sym_LT] = ACTIONS(767), + [anon_sym_GT] = ACTIONS(764), + [anon_sym_COLON_COLON] = ACTIONS(761), + [anon_sym_AMP] = ACTIONS(767), + [anon_sym_DOT_DOT_DOT] = ACTIONS(771), + [anon_sym_DOT_DOT] = ACTIONS(767), + [anon_sym_DOT_DOT_EQ] = ACTIONS(771), + [anon_sym_DASH] = ACTIONS(767), + [anon_sym_AMP_AMP] = ACTIONS(771), + [anon_sym_PIPE_PIPE] = ACTIONS(771), + [anon_sym_PIPE] = ACTIONS(767), + [anon_sym_CARET] = ACTIONS(764), + [anon_sym_EQ_EQ] = ACTIONS(771), + [anon_sym_BANG_EQ] = ACTIONS(771), + [anon_sym_LT_EQ] = ACTIONS(771), + [anon_sym_GT_EQ] = ACTIONS(771), + [anon_sym_LT_LT] = ACTIONS(764), + [anon_sym_GT_GT] = ACTIONS(764), + [anon_sym_SLASH] = ACTIONS(764), + [anon_sym_PERCENT] = ACTIONS(764), + [anon_sym_PLUS_EQ] = ACTIONS(771), + [anon_sym_DASH_EQ] = ACTIONS(771), + [anon_sym_STAR_EQ] = ACTIONS(771), + [anon_sym_SLASH_EQ] = ACTIONS(771), + [anon_sym_PERCENT_EQ] = ACTIONS(771), + [anon_sym_AMP_EQ] = ACTIONS(771), + [anon_sym_PIPE_EQ] = ACTIONS(771), + [anon_sym_CARET_EQ] = ACTIONS(771), + [anon_sym_LT_LT_EQ] = ACTIONS(771), + [anon_sym_GT_GT_EQ] = ACTIONS(771), + [anon_sym_yield] = ACTIONS(721), + [anon_sym_move] = ACTIONS(721), + [anon_sym_DOT] = ACTIONS(764), + [sym_integer_literal] = ACTIONS(719), + [aux_sym_string_literal_token1] = ACTIONS(719), + [sym_char_literal] = ACTIONS(719), + [anon_sym_true] = ACTIONS(721), + [anon_sym_false] = ACTIONS(721), + [anon_sym_u8] = ACTIONS(721), + [anon_sym_i8] = ACTIONS(721), + [anon_sym_u16] = ACTIONS(721), + [anon_sym_i16] = ACTIONS(721), + [anon_sym_u32] = ACTIONS(721), + [anon_sym_i32] = ACTIONS(721), + [anon_sym_u64] = ACTIONS(721), + [anon_sym_i64] = ACTIONS(721), + [anon_sym_u128] = ACTIONS(721), + [anon_sym_i128] = ACTIONS(721), + [anon_sym_isize] = ACTIONS(721), + [anon_sym_usize] = ACTIONS(721), + [anon_sym_f32] = ACTIONS(721), + [anon_sym_f64] = ACTIONS(721), + [anon_sym_bool] = ACTIONS(721), + [anon_sym_str] = ACTIONS(721), + [anon_sym_char] = ACTIONS(721), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(719), + [sym_self] = ACTIONS(721), + [sym_super] = ACTIONS(721), + [sym_crate] = ACTIONS(721), + [sym_metavariable] = ACTIONS(719), + [sym_grit_metavariable] = ACTIONS(719), + [sym_raw_string_literal] = ACTIONS(719), + [sym_float_literal] = ACTIONS(719), [sym_block_comment] = ACTIONS(3), }, - [104] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2320), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1268), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1139), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1220), - [sym_identifier] = STATE(834), + [101] = { + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2305), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1373), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1308), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(74), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1313), + [sym_identifier] = STATE(1295), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(447), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(547), [anon_sym_SQUOTE] = ACTIONS(21), [anon_sym_async] = ACTIONS(453), - [anon_sym_break] = ACTIONS(25), + [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(455), [anon_sym_continue] = ACTIONS(29), - [anon_sym_default] = ACTIONS(457), + [anon_sym_default] = ACTIONS(507), [anon_sym_for] = ACTIONS(459), [anon_sym_if] = ACTIONS(461), [anon_sym_loop] = ACTIONS(463), [anon_sym_match] = ACTIONS(465), - [anon_sym_return] = ACTIONS(53), - [anon_sym_union] = ACTIONS(457), + [anon_sym_return] = ACTIONS(509), + [anon_sym_union] = ACTIONS(507), [anon_sym_unsafe] = ACTIONS(467), [anon_sym_while] = ACTIONS(469), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(547), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_AMP] = ACTIONS(79), - [anon_sym_DOT_DOT] = ACTIONS(563), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_AMP] = ACTIONS(551), + [anon_sym_DOT_DOT] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(547), [anon_sym_PIPE] = ACTIONS(83), - [anon_sym_yield] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(515), + [anon_sym_move] = ACTIONS(517), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), @@ -32790,90 +32505,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), [sym__raw_identifier] = ACTIONS(97), - [sym_self] = ACTIONS(99), - [sym_super] = ACTIONS(101), - [sym_crate] = ACTIONS(101), - [sym_metavariable] = ACTIONS(105), - [sym_grit_metavariable] = ACTIONS(473), + [sym_self] = ACTIONS(519), + [sym_super] = ACTIONS(521), + [sym_crate] = ACTIONS(521), + [sym_metavariable] = ACTIONS(523), + [sym_grit_metavariable] = ACTIONS(525), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [105] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2320), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1255), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1139), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1220), - [sym_identifier] = STATE(834), + [102] = { + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2305), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1377), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1308), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(74), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1313), + [sym_identifier] = STATE(1295), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(447), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(547), [anon_sym_SQUOTE] = ACTIONS(21), [anon_sym_async] = ACTIONS(453), - [anon_sym_break] = ACTIONS(25), + [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(455), [anon_sym_continue] = ACTIONS(29), - [anon_sym_default] = ACTIONS(457), + [anon_sym_default] = ACTIONS(507), [anon_sym_for] = ACTIONS(459), [anon_sym_if] = ACTIONS(461), [anon_sym_loop] = ACTIONS(463), [anon_sym_match] = ACTIONS(465), - [anon_sym_return] = ACTIONS(53), - [anon_sym_union] = ACTIONS(457), + [anon_sym_return] = ACTIONS(509), + [anon_sym_union] = ACTIONS(507), [anon_sym_unsafe] = ACTIONS(467), [anon_sym_while] = ACTIONS(469), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(547), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_AMP] = ACTIONS(79), - [anon_sym_DOT_DOT] = ACTIONS(563), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_AMP] = ACTIONS(551), + [anon_sym_DOT_DOT] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(547), [anon_sym_PIPE] = ACTIONS(83), - [anon_sym_yield] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(515), + [anon_sym_move] = ACTIONS(517), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), @@ -32898,90 +32613,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), [sym__raw_identifier] = ACTIONS(97), - [sym_self] = ACTIONS(99), - [sym_super] = ACTIONS(101), - [sym_crate] = ACTIONS(101), - [sym_metavariable] = ACTIONS(105), - [sym_grit_metavariable] = ACTIONS(473), + [sym_self] = ACTIONS(519), + [sym_super] = ACTIONS(521), + [sym_crate] = ACTIONS(521), + [sym_metavariable] = ACTIONS(523), + [sym_grit_metavariable] = ACTIONS(525), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [106] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2320), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1267), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1139), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1220), - [sym_identifier] = STATE(834), + [103] = { + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2305), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1381), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1308), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(74), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1313), + [sym_identifier] = STATE(1295), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(447), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(547), [anon_sym_SQUOTE] = ACTIONS(21), [anon_sym_async] = ACTIONS(453), - [anon_sym_break] = ACTIONS(25), + [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(455), [anon_sym_continue] = ACTIONS(29), - [anon_sym_default] = ACTIONS(457), + [anon_sym_default] = ACTIONS(507), [anon_sym_for] = ACTIONS(459), [anon_sym_if] = ACTIONS(461), [anon_sym_loop] = ACTIONS(463), [anon_sym_match] = ACTIONS(465), - [anon_sym_return] = ACTIONS(53), - [anon_sym_union] = ACTIONS(457), + [anon_sym_return] = ACTIONS(509), + [anon_sym_union] = ACTIONS(507), [anon_sym_unsafe] = ACTIONS(467), [anon_sym_while] = ACTIONS(469), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(547), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_AMP] = ACTIONS(79), - [anon_sym_DOT_DOT] = ACTIONS(563), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_AMP] = ACTIONS(551), + [anon_sym_DOT_DOT] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(547), [anon_sym_PIPE] = ACTIONS(83), - [anon_sym_yield] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(515), + [anon_sym_move] = ACTIONS(517), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), @@ -33006,62 +32721,170 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), [sym__raw_identifier] = ACTIONS(97), - [sym_self] = ACTIONS(99), - [sym_super] = ACTIONS(101), - [sym_crate] = ACTIONS(101), - [sym_metavariable] = ACTIONS(105), - [sym_grit_metavariable] = ACTIONS(473), + [sym_self] = ACTIONS(519), + [sym_super] = ACTIONS(521), + [sym_crate] = ACTIONS(521), + [sym_metavariable] = ACTIONS(523), + [sym_grit_metavariable] = ACTIONS(525), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [107] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2320), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1269), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1139), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1220), - [sym_identifier] = STATE(834), + [104] = { + [ts_builtin_sym_end] = ACTIONS(780), + [sym__primitive_identifier] = ACTIONS(782), + [anon_sym_SEMI] = ACTIONS(780), + [anon_sym_macro_rules_BANG] = ACTIONS(780), + [anon_sym_LPAREN] = ACTIONS(780), + [anon_sym_LBRACE] = ACTIONS(780), + [anon_sym_RBRACE] = ACTIONS(780), + [anon_sym_LBRACK] = ACTIONS(780), + [anon_sym_PLUS] = ACTIONS(782), + [anon_sym_STAR] = ACTIONS(782), + [anon_sym_QMARK] = ACTIONS(780), + [anon_sym_SQUOTE] = ACTIONS(782), + [anon_sym_as] = ACTIONS(782), + [anon_sym_async] = ACTIONS(782), + [anon_sym_break] = ACTIONS(782), + [anon_sym_const] = ACTIONS(782), + [anon_sym_continue] = ACTIONS(782), + [anon_sym_default] = ACTIONS(782), + [anon_sym_enum] = ACTIONS(782), + [anon_sym_fn] = ACTIONS(782), + [anon_sym_for] = ACTIONS(782), + [anon_sym_if] = ACTIONS(782), + [anon_sym_impl] = ACTIONS(782), + [anon_sym_let] = ACTIONS(782), + [anon_sym_loop] = ACTIONS(782), + [anon_sym_match] = ACTIONS(782), + [anon_sym_mod] = ACTIONS(782), + [anon_sym_pub] = ACTIONS(782), + [anon_sym_return] = ACTIONS(782), + [anon_sym_static] = ACTIONS(782), + [anon_sym_struct] = ACTIONS(782), + [anon_sym_trait] = ACTIONS(782), + [anon_sym_type] = ACTIONS(782), + [anon_sym_union] = ACTIONS(782), + [anon_sym_unsafe] = ACTIONS(782), + [anon_sym_use] = ACTIONS(782), + [anon_sym_while] = ACTIONS(782), + [anon_sym_POUND] = ACTIONS(780), + [anon_sym_BANG] = ACTIONS(782), + [anon_sym_EQ] = ACTIONS(782), + [anon_sym_extern] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(782), + [anon_sym_GT] = ACTIONS(782), + [anon_sym_COLON_COLON] = ACTIONS(780), + [anon_sym_AMP] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(780), + [anon_sym_DOT_DOT] = ACTIONS(782), + [anon_sym_DOT_DOT_EQ] = ACTIONS(780), + [anon_sym_DASH] = ACTIONS(782), + [anon_sym_AMP_AMP] = ACTIONS(780), + [anon_sym_PIPE_PIPE] = ACTIONS(780), + [anon_sym_PIPE] = ACTIONS(782), + [anon_sym_CARET] = ACTIONS(782), + [anon_sym_EQ_EQ] = ACTIONS(780), + [anon_sym_BANG_EQ] = ACTIONS(780), + [anon_sym_LT_EQ] = ACTIONS(780), + [anon_sym_GT_EQ] = ACTIONS(780), + [anon_sym_LT_LT] = ACTIONS(782), + [anon_sym_GT_GT] = ACTIONS(782), + [anon_sym_SLASH] = ACTIONS(782), + [anon_sym_PERCENT] = ACTIONS(782), + [anon_sym_PLUS_EQ] = ACTIONS(780), + [anon_sym_DASH_EQ] = ACTIONS(780), + [anon_sym_STAR_EQ] = ACTIONS(780), + [anon_sym_SLASH_EQ] = ACTIONS(780), + [anon_sym_PERCENT_EQ] = ACTIONS(780), + [anon_sym_AMP_EQ] = ACTIONS(780), + [anon_sym_PIPE_EQ] = ACTIONS(780), + [anon_sym_CARET_EQ] = ACTIONS(780), + [anon_sym_LT_LT_EQ] = ACTIONS(780), + [anon_sym_GT_GT_EQ] = ACTIONS(780), + [anon_sym_yield] = ACTIONS(782), + [anon_sym_move] = ACTIONS(782), + [anon_sym_DOT] = ACTIONS(782), + [sym_integer_literal] = ACTIONS(780), + [aux_sym_string_literal_token1] = ACTIONS(780), + [sym_char_literal] = ACTIONS(780), + [anon_sym_true] = ACTIONS(782), + [anon_sym_false] = ACTIONS(782), + [anon_sym_u8] = ACTIONS(782), + [anon_sym_i8] = ACTIONS(782), + [anon_sym_u16] = ACTIONS(782), + [anon_sym_i16] = ACTIONS(782), + [anon_sym_u32] = ACTIONS(782), + [anon_sym_i32] = ACTIONS(782), + [anon_sym_u64] = ACTIONS(782), + [anon_sym_i64] = ACTIONS(782), + [anon_sym_u128] = ACTIONS(782), + [anon_sym_i128] = ACTIONS(782), + [anon_sym_isize] = ACTIONS(782), + [anon_sym_usize] = ACTIONS(782), + [anon_sym_f32] = ACTIONS(782), + [anon_sym_f64] = ACTIONS(782), + [anon_sym_bool] = ACTIONS(782), + [anon_sym_str] = ACTIONS(782), + [anon_sym_char] = ACTIONS(782), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(780), + [sym_self] = ACTIONS(782), + [sym_super] = ACTIONS(782), + [sym_crate] = ACTIONS(782), + [sym_metavariable] = ACTIONS(780), + [sym_grit_metavariable] = ACTIONS(780), + [sym_raw_string_literal] = ACTIONS(780), + [sym_float_literal] = ACTIONS(780), + [sym_block_comment] = ACTIONS(3), + }, + [105] = { + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2176), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1329), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1159), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(65), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1189), + [sym_identifier] = STATE(833), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(447), @@ -33085,7 +32908,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(77), [anon_sym_AMP] = ACTIONS(79), - [anon_sym_DOT_DOT] = ACTIONS(563), + [anon_sym_DOT_DOT] = ACTIONS(81), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(85), @@ -33123,81 +32946,189 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [108] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2320), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1259), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1139), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1220), - [sym_identifier] = STATE(834), + [106] = { + [ts_builtin_sym_end] = ACTIONS(784), + [sym__primitive_identifier] = ACTIONS(786), + [anon_sym_SEMI] = ACTIONS(784), + [anon_sym_macro_rules_BANG] = ACTIONS(784), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_LBRACE] = ACTIONS(784), + [anon_sym_RBRACE] = ACTIONS(784), + [anon_sym_LBRACK] = ACTIONS(784), + [anon_sym_PLUS] = ACTIONS(786), + [anon_sym_STAR] = ACTIONS(786), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_SQUOTE] = ACTIONS(786), + [anon_sym_as] = ACTIONS(786), + [anon_sym_async] = ACTIONS(786), + [anon_sym_break] = ACTIONS(786), + [anon_sym_const] = ACTIONS(786), + [anon_sym_continue] = ACTIONS(786), + [anon_sym_default] = ACTIONS(786), + [anon_sym_enum] = ACTIONS(786), + [anon_sym_fn] = ACTIONS(786), + [anon_sym_for] = ACTIONS(786), + [anon_sym_if] = ACTIONS(786), + [anon_sym_impl] = ACTIONS(786), + [anon_sym_let] = ACTIONS(786), + [anon_sym_loop] = ACTIONS(786), + [anon_sym_match] = ACTIONS(786), + [anon_sym_mod] = ACTIONS(786), + [anon_sym_pub] = ACTIONS(786), + [anon_sym_return] = ACTIONS(786), + [anon_sym_static] = ACTIONS(786), + [anon_sym_struct] = ACTIONS(786), + [anon_sym_trait] = ACTIONS(786), + [anon_sym_type] = ACTIONS(786), + [anon_sym_union] = ACTIONS(786), + [anon_sym_unsafe] = ACTIONS(786), + [anon_sym_use] = ACTIONS(786), + [anon_sym_while] = ACTIONS(786), + [anon_sym_POUND] = ACTIONS(784), + [anon_sym_BANG] = ACTIONS(786), + [anon_sym_EQ] = ACTIONS(786), + [anon_sym_extern] = ACTIONS(786), + [anon_sym_LT] = ACTIONS(786), + [anon_sym_GT] = ACTIONS(786), + [anon_sym_COLON_COLON] = ACTIONS(784), + [anon_sym_AMP] = ACTIONS(786), + [anon_sym_DOT_DOT_DOT] = ACTIONS(784), + [anon_sym_DOT_DOT] = ACTIONS(786), + [anon_sym_DOT_DOT_EQ] = ACTIONS(784), + [anon_sym_DASH] = ACTIONS(786), + [anon_sym_AMP_AMP] = ACTIONS(784), + [anon_sym_PIPE_PIPE] = ACTIONS(784), + [anon_sym_PIPE] = ACTIONS(786), + [anon_sym_CARET] = ACTIONS(786), + [anon_sym_EQ_EQ] = ACTIONS(784), + [anon_sym_BANG_EQ] = ACTIONS(784), + [anon_sym_LT_EQ] = ACTIONS(784), + [anon_sym_GT_EQ] = ACTIONS(784), + [anon_sym_LT_LT] = ACTIONS(786), + [anon_sym_GT_GT] = ACTIONS(786), + [anon_sym_SLASH] = ACTIONS(786), + [anon_sym_PERCENT] = ACTIONS(786), + [anon_sym_PLUS_EQ] = ACTIONS(784), + [anon_sym_DASH_EQ] = ACTIONS(784), + [anon_sym_STAR_EQ] = ACTIONS(784), + [anon_sym_SLASH_EQ] = ACTIONS(784), + [anon_sym_PERCENT_EQ] = ACTIONS(784), + [anon_sym_AMP_EQ] = ACTIONS(784), + [anon_sym_PIPE_EQ] = ACTIONS(784), + [anon_sym_CARET_EQ] = ACTIONS(784), + [anon_sym_LT_LT_EQ] = ACTIONS(784), + [anon_sym_GT_GT_EQ] = ACTIONS(784), + [anon_sym_yield] = ACTIONS(786), + [anon_sym_move] = ACTIONS(786), + [anon_sym_DOT] = ACTIONS(786), + [sym_integer_literal] = ACTIONS(784), + [aux_sym_string_literal_token1] = ACTIONS(784), + [sym_char_literal] = ACTIONS(784), + [anon_sym_true] = ACTIONS(786), + [anon_sym_false] = ACTIONS(786), + [anon_sym_u8] = ACTIONS(786), + [anon_sym_i8] = ACTIONS(786), + [anon_sym_u16] = ACTIONS(786), + [anon_sym_i16] = ACTIONS(786), + [anon_sym_u32] = ACTIONS(786), + [anon_sym_i32] = ACTIONS(786), + [anon_sym_u64] = ACTIONS(786), + [anon_sym_i64] = ACTIONS(786), + [anon_sym_u128] = ACTIONS(786), + [anon_sym_i128] = ACTIONS(786), + [anon_sym_isize] = ACTIONS(786), + [anon_sym_usize] = ACTIONS(786), + [anon_sym_f32] = ACTIONS(786), + [anon_sym_f64] = ACTIONS(786), + [anon_sym_bool] = ACTIONS(786), + [anon_sym_str] = ACTIONS(786), + [anon_sym_char] = ACTIONS(786), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(784), + [sym_self] = ACTIONS(786), + [sym_super] = ACTIONS(786), + [sym_crate] = ACTIONS(786), + [sym_metavariable] = ACTIONS(784), + [sym_grit_metavariable] = ACTIONS(784), + [sym_raw_string_literal] = ACTIONS(784), + [sym_float_literal] = ACTIONS(784), + [sym_block_comment] = ACTIONS(3), + }, + [107] = { + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2305), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1216), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1308), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(74), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1313), + [sym_identifier] = STATE(1295), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(447), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(547), [anon_sym_SQUOTE] = ACTIONS(21), [anon_sym_async] = ACTIONS(453), - [anon_sym_break] = ACTIONS(25), + [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(455), [anon_sym_continue] = ACTIONS(29), - [anon_sym_default] = ACTIONS(457), + [anon_sym_default] = ACTIONS(507), [anon_sym_for] = ACTIONS(459), [anon_sym_if] = ACTIONS(461), [anon_sym_loop] = ACTIONS(463), [anon_sym_match] = ACTIONS(465), - [anon_sym_return] = ACTIONS(53), - [anon_sym_union] = ACTIONS(457), + [anon_sym_return] = ACTIONS(509), + [anon_sym_union] = ACTIONS(507), [anon_sym_unsafe] = ACTIONS(467), [anon_sym_while] = ACTIONS(469), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(547), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_AMP] = ACTIONS(79), - [anon_sym_DOT_DOT] = ACTIONS(563), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_AMP] = ACTIONS(551), + [anon_sym_DOT_DOT] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(547), [anon_sym_PIPE] = ACTIONS(83), - [anon_sym_yield] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(515), + [anon_sym_move] = ACTIONS(517), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), @@ -33222,67 +33153,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), [sym__raw_identifier] = ACTIONS(97), - [sym_self] = ACTIONS(99), - [sym_super] = ACTIONS(101), - [sym_crate] = ACTIONS(101), - [sym_metavariable] = ACTIONS(105), - [sym_grit_metavariable] = ACTIONS(473), + [sym_self] = ACTIONS(519), + [sym_super] = ACTIONS(521), + [sym_crate] = ACTIONS(521), + [sym_metavariable] = ACTIONS(523), + [sym_grit_metavariable] = ACTIONS(525), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [109] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2289), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1411), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1296), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(65), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1311), - [sym_identifier] = STATE(1290), + [108] = { + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2305), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1390), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1308), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(74), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1313), + [sym_identifier] = STATE(1295), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(447), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(545), + [anon_sym_STAR] = ACTIONS(547), [anon_sym_SQUOTE] = ACTIONS(21), [anon_sym_async] = ACTIONS(453), [anon_sym_break] = ACTIONS(505), @@ -33297,12 +33228,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(507), [anon_sym_unsafe] = ACTIONS(467), [anon_sym_while] = ACTIONS(469), - [anon_sym_BANG] = ACTIONS(545), + [anon_sym_BANG] = ACTIONS(547), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_AMP] = ACTIONS(549), - [anon_sym_DOT_DOT] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(551), + [anon_sym_DOT_DOT] = ACTIONS(553), + [anon_sym_DASH] = ACTIONS(547), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(515), [anon_sym_move] = ACTIONS(517), @@ -33339,72 +33270,180 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, + [109] = { + [ts_builtin_sym_end] = ACTIONS(788), + [sym__primitive_identifier] = ACTIONS(790), + [anon_sym_SEMI] = ACTIONS(788), + [anon_sym_macro_rules_BANG] = ACTIONS(788), + [anon_sym_LPAREN] = ACTIONS(788), + [anon_sym_LBRACE] = ACTIONS(788), + [anon_sym_RBRACE] = ACTIONS(788), + [anon_sym_LBRACK] = ACTIONS(788), + [anon_sym_PLUS] = ACTIONS(790), + [anon_sym_STAR] = ACTIONS(790), + [anon_sym_QMARK] = ACTIONS(788), + [anon_sym_SQUOTE] = ACTIONS(790), + [anon_sym_as] = ACTIONS(790), + [anon_sym_async] = ACTIONS(790), + [anon_sym_break] = ACTIONS(790), + [anon_sym_const] = ACTIONS(790), + [anon_sym_continue] = ACTIONS(790), + [anon_sym_default] = ACTIONS(790), + [anon_sym_enum] = ACTIONS(790), + [anon_sym_fn] = ACTIONS(790), + [anon_sym_for] = ACTIONS(790), + [anon_sym_if] = ACTIONS(790), + [anon_sym_impl] = ACTIONS(790), + [anon_sym_let] = ACTIONS(790), + [anon_sym_loop] = ACTIONS(790), + [anon_sym_match] = ACTIONS(790), + [anon_sym_mod] = ACTIONS(790), + [anon_sym_pub] = ACTIONS(790), + [anon_sym_return] = ACTIONS(790), + [anon_sym_static] = ACTIONS(790), + [anon_sym_struct] = ACTIONS(790), + [anon_sym_trait] = ACTIONS(790), + [anon_sym_type] = ACTIONS(790), + [anon_sym_union] = ACTIONS(790), + [anon_sym_unsafe] = ACTIONS(790), + [anon_sym_use] = ACTIONS(790), + [anon_sym_while] = ACTIONS(790), + [anon_sym_POUND] = ACTIONS(788), + [anon_sym_BANG] = ACTIONS(790), + [anon_sym_EQ] = ACTIONS(790), + [anon_sym_extern] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(790), + [anon_sym_GT] = ACTIONS(790), + [anon_sym_COLON_COLON] = ACTIONS(788), + [anon_sym_AMP] = ACTIONS(790), + [anon_sym_DOT_DOT_DOT] = ACTIONS(788), + [anon_sym_DOT_DOT] = ACTIONS(790), + [anon_sym_DOT_DOT_EQ] = ACTIONS(788), + [anon_sym_DASH] = ACTIONS(790), + [anon_sym_AMP_AMP] = ACTIONS(788), + [anon_sym_PIPE_PIPE] = ACTIONS(788), + [anon_sym_PIPE] = ACTIONS(790), + [anon_sym_CARET] = ACTIONS(790), + [anon_sym_EQ_EQ] = ACTIONS(788), + [anon_sym_BANG_EQ] = ACTIONS(788), + [anon_sym_LT_EQ] = ACTIONS(788), + [anon_sym_GT_EQ] = ACTIONS(788), + [anon_sym_LT_LT] = ACTIONS(790), + [anon_sym_GT_GT] = ACTIONS(790), + [anon_sym_SLASH] = ACTIONS(790), + [anon_sym_PERCENT] = ACTIONS(790), + [anon_sym_PLUS_EQ] = ACTIONS(788), + [anon_sym_DASH_EQ] = ACTIONS(788), + [anon_sym_STAR_EQ] = ACTIONS(788), + [anon_sym_SLASH_EQ] = ACTIONS(788), + [anon_sym_PERCENT_EQ] = ACTIONS(788), + [anon_sym_AMP_EQ] = ACTIONS(788), + [anon_sym_PIPE_EQ] = ACTIONS(788), + [anon_sym_CARET_EQ] = ACTIONS(788), + [anon_sym_LT_LT_EQ] = ACTIONS(788), + [anon_sym_GT_GT_EQ] = ACTIONS(788), + [anon_sym_yield] = ACTIONS(790), + [anon_sym_move] = ACTIONS(790), + [anon_sym_DOT] = ACTIONS(790), + [sym_integer_literal] = ACTIONS(788), + [aux_sym_string_literal_token1] = ACTIONS(788), + [sym_char_literal] = ACTIONS(788), + [anon_sym_true] = ACTIONS(790), + [anon_sym_false] = ACTIONS(790), + [anon_sym_u8] = ACTIONS(790), + [anon_sym_i8] = ACTIONS(790), + [anon_sym_u16] = ACTIONS(790), + [anon_sym_i16] = ACTIONS(790), + [anon_sym_u32] = ACTIONS(790), + [anon_sym_i32] = ACTIONS(790), + [anon_sym_u64] = ACTIONS(790), + [anon_sym_i64] = ACTIONS(790), + [anon_sym_u128] = ACTIONS(790), + [anon_sym_i128] = ACTIONS(790), + [anon_sym_isize] = ACTIONS(790), + [anon_sym_usize] = ACTIONS(790), + [anon_sym_f32] = ACTIONS(790), + [anon_sym_f64] = ACTIONS(790), + [anon_sym_bool] = ACTIONS(790), + [anon_sym_str] = ACTIONS(790), + [anon_sym_char] = ACTIONS(790), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(788), + [sym_self] = ACTIONS(790), + [sym_super] = ACTIONS(790), + [sym_crate] = ACTIONS(790), + [sym_metavariable] = ACTIONS(788), + [sym_grit_metavariable] = ACTIONS(788), + [sym_raw_string_literal] = ACTIONS(788), + [sym_float_literal] = ACTIONS(788), + [sym_block_comment] = ACTIONS(3), + }, [110] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2320), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1412), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1139), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(241), - [sym_match_expression] = STATE(241), - [sym_while_expression] = STATE(241), - [sym_loop_expression] = STATE(241), - [sym_for_expression] = STATE(241), - [sym_const_block] = STATE(241), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2736), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(241), - [sym_async_block] = STATE(241), - [sym_block] = STATE(241), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1220), - [sym_identifier] = STATE(834), + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2176), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1393), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1159), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(65), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1189), + [sym_identifier] = STATE(833), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(784), + [anon_sym_LBRACE] = ACTIONS(447), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_async] = ACTIONS(786), + [anon_sym_async] = ACTIONS(453), [anon_sym_break] = ACTIONS(25), - [anon_sym_const] = ACTIONS(788), + [anon_sym_const] = ACTIONS(455), [anon_sym_continue] = ACTIONS(29), [anon_sym_default] = ACTIONS(457), - [anon_sym_for] = ACTIONS(790), - [anon_sym_if] = ACTIONS(792), - [anon_sym_loop] = ACTIONS(794), - [anon_sym_match] = ACTIONS(796), + [anon_sym_for] = ACTIONS(459), + [anon_sym_if] = ACTIONS(461), + [anon_sym_loop] = ACTIONS(463), + [anon_sym_match] = ACTIONS(465), [anon_sym_return] = ACTIONS(53), [anon_sym_union] = ACTIONS(457), - [anon_sym_unsafe] = ACTIONS(798), - [anon_sym_while] = ACTIONS(800), + [anon_sym_unsafe] = ACTIONS(467), + [anon_sym_while] = ACTIONS(469), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(77), @@ -33448,52 +33487,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [111] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2320), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1404), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1139), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1220), - [sym_identifier] = STATE(834), + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2176), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1345), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1159), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(65), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1189), + [sym_identifier] = STATE(833), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(447), @@ -33556,52 +33595,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [112] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2320), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1355), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1139), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1220), - [sym_identifier] = STATE(834), + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2176), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1396), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1159), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(65), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1189), + [sym_identifier] = STATE(833), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(447), @@ -33664,160 +33703,160 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [113] = { - [ts_builtin_sym_end] = ACTIONS(802), - [sym__primitive_identifier] = ACTIONS(804), - [anon_sym_SEMI] = ACTIONS(802), - [anon_sym_macro_rules_BANG] = ACTIONS(802), - [anon_sym_LPAREN] = ACTIONS(802), - [anon_sym_LBRACE] = ACTIONS(802), - [anon_sym_RBRACE] = ACTIONS(802), - [anon_sym_LBRACK] = ACTIONS(802), - [anon_sym_PLUS] = ACTIONS(804), - [anon_sym_STAR] = ACTIONS(804), - [anon_sym_QMARK] = ACTIONS(802), - [anon_sym_SQUOTE] = ACTIONS(804), - [anon_sym_as] = ACTIONS(804), - [anon_sym_async] = ACTIONS(804), - [anon_sym_break] = ACTIONS(804), - [anon_sym_const] = ACTIONS(804), - [anon_sym_continue] = ACTIONS(804), - [anon_sym_default] = ACTIONS(804), - [anon_sym_enum] = ACTIONS(804), - [anon_sym_fn] = ACTIONS(804), - [anon_sym_for] = ACTIONS(804), - [anon_sym_if] = ACTIONS(804), - [anon_sym_impl] = ACTIONS(804), - [anon_sym_let] = ACTIONS(804), - [anon_sym_loop] = ACTIONS(804), - [anon_sym_match] = ACTIONS(804), - [anon_sym_mod] = ACTIONS(804), - [anon_sym_pub] = ACTIONS(804), - [anon_sym_return] = ACTIONS(804), - [anon_sym_static] = ACTIONS(804), - [anon_sym_struct] = ACTIONS(804), - [anon_sym_trait] = ACTIONS(804), - [anon_sym_type] = ACTIONS(804), - [anon_sym_union] = ACTIONS(804), - [anon_sym_unsafe] = ACTIONS(804), - [anon_sym_use] = ACTIONS(804), - [anon_sym_while] = ACTIONS(804), - [anon_sym_POUND] = ACTIONS(802), - [anon_sym_BANG] = ACTIONS(804), - [anon_sym_EQ] = ACTIONS(804), - [anon_sym_extern] = ACTIONS(804), - [anon_sym_LT] = ACTIONS(804), - [anon_sym_GT] = ACTIONS(804), - [anon_sym_COLON_COLON] = ACTIONS(802), - [anon_sym_AMP] = ACTIONS(804), - [anon_sym_DOT_DOT_DOT] = ACTIONS(802), - [anon_sym_DOT_DOT] = ACTIONS(804), - [anon_sym_DOT_DOT_EQ] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(804), - [anon_sym_AMP_AMP] = ACTIONS(802), - [anon_sym_PIPE_PIPE] = ACTIONS(802), - [anon_sym_PIPE] = ACTIONS(804), - [anon_sym_CARET] = ACTIONS(804), - [anon_sym_EQ_EQ] = ACTIONS(802), - [anon_sym_BANG_EQ] = ACTIONS(802), - [anon_sym_LT_EQ] = ACTIONS(802), - [anon_sym_GT_EQ] = ACTIONS(802), - [anon_sym_LT_LT] = ACTIONS(804), - [anon_sym_GT_GT] = ACTIONS(804), - [anon_sym_SLASH] = ACTIONS(804), - [anon_sym_PERCENT] = ACTIONS(804), - [anon_sym_PLUS_EQ] = ACTIONS(802), - [anon_sym_DASH_EQ] = ACTIONS(802), - [anon_sym_STAR_EQ] = ACTIONS(802), - [anon_sym_SLASH_EQ] = ACTIONS(802), - [anon_sym_PERCENT_EQ] = ACTIONS(802), - [anon_sym_AMP_EQ] = ACTIONS(802), - [anon_sym_PIPE_EQ] = ACTIONS(802), - [anon_sym_CARET_EQ] = ACTIONS(802), - [anon_sym_LT_LT_EQ] = ACTIONS(802), - [anon_sym_GT_GT_EQ] = ACTIONS(802), - [anon_sym_yield] = ACTIONS(804), - [anon_sym_move] = ACTIONS(804), - [anon_sym_DOT] = ACTIONS(804), - [sym_integer_literal] = ACTIONS(802), - [aux_sym_string_literal_token1] = ACTIONS(802), - [sym_char_literal] = ACTIONS(802), - [anon_sym_true] = ACTIONS(804), - [anon_sym_false] = ACTIONS(804), - [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), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(802), - [sym_self] = ACTIONS(804), - [sym_super] = ACTIONS(804), - [sym_crate] = ACTIONS(804), - [sym_metavariable] = ACTIONS(802), - [sym_grit_metavariable] = ACTIONS(802), - [sym_raw_string_literal] = ACTIONS(802), - [sym_float_literal] = ACTIONS(802), + [ts_builtin_sym_end] = ACTIONS(792), + [sym__primitive_identifier] = ACTIONS(794), + [anon_sym_SEMI] = ACTIONS(792), + [anon_sym_macro_rules_BANG] = ACTIONS(792), + [anon_sym_LPAREN] = ACTIONS(792), + [anon_sym_LBRACE] = ACTIONS(792), + [anon_sym_RBRACE] = ACTIONS(792), + [anon_sym_LBRACK] = ACTIONS(792), + [anon_sym_PLUS] = ACTIONS(794), + [anon_sym_STAR] = ACTIONS(794), + [anon_sym_QMARK] = ACTIONS(792), + [anon_sym_SQUOTE] = ACTIONS(794), + [anon_sym_as] = ACTIONS(794), + [anon_sym_async] = ACTIONS(794), + [anon_sym_break] = ACTIONS(794), + [anon_sym_const] = ACTIONS(794), + [anon_sym_continue] = ACTIONS(794), + [anon_sym_default] = ACTIONS(794), + [anon_sym_enum] = ACTIONS(794), + [anon_sym_fn] = ACTIONS(794), + [anon_sym_for] = ACTIONS(794), + [anon_sym_if] = ACTIONS(794), + [anon_sym_impl] = ACTIONS(794), + [anon_sym_let] = ACTIONS(794), + [anon_sym_loop] = ACTIONS(794), + [anon_sym_match] = ACTIONS(794), + [anon_sym_mod] = ACTIONS(794), + [anon_sym_pub] = ACTIONS(794), + [anon_sym_return] = ACTIONS(794), + [anon_sym_static] = ACTIONS(794), + [anon_sym_struct] = ACTIONS(794), + [anon_sym_trait] = ACTIONS(794), + [anon_sym_type] = ACTIONS(794), + [anon_sym_union] = ACTIONS(794), + [anon_sym_unsafe] = ACTIONS(794), + [anon_sym_use] = ACTIONS(794), + [anon_sym_while] = ACTIONS(794), + [anon_sym_POUND] = ACTIONS(792), + [anon_sym_BANG] = ACTIONS(794), + [anon_sym_EQ] = ACTIONS(794), + [anon_sym_extern] = ACTIONS(794), + [anon_sym_LT] = ACTIONS(794), + [anon_sym_GT] = ACTIONS(794), + [anon_sym_COLON_COLON] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(794), + [anon_sym_DOT_DOT_DOT] = ACTIONS(792), + [anon_sym_DOT_DOT] = ACTIONS(794), + [anon_sym_DOT_DOT_EQ] = ACTIONS(792), + [anon_sym_DASH] = ACTIONS(794), + [anon_sym_AMP_AMP] = ACTIONS(792), + [anon_sym_PIPE_PIPE] = ACTIONS(792), + [anon_sym_PIPE] = ACTIONS(794), + [anon_sym_CARET] = ACTIONS(794), + [anon_sym_EQ_EQ] = ACTIONS(792), + [anon_sym_BANG_EQ] = ACTIONS(792), + [anon_sym_LT_EQ] = ACTIONS(792), + [anon_sym_GT_EQ] = ACTIONS(792), + [anon_sym_LT_LT] = ACTIONS(794), + [anon_sym_GT_GT] = ACTIONS(794), + [anon_sym_SLASH] = ACTIONS(794), + [anon_sym_PERCENT] = ACTIONS(794), + [anon_sym_PLUS_EQ] = ACTIONS(792), + [anon_sym_DASH_EQ] = ACTIONS(792), + [anon_sym_STAR_EQ] = ACTIONS(792), + [anon_sym_SLASH_EQ] = ACTIONS(792), + [anon_sym_PERCENT_EQ] = ACTIONS(792), + [anon_sym_AMP_EQ] = ACTIONS(792), + [anon_sym_PIPE_EQ] = ACTIONS(792), + [anon_sym_CARET_EQ] = ACTIONS(792), + [anon_sym_LT_LT_EQ] = ACTIONS(792), + [anon_sym_GT_GT_EQ] = ACTIONS(792), + [anon_sym_yield] = ACTIONS(794), + [anon_sym_move] = ACTIONS(794), + [anon_sym_DOT] = ACTIONS(794), + [sym_integer_literal] = ACTIONS(792), + [aux_sym_string_literal_token1] = ACTIONS(792), + [sym_char_literal] = ACTIONS(792), + [anon_sym_true] = ACTIONS(794), + [anon_sym_false] = ACTIONS(794), + [anon_sym_u8] = ACTIONS(794), + [anon_sym_i8] = ACTIONS(794), + [anon_sym_u16] = ACTIONS(794), + [anon_sym_i16] = ACTIONS(794), + [anon_sym_u32] = ACTIONS(794), + [anon_sym_i32] = ACTIONS(794), + [anon_sym_u64] = ACTIONS(794), + [anon_sym_i64] = ACTIONS(794), + [anon_sym_u128] = ACTIONS(794), + [anon_sym_i128] = ACTIONS(794), + [anon_sym_isize] = ACTIONS(794), + [anon_sym_usize] = ACTIONS(794), + [anon_sym_f32] = ACTIONS(794), + [anon_sym_f64] = ACTIONS(794), + [anon_sym_bool] = ACTIONS(794), + [anon_sym_str] = ACTIONS(794), + [anon_sym_char] = ACTIONS(794), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(792), + [sym_self] = ACTIONS(794), + [sym_super] = ACTIONS(794), + [sym_crate] = ACTIONS(794), + [sym_metavariable] = ACTIONS(792), + [sym_grit_metavariable] = ACTIONS(792), + [sym_raw_string_literal] = ACTIONS(792), + [sym_float_literal] = ACTIONS(792), [sym_block_comment] = ACTIONS(3), }, [114] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2320), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1318), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1139), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1220), - [sym_identifier] = STATE(834), + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2176), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1412), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1159), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(65), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1189), + [sym_identifier] = STATE(833), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(447), @@ -33880,57 +33919,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [115] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2289), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1323), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1296), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2176), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1369), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1159), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), [sym_closure_parameters] = STATE(65), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1311), - [sym_identifier] = STATE(1290), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1189), + [sym_identifier] = STATE(833), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(447), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(545), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_async] = ACTIONS(453), + [anon_sym_break] = ACTIONS(25), + [anon_sym_const] = ACTIONS(455), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(457), + [anon_sym_for] = ACTIONS(459), + [anon_sym_if] = ACTIONS(461), + [anon_sym_loop] = ACTIONS(463), + [anon_sym_match] = ACTIONS(465), + [anon_sym_return] = ACTIONS(53), + [anon_sym_union] = ACTIONS(457), + [anon_sym_unsafe] = ACTIONS(467), + [anon_sym_while] = ACTIONS(469), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [anon_sym_u8] = ACTIONS(95), + [anon_sym_i8] = ACTIONS(95), + [anon_sym_u16] = ACTIONS(95), + [anon_sym_i16] = ACTIONS(95), + [anon_sym_u32] = ACTIONS(95), + [anon_sym_i32] = ACTIONS(95), + [anon_sym_u64] = ACTIONS(95), + [anon_sym_i64] = ACTIONS(95), + [anon_sym_u128] = ACTIONS(95), + [anon_sym_i128] = ACTIONS(95), + [anon_sym_isize] = ACTIONS(95), + [anon_sym_usize] = ACTIONS(95), + [anon_sym_f32] = ACTIONS(95), + [anon_sym_f64] = ACTIONS(95), + [anon_sym_bool] = ACTIONS(95), + [anon_sym_str] = ACTIONS(95), + [anon_sym_char] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(97), + [sym_self] = ACTIONS(99), + [sym_super] = ACTIONS(101), + [sym_crate] = ACTIONS(101), + [sym_metavariable] = ACTIONS(105), + [sym_grit_metavariable] = ACTIONS(473), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [116] = { + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2305), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1382), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1308), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(74), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1313), + [sym_identifier] = STATE(1295), + [sym__primitive_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(447), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(547), [anon_sym_SQUOTE] = ACTIONS(21), [anon_sym_async] = ACTIONS(453), [anon_sym_break] = ACTIONS(505), @@ -33945,12 +34092,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(507), [anon_sym_unsafe] = ACTIONS(467), [anon_sym_while] = ACTIONS(469), - [anon_sym_BANG] = ACTIONS(545), + [anon_sym_BANG] = ACTIONS(547), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_AMP] = ACTIONS(549), - [anon_sym_DOT_DOT] = ACTIONS(681), - [anon_sym_DASH] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(551), + [anon_sym_DOT_DOT] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(547), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(515), [anon_sym_move] = ACTIONS(517), @@ -33987,58 +34134,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [116] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2289), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1359), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1296), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(65), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1311), - [sym_identifier] = STATE(1290), + [117] = { + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2305), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1337), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1308), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(74), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1313), + [sym_identifier] = STATE(1295), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(447), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(545), + [anon_sym_STAR] = ACTIONS(547), [anon_sym_SQUOTE] = ACTIONS(21), [anon_sym_async] = ACTIONS(453), [anon_sym_break] = ACTIONS(505), @@ -34053,12 +34200,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(507), [anon_sym_unsafe] = ACTIONS(467), [anon_sym_while] = ACTIONS(469), - [anon_sym_BANG] = ACTIONS(545), + [anon_sym_BANG] = ACTIONS(547), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_AMP] = ACTIONS(549), - [anon_sym_DOT_DOT] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(551), + [anon_sym_DOT_DOT] = ACTIONS(553), + [anon_sym_DASH] = ACTIONS(547), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(515), [anon_sym_move] = ACTIONS(517), @@ -34095,53 +34242,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [117] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2320), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1187), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1139), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1220), - [sym_identifier] = STATE(834), + [118] = { + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2176), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1342), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1159), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(65), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1189), + [sym_identifier] = STATE(833), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(447), @@ -34203,53 +34350,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [118] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2320), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1277), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1139), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1220), - [sym_identifier] = STATE(834), + [119] = { + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2176), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1349), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1159), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(65), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1189), + [sym_identifier] = STATE(833), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(447), @@ -34273,7 +34420,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(77), [anon_sym_AMP] = ACTIONS(79), - [anon_sym_DOT_DOT] = ACTIONS(563), + [anon_sym_DOT_DOT] = ACTIONS(81), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(85), @@ -34311,53 +34458,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [119] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2320), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1274), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1139), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1220), - [sym_identifier] = STATE(834), + [120] = { + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2176), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1399), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1159), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(65), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1189), + [sym_identifier] = STATE(833), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(447), @@ -34381,7 +34528,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(77), [anon_sym_AMP] = ACTIONS(79), - [anon_sym_DOT_DOT] = ACTIONS(563), + [anon_sym_DOT_DOT] = ACTIONS(81), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(85), @@ -34419,161 +34566,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [120] = { - [ts_builtin_sym_end] = ACTIONS(806), - [sym__primitive_identifier] = ACTIONS(808), - [anon_sym_SEMI] = ACTIONS(806), - [anon_sym_macro_rules_BANG] = ACTIONS(806), - [anon_sym_LPAREN] = ACTIONS(806), - [anon_sym_LBRACE] = ACTIONS(806), - [anon_sym_RBRACE] = ACTIONS(806), - [anon_sym_LBRACK] = ACTIONS(806), - [anon_sym_PLUS] = ACTIONS(808), - [anon_sym_STAR] = ACTIONS(808), - [anon_sym_QMARK] = ACTIONS(806), - [anon_sym_SQUOTE] = ACTIONS(808), - [anon_sym_as] = ACTIONS(808), - [anon_sym_async] = ACTIONS(808), - [anon_sym_break] = ACTIONS(808), - [anon_sym_const] = ACTIONS(808), - [anon_sym_continue] = ACTIONS(808), - [anon_sym_default] = ACTIONS(808), - [anon_sym_enum] = ACTIONS(808), - [anon_sym_fn] = ACTIONS(808), - [anon_sym_for] = ACTIONS(808), - [anon_sym_if] = ACTIONS(808), - [anon_sym_impl] = ACTIONS(808), - [anon_sym_let] = ACTIONS(808), - [anon_sym_loop] = ACTIONS(808), - [anon_sym_match] = ACTIONS(808), - [anon_sym_mod] = ACTIONS(808), - [anon_sym_pub] = ACTIONS(808), - [anon_sym_return] = ACTIONS(808), - [anon_sym_static] = ACTIONS(808), - [anon_sym_struct] = ACTIONS(808), - [anon_sym_trait] = ACTIONS(808), - [anon_sym_type] = ACTIONS(808), - [anon_sym_union] = ACTIONS(808), - [anon_sym_unsafe] = ACTIONS(808), - [anon_sym_use] = ACTIONS(808), - [anon_sym_while] = ACTIONS(808), - [anon_sym_POUND] = ACTIONS(806), - [anon_sym_BANG] = ACTIONS(808), - [anon_sym_EQ] = ACTIONS(808), - [anon_sym_extern] = ACTIONS(808), - [anon_sym_LT] = ACTIONS(808), - [anon_sym_GT] = ACTIONS(808), - [anon_sym_COLON_COLON] = ACTIONS(806), - [anon_sym_AMP] = ACTIONS(808), - [anon_sym_DOT_DOT_DOT] = ACTIONS(806), - [anon_sym_DOT_DOT] = ACTIONS(808), - [anon_sym_DOT_DOT_EQ] = ACTIONS(806), - [anon_sym_DASH] = ACTIONS(808), - [anon_sym_AMP_AMP] = ACTIONS(806), - [anon_sym_PIPE_PIPE] = ACTIONS(806), - [anon_sym_PIPE] = ACTIONS(808), - [anon_sym_CARET] = ACTIONS(808), - [anon_sym_EQ_EQ] = ACTIONS(806), - [anon_sym_BANG_EQ] = ACTIONS(806), - [anon_sym_LT_EQ] = ACTIONS(806), - [anon_sym_GT_EQ] = ACTIONS(806), - [anon_sym_LT_LT] = ACTIONS(808), - [anon_sym_GT_GT] = ACTIONS(808), - [anon_sym_SLASH] = ACTIONS(808), - [anon_sym_PERCENT] = ACTIONS(808), - [anon_sym_PLUS_EQ] = ACTIONS(806), - [anon_sym_DASH_EQ] = ACTIONS(806), - [anon_sym_STAR_EQ] = ACTIONS(806), - [anon_sym_SLASH_EQ] = ACTIONS(806), - [anon_sym_PERCENT_EQ] = ACTIONS(806), - [anon_sym_AMP_EQ] = ACTIONS(806), - [anon_sym_PIPE_EQ] = ACTIONS(806), - [anon_sym_CARET_EQ] = ACTIONS(806), - [anon_sym_LT_LT_EQ] = ACTIONS(806), - [anon_sym_GT_GT_EQ] = ACTIONS(806), - [anon_sym_yield] = ACTIONS(808), - [anon_sym_move] = ACTIONS(808), - [anon_sym_DOT] = ACTIONS(808), - [sym_integer_literal] = ACTIONS(806), - [aux_sym_string_literal_token1] = ACTIONS(806), - [sym_char_literal] = ACTIONS(806), - [anon_sym_true] = ACTIONS(808), - [anon_sym_false] = ACTIONS(808), - [anon_sym_u8] = ACTIONS(808), - [anon_sym_i8] = ACTIONS(808), - [anon_sym_u16] = ACTIONS(808), - [anon_sym_i16] = ACTIONS(808), - [anon_sym_u32] = ACTIONS(808), - [anon_sym_i32] = ACTIONS(808), - [anon_sym_u64] = ACTIONS(808), - [anon_sym_i64] = ACTIONS(808), - [anon_sym_u128] = ACTIONS(808), - [anon_sym_i128] = ACTIONS(808), - [anon_sym_isize] = ACTIONS(808), - [anon_sym_usize] = ACTIONS(808), - [anon_sym_f32] = ACTIONS(808), - [anon_sym_f64] = ACTIONS(808), - [anon_sym_bool] = ACTIONS(808), - [anon_sym_str] = ACTIONS(808), - [anon_sym_char] = ACTIONS(808), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(806), - [sym_self] = ACTIONS(808), - [sym_super] = ACTIONS(808), - [sym_crate] = ACTIONS(808), - [sym_metavariable] = ACTIONS(806), - [sym_grit_metavariable] = ACTIONS(806), - [sym_raw_string_literal] = ACTIONS(806), - [sym_float_literal] = ACTIONS(806), - [sym_block_comment] = ACTIONS(3), - }, [121] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2320), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1270), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1139), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1220), - [sym_identifier] = STATE(834), + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2176), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1391), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1159), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(65), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1189), + [sym_identifier] = STATE(833), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(447), @@ -34597,7 +34636,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(77), [anon_sym_AMP] = ACTIONS(79), - [anon_sym_DOT_DOT] = ACTIONS(563), + [anon_sym_DOT_DOT] = ACTIONS(81), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(85), @@ -34636,80 +34675,188 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [122] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2289), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1363), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1296), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), + [ts_builtin_sym_end] = ACTIONS(796), + [sym__primitive_identifier] = ACTIONS(798), + [anon_sym_SEMI] = ACTIONS(796), + [anon_sym_macro_rules_BANG] = ACTIONS(796), + [anon_sym_LPAREN] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(796), + [anon_sym_RBRACE] = ACTIONS(796), + [anon_sym_LBRACK] = ACTIONS(796), + [anon_sym_PLUS] = ACTIONS(798), + [anon_sym_STAR] = ACTIONS(798), + [anon_sym_QMARK] = ACTIONS(796), + [anon_sym_SQUOTE] = ACTIONS(798), + [anon_sym_as] = ACTIONS(798), + [anon_sym_async] = ACTIONS(798), + [anon_sym_break] = ACTIONS(798), + [anon_sym_const] = ACTIONS(798), + [anon_sym_continue] = ACTIONS(798), + [anon_sym_default] = ACTIONS(798), + [anon_sym_enum] = ACTIONS(798), + [anon_sym_fn] = ACTIONS(798), + [anon_sym_for] = ACTIONS(798), + [anon_sym_if] = ACTIONS(798), + [anon_sym_impl] = ACTIONS(798), + [anon_sym_let] = ACTIONS(798), + [anon_sym_loop] = ACTIONS(798), + [anon_sym_match] = ACTIONS(798), + [anon_sym_mod] = ACTIONS(798), + [anon_sym_pub] = ACTIONS(798), + [anon_sym_return] = ACTIONS(798), + [anon_sym_static] = ACTIONS(798), + [anon_sym_struct] = ACTIONS(798), + [anon_sym_trait] = ACTIONS(798), + [anon_sym_type] = ACTIONS(798), + [anon_sym_union] = ACTIONS(798), + [anon_sym_unsafe] = ACTIONS(798), + [anon_sym_use] = ACTIONS(798), + [anon_sym_while] = ACTIONS(798), + [anon_sym_POUND] = ACTIONS(796), + [anon_sym_BANG] = ACTIONS(798), + [anon_sym_EQ] = ACTIONS(798), + [anon_sym_extern] = ACTIONS(798), + [anon_sym_LT] = ACTIONS(798), + [anon_sym_GT] = ACTIONS(798), + [anon_sym_COLON_COLON] = ACTIONS(796), + [anon_sym_AMP] = ACTIONS(798), + [anon_sym_DOT_DOT_DOT] = ACTIONS(796), + [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_DOT_DOT_EQ] = ACTIONS(796), + [anon_sym_DASH] = ACTIONS(798), + [anon_sym_AMP_AMP] = ACTIONS(796), + [anon_sym_PIPE_PIPE] = ACTIONS(796), + [anon_sym_PIPE] = ACTIONS(798), + [anon_sym_CARET] = ACTIONS(798), + [anon_sym_EQ_EQ] = ACTIONS(796), + [anon_sym_BANG_EQ] = ACTIONS(796), + [anon_sym_LT_EQ] = ACTIONS(796), + [anon_sym_GT_EQ] = ACTIONS(796), + [anon_sym_LT_LT] = ACTIONS(798), + [anon_sym_GT_GT] = ACTIONS(798), + [anon_sym_SLASH] = ACTIONS(798), + [anon_sym_PERCENT] = ACTIONS(798), + [anon_sym_PLUS_EQ] = ACTIONS(796), + [anon_sym_DASH_EQ] = ACTIONS(796), + [anon_sym_STAR_EQ] = ACTIONS(796), + [anon_sym_SLASH_EQ] = ACTIONS(796), + [anon_sym_PERCENT_EQ] = ACTIONS(796), + [anon_sym_AMP_EQ] = ACTIONS(796), + [anon_sym_PIPE_EQ] = ACTIONS(796), + [anon_sym_CARET_EQ] = ACTIONS(796), + [anon_sym_LT_LT_EQ] = ACTIONS(796), + [anon_sym_GT_GT_EQ] = ACTIONS(796), + [anon_sym_yield] = ACTIONS(798), + [anon_sym_move] = ACTIONS(798), + [anon_sym_DOT] = ACTIONS(798), + [sym_integer_literal] = ACTIONS(796), + [aux_sym_string_literal_token1] = ACTIONS(796), + [sym_char_literal] = ACTIONS(796), + [anon_sym_true] = ACTIONS(798), + [anon_sym_false] = ACTIONS(798), + [anon_sym_u8] = ACTIONS(798), + [anon_sym_i8] = ACTIONS(798), + [anon_sym_u16] = ACTIONS(798), + [anon_sym_i16] = ACTIONS(798), + [anon_sym_u32] = ACTIONS(798), + [anon_sym_i32] = ACTIONS(798), + [anon_sym_u64] = ACTIONS(798), + [anon_sym_i64] = ACTIONS(798), + [anon_sym_u128] = ACTIONS(798), + [anon_sym_i128] = ACTIONS(798), + [anon_sym_isize] = ACTIONS(798), + [anon_sym_usize] = ACTIONS(798), + [anon_sym_f32] = ACTIONS(798), + [anon_sym_f64] = ACTIONS(798), + [anon_sym_bool] = ACTIONS(798), + [anon_sym_str] = ACTIONS(798), + [anon_sym_char] = ACTIONS(798), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(796), + [sym_self] = ACTIONS(798), + [sym_super] = ACTIONS(798), + [sym_crate] = ACTIONS(798), + [sym_metavariable] = ACTIONS(796), + [sym_grit_metavariable] = ACTIONS(796), + [sym_raw_string_literal] = ACTIONS(796), + [sym_float_literal] = ACTIONS(796), + [sym_block_comment] = ACTIONS(3), + }, + [123] = { + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2176), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1332), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1159), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), [sym_closure_parameters] = STATE(65), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1311), - [sym_identifier] = STATE(1290), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1189), + [sym_identifier] = STATE(833), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(447), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(545), + [anon_sym_STAR] = ACTIONS(19), [anon_sym_SQUOTE] = ACTIONS(21), [anon_sym_async] = ACTIONS(453), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(25), [anon_sym_const] = ACTIONS(455), [anon_sym_continue] = ACTIONS(29), - [anon_sym_default] = ACTIONS(507), + [anon_sym_default] = ACTIONS(457), [anon_sym_for] = ACTIONS(459), [anon_sym_if] = ACTIONS(461), [anon_sym_loop] = ACTIONS(463), [anon_sym_match] = ACTIONS(465), - [anon_sym_return] = ACTIONS(509), - [anon_sym_union] = ACTIONS(507), + [anon_sym_return] = ACTIONS(53), + [anon_sym_union] = ACTIONS(457), [anon_sym_unsafe] = ACTIONS(467), [anon_sym_while] = ACTIONS(469), - [anon_sym_BANG] = ACTIONS(545), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_AMP] = ACTIONS(549), - [anon_sym_DOT_DOT] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(545), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(83), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), @@ -34734,67 +34881,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), [sym__raw_identifier] = ACTIONS(97), - [sym_self] = ACTIONS(519), - [sym_super] = ACTIONS(521), - [sym_crate] = ACTIONS(521), - [sym_metavariable] = ACTIONS(523), - [sym_grit_metavariable] = ACTIONS(525), + [sym_self] = ACTIONS(99), + [sym_super] = ACTIONS(101), + [sym_crate] = ACTIONS(101), + [sym_metavariable] = ACTIONS(105), + [sym_grit_metavariable] = ACTIONS(473), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [123] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2289), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1187), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1296), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(65), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1311), - [sym_identifier] = STATE(1290), + [124] = { + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2305), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1366), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1308), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(74), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1313), + [sym_identifier] = STATE(1295), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(447), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(545), + [anon_sym_STAR] = ACTIONS(547), [anon_sym_SQUOTE] = ACTIONS(21), [anon_sym_async] = ACTIONS(453), [anon_sym_break] = ACTIONS(505), @@ -34809,12 +34956,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(507), [anon_sym_unsafe] = ACTIONS(467), [anon_sym_while] = ACTIONS(469), - [anon_sym_BANG] = ACTIONS(545), + [anon_sym_BANG] = ACTIONS(547), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_AMP] = ACTIONS(549), - [anon_sym_DOT_DOT] = ACTIONS(681), - [anon_sym_DASH] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(551), + [anon_sym_DOT_DOT] = ACTIONS(553), + [anon_sym_DASH] = ACTIONS(547), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(515), [anon_sym_move] = ACTIONS(517), @@ -34851,77 +34998,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [124] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2320), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1271), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1139), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1220), - [sym_identifier] = STATE(834), + [125] = { + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2176), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1374), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1159), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(242), + [sym_match_expression] = STATE(242), + [sym_while_expression] = STATE(242), + [sym_loop_expression] = STATE(242), + [sym_for_expression] = STATE(242), + [sym_const_block] = STATE(242), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(65), + [sym_loop_label] = STATE(2740), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(242), + [sym_async_block] = STATE(242), + [sym_block] = STATE(242), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1189), + [sym_identifier] = STATE(833), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(447), + [anon_sym_LBRACE] = ACTIONS(739), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_async] = ACTIONS(453), + [anon_sym_async] = ACTIONS(741), [anon_sym_break] = ACTIONS(25), - [anon_sym_const] = ACTIONS(455), + [anon_sym_const] = ACTIONS(743), [anon_sym_continue] = ACTIONS(29), [anon_sym_default] = ACTIONS(457), - [anon_sym_for] = ACTIONS(459), - [anon_sym_if] = ACTIONS(461), - [anon_sym_loop] = ACTIONS(463), - [anon_sym_match] = ACTIONS(465), + [anon_sym_for] = ACTIONS(745), + [anon_sym_if] = ACTIONS(747), + [anon_sym_loop] = ACTIONS(749), + [anon_sym_match] = ACTIONS(751), [anon_sym_return] = ACTIONS(53), [anon_sym_union] = ACTIONS(457), - [anon_sym_unsafe] = ACTIONS(467), - [anon_sym_while] = ACTIONS(469), + [anon_sym_unsafe] = ACTIONS(753), + [anon_sym_while] = ACTIONS(755), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(77), [anon_sym_AMP] = ACTIONS(79), - [anon_sym_DOT_DOT] = ACTIONS(563), + [anon_sym_DOT_DOT] = ACTIONS(81), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(85), @@ -34959,81 +35106,189 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [125] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2320), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1407), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1139), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1220), - [sym_identifier] = STATE(834), + [126] = { + [ts_builtin_sym_end] = ACTIONS(800), + [sym__primitive_identifier] = ACTIONS(802), + [anon_sym_SEMI] = ACTIONS(800), + [anon_sym_macro_rules_BANG] = ACTIONS(800), + [anon_sym_LPAREN] = ACTIONS(800), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_RBRACE] = ACTIONS(800), + [anon_sym_LBRACK] = ACTIONS(800), + [anon_sym_PLUS] = ACTIONS(802), + [anon_sym_STAR] = ACTIONS(802), + [anon_sym_QMARK] = ACTIONS(800), + [anon_sym_SQUOTE] = ACTIONS(802), + [anon_sym_as] = ACTIONS(802), + [anon_sym_async] = ACTIONS(802), + [anon_sym_break] = ACTIONS(802), + [anon_sym_const] = ACTIONS(802), + [anon_sym_continue] = ACTIONS(802), + [anon_sym_default] = ACTIONS(802), + [anon_sym_enum] = ACTIONS(802), + [anon_sym_fn] = ACTIONS(802), + [anon_sym_for] = ACTIONS(802), + [anon_sym_if] = ACTIONS(802), + [anon_sym_impl] = ACTIONS(802), + [anon_sym_let] = ACTIONS(802), + [anon_sym_loop] = ACTIONS(802), + [anon_sym_match] = ACTIONS(802), + [anon_sym_mod] = ACTIONS(802), + [anon_sym_pub] = ACTIONS(802), + [anon_sym_return] = ACTIONS(802), + [anon_sym_static] = ACTIONS(802), + [anon_sym_struct] = ACTIONS(802), + [anon_sym_trait] = ACTIONS(802), + [anon_sym_type] = ACTIONS(802), + [anon_sym_union] = ACTIONS(802), + [anon_sym_unsafe] = ACTIONS(802), + [anon_sym_use] = ACTIONS(802), + [anon_sym_while] = ACTIONS(802), + [anon_sym_POUND] = ACTIONS(800), + [anon_sym_BANG] = ACTIONS(802), + [anon_sym_EQ] = ACTIONS(802), + [anon_sym_extern] = ACTIONS(802), + [anon_sym_LT] = ACTIONS(802), + [anon_sym_GT] = ACTIONS(802), + [anon_sym_COLON_COLON] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(802), + [anon_sym_DOT_DOT_DOT] = ACTIONS(800), + [anon_sym_DOT_DOT] = ACTIONS(802), + [anon_sym_DOT_DOT_EQ] = ACTIONS(800), + [anon_sym_DASH] = ACTIONS(802), + [anon_sym_AMP_AMP] = ACTIONS(800), + [anon_sym_PIPE_PIPE] = ACTIONS(800), + [anon_sym_PIPE] = ACTIONS(802), + [anon_sym_CARET] = ACTIONS(802), + [anon_sym_EQ_EQ] = ACTIONS(800), + [anon_sym_BANG_EQ] = ACTIONS(800), + [anon_sym_LT_EQ] = ACTIONS(800), + [anon_sym_GT_EQ] = ACTIONS(800), + [anon_sym_LT_LT] = ACTIONS(802), + [anon_sym_GT_GT] = ACTIONS(802), + [anon_sym_SLASH] = ACTIONS(802), + [anon_sym_PERCENT] = ACTIONS(802), + [anon_sym_PLUS_EQ] = ACTIONS(800), + [anon_sym_DASH_EQ] = ACTIONS(800), + [anon_sym_STAR_EQ] = ACTIONS(800), + [anon_sym_SLASH_EQ] = ACTIONS(800), + [anon_sym_PERCENT_EQ] = ACTIONS(800), + [anon_sym_AMP_EQ] = ACTIONS(800), + [anon_sym_PIPE_EQ] = ACTIONS(800), + [anon_sym_CARET_EQ] = ACTIONS(800), + [anon_sym_LT_LT_EQ] = ACTIONS(800), + [anon_sym_GT_GT_EQ] = ACTIONS(800), + [anon_sym_yield] = ACTIONS(802), + [anon_sym_move] = ACTIONS(802), + [anon_sym_DOT] = ACTIONS(802), + [sym_integer_literal] = ACTIONS(800), + [aux_sym_string_literal_token1] = ACTIONS(800), + [sym_char_literal] = ACTIONS(800), + [anon_sym_true] = ACTIONS(802), + [anon_sym_false] = ACTIONS(802), + [anon_sym_u8] = ACTIONS(802), + [anon_sym_i8] = ACTIONS(802), + [anon_sym_u16] = ACTIONS(802), + [anon_sym_i16] = ACTIONS(802), + [anon_sym_u32] = ACTIONS(802), + [anon_sym_i32] = ACTIONS(802), + [anon_sym_u64] = ACTIONS(802), + [anon_sym_i64] = ACTIONS(802), + [anon_sym_u128] = ACTIONS(802), + [anon_sym_i128] = ACTIONS(802), + [anon_sym_isize] = ACTIONS(802), + [anon_sym_usize] = ACTIONS(802), + [anon_sym_f32] = ACTIONS(802), + [anon_sym_f64] = ACTIONS(802), + [anon_sym_bool] = ACTIONS(802), + [anon_sym_str] = ACTIONS(802), + [anon_sym_char] = ACTIONS(802), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(800), + [sym_self] = ACTIONS(802), + [sym_super] = ACTIONS(802), + [sym_crate] = ACTIONS(802), + [sym_metavariable] = ACTIONS(800), + [sym_grit_metavariable] = ACTIONS(800), + [sym_raw_string_literal] = ACTIONS(800), + [sym_float_literal] = ACTIONS(800), + [sym_block_comment] = ACTIONS(3), + }, + [127] = { + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2305), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1380), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1308), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(74), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1313), + [sym_identifier] = STATE(1295), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(447), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(547), [anon_sym_SQUOTE] = ACTIONS(21), [anon_sym_async] = ACTIONS(453), - [anon_sym_break] = ACTIONS(25), + [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(455), [anon_sym_continue] = ACTIONS(29), - [anon_sym_default] = ACTIONS(457), + [anon_sym_default] = ACTIONS(507), [anon_sym_for] = ACTIONS(459), [anon_sym_if] = ACTIONS(461), [anon_sym_loop] = ACTIONS(463), [anon_sym_match] = ACTIONS(465), - [anon_sym_return] = ACTIONS(53), - [anon_sym_union] = ACTIONS(457), + [anon_sym_return] = ACTIONS(509), + [anon_sym_union] = ACTIONS(507), [anon_sym_unsafe] = ACTIONS(467), [anon_sym_while] = ACTIONS(469), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(547), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_AMP] = ACTIONS(79), - [anon_sym_DOT_DOT] = ACTIONS(81), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_AMP] = ACTIONS(551), + [anon_sym_DOT_DOT] = ACTIONS(553), + [anon_sym_DASH] = ACTIONS(547), [anon_sym_PIPE] = ACTIONS(83), - [anon_sym_yield] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(515), + [anon_sym_move] = ACTIONS(517), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), @@ -35058,62 +35313,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), [sym__raw_identifier] = ACTIONS(97), - [sym_self] = ACTIONS(99), - [sym_super] = ACTIONS(101), - [sym_crate] = ACTIONS(101), - [sym_metavariable] = ACTIONS(105), - [sym_grit_metavariable] = ACTIONS(473), + [sym_self] = ACTIONS(519), + [sym_super] = ACTIONS(521), + [sym_crate] = ACTIONS(521), + [sym_metavariable] = ACTIONS(523), + [sym_grit_metavariable] = ACTIONS(525), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [126] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2320), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1366), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1139), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1220), - [sym_identifier] = STATE(834), + [128] = { + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2176), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1341), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1159), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(65), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1189), + [sym_identifier] = STATE(833), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(447), @@ -35175,53 +35430,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [127] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2320), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1399), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1139), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1220), - [sym_identifier] = STATE(834), + [129] = { + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2176), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1216), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1159), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(65), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1189), + [sym_identifier] = STATE(833), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(447), @@ -35245,7 +35500,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(77), [anon_sym_AMP] = ACTIONS(79), - [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(673), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(85), @@ -35283,53 +35538,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [128] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2320), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1385), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1139), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1220), - [sym_identifier] = STATE(834), + [130] = { + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2176), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1404), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1159), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(65), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1189), + [sym_identifier] = STATE(833), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(447), @@ -35391,53 +35646,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [129] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2320), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1272), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1139), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1220), - [sym_identifier] = STATE(834), + [131] = { + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2176), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1410), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1159), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(65), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1189), + [sym_identifier] = STATE(833), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(447), @@ -35461,7 +35716,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(77), [anon_sym_AMP] = ACTIONS(79), - [anon_sym_DOT_DOT] = ACTIONS(563), + [anon_sym_DOT_DOT] = ACTIONS(81), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(85), @@ -35499,81 +35754,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [130] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2320), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1266), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1139), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1220), - [sym_identifier] = STATE(834), + [132] = { + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2305), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1370), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1308), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(74), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1313), + [sym_identifier] = STATE(1295), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(447), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(547), [anon_sym_SQUOTE] = ACTIONS(21), [anon_sym_async] = ACTIONS(453), - [anon_sym_break] = ACTIONS(25), + [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(455), [anon_sym_continue] = ACTIONS(29), - [anon_sym_default] = ACTIONS(457), + [anon_sym_default] = ACTIONS(507), [anon_sym_for] = ACTIONS(459), [anon_sym_if] = ACTIONS(461), [anon_sym_loop] = ACTIONS(463), [anon_sym_match] = ACTIONS(465), - [anon_sym_return] = ACTIONS(53), - [anon_sym_union] = ACTIONS(457), + [anon_sym_return] = ACTIONS(509), + [anon_sym_union] = ACTIONS(507), [anon_sym_unsafe] = ACTIONS(467), [anon_sym_while] = ACTIONS(469), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(547), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_AMP] = ACTIONS(79), - [anon_sym_DOT_DOT] = ACTIONS(563), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_AMP] = ACTIONS(551), + [anon_sym_DOT_DOT] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(547), [anon_sym_PIPE] = ACTIONS(83), - [anon_sym_yield] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(515), + [anon_sym_move] = ACTIONS(517), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), @@ -35598,62 +35853,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), [sym__raw_identifier] = ACTIONS(97), - [sym_self] = ACTIONS(99), - [sym_super] = ACTIONS(101), - [sym_crate] = ACTIONS(101), - [sym_metavariable] = ACTIONS(105), - [sym_grit_metavariable] = ACTIONS(473), + [sym_self] = ACTIONS(519), + [sym_super] = ACTIONS(521), + [sym_crate] = ACTIONS(521), + [sym_metavariable] = ACTIONS(523), + [sym_grit_metavariable] = ACTIONS(525), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [131] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2320), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1408), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1139), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1220), - [sym_identifier] = STATE(834), + [133] = { + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2176), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1320), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1159), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(65), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1189), + [sym_identifier] = STATE(833), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(447), @@ -35715,53 +35970,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [132] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2320), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1402), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1139), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1220), - [sym_identifier] = STATE(834), + [134] = { + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2176), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1414), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1159), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(65), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1189), + [sym_identifier] = STATE(833), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(447), @@ -35823,81 +36078,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [133] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2320), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1409), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1139), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1220), - [sym_identifier] = STATE(834), + [135] = { + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2305), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1378), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1308), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(74), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1313), + [sym_identifier] = STATE(1295), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(447), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(547), [anon_sym_SQUOTE] = ACTIONS(21), [anon_sym_async] = ACTIONS(453), - [anon_sym_break] = ACTIONS(25), + [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(455), [anon_sym_continue] = ACTIONS(29), - [anon_sym_default] = ACTIONS(457), + [anon_sym_default] = ACTIONS(507), [anon_sym_for] = ACTIONS(459), [anon_sym_if] = ACTIONS(461), [anon_sym_loop] = ACTIONS(463), [anon_sym_match] = ACTIONS(465), - [anon_sym_return] = ACTIONS(53), - [anon_sym_union] = ACTIONS(457), + [anon_sym_return] = ACTIONS(509), + [anon_sym_union] = ACTIONS(507), [anon_sym_unsafe] = ACTIONS(467), [anon_sym_while] = ACTIONS(469), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(547), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_AMP] = ACTIONS(79), - [anon_sym_DOT_DOT] = ACTIONS(81), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_AMP] = ACTIONS(551), + [anon_sym_DOT_DOT] = ACTIONS(553), + [anon_sym_DASH] = ACTIONS(547), [anon_sym_PIPE] = ACTIONS(83), - [anon_sym_yield] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(515), + [anon_sym_move] = ACTIONS(517), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), @@ -35922,198 +36177,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), [sym__raw_identifier] = ACTIONS(97), - [sym_self] = ACTIONS(99), - [sym_super] = ACTIONS(101), - [sym_crate] = ACTIONS(101), - [sym_metavariable] = ACTIONS(105), - [sym_grit_metavariable] = ACTIONS(473), + [sym_self] = ACTIONS(519), + [sym_super] = ACTIONS(521), + [sym_crate] = ACTIONS(521), + [sym_metavariable] = ACTIONS(523), + [sym_grit_metavariable] = ACTIONS(525), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [134] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2320), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1377), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1139), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1220), - [sym_identifier] = STATE(834), + [136] = { + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2305), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1365), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1308), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(74), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1313), + [sym_identifier] = STATE(1295), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(447), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(547), [anon_sym_SQUOTE] = ACTIONS(21), [anon_sym_async] = ACTIONS(453), - [anon_sym_break] = ACTIONS(25), + [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(455), [anon_sym_continue] = ACTIONS(29), - [anon_sym_default] = ACTIONS(457), + [anon_sym_default] = ACTIONS(507), [anon_sym_for] = ACTIONS(459), [anon_sym_if] = ACTIONS(461), [anon_sym_loop] = ACTIONS(463), [anon_sym_match] = ACTIONS(465), - [anon_sym_return] = ACTIONS(53), - [anon_sym_union] = ACTIONS(457), + [anon_sym_return] = ACTIONS(509), + [anon_sym_union] = ACTIONS(507), [anon_sym_unsafe] = ACTIONS(467), [anon_sym_while] = ACTIONS(469), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_AMP] = ACTIONS(79), - [anon_sym_DOT_DOT] = ACTIONS(81), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(83), - [anon_sym_yield] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [anon_sym_u8] = ACTIONS(95), - [anon_sym_i8] = ACTIONS(95), - [anon_sym_u16] = ACTIONS(95), - [anon_sym_i16] = ACTIONS(95), - [anon_sym_u32] = ACTIONS(95), - [anon_sym_i32] = ACTIONS(95), - [anon_sym_u64] = ACTIONS(95), - [anon_sym_i64] = ACTIONS(95), - [anon_sym_u128] = ACTIONS(95), - [anon_sym_i128] = ACTIONS(95), - [anon_sym_isize] = ACTIONS(95), - [anon_sym_usize] = ACTIONS(95), - [anon_sym_f32] = ACTIONS(95), - [anon_sym_f64] = ACTIONS(95), - [anon_sym_bool] = ACTIONS(95), - [anon_sym_str] = ACTIONS(95), - [anon_sym_char] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(97), - [sym_self] = ACTIONS(99), - [sym_super] = ACTIONS(101), - [sym_crate] = ACTIONS(101), - [sym_metavariable] = ACTIONS(105), - [sym_grit_metavariable] = ACTIONS(473), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [135] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2320), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1389), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1139), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(245), - [sym_match_expression] = STATE(245), - [sym_while_expression] = STATE(245), - [sym_loop_expression] = STATE(245), - [sym_for_expression] = STATE(245), - [sym_const_block] = STATE(245), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2736), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(245), - [sym_async_block] = STATE(245), - [sym_block] = STATE(245), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1220), - [sym_identifier] = STATE(834), - [sym__primitive_identifier] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(784), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_async] = ACTIONS(786), - [anon_sym_break] = ACTIONS(25), - [anon_sym_const] = ACTIONS(788), - [anon_sym_continue] = ACTIONS(29), - [anon_sym_default] = ACTIONS(457), - [anon_sym_for] = ACTIONS(790), - [anon_sym_if] = ACTIONS(792), - [anon_sym_loop] = ACTIONS(794), - [anon_sym_match] = ACTIONS(796), - [anon_sym_return] = ACTIONS(53), - [anon_sym_union] = ACTIONS(457), - [anon_sym_unsafe] = ACTIONS(798), - [anon_sym_while] = ACTIONS(800), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(547), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_AMP] = ACTIONS(79), - [anon_sym_DOT_DOT] = ACTIONS(81), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_AMP] = ACTIONS(551), + [anon_sym_DOT_DOT] = ACTIONS(553), + [anon_sym_DASH] = ACTIONS(547), [anon_sym_PIPE] = ACTIONS(83), - [anon_sym_yield] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(515), + [anon_sym_move] = ACTIONS(517), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), @@ -36138,62 +36285,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), [sym__raw_identifier] = ACTIONS(97), - [sym_self] = ACTIONS(99), - [sym_super] = ACTIONS(101), - [sym_crate] = ACTIONS(101), - [sym_metavariable] = ACTIONS(105), - [sym_grit_metavariable] = ACTIONS(473), + [sym_self] = ACTIONS(519), + [sym_super] = ACTIONS(521), + [sym_crate] = ACTIONS(521), + [sym_metavariable] = ACTIONS(523), + [sym_grit_metavariable] = ACTIONS(525), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [136] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2320), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1356), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1139), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1220), - [sym_identifier] = STATE(834), + [137] = { + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2176), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1275), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1159), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(65), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1189), + [sym_identifier] = STATE(833), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(447), @@ -36217,7 +36364,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(77), [anon_sym_AMP] = ACTIONS(79), - [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(673), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(85), @@ -36255,161 +36402,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [137] = { - [ts_builtin_sym_end] = ACTIONS(810), - [sym__primitive_identifier] = ACTIONS(812), - [anon_sym_SEMI] = ACTIONS(810), - [anon_sym_macro_rules_BANG] = ACTIONS(810), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_LBRACE] = ACTIONS(810), - [anon_sym_RBRACE] = ACTIONS(810), - [anon_sym_LBRACK] = ACTIONS(810), - [anon_sym_PLUS] = ACTIONS(812), - [anon_sym_STAR] = ACTIONS(812), - [anon_sym_QMARK] = ACTIONS(810), - [anon_sym_SQUOTE] = ACTIONS(812), - [anon_sym_as] = ACTIONS(812), - [anon_sym_async] = ACTIONS(812), - [anon_sym_break] = ACTIONS(812), - [anon_sym_const] = ACTIONS(812), - [anon_sym_continue] = ACTIONS(812), - [anon_sym_default] = ACTIONS(812), - [anon_sym_enum] = ACTIONS(812), - [anon_sym_fn] = ACTIONS(812), - [anon_sym_for] = ACTIONS(812), - [anon_sym_if] = ACTIONS(812), - [anon_sym_impl] = ACTIONS(812), - [anon_sym_let] = ACTIONS(812), - [anon_sym_loop] = ACTIONS(812), - [anon_sym_match] = ACTIONS(812), - [anon_sym_mod] = ACTIONS(812), - [anon_sym_pub] = ACTIONS(812), - [anon_sym_return] = ACTIONS(812), - [anon_sym_static] = ACTIONS(812), - [anon_sym_struct] = ACTIONS(812), - [anon_sym_trait] = ACTIONS(812), - [anon_sym_type] = ACTIONS(812), - [anon_sym_union] = ACTIONS(812), - [anon_sym_unsafe] = ACTIONS(812), - [anon_sym_use] = ACTIONS(812), - [anon_sym_while] = ACTIONS(812), - [anon_sym_POUND] = ACTIONS(810), - [anon_sym_BANG] = ACTIONS(812), - [anon_sym_EQ] = ACTIONS(812), - [anon_sym_extern] = ACTIONS(812), - [anon_sym_LT] = ACTIONS(812), - [anon_sym_GT] = ACTIONS(812), - [anon_sym_COLON_COLON] = ACTIONS(810), - [anon_sym_AMP] = ACTIONS(812), - [anon_sym_DOT_DOT_DOT] = ACTIONS(810), - [anon_sym_DOT_DOT] = ACTIONS(812), - [anon_sym_DOT_DOT_EQ] = ACTIONS(810), - [anon_sym_DASH] = ACTIONS(812), - [anon_sym_AMP_AMP] = ACTIONS(810), - [anon_sym_PIPE_PIPE] = ACTIONS(810), - [anon_sym_PIPE] = ACTIONS(812), - [anon_sym_CARET] = ACTIONS(812), - [anon_sym_EQ_EQ] = ACTIONS(810), - [anon_sym_BANG_EQ] = ACTIONS(810), - [anon_sym_LT_EQ] = ACTIONS(810), - [anon_sym_GT_EQ] = ACTIONS(810), - [anon_sym_LT_LT] = ACTIONS(812), - [anon_sym_GT_GT] = ACTIONS(812), - [anon_sym_SLASH] = ACTIONS(812), - [anon_sym_PERCENT] = ACTIONS(812), - [anon_sym_PLUS_EQ] = ACTIONS(810), - [anon_sym_DASH_EQ] = ACTIONS(810), - [anon_sym_STAR_EQ] = ACTIONS(810), - [anon_sym_SLASH_EQ] = ACTIONS(810), - [anon_sym_PERCENT_EQ] = ACTIONS(810), - [anon_sym_AMP_EQ] = ACTIONS(810), - [anon_sym_PIPE_EQ] = ACTIONS(810), - [anon_sym_CARET_EQ] = ACTIONS(810), - [anon_sym_LT_LT_EQ] = ACTIONS(810), - [anon_sym_GT_GT_EQ] = ACTIONS(810), - [anon_sym_yield] = ACTIONS(812), - [anon_sym_move] = ACTIONS(812), - [anon_sym_DOT] = ACTIONS(812), - [sym_integer_literal] = ACTIONS(810), - [aux_sym_string_literal_token1] = ACTIONS(810), - [sym_char_literal] = ACTIONS(810), - [anon_sym_true] = ACTIONS(812), - [anon_sym_false] = ACTIONS(812), - [anon_sym_u8] = ACTIONS(812), - [anon_sym_i8] = ACTIONS(812), - [anon_sym_u16] = ACTIONS(812), - [anon_sym_i16] = ACTIONS(812), - [anon_sym_u32] = ACTIONS(812), - [anon_sym_i32] = ACTIONS(812), - [anon_sym_u64] = ACTIONS(812), - [anon_sym_i64] = ACTIONS(812), - [anon_sym_u128] = ACTIONS(812), - [anon_sym_i128] = ACTIONS(812), - [anon_sym_isize] = ACTIONS(812), - [anon_sym_usize] = ACTIONS(812), - [anon_sym_f32] = ACTIONS(812), - [anon_sym_f64] = ACTIONS(812), - [anon_sym_bool] = ACTIONS(812), - [anon_sym_str] = ACTIONS(812), - [anon_sym_char] = ACTIONS(812), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(810), - [sym_self] = ACTIONS(812), - [sym_super] = ACTIONS(812), - [sym_crate] = ACTIONS(812), - [sym_metavariable] = ACTIONS(810), - [sym_grit_metavariable] = ACTIONS(810), - [sym_raw_string_literal] = ACTIONS(810), - [sym_float_literal] = ACTIONS(810), - [sym_block_comment] = ACTIONS(3), - }, [138] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2320), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1395), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1139), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1220), - [sym_identifier] = STATE(834), + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2176), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1269), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1159), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(65), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1189), + [sym_identifier] = STATE(833), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(447), @@ -36433,7 +36472,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(77), [anon_sym_AMP] = ACTIONS(79), - [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(673), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(85), @@ -36472,184 +36511,292 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [139] = { - [ts_builtin_sym_end] = ACTIONS(814), - [sym__primitive_identifier] = ACTIONS(816), - [anon_sym_SEMI] = ACTIONS(814), - [anon_sym_macro_rules_BANG] = ACTIONS(814), - [anon_sym_LPAREN] = ACTIONS(814), - [anon_sym_LBRACE] = ACTIONS(814), - [anon_sym_RBRACE] = ACTIONS(814), - [anon_sym_LBRACK] = ACTIONS(814), - [anon_sym_PLUS] = ACTIONS(816), - [anon_sym_STAR] = ACTIONS(816), - [anon_sym_QMARK] = ACTIONS(814), - [anon_sym_SQUOTE] = ACTIONS(816), - [anon_sym_as] = ACTIONS(816), - [anon_sym_async] = ACTIONS(816), - [anon_sym_break] = ACTIONS(816), - [anon_sym_const] = ACTIONS(816), - [anon_sym_continue] = ACTIONS(816), - [anon_sym_default] = ACTIONS(816), - [anon_sym_enum] = ACTIONS(816), - [anon_sym_fn] = ACTIONS(816), - [anon_sym_for] = ACTIONS(816), - [anon_sym_if] = ACTIONS(816), - [anon_sym_impl] = ACTIONS(816), - [anon_sym_let] = ACTIONS(816), - [anon_sym_loop] = ACTIONS(816), - [anon_sym_match] = ACTIONS(816), - [anon_sym_mod] = ACTIONS(816), - [anon_sym_pub] = ACTIONS(816), - [anon_sym_return] = ACTIONS(816), - [anon_sym_static] = ACTIONS(816), - [anon_sym_struct] = ACTIONS(816), - [anon_sym_trait] = ACTIONS(816), - [anon_sym_type] = ACTIONS(816), - [anon_sym_union] = ACTIONS(816), - [anon_sym_unsafe] = ACTIONS(816), - [anon_sym_use] = ACTIONS(816), - [anon_sym_while] = ACTIONS(816), - [anon_sym_POUND] = ACTIONS(814), - [anon_sym_BANG] = ACTIONS(816), - [anon_sym_EQ] = ACTIONS(816), - [anon_sym_extern] = ACTIONS(816), - [anon_sym_LT] = ACTIONS(816), - [anon_sym_GT] = ACTIONS(816), - [anon_sym_COLON_COLON] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(816), - [anon_sym_DOT_DOT_DOT] = ACTIONS(814), - [anon_sym_DOT_DOT] = ACTIONS(816), - [anon_sym_DOT_DOT_EQ] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(816), - [anon_sym_AMP_AMP] = ACTIONS(814), - [anon_sym_PIPE_PIPE] = ACTIONS(814), - [anon_sym_PIPE] = ACTIONS(816), - [anon_sym_CARET] = ACTIONS(816), - [anon_sym_EQ_EQ] = ACTIONS(814), - [anon_sym_BANG_EQ] = ACTIONS(814), - [anon_sym_LT_EQ] = ACTIONS(814), - [anon_sym_GT_EQ] = ACTIONS(814), - [anon_sym_LT_LT] = ACTIONS(816), - [anon_sym_GT_GT] = ACTIONS(816), - [anon_sym_SLASH] = ACTIONS(816), - [anon_sym_PERCENT] = ACTIONS(816), - [anon_sym_PLUS_EQ] = ACTIONS(814), - [anon_sym_DASH_EQ] = ACTIONS(814), - [anon_sym_STAR_EQ] = ACTIONS(814), - [anon_sym_SLASH_EQ] = ACTIONS(814), - [anon_sym_PERCENT_EQ] = ACTIONS(814), - [anon_sym_AMP_EQ] = ACTIONS(814), - [anon_sym_PIPE_EQ] = ACTIONS(814), - [anon_sym_CARET_EQ] = ACTIONS(814), - [anon_sym_LT_LT_EQ] = ACTIONS(814), - [anon_sym_GT_GT_EQ] = ACTIONS(814), - [anon_sym_yield] = ACTIONS(816), - [anon_sym_move] = ACTIONS(816), - [anon_sym_DOT] = ACTIONS(816), - [sym_integer_literal] = ACTIONS(814), - [aux_sym_string_literal_token1] = ACTIONS(814), - [sym_char_literal] = ACTIONS(814), - [anon_sym_true] = ACTIONS(816), - [anon_sym_false] = ACTIONS(816), - [anon_sym_u8] = ACTIONS(816), - [anon_sym_i8] = ACTIONS(816), - [anon_sym_u16] = ACTIONS(816), - [anon_sym_i16] = ACTIONS(816), - [anon_sym_u32] = ACTIONS(816), - [anon_sym_i32] = ACTIONS(816), - [anon_sym_u64] = ACTIONS(816), - [anon_sym_i64] = ACTIONS(816), - [anon_sym_u128] = ACTIONS(816), - [anon_sym_i128] = ACTIONS(816), - [anon_sym_isize] = ACTIONS(816), - [anon_sym_usize] = ACTIONS(816), - [anon_sym_f32] = ACTIONS(816), - [anon_sym_f64] = ACTIONS(816), - [anon_sym_bool] = ACTIONS(816), - [anon_sym_str] = ACTIONS(816), - [anon_sym_char] = ACTIONS(816), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(814), - [sym_self] = ACTIONS(816), - [sym_super] = ACTIONS(816), - [sym_crate] = ACTIONS(816), - [sym_metavariable] = ACTIONS(814), - [sym_grit_metavariable] = ACTIONS(814), - [sym_raw_string_literal] = ACTIONS(814), - [sym_float_literal] = ACTIONS(814), + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2305), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1363), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1308), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(74), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1313), + [sym_identifier] = STATE(1295), + [sym__primitive_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(447), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(547), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_async] = ACTIONS(453), + [anon_sym_break] = ACTIONS(505), + [anon_sym_const] = ACTIONS(455), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(507), + [anon_sym_for] = ACTIONS(459), + [anon_sym_if] = ACTIONS(461), + [anon_sym_loop] = ACTIONS(463), + [anon_sym_match] = ACTIONS(465), + [anon_sym_return] = ACTIONS(509), + [anon_sym_union] = ACTIONS(507), + [anon_sym_unsafe] = ACTIONS(467), + [anon_sym_while] = ACTIONS(469), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_AMP] = ACTIONS(551), + [anon_sym_DOT_DOT] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(547), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(515), + [anon_sym_move] = ACTIONS(517), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [anon_sym_u8] = ACTIONS(95), + [anon_sym_i8] = ACTIONS(95), + [anon_sym_u16] = ACTIONS(95), + [anon_sym_i16] = ACTIONS(95), + [anon_sym_u32] = ACTIONS(95), + [anon_sym_i32] = ACTIONS(95), + [anon_sym_u64] = ACTIONS(95), + [anon_sym_i64] = ACTIONS(95), + [anon_sym_u128] = ACTIONS(95), + [anon_sym_i128] = ACTIONS(95), + [anon_sym_isize] = ACTIONS(95), + [anon_sym_usize] = ACTIONS(95), + [anon_sym_f32] = ACTIONS(95), + [anon_sym_f64] = ACTIONS(95), + [anon_sym_bool] = ACTIONS(95), + [anon_sym_str] = ACTIONS(95), + [anon_sym_char] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(97), + [sym_self] = ACTIONS(519), + [sym_super] = ACTIONS(521), + [sym_crate] = ACTIONS(521), + [sym_metavariable] = ACTIONS(523), + [sym_grit_metavariable] = ACTIONS(525), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [140] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2320), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1373), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1139), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(245), - [sym_match_expression] = STATE(245), - [sym_while_expression] = STATE(245), - [sym_loop_expression] = STATE(245), - [sym_for_expression] = STATE(245), - [sym_const_block] = STATE(245), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2736), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(245), - [sym_async_block] = STATE(245), - [sym_block] = STATE(245), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1220), - [sym_identifier] = STATE(834), + [ts_builtin_sym_end] = ACTIONS(804), + [sym__primitive_identifier] = ACTIONS(806), + [anon_sym_SEMI] = ACTIONS(804), + [anon_sym_macro_rules_BANG] = ACTIONS(804), + [anon_sym_LPAREN] = ACTIONS(804), + [anon_sym_LBRACE] = ACTIONS(804), + [anon_sym_RBRACE] = ACTIONS(804), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_STAR] = ACTIONS(806), + [anon_sym_QMARK] = ACTIONS(804), + [anon_sym_SQUOTE] = ACTIONS(806), + [anon_sym_as] = ACTIONS(806), + [anon_sym_async] = ACTIONS(806), + [anon_sym_break] = ACTIONS(806), + [anon_sym_const] = ACTIONS(806), + [anon_sym_continue] = ACTIONS(806), + [anon_sym_default] = ACTIONS(806), + [anon_sym_enum] = ACTIONS(806), + [anon_sym_fn] = ACTIONS(806), + [anon_sym_for] = ACTIONS(806), + [anon_sym_if] = ACTIONS(806), + [anon_sym_impl] = ACTIONS(806), + [anon_sym_let] = ACTIONS(806), + [anon_sym_loop] = ACTIONS(806), + [anon_sym_match] = ACTIONS(806), + [anon_sym_mod] = ACTIONS(806), + [anon_sym_pub] = ACTIONS(806), + [anon_sym_return] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_struct] = ACTIONS(806), + [anon_sym_trait] = ACTIONS(806), + [anon_sym_type] = ACTIONS(806), + [anon_sym_union] = ACTIONS(806), + [anon_sym_unsafe] = ACTIONS(806), + [anon_sym_use] = ACTIONS(806), + [anon_sym_while] = ACTIONS(806), + [anon_sym_POUND] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(806), + [anon_sym_EQ] = ACTIONS(806), + [anon_sym_extern] = ACTIONS(806), + [anon_sym_LT] = ACTIONS(806), + [anon_sym_GT] = ACTIONS(806), + [anon_sym_COLON_COLON] = ACTIONS(804), + [anon_sym_AMP] = ACTIONS(806), + [anon_sym_DOT_DOT_DOT] = ACTIONS(804), + [anon_sym_DOT_DOT] = ACTIONS(806), + [anon_sym_DOT_DOT_EQ] = ACTIONS(804), + [anon_sym_DASH] = ACTIONS(806), + [anon_sym_AMP_AMP] = ACTIONS(804), + [anon_sym_PIPE_PIPE] = ACTIONS(804), + [anon_sym_PIPE] = ACTIONS(806), + [anon_sym_CARET] = ACTIONS(806), + [anon_sym_EQ_EQ] = ACTIONS(804), + [anon_sym_BANG_EQ] = ACTIONS(804), + [anon_sym_LT_EQ] = ACTIONS(804), + [anon_sym_GT_EQ] = ACTIONS(804), + [anon_sym_LT_LT] = ACTIONS(806), + [anon_sym_GT_GT] = ACTIONS(806), + [anon_sym_SLASH] = ACTIONS(806), + [anon_sym_PERCENT] = ACTIONS(806), + [anon_sym_PLUS_EQ] = ACTIONS(804), + [anon_sym_DASH_EQ] = ACTIONS(804), + [anon_sym_STAR_EQ] = ACTIONS(804), + [anon_sym_SLASH_EQ] = ACTIONS(804), + [anon_sym_PERCENT_EQ] = ACTIONS(804), + [anon_sym_AMP_EQ] = ACTIONS(804), + [anon_sym_PIPE_EQ] = ACTIONS(804), + [anon_sym_CARET_EQ] = ACTIONS(804), + [anon_sym_LT_LT_EQ] = ACTIONS(804), + [anon_sym_GT_GT_EQ] = ACTIONS(804), + [anon_sym_yield] = ACTIONS(806), + [anon_sym_move] = ACTIONS(806), + [anon_sym_DOT] = ACTIONS(806), + [sym_integer_literal] = ACTIONS(804), + [aux_sym_string_literal_token1] = ACTIONS(804), + [sym_char_literal] = ACTIONS(804), + [anon_sym_true] = ACTIONS(806), + [anon_sym_false] = ACTIONS(806), + [anon_sym_u8] = ACTIONS(806), + [anon_sym_i8] = ACTIONS(806), + [anon_sym_u16] = ACTIONS(806), + [anon_sym_i16] = ACTIONS(806), + [anon_sym_u32] = ACTIONS(806), + [anon_sym_i32] = ACTIONS(806), + [anon_sym_u64] = ACTIONS(806), + [anon_sym_i64] = ACTIONS(806), + [anon_sym_u128] = ACTIONS(806), + [anon_sym_i128] = ACTIONS(806), + [anon_sym_isize] = ACTIONS(806), + [anon_sym_usize] = ACTIONS(806), + [anon_sym_f32] = ACTIONS(806), + [anon_sym_f64] = ACTIONS(806), + [anon_sym_bool] = ACTIONS(806), + [anon_sym_str] = ACTIONS(806), + [anon_sym_char] = ACTIONS(806), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(804), + [sym_self] = ACTIONS(806), + [sym_super] = ACTIONS(806), + [sym_crate] = ACTIONS(806), + [sym_metavariable] = ACTIONS(804), + [sym_grit_metavariable] = ACTIONS(804), + [sym_raw_string_literal] = ACTIONS(804), + [sym_float_literal] = ACTIONS(804), + [sym_block_comment] = ACTIONS(3), + }, + [141] = { + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2176), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1266), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1159), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(65), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1189), + [sym_identifier] = STATE(833), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(784), + [anon_sym_LBRACE] = ACTIONS(447), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_async] = ACTIONS(786), + [anon_sym_async] = ACTIONS(453), [anon_sym_break] = ACTIONS(25), - [anon_sym_const] = ACTIONS(788), + [anon_sym_const] = ACTIONS(455), [anon_sym_continue] = ACTIONS(29), [anon_sym_default] = ACTIONS(457), - [anon_sym_for] = ACTIONS(790), - [anon_sym_if] = ACTIONS(792), - [anon_sym_loop] = ACTIONS(794), - [anon_sym_match] = ACTIONS(796), + [anon_sym_for] = ACTIONS(459), + [anon_sym_if] = ACTIONS(461), + [anon_sym_loop] = ACTIONS(463), + [anon_sym_match] = ACTIONS(465), [anon_sym_return] = ACTIONS(53), [anon_sym_union] = ACTIONS(457), - [anon_sym_unsafe] = ACTIONS(798), - [anon_sym_while] = ACTIONS(800), + [anon_sym_unsafe] = ACTIONS(467), + [anon_sym_while] = ACTIONS(469), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(77), [anon_sym_AMP] = ACTIONS(79), - [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(673), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(85), @@ -36687,53 +36834,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [141] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2320), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1365), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1139), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1220), - [sym_identifier] = STATE(834), + [142] = { + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2176), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1263), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1159), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(65), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1189), + [sym_identifier] = STATE(833), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(447), @@ -36757,7 +36904,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(77), [anon_sym_AMP] = ACTIONS(79), - [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(673), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(85), @@ -36795,81 +36942,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [142] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2289), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1344), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1296), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), + [143] = { + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2176), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1281), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1159), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), [sym_closure_parameters] = STATE(65), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1311), - [sym_identifier] = STATE(1290), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1189), + [sym_identifier] = STATE(833), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(447), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(545), + [anon_sym_STAR] = ACTIONS(19), [anon_sym_SQUOTE] = ACTIONS(21), [anon_sym_async] = ACTIONS(453), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(25), [anon_sym_const] = ACTIONS(455), [anon_sym_continue] = ACTIONS(29), - [anon_sym_default] = ACTIONS(507), + [anon_sym_default] = ACTIONS(457), [anon_sym_for] = ACTIONS(459), [anon_sym_if] = ACTIONS(461), [anon_sym_loop] = ACTIONS(463), [anon_sym_match] = ACTIONS(465), - [anon_sym_return] = ACTIONS(509), - [anon_sym_union] = ACTIONS(507), + [anon_sym_return] = ACTIONS(53), + [anon_sym_union] = ACTIONS(457), [anon_sym_unsafe] = ACTIONS(467), [anon_sym_while] = ACTIONS(469), - [anon_sym_BANG] = ACTIONS(545), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_AMP] = ACTIONS(549), - [anon_sym_DOT_DOT] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(545), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(673), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(83), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), @@ -36894,62 +37041,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), [sym__raw_identifier] = ACTIONS(97), - [sym_self] = ACTIONS(519), - [sym_super] = ACTIONS(521), - [sym_crate] = ACTIONS(521), - [sym_metavariable] = ACTIONS(523), - [sym_grit_metavariable] = ACTIONS(525), + [sym_self] = ACTIONS(99), + [sym_super] = ACTIONS(101), + [sym_crate] = ACTIONS(101), + [sym_metavariable] = ACTIONS(105), + [sym_grit_metavariable] = ACTIONS(473), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [143] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2320), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1403), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1139), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1220), - [sym_identifier] = STATE(834), + [144] = { + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2176), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1364), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1159), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(65), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1189), + [sym_identifier] = STATE(833), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(447), @@ -37011,58 +37158,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [144] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2289), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1187), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1296), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), + [145] = { + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2176), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1395), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1159), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), [sym_closure_parameters] = STATE(65), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1311), - [sym_identifier] = STATE(1290), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1189), + [sym_identifier] = STATE(833), + [sym__primitive_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(447), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_async] = ACTIONS(453), + [anon_sym_break] = ACTIONS(25), + [anon_sym_const] = ACTIONS(455), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(457), + [anon_sym_for] = ACTIONS(459), + [anon_sym_if] = ACTIONS(461), + [anon_sym_loop] = ACTIONS(463), + [anon_sym_match] = ACTIONS(465), + [anon_sym_return] = ACTIONS(53), + [anon_sym_union] = ACTIONS(457), + [anon_sym_unsafe] = ACTIONS(467), + [anon_sym_while] = ACTIONS(469), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [anon_sym_u8] = ACTIONS(95), + [anon_sym_i8] = ACTIONS(95), + [anon_sym_u16] = ACTIONS(95), + [anon_sym_i16] = ACTIONS(95), + [anon_sym_u32] = ACTIONS(95), + [anon_sym_i32] = ACTIONS(95), + [anon_sym_u64] = ACTIONS(95), + [anon_sym_i64] = ACTIONS(95), + [anon_sym_u128] = ACTIONS(95), + [anon_sym_i128] = ACTIONS(95), + [anon_sym_isize] = ACTIONS(95), + [anon_sym_usize] = ACTIONS(95), + [anon_sym_f32] = ACTIONS(95), + [anon_sym_f64] = ACTIONS(95), + [anon_sym_bool] = ACTIONS(95), + [anon_sym_str] = ACTIONS(95), + [anon_sym_char] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(97), + [sym_self] = ACTIONS(99), + [sym_super] = ACTIONS(101), + [sym_crate] = ACTIONS(101), + [sym_metavariable] = ACTIONS(105), + [sym_grit_metavariable] = ACTIONS(473), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [146] = { + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2305), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1353), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1308), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(74), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1313), + [sym_identifier] = STATE(1295), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(447), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(545), + [anon_sym_STAR] = ACTIONS(547), [anon_sym_SQUOTE] = ACTIONS(21), [anon_sym_async] = ACTIONS(453), [anon_sym_break] = ACTIONS(505), @@ -37077,12 +37332,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(507), [anon_sym_unsafe] = ACTIONS(467), [anon_sym_while] = ACTIONS(469), - [anon_sym_BANG] = ACTIONS(545), + [anon_sym_BANG] = ACTIONS(547), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_AMP] = ACTIONS(549), - [anon_sym_DOT_DOT] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(551), + [anon_sym_DOT_DOT] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(547), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(515), [anon_sym_move] = ACTIONS(517), @@ -37119,53 +37374,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [145] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2320), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1405), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1139), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1220), - [sym_identifier] = STATE(834), + [147] = { + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2176), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1416), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1159), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(65), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1189), + [sym_identifier] = STATE(833), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(447), @@ -37227,72 +37482,180 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [146] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2320), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1406), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1139), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1220), - [sym_identifier] = STATE(834), + [148] = { + [ts_builtin_sym_end] = ACTIONS(808), + [sym__primitive_identifier] = ACTIONS(810), + [anon_sym_SEMI] = ACTIONS(808), + [anon_sym_macro_rules_BANG] = ACTIONS(808), + [anon_sym_LPAREN] = ACTIONS(808), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_RBRACE] = ACTIONS(808), + [anon_sym_LBRACK] = ACTIONS(808), + [anon_sym_PLUS] = ACTIONS(810), + [anon_sym_STAR] = ACTIONS(810), + [anon_sym_QMARK] = ACTIONS(808), + [anon_sym_SQUOTE] = ACTIONS(810), + [anon_sym_as] = ACTIONS(810), + [anon_sym_async] = ACTIONS(810), + [anon_sym_break] = ACTIONS(810), + [anon_sym_const] = ACTIONS(810), + [anon_sym_continue] = ACTIONS(810), + [anon_sym_default] = ACTIONS(810), + [anon_sym_enum] = ACTIONS(810), + [anon_sym_fn] = ACTIONS(810), + [anon_sym_for] = ACTIONS(810), + [anon_sym_if] = ACTIONS(810), + [anon_sym_impl] = ACTIONS(810), + [anon_sym_let] = ACTIONS(810), + [anon_sym_loop] = ACTIONS(810), + [anon_sym_match] = ACTIONS(810), + [anon_sym_mod] = ACTIONS(810), + [anon_sym_pub] = ACTIONS(810), + [anon_sym_return] = ACTIONS(810), + [anon_sym_static] = ACTIONS(810), + [anon_sym_struct] = ACTIONS(810), + [anon_sym_trait] = ACTIONS(810), + [anon_sym_type] = ACTIONS(810), + [anon_sym_union] = ACTIONS(810), + [anon_sym_unsafe] = ACTIONS(810), + [anon_sym_use] = ACTIONS(810), + [anon_sym_while] = ACTIONS(810), + [anon_sym_POUND] = ACTIONS(808), + [anon_sym_BANG] = ACTIONS(810), + [anon_sym_EQ] = ACTIONS(810), + [anon_sym_extern] = ACTIONS(810), + [anon_sym_LT] = ACTIONS(810), + [anon_sym_GT] = ACTIONS(810), + [anon_sym_COLON_COLON] = ACTIONS(808), + [anon_sym_AMP] = ACTIONS(810), + [anon_sym_DOT_DOT_DOT] = ACTIONS(808), + [anon_sym_DOT_DOT] = ACTIONS(810), + [anon_sym_DOT_DOT_EQ] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(810), + [anon_sym_AMP_AMP] = ACTIONS(808), + [anon_sym_PIPE_PIPE] = ACTIONS(808), + [anon_sym_PIPE] = ACTIONS(810), + [anon_sym_CARET] = ACTIONS(810), + [anon_sym_EQ_EQ] = ACTIONS(808), + [anon_sym_BANG_EQ] = ACTIONS(808), + [anon_sym_LT_EQ] = ACTIONS(808), + [anon_sym_GT_EQ] = ACTIONS(808), + [anon_sym_LT_LT] = ACTIONS(810), + [anon_sym_GT_GT] = ACTIONS(810), + [anon_sym_SLASH] = ACTIONS(810), + [anon_sym_PERCENT] = ACTIONS(810), + [anon_sym_PLUS_EQ] = ACTIONS(808), + [anon_sym_DASH_EQ] = ACTIONS(808), + [anon_sym_STAR_EQ] = ACTIONS(808), + [anon_sym_SLASH_EQ] = ACTIONS(808), + [anon_sym_PERCENT_EQ] = ACTIONS(808), + [anon_sym_AMP_EQ] = ACTIONS(808), + [anon_sym_PIPE_EQ] = ACTIONS(808), + [anon_sym_CARET_EQ] = ACTIONS(808), + [anon_sym_LT_LT_EQ] = ACTIONS(808), + [anon_sym_GT_GT_EQ] = ACTIONS(808), + [anon_sym_yield] = ACTIONS(810), + [anon_sym_move] = ACTIONS(810), + [anon_sym_DOT] = ACTIONS(810), + [sym_integer_literal] = ACTIONS(808), + [aux_sym_string_literal_token1] = ACTIONS(808), + [sym_char_literal] = ACTIONS(808), + [anon_sym_true] = ACTIONS(810), + [anon_sym_false] = ACTIONS(810), + [anon_sym_u8] = ACTIONS(810), + [anon_sym_i8] = ACTIONS(810), + [anon_sym_u16] = ACTIONS(810), + [anon_sym_i16] = ACTIONS(810), + [anon_sym_u32] = ACTIONS(810), + [anon_sym_i32] = ACTIONS(810), + [anon_sym_u64] = ACTIONS(810), + [anon_sym_i64] = ACTIONS(810), + [anon_sym_u128] = ACTIONS(810), + [anon_sym_i128] = ACTIONS(810), + [anon_sym_isize] = ACTIONS(810), + [anon_sym_usize] = ACTIONS(810), + [anon_sym_f32] = ACTIONS(810), + [anon_sym_f64] = ACTIONS(810), + [anon_sym_bool] = ACTIONS(810), + [anon_sym_str] = ACTIONS(810), + [anon_sym_char] = ACTIONS(810), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(808), + [sym_self] = ACTIONS(810), + [sym_super] = ACTIONS(810), + [sym_crate] = ACTIONS(810), + [sym_metavariable] = ACTIONS(808), + [sym_grit_metavariable] = ACTIONS(808), + [sym_raw_string_literal] = ACTIONS(808), + [sym_float_literal] = ACTIONS(808), + [sym_block_comment] = ACTIONS(3), + }, + [149] = { + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2176), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1384), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1159), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(247), + [sym_match_expression] = STATE(247), + [sym_while_expression] = STATE(247), + [sym_loop_expression] = STATE(247), + [sym_for_expression] = STATE(247), + [sym_const_block] = STATE(247), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(65), + [sym_loop_label] = STATE(2740), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(247), + [sym_async_block] = STATE(247), + [sym_block] = STATE(247), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1189), + [sym_identifier] = STATE(833), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(447), + [anon_sym_LBRACE] = ACTIONS(739), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_async] = ACTIONS(453), + [anon_sym_async] = ACTIONS(741), [anon_sym_break] = ACTIONS(25), - [anon_sym_const] = ACTIONS(455), + [anon_sym_const] = ACTIONS(743), [anon_sym_continue] = ACTIONS(29), [anon_sym_default] = ACTIONS(457), - [anon_sym_for] = ACTIONS(459), - [anon_sym_if] = ACTIONS(461), - [anon_sym_loop] = ACTIONS(463), - [anon_sym_match] = ACTIONS(465), + [anon_sym_for] = ACTIONS(745), + [anon_sym_if] = ACTIONS(747), + [anon_sym_loop] = ACTIONS(749), + [anon_sym_match] = ACTIONS(751), [anon_sym_return] = ACTIONS(53), [anon_sym_union] = ACTIONS(457), - [anon_sym_unsafe] = ACTIONS(467), - [anon_sym_while] = ACTIONS(469), + [anon_sym_unsafe] = ACTIONS(753), + [anon_sym_while] = ACTIONS(755), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(77), @@ -37335,53 +37698,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [147] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2320), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1336), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1139), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1220), - [sym_identifier] = STATE(834), + [150] = { + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2176), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1216), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1159), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(65), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1189), + [sym_identifier] = STATE(833), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(447), @@ -37443,53 +37806,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [148] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2320), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1410), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1139), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1220), - [sym_identifier] = STATE(834), + [151] = { + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2176), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1276), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1159), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(65), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1189), + [sym_identifier] = STATE(833), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(447), @@ -37513,7 +37876,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(77), [anon_sym_AMP] = ACTIONS(79), - [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(673), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(85), @@ -37551,81 +37914,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [149] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2289), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1348), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1296), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), + [152] = { + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2176), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1387), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1159), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), [sym_closure_parameters] = STATE(65), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1311), - [sym_identifier] = STATE(1290), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1189), + [sym_identifier] = STATE(833), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(447), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(545), + [anon_sym_STAR] = ACTIONS(19), [anon_sym_SQUOTE] = ACTIONS(21), [anon_sym_async] = ACTIONS(453), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(25), [anon_sym_const] = ACTIONS(455), [anon_sym_continue] = ACTIONS(29), - [anon_sym_default] = ACTIONS(507), + [anon_sym_default] = ACTIONS(457), [anon_sym_for] = ACTIONS(459), [anon_sym_if] = ACTIONS(461), [anon_sym_loop] = ACTIONS(463), [anon_sym_match] = ACTIONS(465), - [anon_sym_return] = ACTIONS(509), - [anon_sym_union] = ACTIONS(507), + [anon_sym_return] = ACTIONS(53), + [anon_sym_union] = ACTIONS(457), [anon_sym_unsafe] = ACTIONS(467), [anon_sym_while] = ACTIONS(469), - [anon_sym_BANG] = ACTIONS(545), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_AMP] = ACTIONS(549), - [anon_sym_DOT_DOT] = ACTIONS(681), - [anon_sym_DASH] = ACTIONS(545), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(83), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), @@ -37650,90 +38013,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), [sym__raw_identifier] = ACTIONS(97), - [sym_self] = ACTIONS(519), - [sym_super] = ACTIONS(521), - [sym_crate] = ACTIONS(521), - [sym_metavariable] = ACTIONS(523), - [sym_grit_metavariable] = ACTIONS(525), + [sym_self] = ACTIONS(99), + [sym_super] = ACTIONS(101), + [sym_crate] = ACTIONS(101), + [sym_metavariable] = ACTIONS(105), + [sym_grit_metavariable] = ACTIONS(473), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [150] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2289), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1350), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1296), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), + [153] = { + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2176), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1274), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1159), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), [sym_closure_parameters] = STATE(65), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1311), - [sym_identifier] = STATE(1290), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1189), + [sym_identifier] = STATE(833), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(447), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(545), + [anon_sym_STAR] = ACTIONS(19), [anon_sym_SQUOTE] = ACTIONS(21), [anon_sym_async] = ACTIONS(453), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(25), [anon_sym_const] = ACTIONS(455), [anon_sym_continue] = ACTIONS(29), - [anon_sym_default] = ACTIONS(507), + [anon_sym_default] = ACTIONS(457), [anon_sym_for] = ACTIONS(459), [anon_sym_if] = ACTIONS(461), [anon_sym_loop] = ACTIONS(463), [anon_sym_match] = ACTIONS(465), - [anon_sym_return] = ACTIONS(509), - [anon_sym_union] = ACTIONS(507), + [anon_sym_return] = ACTIONS(53), + [anon_sym_union] = ACTIONS(457), [anon_sym_unsafe] = ACTIONS(467), [anon_sym_while] = ACTIONS(469), - [anon_sym_BANG] = ACTIONS(545), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_AMP] = ACTIONS(549), - [anon_sym_DOT_DOT] = ACTIONS(681), - [anon_sym_DASH] = ACTIONS(545), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(673), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(83), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), @@ -37758,198 +38121,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), [sym__raw_identifier] = ACTIONS(97), - [sym_self] = ACTIONS(519), - [sym_super] = ACTIONS(521), - [sym_crate] = ACTIONS(521), - [sym_metavariable] = ACTIONS(523), - [sym_grit_metavariable] = ACTIONS(525), + [sym_self] = ACTIONS(99), + [sym_super] = ACTIONS(101), + [sym_crate] = ACTIONS(101), + [sym_metavariable] = ACTIONS(105), + [sym_grit_metavariable] = ACTIONS(473), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [151] = { - [ts_builtin_sym_end] = ACTIONS(818), - [sym__primitive_identifier] = ACTIONS(820), - [anon_sym_SEMI] = ACTIONS(818), - [anon_sym_macro_rules_BANG] = ACTIONS(818), - [anon_sym_LPAREN] = ACTIONS(818), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_RBRACE] = ACTIONS(818), - [anon_sym_LBRACK] = ACTIONS(818), - [anon_sym_PLUS] = ACTIONS(820), - [anon_sym_STAR] = ACTIONS(820), - [anon_sym_QMARK] = ACTIONS(818), - [anon_sym_SQUOTE] = ACTIONS(820), - [anon_sym_as] = ACTIONS(820), - [anon_sym_async] = ACTIONS(820), - [anon_sym_break] = ACTIONS(820), - [anon_sym_const] = ACTIONS(820), - [anon_sym_continue] = ACTIONS(820), - [anon_sym_default] = ACTIONS(820), - [anon_sym_enum] = ACTIONS(820), - [anon_sym_fn] = ACTIONS(820), - [anon_sym_for] = ACTIONS(820), - [anon_sym_if] = ACTIONS(820), - [anon_sym_impl] = ACTIONS(820), - [anon_sym_let] = ACTIONS(820), - [anon_sym_loop] = ACTIONS(820), - [anon_sym_match] = ACTIONS(820), - [anon_sym_mod] = ACTIONS(820), - [anon_sym_pub] = ACTIONS(820), - [anon_sym_return] = ACTIONS(820), - [anon_sym_static] = ACTIONS(820), - [anon_sym_struct] = ACTIONS(820), - [anon_sym_trait] = ACTIONS(820), - [anon_sym_type] = ACTIONS(820), - [anon_sym_union] = ACTIONS(820), - [anon_sym_unsafe] = ACTIONS(820), - [anon_sym_use] = ACTIONS(820), - [anon_sym_while] = ACTIONS(820), - [anon_sym_POUND] = ACTIONS(818), - [anon_sym_BANG] = ACTIONS(820), - [anon_sym_EQ] = ACTIONS(820), - [anon_sym_extern] = ACTIONS(820), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_GT] = ACTIONS(820), - [anon_sym_COLON_COLON] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(820), - [anon_sym_DOT_DOT_DOT] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DOT_DOT_EQ] = ACTIONS(818), - [anon_sym_DASH] = ACTIONS(820), - [anon_sym_AMP_AMP] = ACTIONS(818), - [anon_sym_PIPE_PIPE] = ACTIONS(818), - [anon_sym_PIPE] = ACTIONS(820), - [anon_sym_CARET] = ACTIONS(820), - [anon_sym_EQ_EQ] = ACTIONS(818), - [anon_sym_BANG_EQ] = ACTIONS(818), - [anon_sym_LT_EQ] = ACTIONS(818), - [anon_sym_GT_EQ] = ACTIONS(818), - [anon_sym_LT_LT] = ACTIONS(820), - [anon_sym_GT_GT] = ACTIONS(820), - [anon_sym_SLASH] = ACTIONS(820), - [anon_sym_PERCENT] = ACTIONS(820), - [anon_sym_PLUS_EQ] = ACTIONS(818), - [anon_sym_DASH_EQ] = ACTIONS(818), - [anon_sym_STAR_EQ] = ACTIONS(818), - [anon_sym_SLASH_EQ] = ACTIONS(818), - [anon_sym_PERCENT_EQ] = ACTIONS(818), - [anon_sym_AMP_EQ] = ACTIONS(818), - [anon_sym_PIPE_EQ] = ACTIONS(818), - [anon_sym_CARET_EQ] = ACTIONS(818), - [anon_sym_LT_LT_EQ] = ACTIONS(818), - [anon_sym_GT_GT_EQ] = ACTIONS(818), - [anon_sym_yield] = ACTIONS(820), - [anon_sym_move] = ACTIONS(820), - [anon_sym_DOT] = ACTIONS(820), - [sym_integer_literal] = ACTIONS(818), - [aux_sym_string_literal_token1] = ACTIONS(818), - [sym_char_literal] = ACTIONS(818), - [anon_sym_true] = ACTIONS(820), - [anon_sym_false] = ACTIONS(820), - [anon_sym_u8] = ACTIONS(820), - [anon_sym_i8] = ACTIONS(820), - [anon_sym_u16] = ACTIONS(820), - [anon_sym_i16] = ACTIONS(820), - [anon_sym_u32] = ACTIONS(820), - [anon_sym_i32] = ACTIONS(820), - [anon_sym_u64] = ACTIONS(820), - [anon_sym_i64] = ACTIONS(820), - [anon_sym_u128] = ACTIONS(820), - [anon_sym_i128] = ACTIONS(820), - [anon_sym_isize] = ACTIONS(820), - [anon_sym_usize] = ACTIONS(820), - [anon_sym_f32] = ACTIONS(820), - [anon_sym_f64] = ACTIONS(820), - [anon_sym_bool] = ACTIONS(820), - [anon_sym_str] = ACTIONS(820), - [anon_sym_char] = ACTIONS(820), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(818), - [sym_self] = ACTIONS(820), - [sym_super] = ACTIONS(820), - [sym_crate] = ACTIONS(820), - [sym_metavariable] = ACTIONS(818), - [sym_grit_metavariable] = ACTIONS(818), - [sym_raw_string_literal] = ACTIONS(818), - [sym_float_literal] = ACTIONS(818), - [sym_block_comment] = ACTIONS(3), - }, - [152] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2289), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1354), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1296), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), + [154] = { + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2176), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1267), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1159), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), [sym_closure_parameters] = STATE(65), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1311), - [sym_identifier] = STATE(1290), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1189), + [sym_identifier] = STATE(833), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(447), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(545), + [anon_sym_STAR] = ACTIONS(19), [anon_sym_SQUOTE] = ACTIONS(21), [anon_sym_async] = ACTIONS(453), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(25), [anon_sym_const] = ACTIONS(455), [anon_sym_continue] = ACTIONS(29), - [anon_sym_default] = ACTIONS(507), + [anon_sym_default] = ACTIONS(457), [anon_sym_for] = ACTIONS(459), [anon_sym_if] = ACTIONS(461), [anon_sym_loop] = ACTIONS(463), [anon_sym_match] = ACTIONS(465), - [anon_sym_return] = ACTIONS(509), - [anon_sym_union] = ACTIONS(507), + [anon_sym_return] = ACTIONS(53), + [anon_sym_union] = ACTIONS(457), [anon_sym_unsafe] = ACTIONS(467), [anon_sym_while] = ACTIONS(469), - [anon_sym_BANG] = ACTIONS(545), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_AMP] = ACTIONS(549), - [anon_sym_DOT_DOT] = ACTIONS(681), - [anon_sym_DASH] = ACTIONS(545), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(673), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(83), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), @@ -37974,90 +38229,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), [sym__raw_identifier] = ACTIONS(97), - [sym_self] = ACTIONS(519), - [sym_super] = ACTIONS(521), - [sym_crate] = ACTIONS(521), - [sym_metavariable] = ACTIONS(523), - [sym_grit_metavariable] = ACTIONS(525), + [sym_self] = ACTIONS(99), + [sym_super] = ACTIONS(101), + [sym_crate] = ACTIONS(101), + [sym_metavariable] = ACTIONS(105), + [sym_grit_metavariable] = ACTIONS(473), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [153] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2289), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1357), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1296), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), + [155] = { + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2176), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1262), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1159), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), [sym_closure_parameters] = STATE(65), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1311), - [sym_identifier] = STATE(1290), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1189), + [sym_identifier] = STATE(833), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(447), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(545), + [anon_sym_STAR] = ACTIONS(19), [anon_sym_SQUOTE] = ACTIONS(21), [anon_sym_async] = ACTIONS(453), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(25), [anon_sym_const] = ACTIONS(455), [anon_sym_continue] = ACTIONS(29), - [anon_sym_default] = ACTIONS(507), + [anon_sym_default] = ACTIONS(457), [anon_sym_for] = ACTIONS(459), [anon_sym_if] = ACTIONS(461), [anon_sym_loop] = ACTIONS(463), [anon_sym_match] = ACTIONS(465), - [anon_sym_return] = ACTIONS(509), - [anon_sym_union] = ACTIONS(507), + [anon_sym_return] = ACTIONS(53), + [anon_sym_union] = ACTIONS(457), [anon_sym_unsafe] = ACTIONS(467), [anon_sym_while] = ACTIONS(469), - [anon_sym_BANG] = ACTIONS(545), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_AMP] = ACTIONS(549), - [anon_sym_DOT_DOT] = ACTIONS(681), - [anon_sym_DASH] = ACTIONS(545), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(673), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(83), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), @@ -38082,90 +38337,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), [sym__raw_identifier] = ACTIONS(97), - [sym_self] = ACTIONS(519), - [sym_super] = ACTIONS(521), - [sym_crate] = ACTIONS(521), - [sym_metavariable] = ACTIONS(523), - [sym_grit_metavariable] = ACTIONS(525), + [sym_self] = ACTIONS(99), + [sym_super] = ACTIONS(101), + [sym_crate] = ACTIONS(101), + [sym_metavariable] = ACTIONS(105), + [sym_grit_metavariable] = ACTIONS(473), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [154] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2289), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1361), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1296), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), + [156] = { + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2176), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1400), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1159), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), [sym_closure_parameters] = STATE(65), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1311), - [sym_identifier] = STATE(1290), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1189), + [sym_identifier] = STATE(833), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(447), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(545), + [anon_sym_STAR] = ACTIONS(19), [anon_sym_SQUOTE] = ACTIONS(21), [anon_sym_async] = ACTIONS(453), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(25), [anon_sym_const] = ACTIONS(455), [anon_sym_continue] = ACTIONS(29), - [anon_sym_default] = ACTIONS(507), + [anon_sym_default] = ACTIONS(457), [anon_sym_for] = ACTIONS(459), [anon_sym_if] = ACTIONS(461), [anon_sym_loop] = ACTIONS(463), [anon_sym_match] = ACTIONS(465), - [anon_sym_return] = ACTIONS(509), - [anon_sym_union] = ACTIONS(507), + [anon_sym_return] = ACTIONS(53), + [anon_sym_union] = ACTIONS(457), [anon_sym_unsafe] = ACTIONS(467), [anon_sym_while] = ACTIONS(469), - [anon_sym_BANG] = ACTIONS(545), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_AMP] = ACTIONS(549), - [anon_sym_DOT_DOT] = ACTIONS(681), - [anon_sym_DASH] = ACTIONS(545), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(83), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), @@ -38190,90 +38445,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), [sym__raw_identifier] = ACTIONS(97), - [sym_self] = ACTIONS(519), - [sym_super] = ACTIONS(521), - [sym_crate] = ACTIONS(521), - [sym_metavariable] = ACTIONS(523), - [sym_grit_metavariable] = ACTIONS(525), + [sym_self] = ACTIONS(99), + [sym_super] = ACTIONS(101), + [sym_crate] = ACTIONS(101), + [sym_metavariable] = ACTIONS(105), + [sym_grit_metavariable] = ACTIONS(473), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [155] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2289), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1364), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1296), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), + [157] = { + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2176), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1385), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1159), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), [sym_closure_parameters] = STATE(65), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1311), - [sym_identifier] = STATE(1290), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1189), + [sym_identifier] = STATE(833), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(447), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(545), + [anon_sym_STAR] = ACTIONS(19), [anon_sym_SQUOTE] = ACTIONS(21), [anon_sym_async] = ACTIONS(453), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(25), [anon_sym_const] = ACTIONS(455), [anon_sym_continue] = ACTIONS(29), - [anon_sym_default] = ACTIONS(507), + [anon_sym_default] = ACTIONS(457), [anon_sym_for] = ACTIONS(459), [anon_sym_if] = ACTIONS(461), [anon_sym_loop] = ACTIONS(463), [anon_sym_match] = ACTIONS(465), - [anon_sym_return] = ACTIONS(509), - [anon_sym_union] = ACTIONS(507), + [anon_sym_return] = ACTIONS(53), + [anon_sym_union] = ACTIONS(457), [anon_sym_unsafe] = ACTIONS(467), [anon_sym_while] = ACTIONS(469), - [anon_sym_BANG] = ACTIONS(545), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_AMP] = ACTIONS(549), - [anon_sym_DOT_DOT] = ACTIONS(681), - [anon_sym_DASH] = ACTIONS(545), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(83), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), @@ -38298,67 +38553,175 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), [sym__raw_identifier] = ACTIONS(97), - [sym_self] = ACTIONS(519), - [sym_super] = ACTIONS(521), - [sym_crate] = ACTIONS(521), - [sym_metavariable] = ACTIONS(523), - [sym_grit_metavariable] = ACTIONS(525), + [sym_self] = ACTIONS(99), + [sym_super] = ACTIONS(101), + [sym_crate] = ACTIONS(101), + [sym_metavariable] = ACTIONS(105), + [sym_grit_metavariable] = ACTIONS(473), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [156] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2289), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1328), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1296), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(65), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1311), - [sym_identifier] = STATE(1290), + [158] = { + [ts_builtin_sym_end] = ACTIONS(812), + [sym__primitive_identifier] = ACTIONS(814), + [anon_sym_SEMI] = ACTIONS(812), + [anon_sym_macro_rules_BANG] = ACTIONS(812), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_LBRACE] = ACTIONS(812), + [anon_sym_RBRACE] = ACTIONS(812), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_PLUS] = ACTIONS(814), + [anon_sym_STAR] = ACTIONS(814), + [anon_sym_QMARK] = ACTIONS(812), + [anon_sym_SQUOTE] = ACTIONS(814), + [anon_sym_as] = ACTIONS(814), + [anon_sym_async] = ACTIONS(814), + [anon_sym_break] = ACTIONS(814), + [anon_sym_const] = ACTIONS(814), + [anon_sym_continue] = ACTIONS(814), + [anon_sym_default] = ACTIONS(814), + [anon_sym_enum] = ACTIONS(814), + [anon_sym_fn] = ACTIONS(814), + [anon_sym_for] = ACTIONS(814), + [anon_sym_if] = ACTIONS(814), + [anon_sym_impl] = ACTIONS(814), + [anon_sym_let] = ACTIONS(814), + [anon_sym_loop] = ACTIONS(814), + [anon_sym_match] = ACTIONS(814), + [anon_sym_mod] = ACTIONS(814), + [anon_sym_pub] = ACTIONS(814), + [anon_sym_return] = ACTIONS(814), + [anon_sym_static] = ACTIONS(814), + [anon_sym_struct] = ACTIONS(814), + [anon_sym_trait] = ACTIONS(814), + [anon_sym_type] = ACTIONS(814), + [anon_sym_union] = ACTIONS(814), + [anon_sym_unsafe] = ACTIONS(814), + [anon_sym_use] = ACTIONS(814), + [anon_sym_while] = ACTIONS(814), + [anon_sym_POUND] = ACTIONS(812), + [anon_sym_BANG] = ACTIONS(814), + [anon_sym_EQ] = ACTIONS(814), + [anon_sym_extern] = ACTIONS(814), + [anon_sym_LT] = ACTIONS(814), + [anon_sym_GT] = ACTIONS(814), + [anon_sym_COLON_COLON] = ACTIONS(812), + [anon_sym_AMP] = ACTIONS(814), + [anon_sym_DOT_DOT_DOT] = ACTIONS(812), + [anon_sym_DOT_DOT] = ACTIONS(814), + [anon_sym_DOT_DOT_EQ] = ACTIONS(812), + [anon_sym_DASH] = ACTIONS(814), + [anon_sym_AMP_AMP] = ACTIONS(812), + [anon_sym_PIPE_PIPE] = ACTIONS(812), + [anon_sym_PIPE] = ACTIONS(814), + [anon_sym_CARET] = ACTIONS(814), + [anon_sym_EQ_EQ] = ACTIONS(812), + [anon_sym_BANG_EQ] = ACTIONS(812), + [anon_sym_LT_EQ] = ACTIONS(812), + [anon_sym_GT_EQ] = ACTIONS(812), + [anon_sym_LT_LT] = ACTIONS(814), + [anon_sym_GT_GT] = ACTIONS(814), + [anon_sym_SLASH] = ACTIONS(814), + [anon_sym_PERCENT] = ACTIONS(814), + [anon_sym_PLUS_EQ] = ACTIONS(812), + [anon_sym_DASH_EQ] = ACTIONS(812), + [anon_sym_STAR_EQ] = ACTIONS(812), + [anon_sym_SLASH_EQ] = ACTIONS(812), + [anon_sym_PERCENT_EQ] = ACTIONS(812), + [anon_sym_AMP_EQ] = ACTIONS(812), + [anon_sym_PIPE_EQ] = ACTIONS(812), + [anon_sym_CARET_EQ] = ACTIONS(812), + [anon_sym_LT_LT_EQ] = ACTIONS(812), + [anon_sym_GT_GT_EQ] = ACTIONS(812), + [anon_sym_yield] = ACTIONS(814), + [anon_sym_move] = ACTIONS(814), + [anon_sym_DOT] = ACTIONS(814), + [sym_integer_literal] = ACTIONS(812), + [aux_sym_string_literal_token1] = ACTIONS(812), + [sym_char_literal] = ACTIONS(812), + [anon_sym_true] = ACTIONS(814), + [anon_sym_false] = ACTIONS(814), + [anon_sym_u8] = ACTIONS(814), + [anon_sym_i8] = ACTIONS(814), + [anon_sym_u16] = ACTIONS(814), + [anon_sym_i16] = ACTIONS(814), + [anon_sym_u32] = ACTIONS(814), + [anon_sym_i32] = ACTIONS(814), + [anon_sym_u64] = ACTIONS(814), + [anon_sym_i64] = ACTIONS(814), + [anon_sym_u128] = ACTIONS(814), + [anon_sym_i128] = ACTIONS(814), + [anon_sym_isize] = ACTIONS(814), + [anon_sym_usize] = ACTIONS(814), + [anon_sym_f32] = ACTIONS(814), + [anon_sym_f64] = ACTIONS(814), + [anon_sym_bool] = ACTIONS(814), + [anon_sym_str] = ACTIONS(814), + [anon_sym_char] = ACTIONS(814), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(812), + [sym_self] = ACTIONS(814), + [sym_super] = ACTIONS(814), + [sym_crate] = ACTIONS(814), + [sym_metavariable] = ACTIONS(812), + [sym_grit_metavariable] = ACTIONS(812), + [sym_raw_string_literal] = ACTIONS(812), + [sym_float_literal] = ACTIONS(812), + [sym_block_comment] = ACTIONS(3), + }, + [159] = { + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2305), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1367), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1308), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(74), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1313), + [sym_identifier] = STATE(1295), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(447), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(545), + [anon_sym_STAR] = ACTIONS(547), [anon_sym_SQUOTE] = ACTIONS(21), [anon_sym_async] = ACTIONS(453), [anon_sym_break] = ACTIONS(505), @@ -38373,12 +38736,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(507), [anon_sym_unsafe] = ACTIONS(467), [anon_sym_while] = ACTIONS(469), - [anon_sym_BANG] = ACTIONS(545), + [anon_sym_BANG] = ACTIONS(547), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_AMP] = ACTIONS(549), - [anon_sym_DOT_DOT] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(551), + [anon_sym_DOT_DOT] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(547), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(515), [anon_sym_move] = ACTIONS(517), @@ -38415,81 +38778,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [157] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2320), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1187), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1139), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1220), - [sym_identifier] = STATE(834), + [160] = { + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2305), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1319), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1308), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(74), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1313), + [sym_identifier] = STATE(1295), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(447), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(547), [anon_sym_SQUOTE] = ACTIONS(21), [anon_sym_async] = ACTIONS(453), - [anon_sym_break] = ACTIONS(25), + [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(455), [anon_sym_continue] = ACTIONS(29), - [anon_sym_default] = ACTIONS(457), + [anon_sym_default] = ACTIONS(507), [anon_sym_for] = ACTIONS(459), [anon_sym_if] = ACTIONS(461), [anon_sym_loop] = ACTIONS(463), [anon_sym_match] = ACTIONS(465), - [anon_sym_return] = ACTIONS(53), - [anon_sym_union] = ACTIONS(457), + [anon_sym_return] = ACTIONS(509), + [anon_sym_union] = ACTIONS(507), [anon_sym_unsafe] = ACTIONS(467), [anon_sym_while] = ACTIONS(469), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(547), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_AMP] = ACTIONS(79), - [anon_sym_DOT_DOT] = ACTIONS(563), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_AMP] = ACTIONS(551), + [anon_sym_DOT_DOT] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(547), [anon_sym_PIPE] = ACTIONS(83), - [anon_sym_yield] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(515), + [anon_sym_move] = ACTIONS(517), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), @@ -38514,90 +38877,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), [sym__raw_identifier] = ACTIONS(97), - [sym_self] = ACTIONS(99), - [sym_super] = ACTIONS(101), - [sym_crate] = ACTIONS(101), - [sym_metavariable] = ACTIONS(105), - [sym_grit_metavariable] = ACTIONS(473), + [sym_self] = ACTIONS(519), + [sym_super] = ACTIONS(521), + [sym_crate] = ACTIONS(521), + [sym_metavariable] = ACTIONS(523), + [sym_grit_metavariable] = ACTIONS(525), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [158] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2289), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1367), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1296), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), + [161] = { + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2176), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1386), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1159), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), [sym_closure_parameters] = STATE(65), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1311), - [sym_identifier] = STATE(1290), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1189), + [sym_identifier] = STATE(833), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(447), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(545), + [anon_sym_STAR] = ACTIONS(19), [anon_sym_SQUOTE] = ACTIONS(21), [anon_sym_async] = ACTIONS(453), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(25), [anon_sym_const] = ACTIONS(455), [anon_sym_continue] = ACTIONS(29), - [anon_sym_default] = ACTIONS(507), + [anon_sym_default] = ACTIONS(457), [anon_sym_for] = ACTIONS(459), [anon_sym_if] = ACTIONS(461), [anon_sym_loop] = ACTIONS(463), [anon_sym_match] = ACTIONS(465), - [anon_sym_return] = ACTIONS(509), - [anon_sym_union] = ACTIONS(507), + [anon_sym_return] = ACTIONS(53), + [anon_sym_union] = ACTIONS(457), [anon_sym_unsafe] = ACTIONS(467), [anon_sym_while] = ACTIONS(469), - [anon_sym_BANG] = ACTIONS(545), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_AMP] = ACTIONS(549), - [anon_sym_DOT_DOT] = ACTIONS(681), - [anon_sym_DASH] = ACTIONS(545), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(83), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), @@ -38622,90 +38985,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), [sym__raw_identifier] = ACTIONS(97), - [sym_self] = ACTIONS(519), - [sym_super] = ACTIONS(521), - [sym_crate] = ACTIONS(521), - [sym_metavariable] = ACTIONS(523), - [sym_grit_metavariable] = ACTIONS(525), + [sym_self] = ACTIONS(99), + [sym_super] = ACTIONS(101), + [sym_crate] = ACTIONS(101), + [sym_metavariable] = ACTIONS(105), + [sym_grit_metavariable] = ACTIONS(473), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [159] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2289), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1368), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1296), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), + [162] = { + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2176), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1278), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1159), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), [sym_closure_parameters] = STATE(65), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1311), - [sym_identifier] = STATE(1290), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1189), + [sym_identifier] = STATE(833), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(447), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(545), + [anon_sym_STAR] = ACTIONS(19), [anon_sym_SQUOTE] = ACTIONS(21), [anon_sym_async] = ACTIONS(453), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(25), [anon_sym_const] = ACTIONS(455), [anon_sym_continue] = ACTIONS(29), - [anon_sym_default] = ACTIONS(507), + [anon_sym_default] = ACTIONS(457), [anon_sym_for] = ACTIONS(459), [anon_sym_if] = ACTIONS(461), [anon_sym_loop] = ACTIONS(463), [anon_sym_match] = ACTIONS(465), - [anon_sym_return] = ACTIONS(509), - [anon_sym_union] = ACTIONS(507), + [anon_sym_return] = ACTIONS(53), + [anon_sym_union] = ACTIONS(457), [anon_sym_unsafe] = ACTIONS(467), [anon_sym_while] = ACTIONS(469), - [anon_sym_BANG] = ACTIONS(545), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_AMP] = ACTIONS(549), - [anon_sym_DOT_DOT] = ACTIONS(681), - [anon_sym_DASH] = ACTIONS(545), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(673), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(83), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), @@ -38730,90 +39093,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), [sym__raw_identifier] = ACTIONS(97), - [sym_self] = ACTIONS(519), - [sym_super] = ACTIONS(521), - [sym_crate] = ACTIONS(521), - [sym_metavariable] = ACTIONS(523), - [sym_grit_metavariable] = ACTIONS(525), + [sym_self] = ACTIONS(99), + [sym_super] = ACTIONS(101), + [sym_crate] = ACTIONS(101), + [sym_metavariable] = ACTIONS(105), + [sym_grit_metavariable] = ACTIONS(473), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [160] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2289), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1375), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1296), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), + [163] = { + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2176), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1338), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1159), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), [sym_closure_parameters] = STATE(65), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1311), - [sym_identifier] = STATE(1290), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1189), + [sym_identifier] = STATE(833), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(447), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(545), + [anon_sym_STAR] = ACTIONS(19), [anon_sym_SQUOTE] = ACTIONS(21), [anon_sym_async] = ACTIONS(453), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(25), [anon_sym_const] = ACTIONS(455), [anon_sym_continue] = ACTIONS(29), - [anon_sym_default] = ACTIONS(507), + [anon_sym_default] = ACTIONS(457), [anon_sym_for] = ACTIONS(459), [anon_sym_if] = ACTIONS(461), [anon_sym_loop] = ACTIONS(463), [anon_sym_match] = ACTIONS(465), - [anon_sym_return] = ACTIONS(509), - [anon_sym_union] = ACTIONS(507), + [anon_sym_return] = ACTIONS(53), + [anon_sym_union] = ACTIONS(457), [anon_sym_unsafe] = ACTIONS(467), [anon_sym_while] = ACTIONS(469), - [anon_sym_BANG] = ACTIONS(545), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_AMP] = ACTIONS(549), - [anon_sym_DOT_DOT] = ACTIONS(681), - [anon_sym_DASH] = ACTIONS(545), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(83), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), @@ -38838,90 +39201,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), [sym__raw_identifier] = ACTIONS(97), - [sym_self] = ACTIONS(519), - [sym_super] = ACTIONS(521), - [sym_crate] = ACTIONS(521), - [sym_metavariable] = ACTIONS(523), - [sym_grit_metavariable] = ACTIONS(525), + [sym_self] = ACTIONS(99), + [sym_super] = ACTIONS(101), + [sym_crate] = ACTIONS(101), + [sym_metavariable] = ACTIONS(105), + [sym_grit_metavariable] = ACTIONS(473), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [161] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2289), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1315), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1296), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), + [164] = { + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2176), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1409), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1159), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), [sym_closure_parameters] = STATE(65), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1311), - [sym_identifier] = STATE(1290), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1189), + [sym_identifier] = STATE(833), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(447), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(545), + [anon_sym_STAR] = ACTIONS(19), [anon_sym_SQUOTE] = ACTIONS(21), [anon_sym_async] = ACTIONS(453), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(25), [anon_sym_const] = ACTIONS(455), [anon_sym_continue] = ACTIONS(29), - [anon_sym_default] = ACTIONS(507), + [anon_sym_default] = ACTIONS(457), [anon_sym_for] = ACTIONS(459), [anon_sym_if] = ACTIONS(461), [anon_sym_loop] = ACTIONS(463), [anon_sym_match] = ACTIONS(465), - [anon_sym_return] = ACTIONS(509), - [anon_sym_union] = ACTIONS(507), + [anon_sym_return] = ACTIONS(53), + [anon_sym_union] = ACTIONS(457), [anon_sym_unsafe] = ACTIONS(467), [anon_sym_while] = ACTIONS(469), - [anon_sym_BANG] = ACTIONS(545), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_AMP] = ACTIONS(549), - [anon_sym_DOT_DOT] = ACTIONS(681), - [anon_sym_DASH] = ACTIONS(545), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(83), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), @@ -38946,90 +39309,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), [sym__raw_identifier] = ACTIONS(97), - [sym_self] = ACTIONS(519), - [sym_super] = ACTIONS(521), - [sym_crate] = ACTIONS(521), - [sym_metavariable] = ACTIONS(523), - [sym_grit_metavariable] = ACTIONS(525), + [sym_self] = ACTIONS(99), + [sym_super] = ACTIONS(101), + [sym_crate] = ACTIONS(101), + [sym_metavariable] = ACTIONS(105), + [sym_grit_metavariable] = ACTIONS(473), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [162] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2289), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1327), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1296), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), + [165] = { + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2176), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1392), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1159), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), [sym_closure_parameters] = STATE(65), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1311), - [sym_identifier] = STATE(1290), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1189), + [sym_identifier] = STATE(833), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(447), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(545), + [anon_sym_STAR] = ACTIONS(19), [anon_sym_SQUOTE] = ACTIONS(21), [anon_sym_async] = ACTIONS(453), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(25), [anon_sym_const] = ACTIONS(455), [anon_sym_continue] = ACTIONS(29), - [anon_sym_default] = ACTIONS(507), + [anon_sym_default] = ACTIONS(457), [anon_sym_for] = ACTIONS(459), [anon_sym_if] = ACTIONS(461), [anon_sym_loop] = ACTIONS(463), [anon_sym_match] = ACTIONS(465), - [anon_sym_return] = ACTIONS(509), - [anon_sym_union] = ACTIONS(507), + [anon_sym_return] = ACTIONS(53), + [anon_sym_union] = ACTIONS(457), [anon_sym_unsafe] = ACTIONS(467), [anon_sym_while] = ACTIONS(469), - [anon_sym_BANG] = ACTIONS(545), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_AMP] = ACTIONS(549), - [anon_sym_DOT_DOT] = ACTIONS(681), - [anon_sym_DASH] = ACTIONS(545), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(83), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), @@ -39054,62 +39417,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), [sym__raw_identifier] = ACTIONS(97), - [sym_self] = ACTIONS(519), - [sym_super] = ACTIONS(521), - [sym_crate] = ACTIONS(521), - [sym_metavariable] = ACTIONS(523), - [sym_grit_metavariable] = ACTIONS(525), + [sym_self] = ACTIONS(99), + [sym_super] = ACTIONS(101), + [sym_crate] = ACTIONS(101), + [sym_metavariable] = ACTIONS(105), + [sym_grit_metavariable] = ACTIONS(473), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [163] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2320), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1378), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1139), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1220), - [sym_identifier] = STATE(834), + [166] = { + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2176), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1389), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1159), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(65), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1189), + [sym_identifier] = STATE(833), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(447), @@ -39171,274 +39534,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [164] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2289), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1345), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1296), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(65), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1311), - [sym_identifier] = STATE(1290), - [sym__primitive_identifier] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(447), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(545), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_async] = ACTIONS(453), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(29), - [anon_sym_default] = ACTIONS(507), - [anon_sym_for] = ACTIONS(459), - [anon_sym_if] = ACTIONS(461), - [anon_sym_loop] = ACTIONS(463), - [anon_sym_match] = ACTIONS(465), - [anon_sym_return] = ACTIONS(509), - [anon_sym_union] = ACTIONS(507), - [anon_sym_unsafe] = ACTIONS(467), - [anon_sym_while] = ACTIONS(469), - [anon_sym_BANG] = ACTIONS(545), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_AMP] = ACTIONS(549), - [anon_sym_DOT_DOT] = ACTIONS(681), - [anon_sym_DASH] = ACTIONS(545), - [anon_sym_PIPE] = ACTIONS(83), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [anon_sym_u8] = ACTIONS(95), - [anon_sym_i8] = ACTIONS(95), - [anon_sym_u16] = ACTIONS(95), - [anon_sym_i16] = ACTIONS(95), - [anon_sym_u32] = ACTIONS(95), - [anon_sym_i32] = ACTIONS(95), - [anon_sym_u64] = ACTIONS(95), - [anon_sym_i64] = ACTIONS(95), - [anon_sym_u128] = ACTIONS(95), - [anon_sym_i128] = ACTIONS(95), - [anon_sym_isize] = ACTIONS(95), - [anon_sym_usize] = ACTIONS(95), - [anon_sym_f32] = ACTIONS(95), - [anon_sym_f64] = ACTIONS(95), - [anon_sym_bool] = ACTIONS(95), - [anon_sym_str] = ACTIONS(95), - [anon_sym_char] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(97), - [sym_self] = ACTIONS(519), - [sym_super] = ACTIONS(521), - [sym_crate] = ACTIONS(521), - [sym_metavariable] = ACTIONS(523), - [sym_grit_metavariable] = ACTIONS(525), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [165] = { - [ts_builtin_sym_end] = ACTIONS(822), - [sym__primitive_identifier] = ACTIONS(824), - [anon_sym_SEMI] = ACTIONS(822), - [anon_sym_macro_rules_BANG] = ACTIONS(822), - [anon_sym_LPAREN] = ACTIONS(822), - [anon_sym_LBRACE] = ACTIONS(822), - [anon_sym_RBRACE] = ACTIONS(822), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_PLUS] = ACTIONS(824), - [anon_sym_STAR] = ACTIONS(824), - [anon_sym_QMARK] = ACTIONS(822), - [anon_sym_SQUOTE] = ACTIONS(824), - [anon_sym_as] = ACTIONS(824), - [anon_sym_async] = ACTIONS(824), - [anon_sym_break] = ACTIONS(824), - [anon_sym_const] = ACTIONS(824), - [anon_sym_continue] = ACTIONS(824), - [anon_sym_default] = ACTIONS(824), - [anon_sym_enum] = ACTIONS(824), - [anon_sym_fn] = ACTIONS(824), - [anon_sym_for] = ACTIONS(824), - [anon_sym_if] = ACTIONS(824), - [anon_sym_impl] = ACTIONS(824), - [anon_sym_let] = ACTIONS(824), - [anon_sym_loop] = ACTIONS(824), - [anon_sym_match] = ACTIONS(824), - [anon_sym_mod] = ACTIONS(824), - [anon_sym_pub] = ACTIONS(824), - [anon_sym_return] = ACTIONS(824), - [anon_sym_static] = ACTIONS(824), - [anon_sym_struct] = ACTIONS(824), - [anon_sym_trait] = ACTIONS(824), - [anon_sym_type] = ACTIONS(824), - [anon_sym_union] = ACTIONS(824), - [anon_sym_unsafe] = ACTIONS(824), - [anon_sym_use] = ACTIONS(824), - [anon_sym_while] = ACTIONS(824), - [anon_sym_POUND] = ACTIONS(822), - [anon_sym_BANG] = ACTIONS(824), - [anon_sym_EQ] = ACTIONS(824), - [anon_sym_extern] = ACTIONS(824), - [anon_sym_LT] = ACTIONS(824), - [anon_sym_GT] = ACTIONS(824), - [anon_sym_COLON_COLON] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(824), - [anon_sym_DOT_DOT_DOT] = ACTIONS(822), - [anon_sym_DOT_DOT] = ACTIONS(824), - [anon_sym_DOT_DOT_EQ] = ACTIONS(822), - [anon_sym_DASH] = ACTIONS(824), - [anon_sym_AMP_AMP] = ACTIONS(822), - [anon_sym_PIPE_PIPE] = ACTIONS(822), - [anon_sym_PIPE] = ACTIONS(824), - [anon_sym_CARET] = ACTIONS(824), - [anon_sym_EQ_EQ] = ACTIONS(822), - [anon_sym_BANG_EQ] = ACTIONS(822), - [anon_sym_LT_EQ] = ACTIONS(822), - [anon_sym_GT_EQ] = ACTIONS(822), - [anon_sym_LT_LT] = ACTIONS(824), - [anon_sym_GT_GT] = ACTIONS(824), - [anon_sym_SLASH] = ACTIONS(824), - [anon_sym_PERCENT] = ACTIONS(824), - [anon_sym_PLUS_EQ] = ACTIONS(822), - [anon_sym_DASH_EQ] = ACTIONS(822), - [anon_sym_STAR_EQ] = ACTIONS(822), - [anon_sym_SLASH_EQ] = ACTIONS(822), - [anon_sym_PERCENT_EQ] = ACTIONS(822), - [anon_sym_AMP_EQ] = ACTIONS(822), - [anon_sym_PIPE_EQ] = ACTIONS(822), - [anon_sym_CARET_EQ] = ACTIONS(822), - [anon_sym_LT_LT_EQ] = ACTIONS(822), - [anon_sym_GT_GT_EQ] = ACTIONS(822), - [anon_sym_yield] = ACTIONS(824), - [anon_sym_move] = ACTIONS(824), - [anon_sym_DOT] = ACTIONS(824), - [sym_integer_literal] = ACTIONS(822), - [aux_sym_string_literal_token1] = ACTIONS(822), - [sym_char_literal] = ACTIONS(822), - [anon_sym_true] = ACTIONS(824), - [anon_sym_false] = ACTIONS(824), - [anon_sym_u8] = ACTIONS(824), - [anon_sym_i8] = ACTIONS(824), - [anon_sym_u16] = ACTIONS(824), - [anon_sym_i16] = ACTIONS(824), - [anon_sym_u32] = ACTIONS(824), - [anon_sym_i32] = ACTIONS(824), - [anon_sym_u64] = ACTIONS(824), - [anon_sym_i64] = ACTIONS(824), - [anon_sym_u128] = ACTIONS(824), - [anon_sym_i128] = ACTIONS(824), - [anon_sym_isize] = ACTIONS(824), - [anon_sym_usize] = ACTIONS(824), - [anon_sym_f32] = ACTIONS(824), - [anon_sym_f64] = ACTIONS(824), - [anon_sym_bool] = ACTIONS(824), - [anon_sym_str] = ACTIONS(824), - [anon_sym_char] = ACTIONS(824), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(822), - [sym_self] = ACTIONS(824), - [sym_super] = ACTIONS(824), - [sym_crate] = ACTIONS(824), - [sym_metavariable] = ACTIONS(822), - [sym_grit_metavariable] = ACTIONS(822), - [sym_raw_string_literal] = ACTIONS(822), - [sym_float_literal] = ACTIONS(822), + [167] = { + [ts_builtin_sym_end] = ACTIONS(816), + [sym__primitive_identifier] = ACTIONS(818), + [anon_sym_SEMI] = ACTIONS(816), + [anon_sym_macro_rules_BANG] = ACTIONS(816), + [anon_sym_LPAREN] = ACTIONS(816), + [anon_sym_LBRACE] = ACTIONS(816), + [anon_sym_RBRACE] = ACTIONS(816), + [anon_sym_LBRACK] = ACTIONS(816), + [anon_sym_PLUS] = ACTIONS(818), + [anon_sym_STAR] = ACTIONS(818), + [anon_sym_QMARK] = ACTIONS(816), + [anon_sym_SQUOTE] = ACTIONS(818), + [anon_sym_as] = ACTIONS(818), + [anon_sym_async] = ACTIONS(818), + [anon_sym_break] = ACTIONS(818), + [anon_sym_const] = ACTIONS(818), + [anon_sym_continue] = ACTIONS(818), + [anon_sym_default] = ACTIONS(818), + [anon_sym_enum] = ACTIONS(818), + [anon_sym_fn] = ACTIONS(818), + [anon_sym_for] = ACTIONS(818), + [anon_sym_if] = ACTIONS(818), + [anon_sym_impl] = ACTIONS(818), + [anon_sym_let] = ACTIONS(818), + [anon_sym_loop] = ACTIONS(818), + [anon_sym_match] = ACTIONS(818), + [anon_sym_mod] = ACTIONS(818), + [anon_sym_pub] = ACTIONS(818), + [anon_sym_return] = ACTIONS(818), + [anon_sym_static] = ACTIONS(818), + [anon_sym_struct] = ACTIONS(818), + [anon_sym_trait] = ACTIONS(818), + [anon_sym_type] = ACTIONS(818), + [anon_sym_union] = ACTIONS(818), + [anon_sym_unsafe] = ACTIONS(818), + [anon_sym_use] = ACTIONS(818), + [anon_sym_while] = ACTIONS(818), + [anon_sym_POUND] = ACTIONS(816), + [anon_sym_BANG] = ACTIONS(818), + [anon_sym_EQ] = ACTIONS(818), + [anon_sym_extern] = ACTIONS(818), + [anon_sym_LT] = ACTIONS(818), + [anon_sym_GT] = ACTIONS(818), + [anon_sym_COLON_COLON] = ACTIONS(816), + [anon_sym_AMP] = ACTIONS(818), + [anon_sym_DOT_DOT_DOT] = ACTIONS(816), + [anon_sym_DOT_DOT] = ACTIONS(818), + [anon_sym_DOT_DOT_EQ] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(818), + [anon_sym_AMP_AMP] = ACTIONS(816), + [anon_sym_PIPE_PIPE] = ACTIONS(816), + [anon_sym_PIPE] = ACTIONS(818), + [anon_sym_CARET] = ACTIONS(818), + [anon_sym_EQ_EQ] = ACTIONS(816), + [anon_sym_BANG_EQ] = ACTIONS(816), + [anon_sym_LT_EQ] = ACTIONS(816), + [anon_sym_GT_EQ] = ACTIONS(816), + [anon_sym_LT_LT] = ACTIONS(818), + [anon_sym_GT_GT] = ACTIONS(818), + [anon_sym_SLASH] = ACTIONS(818), + [anon_sym_PERCENT] = ACTIONS(818), + [anon_sym_PLUS_EQ] = ACTIONS(816), + [anon_sym_DASH_EQ] = ACTIONS(816), + [anon_sym_STAR_EQ] = ACTIONS(816), + [anon_sym_SLASH_EQ] = ACTIONS(816), + [anon_sym_PERCENT_EQ] = ACTIONS(816), + [anon_sym_AMP_EQ] = ACTIONS(816), + [anon_sym_PIPE_EQ] = ACTIONS(816), + [anon_sym_CARET_EQ] = ACTIONS(816), + [anon_sym_LT_LT_EQ] = ACTIONS(816), + [anon_sym_GT_GT_EQ] = ACTIONS(816), + [anon_sym_yield] = ACTIONS(818), + [anon_sym_move] = ACTIONS(818), + [anon_sym_DOT] = ACTIONS(818), + [sym_integer_literal] = ACTIONS(816), + [aux_sym_string_literal_token1] = ACTIONS(816), + [sym_char_literal] = ACTIONS(816), + [anon_sym_true] = ACTIONS(818), + [anon_sym_false] = ACTIONS(818), + [anon_sym_u8] = ACTIONS(818), + [anon_sym_i8] = ACTIONS(818), + [anon_sym_u16] = ACTIONS(818), + [anon_sym_i16] = ACTIONS(818), + [anon_sym_u32] = ACTIONS(818), + [anon_sym_i32] = ACTIONS(818), + [anon_sym_u64] = ACTIONS(818), + [anon_sym_i64] = ACTIONS(818), + [anon_sym_u128] = ACTIONS(818), + [anon_sym_i128] = ACTIONS(818), + [anon_sym_isize] = ACTIONS(818), + [anon_sym_usize] = ACTIONS(818), + [anon_sym_f32] = ACTIONS(818), + [anon_sym_f64] = ACTIONS(818), + [anon_sym_bool] = ACTIONS(818), + [anon_sym_str] = ACTIONS(818), + [anon_sym_char] = ACTIONS(818), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(816), + [sym_self] = ACTIONS(818), + [sym_super] = ACTIONS(818), + [sym_crate] = ACTIONS(818), + [sym_metavariable] = ACTIONS(816), + [sym_grit_metavariable] = ACTIONS(816), + [sym_raw_string_literal] = ACTIONS(816), + [sym_float_literal] = ACTIONS(816), [sym_block_comment] = ACTIONS(3), }, - [166] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2289), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1325), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1296), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(65), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1311), - [sym_identifier] = STATE(1290), + [168] = { + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2305), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1339), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1308), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(74), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1313), + [sym_identifier] = STATE(1295), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(447), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(545), + [anon_sym_STAR] = ACTIONS(547), [anon_sym_SQUOTE] = ACTIONS(21), [anon_sym_async] = ACTIONS(453), [anon_sym_break] = ACTIONS(505), @@ -39453,12 +39708,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(507), [anon_sym_unsafe] = ACTIONS(467), [anon_sym_while] = ACTIONS(469), - [anon_sym_BANG] = ACTIONS(545), + [anon_sym_BANG] = ACTIONS(547), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_AMP] = ACTIONS(549), - [anon_sym_DOT_DOT] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(551), + [anon_sym_DOT_DOT] = ACTIONS(553), + [anon_sym_DASH] = ACTIONS(547), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(515), [anon_sym_move] = ACTIONS(517), @@ -39495,180 +39750,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [167] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2320), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1391), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1139), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1220), - [sym_identifier] = STATE(834), - [sym__primitive_identifier] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(447), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_async] = ACTIONS(453), - [anon_sym_break] = ACTIONS(25), - [anon_sym_const] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(29), - [anon_sym_default] = ACTIONS(457), - [anon_sym_for] = ACTIONS(459), - [anon_sym_if] = ACTIONS(461), - [anon_sym_loop] = ACTIONS(463), - [anon_sym_match] = ACTIONS(465), - [anon_sym_return] = ACTIONS(53), - [anon_sym_union] = ACTIONS(457), - [anon_sym_unsafe] = ACTIONS(467), - [anon_sym_while] = ACTIONS(469), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_AMP] = ACTIONS(79), - [anon_sym_DOT_DOT] = ACTIONS(81), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(83), - [anon_sym_yield] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [anon_sym_u8] = ACTIONS(95), - [anon_sym_i8] = ACTIONS(95), - [anon_sym_u16] = ACTIONS(95), - [anon_sym_i16] = ACTIONS(95), - [anon_sym_u32] = ACTIONS(95), - [anon_sym_i32] = ACTIONS(95), - [anon_sym_u64] = ACTIONS(95), - [anon_sym_i64] = ACTIONS(95), - [anon_sym_u128] = ACTIONS(95), - [anon_sym_i128] = ACTIONS(95), - [anon_sym_isize] = ACTIONS(95), - [anon_sym_usize] = ACTIONS(95), - [anon_sym_f32] = ACTIONS(95), - [anon_sym_f64] = ACTIONS(95), - [anon_sym_bool] = ACTIONS(95), - [anon_sym_str] = ACTIONS(95), - [anon_sym_char] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(97), - [sym_self] = ACTIONS(99), - [sym_super] = ACTIONS(101), - [sym_crate] = ACTIONS(101), - [sym_metavariable] = ACTIONS(105), - [sym_grit_metavariable] = ACTIONS(473), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [168] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2320), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1320), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1139), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(241), - [sym_match_expression] = STATE(241), - [sym_while_expression] = STATE(241), - [sym_loop_expression] = STATE(241), - [sym_for_expression] = STATE(241), - [sym_const_block] = STATE(241), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2736), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(241), - [sym_async_block] = STATE(241), - [sym_block] = STATE(241), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1220), - [sym_identifier] = STATE(834), + [169] = { + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2176), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1328), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1159), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(247), + [sym_match_expression] = STATE(247), + [sym_while_expression] = STATE(247), + [sym_loop_expression] = STATE(247), + [sym_for_expression] = STATE(247), + [sym_const_block] = STATE(247), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(65), + [sym_loop_label] = STATE(2740), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(247), + [sym_async_block] = STATE(247), + [sym_block] = STATE(247), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1189), + [sym_identifier] = STATE(833), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(784), + [anon_sym_LBRACE] = ACTIONS(739), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_async] = ACTIONS(786), + [anon_sym_async] = ACTIONS(741), [anon_sym_break] = ACTIONS(25), - [anon_sym_const] = ACTIONS(788), + [anon_sym_const] = ACTIONS(743), [anon_sym_continue] = ACTIONS(29), [anon_sym_default] = ACTIONS(457), - [anon_sym_for] = ACTIONS(790), - [anon_sym_if] = ACTIONS(792), - [anon_sym_loop] = ACTIONS(794), - [anon_sym_match] = ACTIONS(796), + [anon_sym_for] = ACTIONS(745), + [anon_sym_if] = ACTIONS(747), + [anon_sym_loop] = ACTIONS(749), + [anon_sym_match] = ACTIONS(751), [anon_sym_return] = ACTIONS(53), [anon_sym_union] = ACTIONS(457), - [anon_sym_unsafe] = ACTIONS(798), - [anon_sym_while] = ACTIONS(800), + [anon_sym_unsafe] = ACTIONS(753), + [anon_sym_while] = ACTIONS(755), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(77), @@ -39711,161 +39858,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [169] = { - [ts_builtin_sym_end] = ACTIONS(826), - [sym__primitive_identifier] = ACTIONS(828), - [anon_sym_SEMI] = ACTIONS(826), - [anon_sym_macro_rules_BANG] = ACTIONS(826), - [anon_sym_LPAREN] = ACTIONS(826), - [anon_sym_LBRACE] = ACTIONS(826), - [anon_sym_RBRACE] = ACTIONS(826), - [anon_sym_LBRACK] = ACTIONS(826), - [anon_sym_PLUS] = ACTIONS(828), - [anon_sym_STAR] = ACTIONS(828), - [anon_sym_QMARK] = ACTIONS(826), - [anon_sym_SQUOTE] = ACTIONS(828), - [anon_sym_as] = ACTIONS(828), - [anon_sym_async] = ACTIONS(828), - [anon_sym_break] = ACTIONS(828), - [anon_sym_const] = ACTIONS(828), - [anon_sym_continue] = ACTIONS(828), - [anon_sym_default] = ACTIONS(828), - [anon_sym_enum] = ACTIONS(828), - [anon_sym_fn] = ACTIONS(828), - [anon_sym_for] = ACTIONS(828), - [anon_sym_if] = ACTIONS(828), - [anon_sym_impl] = ACTIONS(828), - [anon_sym_let] = ACTIONS(828), - [anon_sym_loop] = ACTIONS(828), - [anon_sym_match] = ACTIONS(828), - [anon_sym_mod] = ACTIONS(828), - [anon_sym_pub] = ACTIONS(828), - [anon_sym_return] = ACTIONS(828), - [anon_sym_static] = ACTIONS(828), - [anon_sym_struct] = ACTIONS(828), - [anon_sym_trait] = ACTIONS(828), - [anon_sym_type] = ACTIONS(828), - [anon_sym_union] = ACTIONS(828), - [anon_sym_unsafe] = ACTIONS(828), - [anon_sym_use] = ACTIONS(828), - [anon_sym_while] = ACTIONS(828), - [anon_sym_POUND] = ACTIONS(826), - [anon_sym_BANG] = ACTIONS(828), - [anon_sym_EQ] = ACTIONS(828), - [anon_sym_extern] = ACTIONS(828), - [anon_sym_LT] = ACTIONS(828), - [anon_sym_GT] = ACTIONS(828), - [anon_sym_COLON_COLON] = ACTIONS(826), - [anon_sym_AMP] = ACTIONS(828), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [anon_sym_DOT_DOT] = ACTIONS(828), - [anon_sym_DOT_DOT_EQ] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(828), - [anon_sym_AMP_AMP] = ACTIONS(826), - [anon_sym_PIPE_PIPE] = ACTIONS(826), - [anon_sym_PIPE] = ACTIONS(828), - [anon_sym_CARET] = ACTIONS(828), - [anon_sym_EQ_EQ] = ACTIONS(826), - [anon_sym_BANG_EQ] = ACTIONS(826), - [anon_sym_LT_EQ] = ACTIONS(826), - [anon_sym_GT_EQ] = ACTIONS(826), - [anon_sym_LT_LT] = ACTIONS(828), - [anon_sym_GT_GT] = ACTIONS(828), - [anon_sym_SLASH] = ACTIONS(828), - [anon_sym_PERCENT] = ACTIONS(828), - [anon_sym_PLUS_EQ] = ACTIONS(826), - [anon_sym_DASH_EQ] = ACTIONS(826), - [anon_sym_STAR_EQ] = ACTIONS(826), - [anon_sym_SLASH_EQ] = ACTIONS(826), - [anon_sym_PERCENT_EQ] = ACTIONS(826), - [anon_sym_AMP_EQ] = ACTIONS(826), - [anon_sym_PIPE_EQ] = ACTIONS(826), - [anon_sym_CARET_EQ] = ACTIONS(826), - [anon_sym_LT_LT_EQ] = ACTIONS(826), - [anon_sym_GT_GT_EQ] = ACTIONS(826), - [anon_sym_yield] = ACTIONS(828), - [anon_sym_move] = ACTIONS(828), - [anon_sym_DOT] = ACTIONS(828), - [sym_integer_literal] = ACTIONS(826), - [aux_sym_string_literal_token1] = ACTIONS(826), - [sym_char_literal] = ACTIONS(826), - [anon_sym_true] = ACTIONS(828), - [anon_sym_false] = ACTIONS(828), - [anon_sym_u8] = ACTIONS(828), - [anon_sym_i8] = ACTIONS(828), - [anon_sym_u16] = ACTIONS(828), - [anon_sym_i16] = ACTIONS(828), - [anon_sym_u32] = ACTIONS(828), - [anon_sym_i32] = ACTIONS(828), - [anon_sym_u64] = ACTIONS(828), - [anon_sym_i64] = ACTIONS(828), - [anon_sym_u128] = ACTIONS(828), - [anon_sym_i128] = ACTIONS(828), - [anon_sym_isize] = ACTIONS(828), - [anon_sym_usize] = ACTIONS(828), - [anon_sym_f32] = ACTIONS(828), - [anon_sym_f64] = ACTIONS(828), - [anon_sym_bool] = ACTIONS(828), - [anon_sym_str] = ACTIONS(828), - [anon_sym_char] = ACTIONS(828), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(826), - [sym_self] = ACTIONS(828), - [sym_super] = ACTIONS(828), - [sym_crate] = ACTIONS(828), - [sym_metavariable] = ACTIONS(826), - [sym_grit_metavariable] = ACTIONS(826), - [sym_raw_string_literal] = ACTIONS(826), - [sym_float_literal] = ACTIONS(826), - [sym_block_comment] = ACTIONS(3), - }, [170] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2320), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1400), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1139), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1220), - [sym_identifier] = STATE(834), + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2176), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1346), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1159), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(65), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1189), + [sym_identifier] = STATE(833), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(447), @@ -39928,160 +39967,376 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [171] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2320), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1401), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1139), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1220), - [sym_identifier] = STATE(834), - [sym__primitive_identifier] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(447), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_async] = ACTIONS(453), - [anon_sym_break] = ACTIONS(25), - [anon_sym_const] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(29), - [anon_sym_default] = ACTIONS(457), - [anon_sym_for] = ACTIONS(459), - [anon_sym_if] = ACTIONS(461), - [anon_sym_loop] = ACTIONS(463), - [anon_sym_match] = ACTIONS(465), - [anon_sym_return] = ACTIONS(53), - [anon_sym_union] = ACTIONS(457), - [anon_sym_unsafe] = ACTIONS(467), - [anon_sym_while] = ACTIONS(469), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_AMP] = ACTIONS(79), - [anon_sym_DOT_DOT] = ACTIONS(81), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(83), - [anon_sym_yield] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [anon_sym_u8] = ACTIONS(95), - [anon_sym_i8] = ACTIONS(95), - [anon_sym_u16] = ACTIONS(95), - [anon_sym_i16] = ACTIONS(95), - [anon_sym_u32] = ACTIONS(95), - [anon_sym_i32] = ACTIONS(95), - [anon_sym_u64] = ACTIONS(95), - [anon_sym_i64] = ACTIONS(95), - [anon_sym_u128] = ACTIONS(95), - [anon_sym_i128] = ACTIONS(95), - [anon_sym_isize] = ACTIONS(95), - [anon_sym_usize] = ACTIONS(95), - [anon_sym_f32] = ACTIONS(95), - [anon_sym_f64] = ACTIONS(95), - [anon_sym_bool] = ACTIONS(95), - [anon_sym_str] = ACTIONS(95), - [anon_sym_char] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(97), - [sym_self] = ACTIONS(99), - [sym_super] = ACTIONS(101), - [sym_crate] = ACTIONS(101), - [sym_metavariable] = ACTIONS(105), - [sym_grit_metavariable] = ACTIONS(473), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [ts_builtin_sym_end] = ACTIONS(820), + [sym__primitive_identifier] = ACTIONS(822), + [anon_sym_SEMI] = ACTIONS(820), + [anon_sym_macro_rules_BANG] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LBRACE] = ACTIONS(820), + [anon_sym_RBRACE] = ACTIONS(820), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_PLUS] = ACTIONS(822), + [anon_sym_STAR] = ACTIONS(822), + [anon_sym_QMARK] = ACTIONS(820), + [anon_sym_SQUOTE] = ACTIONS(822), + [anon_sym_as] = ACTIONS(822), + [anon_sym_async] = ACTIONS(822), + [anon_sym_break] = ACTIONS(822), + [anon_sym_const] = ACTIONS(822), + [anon_sym_continue] = ACTIONS(822), + [anon_sym_default] = ACTIONS(822), + [anon_sym_enum] = ACTIONS(822), + [anon_sym_fn] = ACTIONS(822), + [anon_sym_for] = ACTIONS(822), + [anon_sym_if] = ACTIONS(822), + [anon_sym_impl] = ACTIONS(822), + [anon_sym_let] = ACTIONS(822), + [anon_sym_loop] = ACTIONS(822), + [anon_sym_match] = ACTIONS(822), + [anon_sym_mod] = ACTIONS(822), + [anon_sym_pub] = ACTIONS(822), + [anon_sym_return] = ACTIONS(822), + [anon_sym_static] = ACTIONS(822), + [anon_sym_struct] = ACTIONS(822), + [anon_sym_trait] = ACTIONS(822), + [anon_sym_type] = ACTIONS(822), + [anon_sym_union] = ACTIONS(822), + [anon_sym_unsafe] = ACTIONS(822), + [anon_sym_use] = ACTIONS(822), + [anon_sym_while] = ACTIONS(822), + [anon_sym_POUND] = ACTIONS(820), + [anon_sym_BANG] = ACTIONS(822), + [anon_sym_EQ] = ACTIONS(822), + [anon_sym_extern] = ACTIONS(822), + [anon_sym_LT] = ACTIONS(822), + [anon_sym_GT] = ACTIONS(822), + [anon_sym_COLON_COLON] = ACTIONS(820), + [anon_sym_AMP] = ACTIONS(822), + [anon_sym_DOT_DOT_DOT] = ACTIONS(820), + [anon_sym_DOT_DOT] = ACTIONS(822), + [anon_sym_DOT_DOT_EQ] = ACTIONS(820), + [anon_sym_DASH] = ACTIONS(822), + [anon_sym_AMP_AMP] = ACTIONS(820), + [anon_sym_PIPE_PIPE] = ACTIONS(820), + [anon_sym_PIPE] = ACTIONS(822), + [anon_sym_CARET] = ACTIONS(822), + [anon_sym_EQ_EQ] = ACTIONS(820), + [anon_sym_BANG_EQ] = ACTIONS(820), + [anon_sym_LT_EQ] = ACTIONS(820), + [anon_sym_GT_EQ] = ACTIONS(820), + [anon_sym_LT_LT] = ACTIONS(822), + [anon_sym_GT_GT] = ACTIONS(822), + [anon_sym_SLASH] = ACTIONS(822), + [anon_sym_PERCENT] = ACTIONS(822), + [anon_sym_PLUS_EQ] = ACTIONS(820), + [anon_sym_DASH_EQ] = ACTIONS(820), + [anon_sym_STAR_EQ] = ACTIONS(820), + [anon_sym_SLASH_EQ] = ACTIONS(820), + [anon_sym_PERCENT_EQ] = ACTIONS(820), + [anon_sym_AMP_EQ] = ACTIONS(820), + [anon_sym_PIPE_EQ] = ACTIONS(820), + [anon_sym_CARET_EQ] = ACTIONS(820), + [anon_sym_LT_LT_EQ] = ACTIONS(820), + [anon_sym_GT_GT_EQ] = ACTIONS(820), + [anon_sym_yield] = ACTIONS(822), + [anon_sym_move] = ACTIONS(822), + [anon_sym_DOT] = ACTIONS(822), + [sym_integer_literal] = ACTIONS(820), + [aux_sym_string_literal_token1] = ACTIONS(820), + [sym_char_literal] = ACTIONS(820), + [anon_sym_true] = ACTIONS(822), + [anon_sym_false] = ACTIONS(822), + [anon_sym_u8] = ACTIONS(822), + [anon_sym_i8] = ACTIONS(822), + [anon_sym_u16] = ACTIONS(822), + [anon_sym_i16] = ACTIONS(822), + [anon_sym_u32] = ACTIONS(822), + [anon_sym_i32] = ACTIONS(822), + [anon_sym_u64] = ACTIONS(822), + [anon_sym_i64] = ACTIONS(822), + [anon_sym_u128] = ACTIONS(822), + [anon_sym_i128] = ACTIONS(822), + [anon_sym_isize] = ACTIONS(822), + [anon_sym_usize] = ACTIONS(822), + [anon_sym_f32] = ACTIONS(822), + [anon_sym_f64] = ACTIONS(822), + [anon_sym_bool] = ACTIONS(822), + [anon_sym_str] = ACTIONS(822), + [anon_sym_char] = ACTIONS(822), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(820), + [sym_self] = ACTIONS(822), + [sym_super] = ACTIONS(822), + [sym_crate] = ACTIONS(822), + [sym_metavariable] = ACTIONS(820), + [sym_grit_metavariable] = ACTIONS(820), + [sym_raw_string_literal] = ACTIONS(820), + [sym_float_literal] = ACTIONS(820), [sym_block_comment] = ACTIONS(3), }, [172] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2320), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1384), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1139), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1220), - [sym_identifier] = STATE(834), + [ts_builtin_sym_end] = ACTIONS(824), + [sym__primitive_identifier] = ACTIONS(826), + [anon_sym_SEMI] = ACTIONS(824), + [anon_sym_macro_rules_BANG] = ACTIONS(824), + [anon_sym_LPAREN] = ACTIONS(824), + [anon_sym_LBRACE] = ACTIONS(824), + [anon_sym_RBRACE] = ACTIONS(824), + [anon_sym_LBRACK] = ACTIONS(824), + [anon_sym_PLUS] = ACTIONS(826), + [anon_sym_STAR] = ACTIONS(826), + [anon_sym_QMARK] = ACTIONS(824), + [anon_sym_SQUOTE] = ACTIONS(826), + [anon_sym_as] = ACTIONS(826), + [anon_sym_async] = ACTIONS(826), + [anon_sym_break] = ACTIONS(826), + [anon_sym_const] = ACTIONS(826), + [anon_sym_continue] = ACTIONS(826), + [anon_sym_default] = ACTIONS(826), + [anon_sym_enum] = ACTIONS(826), + [anon_sym_fn] = ACTIONS(826), + [anon_sym_for] = ACTIONS(826), + [anon_sym_if] = ACTIONS(826), + [anon_sym_impl] = ACTIONS(826), + [anon_sym_let] = ACTIONS(826), + [anon_sym_loop] = ACTIONS(826), + [anon_sym_match] = ACTIONS(826), + [anon_sym_mod] = ACTIONS(826), + [anon_sym_pub] = ACTIONS(826), + [anon_sym_return] = ACTIONS(826), + [anon_sym_static] = ACTIONS(826), + [anon_sym_struct] = ACTIONS(826), + [anon_sym_trait] = ACTIONS(826), + [anon_sym_type] = ACTIONS(826), + [anon_sym_union] = ACTIONS(826), + [anon_sym_unsafe] = ACTIONS(826), + [anon_sym_use] = ACTIONS(826), + [anon_sym_while] = ACTIONS(826), + [anon_sym_POUND] = ACTIONS(824), + [anon_sym_BANG] = ACTIONS(826), + [anon_sym_EQ] = ACTIONS(826), + [anon_sym_extern] = ACTIONS(826), + [anon_sym_LT] = ACTIONS(826), + [anon_sym_GT] = ACTIONS(826), + [anon_sym_COLON_COLON] = ACTIONS(824), + [anon_sym_AMP] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(824), + [anon_sym_DOT_DOT] = ACTIONS(826), + [anon_sym_DOT_DOT_EQ] = ACTIONS(824), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_AMP_AMP] = ACTIONS(824), + [anon_sym_PIPE_PIPE] = ACTIONS(824), + [anon_sym_PIPE] = ACTIONS(826), + [anon_sym_CARET] = ACTIONS(826), + [anon_sym_EQ_EQ] = ACTIONS(824), + [anon_sym_BANG_EQ] = ACTIONS(824), + [anon_sym_LT_EQ] = ACTIONS(824), + [anon_sym_GT_EQ] = ACTIONS(824), + [anon_sym_LT_LT] = ACTIONS(826), + [anon_sym_GT_GT] = ACTIONS(826), + [anon_sym_SLASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_PLUS_EQ] = ACTIONS(824), + [anon_sym_DASH_EQ] = ACTIONS(824), + [anon_sym_STAR_EQ] = ACTIONS(824), + [anon_sym_SLASH_EQ] = ACTIONS(824), + [anon_sym_PERCENT_EQ] = ACTIONS(824), + [anon_sym_AMP_EQ] = ACTIONS(824), + [anon_sym_PIPE_EQ] = ACTIONS(824), + [anon_sym_CARET_EQ] = ACTIONS(824), + [anon_sym_LT_LT_EQ] = ACTIONS(824), + [anon_sym_GT_GT_EQ] = ACTIONS(824), + [anon_sym_yield] = ACTIONS(826), + [anon_sym_move] = ACTIONS(826), + [anon_sym_DOT] = ACTIONS(826), + [sym_integer_literal] = ACTIONS(824), + [aux_sym_string_literal_token1] = ACTIONS(824), + [sym_char_literal] = ACTIONS(824), + [anon_sym_true] = ACTIONS(826), + [anon_sym_false] = ACTIONS(826), + [anon_sym_u8] = ACTIONS(826), + [anon_sym_i8] = ACTIONS(826), + [anon_sym_u16] = ACTIONS(826), + [anon_sym_i16] = ACTIONS(826), + [anon_sym_u32] = ACTIONS(826), + [anon_sym_i32] = ACTIONS(826), + [anon_sym_u64] = ACTIONS(826), + [anon_sym_i64] = ACTIONS(826), + [anon_sym_u128] = ACTIONS(826), + [anon_sym_i128] = ACTIONS(826), + [anon_sym_isize] = ACTIONS(826), + [anon_sym_usize] = ACTIONS(826), + [anon_sym_f32] = ACTIONS(826), + [anon_sym_f64] = ACTIONS(826), + [anon_sym_bool] = ACTIONS(826), + [anon_sym_str] = ACTIONS(826), + [anon_sym_char] = ACTIONS(826), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(824), + [sym_self] = ACTIONS(826), + [sym_super] = ACTIONS(826), + [sym_crate] = ACTIONS(826), + [sym_metavariable] = ACTIONS(824), + [sym_grit_metavariable] = ACTIONS(824), + [sym_raw_string_literal] = ACTIONS(824), + [sym_float_literal] = ACTIONS(824), + [sym_block_comment] = ACTIONS(3), + }, + [173] = { + [ts_builtin_sym_end] = ACTIONS(828), + [sym__primitive_identifier] = ACTIONS(830), + [anon_sym_SEMI] = ACTIONS(828), + [anon_sym_macro_rules_BANG] = ACTIONS(828), + [anon_sym_LPAREN] = ACTIONS(828), + [anon_sym_LBRACE] = ACTIONS(828), + [anon_sym_RBRACE] = ACTIONS(828), + [anon_sym_LBRACK] = ACTIONS(828), + [anon_sym_PLUS] = ACTIONS(725), + [anon_sym_STAR] = ACTIONS(830), + [anon_sym_QMARK] = ACTIONS(723), + [anon_sym_SQUOTE] = ACTIONS(830), + [anon_sym_as] = ACTIONS(725), + [anon_sym_async] = ACTIONS(830), + [anon_sym_break] = ACTIONS(830), + [anon_sym_const] = ACTIONS(830), + [anon_sym_continue] = ACTIONS(830), + [anon_sym_default] = ACTIONS(830), + [anon_sym_enum] = ACTIONS(830), + [anon_sym_fn] = ACTIONS(830), + [anon_sym_for] = ACTIONS(830), + [anon_sym_if] = ACTIONS(830), + [anon_sym_impl] = ACTIONS(830), + [anon_sym_let] = ACTIONS(830), + [anon_sym_loop] = ACTIONS(830), + [anon_sym_match] = ACTIONS(830), + [anon_sym_mod] = ACTIONS(830), + [anon_sym_pub] = ACTIONS(830), + [anon_sym_return] = ACTIONS(830), + [anon_sym_static] = ACTIONS(830), + [anon_sym_struct] = ACTIONS(830), + [anon_sym_trait] = ACTIONS(830), + [anon_sym_type] = ACTIONS(830), + [anon_sym_union] = ACTIONS(830), + [anon_sym_unsafe] = ACTIONS(830), + [anon_sym_use] = ACTIONS(830), + [anon_sym_while] = ACTIONS(830), + [anon_sym_POUND] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(830), + [anon_sym_EQ] = ACTIONS(725), + [anon_sym_extern] = ACTIONS(830), + [anon_sym_LT] = ACTIONS(830), + [anon_sym_GT] = ACTIONS(725), + [anon_sym_COLON_COLON] = ACTIONS(828), + [anon_sym_AMP] = ACTIONS(830), + [anon_sym_DOT_DOT_DOT] = ACTIONS(723), + [anon_sym_DOT_DOT] = ACTIONS(830), + [anon_sym_DOT_DOT_EQ] = ACTIONS(723), + [anon_sym_DASH] = ACTIONS(830), + [anon_sym_AMP_AMP] = ACTIONS(723), + [anon_sym_PIPE_PIPE] = ACTIONS(723), + [anon_sym_PIPE] = ACTIONS(830), + [anon_sym_CARET] = ACTIONS(725), + [anon_sym_EQ_EQ] = ACTIONS(723), + [anon_sym_BANG_EQ] = ACTIONS(723), + [anon_sym_LT_EQ] = ACTIONS(723), + [anon_sym_GT_EQ] = ACTIONS(723), + [anon_sym_LT_LT] = ACTIONS(725), + [anon_sym_GT_GT] = ACTIONS(725), + [anon_sym_SLASH] = ACTIONS(725), + [anon_sym_PERCENT] = ACTIONS(725), + [anon_sym_PLUS_EQ] = ACTIONS(723), + [anon_sym_DASH_EQ] = ACTIONS(723), + [anon_sym_STAR_EQ] = ACTIONS(723), + [anon_sym_SLASH_EQ] = ACTIONS(723), + [anon_sym_PERCENT_EQ] = ACTIONS(723), + [anon_sym_AMP_EQ] = ACTIONS(723), + [anon_sym_PIPE_EQ] = ACTIONS(723), + [anon_sym_CARET_EQ] = ACTIONS(723), + [anon_sym_LT_LT_EQ] = ACTIONS(723), + [anon_sym_GT_GT_EQ] = ACTIONS(723), + [anon_sym_yield] = ACTIONS(830), + [anon_sym_move] = ACTIONS(830), + [anon_sym_DOT] = ACTIONS(725), + [sym_integer_literal] = ACTIONS(828), + [aux_sym_string_literal_token1] = ACTIONS(828), + [sym_char_literal] = ACTIONS(828), + [anon_sym_true] = ACTIONS(830), + [anon_sym_false] = ACTIONS(830), + [anon_sym_u8] = ACTIONS(830), + [anon_sym_i8] = ACTIONS(830), + [anon_sym_u16] = ACTIONS(830), + [anon_sym_i16] = ACTIONS(830), + [anon_sym_u32] = ACTIONS(830), + [anon_sym_i32] = ACTIONS(830), + [anon_sym_u64] = ACTIONS(830), + [anon_sym_i64] = ACTIONS(830), + [anon_sym_u128] = ACTIONS(830), + [anon_sym_i128] = ACTIONS(830), + [anon_sym_isize] = ACTIONS(830), + [anon_sym_usize] = ACTIONS(830), + [anon_sym_f32] = ACTIONS(830), + [anon_sym_f64] = ACTIONS(830), + [anon_sym_bool] = ACTIONS(830), + [anon_sym_str] = ACTIONS(830), + [anon_sym_char] = ACTIONS(830), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(828), + [sym_self] = ACTIONS(830), + [sym_super] = ACTIONS(830), + [sym_crate] = ACTIONS(830), + [sym_metavariable] = ACTIONS(828), + [sym_grit_metavariable] = ACTIONS(828), + [sym_raw_string_literal] = ACTIONS(828), + [sym_float_literal] = ACTIONS(828), + [sym_block_comment] = ACTIONS(3), + }, + [174] = { + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2176), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1398), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1159), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(65), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1189), + [sym_identifier] = STATE(833), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(447), @@ -40143,53 +40398,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [173] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2320), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1382), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1139), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1220), - [sym_identifier] = STATE(834), + [175] = { + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2176), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1355), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1159), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(65), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1189), + [sym_identifier] = STATE(833), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(447), @@ -40251,53 +40506,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [174] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2320), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1390), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1139), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1220), - [sym_identifier] = STATE(834), + [176] = { + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2176), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1322), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1159), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(65), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1189), + [sym_identifier] = STATE(833), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(447), @@ -40359,161 +40614,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [175] = { - [ts_builtin_sym_end] = ACTIONS(830), - [sym__primitive_identifier] = ACTIONS(832), - [anon_sym_SEMI] = ACTIONS(830), - [anon_sym_macro_rules_BANG] = ACTIONS(830), - [anon_sym_LPAREN] = ACTIONS(830), - [anon_sym_LBRACE] = ACTIONS(830), - [anon_sym_RBRACE] = ACTIONS(830), - [anon_sym_LBRACK] = ACTIONS(830), - [anon_sym_PLUS] = ACTIONS(832), - [anon_sym_STAR] = ACTIONS(832), - [anon_sym_QMARK] = ACTIONS(830), - [anon_sym_SQUOTE] = ACTIONS(832), - [anon_sym_as] = ACTIONS(832), - [anon_sym_async] = ACTIONS(832), - [anon_sym_break] = ACTIONS(832), - [anon_sym_const] = ACTIONS(832), - [anon_sym_continue] = ACTIONS(832), - [anon_sym_default] = ACTIONS(832), - [anon_sym_enum] = ACTIONS(832), - [anon_sym_fn] = ACTIONS(832), - [anon_sym_for] = ACTIONS(832), - [anon_sym_if] = ACTIONS(832), - [anon_sym_impl] = ACTIONS(832), - [anon_sym_let] = ACTIONS(832), - [anon_sym_loop] = ACTIONS(832), - [anon_sym_match] = ACTIONS(832), - [anon_sym_mod] = ACTIONS(832), - [anon_sym_pub] = ACTIONS(832), - [anon_sym_return] = ACTIONS(832), - [anon_sym_static] = ACTIONS(832), - [anon_sym_struct] = ACTIONS(832), - [anon_sym_trait] = ACTIONS(832), - [anon_sym_type] = ACTIONS(832), - [anon_sym_union] = ACTIONS(832), - [anon_sym_unsafe] = ACTIONS(832), - [anon_sym_use] = ACTIONS(832), - [anon_sym_while] = ACTIONS(832), - [anon_sym_POUND] = ACTIONS(830), - [anon_sym_BANG] = ACTIONS(832), - [anon_sym_EQ] = ACTIONS(832), - [anon_sym_extern] = ACTIONS(832), - [anon_sym_LT] = ACTIONS(832), - [anon_sym_GT] = ACTIONS(832), - [anon_sym_COLON_COLON] = ACTIONS(830), - [anon_sym_AMP] = ACTIONS(832), - [anon_sym_DOT_DOT_DOT] = ACTIONS(830), - [anon_sym_DOT_DOT] = ACTIONS(832), - [anon_sym_DOT_DOT_EQ] = ACTIONS(830), - [anon_sym_DASH] = ACTIONS(832), - [anon_sym_AMP_AMP] = ACTIONS(830), - [anon_sym_PIPE_PIPE] = ACTIONS(830), - [anon_sym_PIPE] = ACTIONS(832), - [anon_sym_CARET] = ACTIONS(832), - [anon_sym_EQ_EQ] = ACTIONS(830), - [anon_sym_BANG_EQ] = ACTIONS(830), - [anon_sym_LT_EQ] = ACTIONS(830), - [anon_sym_GT_EQ] = ACTIONS(830), - [anon_sym_LT_LT] = ACTIONS(832), - [anon_sym_GT_GT] = ACTIONS(832), - [anon_sym_SLASH] = ACTIONS(832), - [anon_sym_PERCENT] = ACTIONS(832), - [anon_sym_PLUS_EQ] = ACTIONS(830), - [anon_sym_DASH_EQ] = ACTIONS(830), - [anon_sym_STAR_EQ] = ACTIONS(830), - [anon_sym_SLASH_EQ] = ACTIONS(830), - [anon_sym_PERCENT_EQ] = ACTIONS(830), - [anon_sym_AMP_EQ] = ACTIONS(830), - [anon_sym_PIPE_EQ] = ACTIONS(830), - [anon_sym_CARET_EQ] = ACTIONS(830), - [anon_sym_LT_LT_EQ] = ACTIONS(830), - [anon_sym_GT_GT_EQ] = ACTIONS(830), - [anon_sym_yield] = ACTIONS(832), - [anon_sym_move] = ACTIONS(832), - [anon_sym_DOT] = ACTIONS(832), - [sym_integer_literal] = ACTIONS(830), - [aux_sym_string_literal_token1] = ACTIONS(830), - [sym_char_literal] = ACTIONS(830), - [anon_sym_true] = ACTIONS(832), - [anon_sym_false] = ACTIONS(832), - [anon_sym_u8] = ACTIONS(832), - [anon_sym_i8] = ACTIONS(832), - [anon_sym_u16] = ACTIONS(832), - [anon_sym_i16] = ACTIONS(832), - [anon_sym_u32] = ACTIONS(832), - [anon_sym_i32] = ACTIONS(832), - [anon_sym_u64] = ACTIONS(832), - [anon_sym_i64] = ACTIONS(832), - [anon_sym_u128] = ACTIONS(832), - [anon_sym_i128] = ACTIONS(832), - [anon_sym_isize] = ACTIONS(832), - [anon_sym_usize] = ACTIONS(832), - [anon_sym_f32] = ACTIONS(832), - [anon_sym_f64] = ACTIONS(832), - [anon_sym_bool] = ACTIONS(832), - [anon_sym_str] = ACTIONS(832), - [anon_sym_char] = ACTIONS(832), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(830), - [sym_self] = ACTIONS(832), - [sym_super] = ACTIONS(832), - [sym_crate] = ACTIONS(832), - [sym_metavariable] = ACTIONS(830), - [sym_grit_metavariable] = ACTIONS(830), - [sym_raw_string_literal] = ACTIONS(830), - [sym_float_literal] = ACTIONS(830), - [sym_block_comment] = ACTIONS(3), - }, - [176] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2320), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1341), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1139), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1220), - [sym_identifier] = STATE(834), + [177] = { + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2176), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1268), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1159), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(65), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1189), + [sym_identifier] = STATE(833), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(447), @@ -40537,7 +40684,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(77), [anon_sym_AMP] = ACTIONS(79), - [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(673), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(85), @@ -40575,81 +40722,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [177] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2320), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1324), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1139), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1220), - [sym_identifier] = STATE(834), + [178] = { + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2305), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1323), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1308), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(74), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1313), + [sym_identifier] = STATE(1295), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(447), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(547), [anon_sym_SQUOTE] = ACTIONS(21), [anon_sym_async] = ACTIONS(453), - [anon_sym_break] = ACTIONS(25), + [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(455), [anon_sym_continue] = ACTIONS(29), - [anon_sym_default] = ACTIONS(457), + [anon_sym_default] = ACTIONS(507), [anon_sym_for] = ACTIONS(459), [anon_sym_if] = ACTIONS(461), [anon_sym_loop] = ACTIONS(463), [anon_sym_match] = ACTIONS(465), - [anon_sym_return] = ACTIONS(53), - [anon_sym_union] = ACTIONS(457), + [anon_sym_return] = ACTIONS(509), + [anon_sym_union] = ACTIONS(507), [anon_sym_unsafe] = ACTIONS(467), [anon_sym_while] = ACTIONS(469), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(547), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_AMP] = ACTIONS(79), - [anon_sym_DOT_DOT] = ACTIONS(81), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_AMP] = ACTIONS(551), + [anon_sym_DOT_DOT] = ACTIONS(553), + [anon_sym_DASH] = ACTIONS(547), [anon_sym_PIPE] = ACTIONS(83), - [anon_sym_yield] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(515), + [anon_sym_move] = ACTIONS(517), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), @@ -40674,62 +40821,386 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), [sym__raw_identifier] = ACTIONS(97), - [sym_self] = ACTIONS(99), - [sym_super] = ACTIONS(101), - [sym_crate] = ACTIONS(101), - [sym_metavariable] = ACTIONS(105), - [sym_grit_metavariable] = ACTIONS(473), + [sym_self] = ACTIONS(519), + [sym_super] = ACTIONS(521), + [sym_crate] = ACTIONS(521), + [sym_metavariable] = ACTIONS(523), + [sym_grit_metavariable] = ACTIONS(525), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [178] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2320), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1317), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1139), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1220), - [sym_identifier] = STATE(834), + [179] = { + [ts_builtin_sym_end] = ACTIONS(832), + [sym__primitive_identifier] = ACTIONS(834), + [anon_sym_SEMI] = ACTIONS(832), + [anon_sym_macro_rules_BANG] = ACTIONS(832), + [anon_sym_LPAREN] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(832), + [anon_sym_RBRACE] = ACTIONS(832), + [anon_sym_LBRACK] = ACTIONS(832), + [anon_sym_PLUS] = ACTIONS(834), + [anon_sym_STAR] = ACTIONS(834), + [anon_sym_QMARK] = ACTIONS(832), + [anon_sym_SQUOTE] = ACTIONS(834), + [anon_sym_as] = ACTIONS(834), + [anon_sym_async] = ACTIONS(834), + [anon_sym_break] = ACTIONS(834), + [anon_sym_const] = ACTIONS(834), + [anon_sym_continue] = ACTIONS(834), + [anon_sym_default] = ACTIONS(834), + [anon_sym_enum] = ACTIONS(834), + [anon_sym_fn] = ACTIONS(834), + [anon_sym_for] = ACTIONS(834), + [anon_sym_if] = ACTIONS(834), + [anon_sym_impl] = ACTIONS(834), + [anon_sym_let] = ACTIONS(834), + [anon_sym_loop] = ACTIONS(834), + [anon_sym_match] = ACTIONS(834), + [anon_sym_mod] = ACTIONS(834), + [anon_sym_pub] = ACTIONS(834), + [anon_sym_return] = ACTIONS(834), + [anon_sym_static] = ACTIONS(834), + [anon_sym_struct] = ACTIONS(834), + [anon_sym_trait] = ACTIONS(834), + [anon_sym_type] = ACTIONS(834), + [anon_sym_union] = ACTIONS(834), + [anon_sym_unsafe] = ACTIONS(834), + [anon_sym_use] = ACTIONS(834), + [anon_sym_while] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(832), + [anon_sym_BANG] = ACTIONS(834), + [anon_sym_EQ] = ACTIONS(834), + [anon_sym_extern] = ACTIONS(834), + [anon_sym_LT] = ACTIONS(834), + [anon_sym_GT] = ACTIONS(834), + [anon_sym_COLON_COLON] = ACTIONS(832), + [anon_sym_AMP] = ACTIONS(834), + [anon_sym_DOT_DOT_DOT] = ACTIONS(832), + [anon_sym_DOT_DOT] = ACTIONS(834), + [anon_sym_DOT_DOT_EQ] = ACTIONS(832), + [anon_sym_DASH] = ACTIONS(834), + [anon_sym_AMP_AMP] = ACTIONS(832), + [anon_sym_PIPE_PIPE] = ACTIONS(832), + [anon_sym_PIPE] = ACTIONS(834), + [anon_sym_CARET] = ACTIONS(834), + [anon_sym_EQ_EQ] = ACTIONS(832), + [anon_sym_BANG_EQ] = ACTIONS(832), + [anon_sym_LT_EQ] = ACTIONS(832), + [anon_sym_GT_EQ] = ACTIONS(832), + [anon_sym_LT_LT] = ACTIONS(834), + [anon_sym_GT_GT] = ACTIONS(834), + [anon_sym_SLASH] = ACTIONS(834), + [anon_sym_PERCENT] = ACTIONS(834), + [anon_sym_PLUS_EQ] = ACTIONS(832), + [anon_sym_DASH_EQ] = ACTIONS(832), + [anon_sym_STAR_EQ] = ACTIONS(832), + [anon_sym_SLASH_EQ] = ACTIONS(832), + [anon_sym_PERCENT_EQ] = ACTIONS(832), + [anon_sym_AMP_EQ] = ACTIONS(832), + [anon_sym_PIPE_EQ] = ACTIONS(832), + [anon_sym_CARET_EQ] = ACTIONS(832), + [anon_sym_LT_LT_EQ] = ACTIONS(832), + [anon_sym_GT_GT_EQ] = ACTIONS(832), + [anon_sym_yield] = ACTIONS(834), + [anon_sym_move] = ACTIONS(834), + [anon_sym_DOT] = ACTIONS(834), + [sym_integer_literal] = ACTIONS(832), + [aux_sym_string_literal_token1] = ACTIONS(832), + [sym_char_literal] = ACTIONS(832), + [anon_sym_true] = ACTIONS(834), + [anon_sym_false] = ACTIONS(834), + [anon_sym_u8] = ACTIONS(834), + [anon_sym_i8] = ACTIONS(834), + [anon_sym_u16] = ACTIONS(834), + [anon_sym_i16] = ACTIONS(834), + [anon_sym_u32] = ACTIONS(834), + [anon_sym_i32] = ACTIONS(834), + [anon_sym_u64] = ACTIONS(834), + [anon_sym_i64] = ACTIONS(834), + [anon_sym_u128] = ACTIONS(834), + [anon_sym_i128] = ACTIONS(834), + [anon_sym_isize] = ACTIONS(834), + [anon_sym_usize] = ACTIONS(834), + [anon_sym_f32] = ACTIONS(834), + [anon_sym_f64] = ACTIONS(834), + [anon_sym_bool] = ACTIONS(834), + [anon_sym_str] = ACTIONS(834), + [anon_sym_char] = ACTIONS(834), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(832), + [sym_self] = ACTIONS(834), + [sym_super] = ACTIONS(834), + [sym_crate] = ACTIONS(834), + [sym_metavariable] = ACTIONS(832), + [sym_grit_metavariable] = ACTIONS(832), + [sym_raw_string_literal] = ACTIONS(832), + [sym_float_literal] = ACTIONS(832), + [sym_block_comment] = ACTIONS(3), + }, + [180] = { + [ts_builtin_sym_end] = ACTIONS(836), + [sym__primitive_identifier] = ACTIONS(838), + [anon_sym_SEMI] = ACTIONS(836), + [anon_sym_macro_rules_BANG] = ACTIONS(836), + [anon_sym_LPAREN] = ACTIONS(836), + [anon_sym_LBRACE] = ACTIONS(836), + [anon_sym_RBRACE] = ACTIONS(836), + [anon_sym_LBRACK] = ACTIONS(836), + [anon_sym_PLUS] = ACTIONS(838), + [anon_sym_STAR] = ACTIONS(838), + [anon_sym_QMARK] = ACTIONS(836), + [anon_sym_SQUOTE] = ACTIONS(838), + [anon_sym_as] = ACTIONS(838), + [anon_sym_async] = ACTIONS(838), + [anon_sym_break] = ACTIONS(838), + [anon_sym_const] = ACTIONS(838), + [anon_sym_continue] = ACTIONS(838), + [anon_sym_default] = ACTIONS(838), + [anon_sym_enum] = ACTIONS(838), + [anon_sym_fn] = ACTIONS(838), + [anon_sym_for] = ACTIONS(838), + [anon_sym_if] = ACTIONS(838), + [anon_sym_impl] = ACTIONS(838), + [anon_sym_let] = ACTIONS(838), + [anon_sym_loop] = ACTIONS(838), + [anon_sym_match] = ACTIONS(838), + [anon_sym_mod] = ACTIONS(838), + [anon_sym_pub] = ACTIONS(838), + [anon_sym_return] = ACTIONS(838), + [anon_sym_static] = ACTIONS(838), + [anon_sym_struct] = ACTIONS(838), + [anon_sym_trait] = ACTIONS(838), + [anon_sym_type] = ACTIONS(838), + [anon_sym_union] = ACTIONS(838), + [anon_sym_unsafe] = ACTIONS(838), + [anon_sym_use] = ACTIONS(838), + [anon_sym_while] = ACTIONS(838), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_BANG] = ACTIONS(838), + [anon_sym_EQ] = ACTIONS(838), + [anon_sym_extern] = ACTIONS(838), + [anon_sym_LT] = ACTIONS(838), + [anon_sym_GT] = ACTIONS(838), + [anon_sym_COLON_COLON] = ACTIONS(836), + [anon_sym_AMP] = ACTIONS(838), + [anon_sym_DOT_DOT_DOT] = ACTIONS(836), + [anon_sym_DOT_DOT] = ACTIONS(838), + [anon_sym_DOT_DOT_EQ] = ACTIONS(836), + [anon_sym_DASH] = ACTIONS(838), + [anon_sym_AMP_AMP] = ACTIONS(836), + [anon_sym_PIPE_PIPE] = ACTIONS(836), + [anon_sym_PIPE] = ACTIONS(838), + [anon_sym_CARET] = ACTIONS(838), + [anon_sym_EQ_EQ] = ACTIONS(836), + [anon_sym_BANG_EQ] = ACTIONS(836), + [anon_sym_LT_EQ] = ACTIONS(836), + [anon_sym_GT_EQ] = ACTIONS(836), + [anon_sym_LT_LT] = ACTIONS(838), + [anon_sym_GT_GT] = ACTIONS(838), + [anon_sym_SLASH] = ACTIONS(838), + [anon_sym_PERCENT] = ACTIONS(838), + [anon_sym_PLUS_EQ] = ACTIONS(836), + [anon_sym_DASH_EQ] = ACTIONS(836), + [anon_sym_STAR_EQ] = ACTIONS(836), + [anon_sym_SLASH_EQ] = ACTIONS(836), + [anon_sym_PERCENT_EQ] = ACTIONS(836), + [anon_sym_AMP_EQ] = ACTIONS(836), + [anon_sym_PIPE_EQ] = ACTIONS(836), + [anon_sym_CARET_EQ] = ACTIONS(836), + [anon_sym_LT_LT_EQ] = ACTIONS(836), + [anon_sym_GT_GT_EQ] = ACTIONS(836), + [anon_sym_yield] = ACTIONS(838), + [anon_sym_move] = ACTIONS(838), + [anon_sym_DOT] = ACTIONS(838), + [sym_integer_literal] = ACTIONS(836), + [aux_sym_string_literal_token1] = ACTIONS(836), + [sym_char_literal] = ACTIONS(836), + [anon_sym_true] = ACTIONS(838), + [anon_sym_false] = ACTIONS(838), + [anon_sym_u8] = ACTIONS(838), + [anon_sym_i8] = ACTIONS(838), + [anon_sym_u16] = ACTIONS(838), + [anon_sym_i16] = ACTIONS(838), + [anon_sym_u32] = ACTIONS(838), + [anon_sym_i32] = ACTIONS(838), + [anon_sym_u64] = ACTIONS(838), + [anon_sym_i64] = ACTIONS(838), + [anon_sym_u128] = ACTIONS(838), + [anon_sym_i128] = ACTIONS(838), + [anon_sym_isize] = ACTIONS(838), + [anon_sym_usize] = ACTIONS(838), + [anon_sym_f32] = ACTIONS(838), + [anon_sym_f64] = ACTIONS(838), + [anon_sym_bool] = ACTIONS(838), + [anon_sym_str] = ACTIONS(838), + [anon_sym_char] = ACTIONS(838), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(836), + [sym_self] = ACTIONS(838), + [sym_super] = ACTIONS(838), + [sym_crate] = ACTIONS(838), + [sym_metavariable] = ACTIONS(836), + [sym_grit_metavariable] = ACTIONS(836), + [sym_raw_string_literal] = ACTIONS(836), + [sym_float_literal] = ACTIONS(836), + [sym_block_comment] = ACTIONS(3), + }, + [181] = { + [ts_builtin_sym_end] = ACTIONS(840), + [sym__primitive_identifier] = ACTIONS(842), + [anon_sym_SEMI] = ACTIONS(840), + [anon_sym_macro_rules_BANG] = ACTIONS(840), + [anon_sym_LPAREN] = ACTIONS(840), + [anon_sym_LBRACE] = ACTIONS(840), + [anon_sym_RBRACE] = ACTIONS(840), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_PLUS] = ACTIONS(842), + [anon_sym_STAR] = ACTIONS(842), + [anon_sym_QMARK] = ACTIONS(840), + [anon_sym_SQUOTE] = ACTIONS(842), + [anon_sym_as] = ACTIONS(842), + [anon_sym_async] = ACTIONS(842), + [anon_sym_break] = ACTIONS(842), + [anon_sym_const] = ACTIONS(842), + [anon_sym_continue] = ACTIONS(842), + [anon_sym_default] = ACTIONS(842), + [anon_sym_enum] = ACTIONS(842), + [anon_sym_fn] = ACTIONS(842), + [anon_sym_for] = ACTIONS(842), + [anon_sym_if] = ACTIONS(842), + [anon_sym_impl] = ACTIONS(842), + [anon_sym_let] = ACTIONS(842), + [anon_sym_loop] = ACTIONS(842), + [anon_sym_match] = ACTIONS(842), + [anon_sym_mod] = ACTIONS(842), + [anon_sym_pub] = ACTIONS(842), + [anon_sym_return] = ACTIONS(842), + [anon_sym_static] = ACTIONS(842), + [anon_sym_struct] = ACTIONS(842), + [anon_sym_trait] = ACTIONS(842), + [anon_sym_type] = ACTIONS(842), + [anon_sym_union] = ACTIONS(842), + [anon_sym_unsafe] = ACTIONS(842), + [anon_sym_use] = ACTIONS(842), + [anon_sym_while] = ACTIONS(842), + [anon_sym_POUND] = ACTIONS(840), + [anon_sym_BANG] = ACTIONS(842), + [anon_sym_EQ] = ACTIONS(842), + [anon_sym_extern] = ACTIONS(842), + [anon_sym_LT] = ACTIONS(842), + [anon_sym_GT] = ACTIONS(842), + [anon_sym_COLON_COLON] = ACTIONS(840), + [anon_sym_AMP] = ACTIONS(842), + [anon_sym_DOT_DOT_DOT] = ACTIONS(840), + [anon_sym_DOT_DOT] = ACTIONS(842), + [anon_sym_DOT_DOT_EQ] = ACTIONS(840), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_AMP_AMP] = ACTIONS(840), + [anon_sym_PIPE_PIPE] = ACTIONS(840), + [anon_sym_PIPE] = ACTIONS(842), + [anon_sym_CARET] = ACTIONS(842), + [anon_sym_EQ_EQ] = ACTIONS(840), + [anon_sym_BANG_EQ] = ACTIONS(840), + [anon_sym_LT_EQ] = ACTIONS(840), + [anon_sym_GT_EQ] = ACTIONS(840), + [anon_sym_LT_LT] = ACTIONS(842), + [anon_sym_GT_GT] = ACTIONS(842), + [anon_sym_SLASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_PLUS_EQ] = ACTIONS(840), + [anon_sym_DASH_EQ] = ACTIONS(840), + [anon_sym_STAR_EQ] = ACTIONS(840), + [anon_sym_SLASH_EQ] = ACTIONS(840), + [anon_sym_PERCENT_EQ] = ACTIONS(840), + [anon_sym_AMP_EQ] = ACTIONS(840), + [anon_sym_PIPE_EQ] = ACTIONS(840), + [anon_sym_CARET_EQ] = ACTIONS(840), + [anon_sym_LT_LT_EQ] = ACTIONS(840), + [anon_sym_GT_GT_EQ] = ACTIONS(840), + [anon_sym_yield] = ACTIONS(842), + [anon_sym_move] = ACTIONS(842), + [anon_sym_DOT] = ACTIONS(842), + [sym_integer_literal] = ACTIONS(840), + [aux_sym_string_literal_token1] = ACTIONS(840), + [sym_char_literal] = ACTIONS(840), + [anon_sym_true] = ACTIONS(842), + [anon_sym_false] = ACTIONS(842), + [anon_sym_u8] = ACTIONS(842), + [anon_sym_i8] = ACTIONS(842), + [anon_sym_u16] = ACTIONS(842), + [anon_sym_i16] = ACTIONS(842), + [anon_sym_u32] = ACTIONS(842), + [anon_sym_i32] = ACTIONS(842), + [anon_sym_u64] = ACTIONS(842), + [anon_sym_i64] = ACTIONS(842), + [anon_sym_u128] = ACTIONS(842), + [anon_sym_i128] = ACTIONS(842), + [anon_sym_isize] = ACTIONS(842), + [anon_sym_usize] = ACTIONS(842), + [anon_sym_f32] = ACTIONS(842), + [anon_sym_f64] = ACTIONS(842), + [anon_sym_bool] = ACTIONS(842), + [anon_sym_str] = ACTIONS(842), + [anon_sym_char] = ACTIONS(842), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(840), + [sym_self] = ACTIONS(842), + [sym_super] = ACTIONS(842), + [sym_crate] = ACTIONS(842), + [sym_metavariable] = ACTIONS(840), + [sym_grit_metavariable] = ACTIONS(840), + [sym_raw_string_literal] = ACTIONS(840), + [sym_float_literal] = ACTIONS(840), + [sym_block_comment] = ACTIONS(3), + }, + [182] = { + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2176), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1402), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1159), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(65), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1189), + [sym_identifier] = STATE(833), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(447), @@ -40791,269 +41262,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [179] = { - [ts_builtin_sym_end] = ACTIONS(834), - [sym__primitive_identifier] = ACTIONS(836), - [anon_sym_SEMI] = ACTIONS(834), - [anon_sym_macro_rules_BANG] = ACTIONS(834), - [anon_sym_LPAREN] = ACTIONS(834), - [anon_sym_LBRACE] = ACTIONS(834), - [anon_sym_RBRACE] = ACTIONS(834), - [anon_sym_LBRACK] = ACTIONS(834), - [anon_sym_PLUS] = ACTIONS(836), - [anon_sym_STAR] = ACTIONS(836), - [anon_sym_QMARK] = ACTIONS(834), - [anon_sym_SQUOTE] = ACTIONS(836), - [anon_sym_as] = ACTIONS(836), - [anon_sym_async] = ACTIONS(836), - [anon_sym_break] = ACTIONS(836), - [anon_sym_const] = ACTIONS(836), - [anon_sym_continue] = ACTIONS(836), - [anon_sym_default] = ACTIONS(836), - [anon_sym_enum] = ACTIONS(836), - [anon_sym_fn] = ACTIONS(836), - [anon_sym_for] = ACTIONS(836), - [anon_sym_if] = ACTIONS(836), - [anon_sym_impl] = ACTIONS(836), - [anon_sym_let] = ACTIONS(836), - [anon_sym_loop] = ACTIONS(836), - [anon_sym_match] = ACTIONS(836), - [anon_sym_mod] = ACTIONS(836), - [anon_sym_pub] = ACTIONS(836), - [anon_sym_return] = ACTIONS(836), - [anon_sym_static] = ACTIONS(836), - [anon_sym_struct] = ACTIONS(836), - [anon_sym_trait] = ACTIONS(836), - [anon_sym_type] = ACTIONS(836), - [anon_sym_union] = ACTIONS(836), - [anon_sym_unsafe] = ACTIONS(836), - [anon_sym_use] = ACTIONS(836), - [anon_sym_while] = ACTIONS(836), - [anon_sym_POUND] = ACTIONS(834), - [anon_sym_BANG] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(836), - [anon_sym_extern] = ACTIONS(836), - [anon_sym_LT] = ACTIONS(836), - [anon_sym_GT] = ACTIONS(836), - [anon_sym_COLON_COLON] = ACTIONS(834), - [anon_sym_AMP] = ACTIONS(836), - [anon_sym_DOT_DOT_DOT] = ACTIONS(834), - [anon_sym_DOT_DOT] = ACTIONS(836), - [anon_sym_DOT_DOT_EQ] = ACTIONS(834), - [anon_sym_DASH] = ACTIONS(836), - [anon_sym_AMP_AMP] = ACTIONS(834), - [anon_sym_PIPE_PIPE] = ACTIONS(834), - [anon_sym_PIPE] = ACTIONS(836), - [anon_sym_CARET] = ACTIONS(836), - [anon_sym_EQ_EQ] = ACTIONS(834), - [anon_sym_BANG_EQ] = ACTIONS(834), - [anon_sym_LT_EQ] = ACTIONS(834), - [anon_sym_GT_EQ] = ACTIONS(834), - [anon_sym_LT_LT] = ACTIONS(836), - [anon_sym_GT_GT] = ACTIONS(836), - [anon_sym_SLASH] = ACTIONS(836), - [anon_sym_PERCENT] = ACTIONS(836), - [anon_sym_PLUS_EQ] = ACTIONS(834), - [anon_sym_DASH_EQ] = ACTIONS(834), - [anon_sym_STAR_EQ] = ACTIONS(834), - [anon_sym_SLASH_EQ] = ACTIONS(834), - [anon_sym_PERCENT_EQ] = ACTIONS(834), - [anon_sym_AMP_EQ] = ACTIONS(834), - [anon_sym_PIPE_EQ] = ACTIONS(834), - [anon_sym_CARET_EQ] = ACTIONS(834), - [anon_sym_LT_LT_EQ] = ACTIONS(834), - [anon_sym_GT_GT_EQ] = ACTIONS(834), - [anon_sym_yield] = ACTIONS(836), - [anon_sym_move] = ACTIONS(836), - [anon_sym_DOT] = ACTIONS(836), - [sym_integer_literal] = ACTIONS(834), - [aux_sym_string_literal_token1] = ACTIONS(834), - [sym_char_literal] = ACTIONS(834), - [anon_sym_true] = ACTIONS(836), - [anon_sym_false] = ACTIONS(836), - [anon_sym_u8] = ACTIONS(836), - [anon_sym_i8] = ACTIONS(836), - [anon_sym_u16] = ACTIONS(836), - [anon_sym_i16] = ACTIONS(836), - [anon_sym_u32] = ACTIONS(836), - [anon_sym_i32] = ACTIONS(836), - [anon_sym_u64] = ACTIONS(836), - [anon_sym_i64] = ACTIONS(836), - [anon_sym_u128] = ACTIONS(836), - [anon_sym_i128] = ACTIONS(836), - [anon_sym_isize] = ACTIONS(836), - [anon_sym_usize] = ACTIONS(836), - [anon_sym_f32] = ACTIONS(836), - [anon_sym_f64] = ACTIONS(836), - [anon_sym_bool] = ACTIONS(836), - [anon_sym_str] = ACTIONS(836), - [anon_sym_char] = ACTIONS(836), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(834), - [sym_self] = ACTIONS(836), - [sym_super] = ACTIONS(836), - [sym_crate] = ACTIONS(836), - [sym_metavariable] = ACTIONS(834), - [sym_grit_metavariable] = ACTIONS(834), - [sym_raw_string_literal] = ACTIONS(834), - [sym_float_literal] = ACTIONS(834), - [sym_block_comment] = ACTIONS(3), - }, - [180] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2289), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1326), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1296), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), + [183] = { + [sym_bracketed_type] = STATE(2734), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2176), + [sym__expression_except_range] = STATE(1107), + [sym__expression] = STATE(1336), + [sym_macro_invocation] = STATE(1107), + [sym_scoped_identifier] = STATE(1159), + [sym_scoped_type_identifier_in_expression_position] = STATE(2436), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), [sym_closure_parameters] = STATE(65), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1311), - [sym_identifier] = STATE(1290), - [sym__primitive_identifier] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(447), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(545), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_async] = ACTIONS(453), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(29), - [anon_sym_default] = ACTIONS(507), - [anon_sym_for] = ACTIONS(459), - [anon_sym_if] = ACTIONS(461), - [anon_sym_loop] = ACTIONS(463), - [anon_sym_match] = ACTIONS(465), - [anon_sym_return] = ACTIONS(509), - [anon_sym_union] = ACTIONS(507), - [anon_sym_unsafe] = ACTIONS(467), - [anon_sym_while] = ACTIONS(469), - [anon_sym_BANG] = ACTIONS(545), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_AMP] = ACTIONS(549), - [anon_sym_DOT_DOT] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(545), - [anon_sym_PIPE] = ACTIONS(83), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [anon_sym_u8] = ACTIONS(95), - [anon_sym_i8] = ACTIONS(95), - [anon_sym_u16] = ACTIONS(95), - [anon_sym_i16] = ACTIONS(95), - [anon_sym_u32] = ACTIONS(95), - [anon_sym_i32] = ACTIONS(95), - [anon_sym_u64] = ACTIONS(95), - [anon_sym_i64] = ACTIONS(95), - [anon_sym_u128] = ACTIONS(95), - [anon_sym_i128] = ACTIONS(95), - [anon_sym_isize] = ACTIONS(95), - [anon_sym_usize] = ACTIONS(95), - [anon_sym_f32] = ACTIONS(95), - [anon_sym_f64] = ACTIONS(95), - [anon_sym_bool] = ACTIONS(95), - [anon_sym_str] = ACTIONS(95), - [anon_sym_char] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(97), - [sym_self] = ACTIONS(519), - [sym_super] = ACTIONS(521), - [sym_crate] = ACTIONS(521), - [sym_metavariable] = ACTIONS(523), - [sym_grit_metavariable] = ACTIONS(525), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [181] = { - [sym_bracketed_type] = STATE(2693), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(2320), - [sym__expression_except_range] = STATE(1148), - [sym__expression] = STATE(1264), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1139), - [sym_scoped_type_identifier_in_expression_position] = STATE(2468), - [sym_range_expression] = STATE(1230), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_yield_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_const_block] = STATE(1148), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2695), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(1160), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym_primitive_type] = STATE(1220), - [sym_identifier] = STATE(834), + [sym_loop_label] = STATE(2699), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1139), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1221), + [sym_boolean_literal] = STATE(1221), + [sym_primitive_type] = STATE(1189), + [sym_identifier] = STATE(833), [sym__primitive_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(447), @@ -41077,7 +41332,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(77), [anon_sym_AMP] = ACTIONS(79), - [anon_sym_DOT_DOT] = ACTIONS(563), + [anon_sym_DOT_DOT] = ACTIONS(81), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(85), @@ -41115,2706 +41370,2301 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [182] = { - [ts_builtin_sym_end] = ACTIONS(838), - [sym__primitive_identifier] = ACTIONS(840), - [anon_sym_SEMI] = ACTIONS(838), - [anon_sym_macro_rules_BANG] = ACTIONS(838), - [anon_sym_LPAREN] = ACTIONS(838), - [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_RBRACE] = ACTIONS(838), - [anon_sym_LBRACK] = ACTIONS(838), - [anon_sym_PLUS] = ACTIONS(840), - [anon_sym_STAR] = ACTIONS(840), - [anon_sym_QMARK] = ACTIONS(838), - [anon_sym_SQUOTE] = ACTIONS(840), - [anon_sym_as] = ACTIONS(840), - [anon_sym_async] = ACTIONS(840), - [anon_sym_break] = ACTIONS(840), - [anon_sym_const] = ACTIONS(840), - [anon_sym_continue] = ACTIONS(840), - [anon_sym_default] = ACTIONS(840), - [anon_sym_enum] = ACTIONS(840), - [anon_sym_fn] = ACTIONS(840), - [anon_sym_for] = ACTIONS(840), - [anon_sym_if] = ACTIONS(840), - [anon_sym_impl] = ACTIONS(840), - [anon_sym_let] = ACTIONS(840), - [anon_sym_loop] = ACTIONS(840), - [anon_sym_match] = ACTIONS(840), - [anon_sym_mod] = ACTIONS(840), - [anon_sym_pub] = ACTIONS(840), - [anon_sym_return] = ACTIONS(840), - [anon_sym_static] = ACTIONS(840), - [anon_sym_struct] = ACTIONS(840), - [anon_sym_trait] = ACTIONS(840), - [anon_sym_type] = ACTIONS(840), - [anon_sym_union] = ACTIONS(840), - [anon_sym_unsafe] = ACTIONS(840), - [anon_sym_use] = ACTIONS(840), - [anon_sym_while] = ACTIONS(840), - [anon_sym_POUND] = ACTIONS(838), - [anon_sym_BANG] = ACTIONS(840), - [anon_sym_EQ] = ACTIONS(840), - [anon_sym_extern] = ACTIONS(840), - [anon_sym_LT] = ACTIONS(840), - [anon_sym_GT] = ACTIONS(840), - [anon_sym_COLON_COLON] = ACTIONS(838), - [anon_sym_AMP] = ACTIONS(840), - [anon_sym_DOT_DOT_DOT] = ACTIONS(838), - [anon_sym_DOT_DOT] = ACTIONS(840), - [anon_sym_DOT_DOT_EQ] = ACTIONS(838), - [anon_sym_DASH] = ACTIONS(840), - [anon_sym_AMP_AMP] = ACTIONS(838), - [anon_sym_PIPE_PIPE] = ACTIONS(838), - [anon_sym_PIPE] = ACTIONS(840), - [anon_sym_CARET] = ACTIONS(840), - [anon_sym_EQ_EQ] = ACTIONS(838), - [anon_sym_BANG_EQ] = ACTIONS(838), - [anon_sym_LT_EQ] = ACTIONS(838), - [anon_sym_GT_EQ] = ACTIONS(838), - [anon_sym_LT_LT] = ACTIONS(840), - [anon_sym_GT_GT] = ACTIONS(840), - [anon_sym_SLASH] = ACTIONS(840), - [anon_sym_PERCENT] = ACTIONS(840), - [anon_sym_PLUS_EQ] = ACTIONS(838), - [anon_sym_DASH_EQ] = ACTIONS(838), - [anon_sym_STAR_EQ] = ACTIONS(838), - [anon_sym_SLASH_EQ] = ACTIONS(838), - [anon_sym_PERCENT_EQ] = ACTIONS(838), - [anon_sym_AMP_EQ] = ACTIONS(838), - [anon_sym_PIPE_EQ] = ACTIONS(838), - [anon_sym_CARET_EQ] = ACTIONS(838), - [anon_sym_LT_LT_EQ] = ACTIONS(838), - [anon_sym_GT_GT_EQ] = ACTIONS(838), - [anon_sym_yield] = ACTIONS(840), - [anon_sym_move] = ACTIONS(840), - [anon_sym_DOT] = ACTIONS(840), - [sym_integer_literal] = ACTIONS(838), - [aux_sym_string_literal_token1] = ACTIONS(838), - [sym_char_literal] = ACTIONS(838), - [anon_sym_true] = ACTIONS(840), - [anon_sym_false] = ACTIONS(840), - [anon_sym_u8] = ACTIONS(840), - [anon_sym_i8] = ACTIONS(840), - [anon_sym_u16] = ACTIONS(840), - [anon_sym_i16] = ACTIONS(840), - [anon_sym_u32] = ACTIONS(840), - [anon_sym_i32] = ACTIONS(840), - [anon_sym_u64] = ACTIONS(840), - [anon_sym_i64] = ACTIONS(840), - [anon_sym_u128] = ACTIONS(840), - [anon_sym_i128] = ACTIONS(840), - [anon_sym_isize] = ACTIONS(840), - [anon_sym_usize] = ACTIONS(840), - [anon_sym_f32] = ACTIONS(840), - [anon_sym_f64] = ACTIONS(840), - [anon_sym_bool] = ACTIONS(840), - [anon_sym_str] = ACTIONS(840), - [anon_sym_char] = ACTIONS(840), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(838), - [sym_self] = ACTIONS(840), - [sym_super] = ACTIONS(840), - [sym_crate] = ACTIONS(840), - [sym_metavariable] = ACTIONS(838), - [sym_grit_metavariable] = ACTIONS(838), - [sym_raw_string_literal] = ACTIONS(838), - [sym_float_literal] = ACTIONS(838), - [sym_block_comment] = ACTIONS(3), - }, - [183] = { - [sym_attribute_item] = STATE(197), - [sym_function_modifiers] = STATE(2724), - [sym_self_parameter] = STATE(2151), - [sym_variadic_parameter] = STATE(2151), - [sym_parameter] = STATE(2151), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(2087), - [sym_bracketed_type] = STATE(2640), - [sym_lifetime] = STATE(2155), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2728), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1925), - [sym_scoped_identifier] = STATE(1672), - [sym_scoped_type_identifier] = STATE(1646), - [sym_const_block] = STATE(1616), - [sym_pattern] = STATE(1949), - [sym_tuple_pattern] = STATE(1616), - [sym_slice_pattern] = STATE(1616), - [sym_tuple_struct_pattern] = STATE(1616), - [sym_struct_pattern] = STATE(1616), - [sym_remaining_field_pattern] = STATE(1616), - [sym_mut_pattern] = STATE(1616), - [sym_range_pattern] = STATE(1616), - [sym_ref_pattern] = STATE(1616), - [sym_captured_pattern] = STATE(1616), - [sym_reference_pattern] = STATE(1616), - [sym_or_pattern] = STATE(1616), - [sym__literal_pattern] = STATE(1496), - [sym_negative_literal] = STATE(1513), - [sym_string_literal] = STATE(1513), - [sym_boolean_literal] = STATE(1513), - [sym_primitive_type] = STATE(1677), - [sym_identifier] = STATE(1481), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [sym_underscore] = ACTIONS(844), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_RPAREN] = ACTIONS(848), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(854), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(858), - [anon_sym_default] = ACTIONS(860), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(868), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_POUND] = ACTIONS(870), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_COMMA] = ACTIONS(874), - [anon_sym_extern] = ACTIONS(876), - [anon_sym_ref] = ACTIONS(878), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(880), - [anon_sym_AMP] = ACTIONS(882), - [anon_sym_DOT_DOT_DOT] = ACTIONS(884), - [anon_sym_dyn] = ACTIONS(886), - [sym_mutable_specifier] = ACTIONS(888), - [anon_sym_DOT_DOT] = ACTIONS(890), - [anon_sym_DASH] = ACTIONS(892), - [sym_integer_literal] = ACTIONS(894), - [aux_sym_string_literal_token1] = ACTIONS(896), - [sym_char_literal] = ACTIONS(894), - [anon_sym_true] = ACTIONS(898), - [anon_sym_false] = ACTIONS(898), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(904), - [sym_super] = ACTIONS(906), - [sym_crate] = ACTIONS(906), - [sym_metavariable] = ACTIONS(908), - [sym_grit_metavariable] = ACTIONS(910), - [sym_raw_string_literal] = ACTIONS(894), - [sym_float_literal] = ACTIONS(894), - [sym_block_comment] = ACTIONS(3), - }, [184] = { - [sym__primitive_identifier] = ACTIONS(723), - [anon_sym_SEMI] = ACTIONS(761), - [anon_sym_macro_rules_BANG] = ACTIONS(721), - [anon_sym_LPAREN] = ACTIONS(761), - [anon_sym_LBRACE] = ACTIONS(765), - [anon_sym_RBRACE] = ACTIONS(721), - [anon_sym_LBRACK] = ACTIONS(761), - [anon_sym_PLUS] = ACTIONS(768), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_QMARK] = ACTIONS(775), - [anon_sym_SQUOTE] = ACTIONS(723), - [anon_sym_as] = ACTIONS(768), - [anon_sym_async] = ACTIONS(778), - [anon_sym_break] = ACTIONS(723), - [anon_sym_const] = ACTIONS(778), - [anon_sym_continue] = ACTIONS(723), - [anon_sym_default] = ACTIONS(778), - [anon_sym_enum] = ACTIONS(778), - [anon_sym_fn] = ACTIONS(778), - [anon_sym_for] = ACTIONS(723), - [anon_sym_if] = ACTIONS(723), - [anon_sym_impl] = ACTIONS(723), - [anon_sym_let] = ACTIONS(723), - [anon_sym_loop] = ACTIONS(723), - [anon_sym_match] = ACTIONS(723), - [anon_sym_mod] = ACTIONS(778), - [anon_sym_pub] = ACTIONS(723), - [anon_sym_return] = ACTIONS(723), - [anon_sym_static] = ACTIONS(778), - [anon_sym_struct] = ACTIONS(778), - [anon_sym_trait] = ACTIONS(778), - [anon_sym_type] = ACTIONS(778), - [anon_sym_union] = ACTIONS(778), - [anon_sym_unsafe] = ACTIONS(778), - [anon_sym_use] = ACTIONS(778), - [anon_sym_while] = ACTIONS(723), - [anon_sym_POUND] = ACTIONS(721), - [anon_sym_BANG] = ACTIONS(781), - [anon_sym_EQ] = ACTIONS(768), - [anon_sym_extern] = ACTIONS(778), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_GT] = ACTIONS(768), - [anon_sym_COLON_COLON] = ACTIONS(765), - [anon_sym_AMP] = ACTIONS(771), - [anon_sym_DOT_DOT_DOT] = ACTIONS(775), - [anon_sym_DOT_DOT] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(771), - [anon_sym_AMP_AMP] = ACTIONS(775), - [anon_sym_PIPE_PIPE] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_CARET] = ACTIONS(768), - [anon_sym_EQ_EQ] = ACTIONS(775), - [anon_sym_BANG_EQ] = ACTIONS(775), - [anon_sym_LT_EQ] = ACTIONS(775), - [anon_sym_GT_EQ] = ACTIONS(775), - [anon_sym_LT_LT] = ACTIONS(768), - [anon_sym_GT_GT] = ACTIONS(768), - [anon_sym_SLASH] = ACTIONS(768), - [anon_sym_PERCENT] = ACTIONS(768), - [anon_sym_PLUS_EQ] = ACTIONS(775), - [anon_sym_DASH_EQ] = ACTIONS(775), - [anon_sym_STAR_EQ] = ACTIONS(775), - [anon_sym_SLASH_EQ] = ACTIONS(775), - [anon_sym_PERCENT_EQ] = ACTIONS(775), - [anon_sym_AMP_EQ] = ACTIONS(775), - [anon_sym_PIPE_EQ] = ACTIONS(775), - [anon_sym_CARET_EQ] = ACTIONS(775), - [anon_sym_LT_LT_EQ] = ACTIONS(775), - [anon_sym_GT_GT_EQ] = ACTIONS(775), - [anon_sym_yield] = ACTIONS(723), - [anon_sym_move] = ACTIONS(723), - [anon_sym_DOT] = ACTIONS(768), - [sym_integer_literal] = ACTIONS(721), - [aux_sym_string_literal_token1] = ACTIONS(721), - [sym_char_literal] = ACTIONS(721), - [anon_sym_true] = ACTIONS(723), - [anon_sym_false] = ACTIONS(723), - [anon_sym_u8] = ACTIONS(723), - [anon_sym_i8] = ACTIONS(723), - [anon_sym_u16] = ACTIONS(723), - [anon_sym_i16] = ACTIONS(723), - [anon_sym_u32] = ACTIONS(723), - [anon_sym_i32] = ACTIONS(723), - [anon_sym_u64] = ACTIONS(723), - [anon_sym_i64] = ACTIONS(723), - [anon_sym_u128] = ACTIONS(723), - [anon_sym_i128] = ACTIONS(723), - [anon_sym_isize] = ACTIONS(723), - [anon_sym_usize] = ACTIONS(723), - [anon_sym_f32] = ACTIONS(723), - [anon_sym_f64] = ACTIONS(723), - [anon_sym_bool] = ACTIONS(723), - [anon_sym_str] = ACTIONS(723), - [anon_sym_char] = ACTIONS(723), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(721), - [sym_self] = ACTIONS(723), - [sym_super] = ACTIONS(723), - [sym_crate] = ACTIONS(723), - [sym_metavariable] = ACTIONS(721), - [sym_grit_metavariable] = ACTIONS(721), - [sym_raw_string_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(721), + [sym__primitive_identifier] = ACTIONS(721), + [anon_sym_SEMI] = ACTIONS(757), + [anon_sym_macro_rules_BANG] = ACTIONS(719), + [anon_sym_LPAREN] = ACTIONS(757), + [anon_sym_LBRACE] = ACTIONS(761), + [anon_sym_RBRACE] = ACTIONS(719), + [anon_sym_LBRACK] = ACTIONS(757), + [anon_sym_PLUS] = ACTIONS(764), + [anon_sym_STAR] = ACTIONS(767), + [anon_sym_QMARK] = ACTIONS(771), + [anon_sym_SQUOTE] = ACTIONS(721), + [anon_sym_as] = ACTIONS(764), + [anon_sym_async] = ACTIONS(774), + [anon_sym_break] = ACTIONS(721), + [anon_sym_const] = ACTIONS(774), + [anon_sym_continue] = ACTIONS(721), + [anon_sym_default] = ACTIONS(774), + [anon_sym_enum] = ACTIONS(774), + [anon_sym_fn] = ACTIONS(774), + [anon_sym_for] = ACTIONS(721), + [anon_sym_if] = ACTIONS(721), + [anon_sym_impl] = ACTIONS(721), + [anon_sym_let] = ACTIONS(721), + [anon_sym_loop] = ACTIONS(721), + [anon_sym_match] = ACTIONS(721), + [anon_sym_mod] = ACTIONS(774), + [anon_sym_pub] = ACTIONS(721), + [anon_sym_return] = ACTIONS(721), + [anon_sym_static] = ACTIONS(774), + [anon_sym_struct] = ACTIONS(774), + [anon_sym_trait] = ACTIONS(774), + [anon_sym_type] = ACTIONS(774), + [anon_sym_union] = ACTIONS(774), + [anon_sym_unsafe] = ACTIONS(774), + [anon_sym_use] = ACTIONS(774), + [anon_sym_while] = ACTIONS(721), + [anon_sym_POUND] = ACTIONS(719), + [anon_sym_BANG] = ACTIONS(777), + [anon_sym_EQ] = ACTIONS(764), + [anon_sym_extern] = ACTIONS(774), + [anon_sym_LT] = ACTIONS(767), + [anon_sym_GT] = ACTIONS(764), + [anon_sym_COLON_COLON] = ACTIONS(761), + [anon_sym_AMP] = ACTIONS(767), + [anon_sym_DOT_DOT_DOT] = ACTIONS(771), + [anon_sym_DOT_DOT] = ACTIONS(767), + [anon_sym_DOT_DOT_EQ] = ACTIONS(771), + [anon_sym_DASH] = ACTIONS(767), + [anon_sym_AMP_AMP] = ACTIONS(771), + [anon_sym_PIPE_PIPE] = ACTIONS(771), + [anon_sym_PIPE] = ACTIONS(767), + [anon_sym_CARET] = ACTIONS(764), + [anon_sym_EQ_EQ] = ACTIONS(771), + [anon_sym_BANG_EQ] = ACTIONS(771), + [anon_sym_LT_EQ] = ACTIONS(771), + [anon_sym_GT_EQ] = ACTIONS(771), + [anon_sym_LT_LT] = ACTIONS(764), + [anon_sym_GT_GT] = ACTIONS(764), + [anon_sym_SLASH] = ACTIONS(764), + [anon_sym_PERCENT] = ACTIONS(764), + [anon_sym_PLUS_EQ] = ACTIONS(771), + [anon_sym_DASH_EQ] = ACTIONS(771), + [anon_sym_STAR_EQ] = ACTIONS(771), + [anon_sym_SLASH_EQ] = ACTIONS(771), + [anon_sym_PERCENT_EQ] = ACTIONS(771), + [anon_sym_AMP_EQ] = ACTIONS(771), + [anon_sym_PIPE_EQ] = ACTIONS(771), + [anon_sym_CARET_EQ] = ACTIONS(771), + [anon_sym_LT_LT_EQ] = ACTIONS(771), + [anon_sym_GT_GT_EQ] = ACTIONS(771), + [anon_sym_yield] = ACTIONS(721), + [anon_sym_move] = ACTIONS(721), + [anon_sym_DOT] = ACTIONS(764), + [sym_integer_literal] = ACTIONS(719), + [aux_sym_string_literal_token1] = ACTIONS(719), + [sym_char_literal] = ACTIONS(719), + [anon_sym_true] = ACTIONS(721), + [anon_sym_false] = ACTIONS(721), + [anon_sym_u8] = ACTIONS(721), + [anon_sym_i8] = ACTIONS(721), + [anon_sym_u16] = ACTIONS(721), + [anon_sym_i16] = ACTIONS(721), + [anon_sym_u32] = ACTIONS(721), + [anon_sym_i32] = ACTIONS(721), + [anon_sym_u64] = ACTIONS(721), + [anon_sym_i64] = ACTIONS(721), + [anon_sym_u128] = ACTIONS(721), + [anon_sym_i128] = ACTIONS(721), + [anon_sym_isize] = ACTIONS(721), + [anon_sym_usize] = ACTIONS(721), + [anon_sym_f32] = ACTIONS(721), + [anon_sym_f64] = ACTIONS(721), + [anon_sym_bool] = ACTIONS(721), + [anon_sym_str] = ACTIONS(721), + [anon_sym_char] = ACTIONS(721), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(719), + [sym_self] = ACTIONS(721), + [sym_super] = ACTIONS(721), + [sym_crate] = ACTIONS(721), + [sym_metavariable] = ACTIONS(719), + [sym_grit_metavariable] = ACTIONS(719), + [sym_raw_string_literal] = ACTIONS(719), + [sym_float_literal] = ACTIONS(719), [sym_block_comment] = ACTIONS(3), }, [185] = { - [sym__primitive_identifier] = ACTIONS(723), - [anon_sym_SEMI] = ACTIONS(725), - [anon_sym_macro_rules_BANG] = ACTIONS(721), - [anon_sym_LPAREN] = ACTIONS(725), - [anon_sym_LBRACE] = ACTIONS(721), - [anon_sym_RBRACE] = ACTIONS(721), - [anon_sym_LBRACK] = ACTIONS(725), - [anon_sym_PLUS] = ACTIONS(727), - [anon_sym_STAR] = ACTIONS(727), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_SQUOTE] = ACTIONS(723), - [anon_sym_as] = ACTIONS(727), - [anon_sym_async] = ACTIONS(723), - [anon_sym_break] = ACTIONS(723), - [anon_sym_const] = ACTIONS(723), - [anon_sym_continue] = ACTIONS(723), - [anon_sym_default] = ACTIONS(723), - [anon_sym_enum] = ACTIONS(723), - [anon_sym_fn] = ACTIONS(723), - [anon_sym_for] = ACTIONS(723), - [anon_sym_if] = ACTIONS(723), - [anon_sym_impl] = ACTIONS(723), - [anon_sym_let] = ACTIONS(723), - [anon_sym_loop] = ACTIONS(723), - [anon_sym_match] = ACTIONS(723), - [anon_sym_mod] = ACTIONS(723), - [anon_sym_pub] = ACTIONS(723), - [anon_sym_return] = ACTIONS(723), - [anon_sym_static] = ACTIONS(723), - [anon_sym_struct] = ACTIONS(723), - [anon_sym_trait] = ACTIONS(723), - [anon_sym_type] = ACTIONS(723), - [anon_sym_union] = ACTIONS(723), - [anon_sym_unsafe] = ACTIONS(723), - [anon_sym_use] = ACTIONS(723), - [anon_sym_while] = ACTIONS(723), - [anon_sym_POUND] = ACTIONS(721), - [anon_sym_BANG] = ACTIONS(723), - [anon_sym_EQ] = ACTIONS(727), - [anon_sym_extern] = ACTIONS(723), - [anon_sym_LT] = ACTIONS(727), - [anon_sym_GT] = ACTIONS(727), - [anon_sym_COLON_COLON] = ACTIONS(721), - [anon_sym_AMP] = ACTIONS(727), - [anon_sym_DOT_DOT_DOT] = ACTIONS(725), - [anon_sym_DOT_DOT] = ACTIONS(727), - [anon_sym_DOT_DOT_EQ] = ACTIONS(725), - [anon_sym_DASH] = ACTIONS(727), - [anon_sym_AMP_AMP] = ACTIONS(725), - [anon_sym_PIPE_PIPE] = ACTIONS(725), - [anon_sym_PIPE] = ACTIONS(727), - [anon_sym_CARET] = ACTIONS(727), - [anon_sym_EQ_EQ] = ACTIONS(725), - [anon_sym_BANG_EQ] = ACTIONS(725), - [anon_sym_LT_EQ] = ACTIONS(725), - [anon_sym_GT_EQ] = ACTIONS(725), - [anon_sym_LT_LT] = ACTIONS(727), - [anon_sym_GT_GT] = ACTIONS(727), - [anon_sym_SLASH] = ACTIONS(727), - [anon_sym_PERCENT] = ACTIONS(727), - [anon_sym_PLUS_EQ] = ACTIONS(725), - [anon_sym_DASH_EQ] = ACTIONS(725), - [anon_sym_STAR_EQ] = ACTIONS(725), - [anon_sym_SLASH_EQ] = ACTIONS(725), - [anon_sym_PERCENT_EQ] = ACTIONS(725), - [anon_sym_AMP_EQ] = ACTIONS(725), - [anon_sym_PIPE_EQ] = ACTIONS(725), - [anon_sym_CARET_EQ] = ACTIONS(725), - [anon_sym_LT_LT_EQ] = ACTIONS(725), - [anon_sym_GT_GT_EQ] = ACTIONS(725), - [anon_sym_yield] = ACTIONS(723), - [anon_sym_move] = ACTIONS(723), - [anon_sym_DOT] = ACTIONS(727), - [sym_integer_literal] = ACTIONS(721), - [aux_sym_string_literal_token1] = ACTIONS(721), - [sym_char_literal] = ACTIONS(721), - [anon_sym_true] = ACTIONS(723), - [anon_sym_false] = ACTIONS(723), - [anon_sym_u8] = ACTIONS(723), - [anon_sym_i8] = ACTIONS(723), - [anon_sym_u16] = ACTIONS(723), - [anon_sym_i16] = ACTIONS(723), - [anon_sym_u32] = ACTIONS(723), - [anon_sym_i32] = ACTIONS(723), - [anon_sym_u64] = ACTIONS(723), - [anon_sym_i64] = ACTIONS(723), - [anon_sym_u128] = ACTIONS(723), - [anon_sym_i128] = ACTIONS(723), - [anon_sym_isize] = ACTIONS(723), - [anon_sym_usize] = ACTIONS(723), - [anon_sym_f32] = ACTIONS(723), - [anon_sym_f64] = ACTIONS(723), - [anon_sym_bool] = ACTIONS(723), - [anon_sym_str] = ACTIONS(723), - [anon_sym_char] = ACTIONS(723), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(721), - [sym_self] = ACTIONS(723), - [sym_super] = ACTIONS(723), - [sym_crate] = ACTIONS(723), - [sym_metavariable] = ACTIONS(721), - [sym_grit_metavariable] = ACTIONS(721), - [sym_raw_string_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(721), + [sym__primitive_identifier] = ACTIONS(721), + [anon_sym_SEMI] = ACTIONS(723), + [anon_sym_macro_rules_BANG] = ACTIONS(719), + [anon_sym_LPAREN] = ACTIONS(723), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_RBRACE] = ACTIONS(719), + [anon_sym_LBRACK] = ACTIONS(723), + [anon_sym_PLUS] = ACTIONS(725), + [anon_sym_STAR] = ACTIONS(725), + [anon_sym_QMARK] = ACTIONS(723), + [anon_sym_SQUOTE] = ACTIONS(721), + [anon_sym_as] = ACTIONS(725), + [anon_sym_async] = ACTIONS(721), + [anon_sym_break] = ACTIONS(721), + [anon_sym_const] = ACTIONS(721), + [anon_sym_continue] = ACTIONS(721), + [anon_sym_default] = ACTIONS(721), + [anon_sym_enum] = ACTIONS(721), + [anon_sym_fn] = ACTIONS(721), + [anon_sym_for] = ACTIONS(721), + [anon_sym_if] = ACTIONS(721), + [anon_sym_impl] = ACTIONS(721), + [anon_sym_let] = ACTIONS(721), + [anon_sym_loop] = ACTIONS(721), + [anon_sym_match] = ACTIONS(721), + [anon_sym_mod] = ACTIONS(721), + [anon_sym_pub] = ACTIONS(721), + [anon_sym_return] = ACTIONS(721), + [anon_sym_static] = ACTIONS(721), + [anon_sym_struct] = ACTIONS(721), + [anon_sym_trait] = ACTIONS(721), + [anon_sym_type] = ACTIONS(721), + [anon_sym_union] = ACTIONS(721), + [anon_sym_unsafe] = ACTIONS(721), + [anon_sym_use] = ACTIONS(721), + [anon_sym_while] = ACTIONS(721), + [anon_sym_POUND] = ACTIONS(719), + [anon_sym_BANG] = ACTIONS(721), + [anon_sym_EQ] = ACTIONS(725), + [anon_sym_extern] = ACTIONS(721), + [anon_sym_LT] = ACTIONS(725), + [anon_sym_GT] = ACTIONS(725), + [anon_sym_COLON_COLON] = ACTIONS(719), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_DOT_DOT_DOT] = ACTIONS(723), + [anon_sym_DOT_DOT] = ACTIONS(725), + [anon_sym_DOT_DOT_EQ] = ACTIONS(723), + [anon_sym_DASH] = ACTIONS(725), + [anon_sym_AMP_AMP] = ACTIONS(723), + [anon_sym_PIPE_PIPE] = ACTIONS(723), + [anon_sym_PIPE] = ACTIONS(725), + [anon_sym_CARET] = ACTIONS(725), + [anon_sym_EQ_EQ] = ACTIONS(723), + [anon_sym_BANG_EQ] = ACTIONS(723), + [anon_sym_LT_EQ] = ACTIONS(723), + [anon_sym_GT_EQ] = ACTIONS(723), + [anon_sym_LT_LT] = ACTIONS(725), + [anon_sym_GT_GT] = ACTIONS(725), + [anon_sym_SLASH] = ACTIONS(725), + [anon_sym_PERCENT] = ACTIONS(725), + [anon_sym_PLUS_EQ] = ACTIONS(723), + [anon_sym_DASH_EQ] = ACTIONS(723), + [anon_sym_STAR_EQ] = ACTIONS(723), + [anon_sym_SLASH_EQ] = ACTIONS(723), + [anon_sym_PERCENT_EQ] = ACTIONS(723), + [anon_sym_AMP_EQ] = ACTIONS(723), + [anon_sym_PIPE_EQ] = ACTIONS(723), + [anon_sym_CARET_EQ] = ACTIONS(723), + [anon_sym_LT_LT_EQ] = ACTIONS(723), + [anon_sym_GT_GT_EQ] = ACTIONS(723), + [anon_sym_yield] = ACTIONS(721), + [anon_sym_move] = ACTIONS(721), + [anon_sym_DOT] = ACTIONS(725), + [sym_integer_literal] = ACTIONS(719), + [aux_sym_string_literal_token1] = ACTIONS(719), + [sym_char_literal] = ACTIONS(719), + [anon_sym_true] = ACTIONS(721), + [anon_sym_false] = ACTIONS(721), + [anon_sym_u8] = ACTIONS(721), + [anon_sym_i8] = ACTIONS(721), + [anon_sym_u16] = ACTIONS(721), + [anon_sym_i16] = ACTIONS(721), + [anon_sym_u32] = ACTIONS(721), + [anon_sym_i32] = ACTIONS(721), + [anon_sym_u64] = ACTIONS(721), + [anon_sym_i64] = ACTIONS(721), + [anon_sym_u128] = ACTIONS(721), + [anon_sym_i128] = ACTIONS(721), + [anon_sym_isize] = ACTIONS(721), + [anon_sym_usize] = ACTIONS(721), + [anon_sym_f32] = ACTIONS(721), + [anon_sym_f64] = ACTIONS(721), + [anon_sym_bool] = ACTIONS(721), + [anon_sym_str] = ACTIONS(721), + [anon_sym_char] = ACTIONS(721), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(719), + [sym_self] = ACTIONS(721), + [sym_super] = ACTIONS(721), + [sym_crate] = ACTIONS(721), + [sym_metavariable] = ACTIONS(719), + [sym_grit_metavariable] = ACTIONS(719), + [sym_raw_string_literal] = ACTIONS(719), + [sym_float_literal] = ACTIONS(719), [sym_block_comment] = ACTIONS(3), }, [186] = { - [sym_attribute_item] = STATE(197), - [sym_function_modifiers] = STATE(2724), - [sym_self_parameter] = STATE(2151), - [sym_variadic_parameter] = STATE(2151), - [sym_parameter] = STATE(2151), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(2087), - [sym_bracketed_type] = STATE(2682), - [sym_lifetime] = STATE(2155), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2683), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1914), - [sym_scoped_identifier] = STATE(1720), - [sym_scoped_type_identifier] = STATE(1646), - [sym_const_block] = STATE(1616), - [sym_pattern] = STATE(2486), - [sym_tuple_pattern] = STATE(1616), - [sym_slice_pattern] = STATE(1616), - [sym_tuple_struct_pattern] = STATE(1616), - [sym_struct_pattern] = STATE(1616), - [sym_remaining_field_pattern] = STATE(1616), - [sym_mut_pattern] = STATE(1616), - [sym_range_pattern] = STATE(1616), - [sym_ref_pattern] = STATE(1616), - [sym_captured_pattern] = STATE(1616), - [sym_reference_pattern] = STATE(1616), - [sym_or_pattern] = STATE(1616), - [sym__literal_pattern] = STATE(1496), - [sym_negative_literal] = STATE(1513), - [sym_string_literal] = STATE(1513), - [sym_boolean_literal] = STATE(1513), - [sym_primitive_type] = STATE(1679), - [sym_identifier] = STATE(1484), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [sym_underscore] = ACTIONS(844), - [anon_sym_LPAREN] = ACTIONS(912), - [anon_sym_RPAREN] = ACTIONS(914), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(854), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(858), - [anon_sym_default] = ACTIONS(916), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(918), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_POUND] = ACTIONS(870), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_COMMA] = ACTIONS(920), - [anon_sym_extern] = ACTIONS(876), - [anon_sym_ref] = ACTIONS(878), + [sym_attribute_item] = STATE(199), + [sym_function_modifiers] = STATE(2667), + [sym_self_parameter] = STATE(2349), + [sym_variadic_parameter] = STATE(2349), + [sym_parameter] = STATE(2349), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(2060), + [sym_bracketed_type] = STATE(2608), + [sym_lifetime] = STATE(2350), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2609), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1893), + [sym_scoped_identifier] = STATE(1670), + [sym_scoped_type_identifier] = STATE(1654), + [sym_const_block] = STATE(1615), + [sym_pattern] = STATE(1955), + [sym_tuple_pattern] = STATE(1615), + [sym_slice_pattern] = STATE(1615), + [sym_tuple_struct_pattern] = STATE(1615), + [sym_struct_pattern] = STATE(1615), + [sym_remaining_field_pattern] = STATE(1615), + [sym_mut_pattern] = STATE(1615), + [sym_range_pattern] = STATE(1615), + [sym_ref_pattern] = STATE(1615), + [sym_captured_pattern] = STATE(1615), + [sym_reference_pattern] = STATE(1615), + [sym_or_pattern] = STATE(1615), + [sym__literal_pattern] = STATE(1492), + [sym_negative_literal] = STATE(1521), + [sym_string_literal] = STATE(1521), + [sym_boolean_literal] = STATE(1521), + [sym_primitive_type] = STATE(1692), + [sym_identifier] = STATE(1477), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [sym_underscore] = ACTIONS(846), + [anon_sym_LPAREN] = ACTIONS(848), + [anon_sym_RPAREN] = ACTIONS(850), + [anon_sym_LBRACK] = ACTIONS(852), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(856), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(860), + [anon_sym_default] = ACTIONS(862), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(870), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_POUND] = ACTIONS(872), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_COMMA] = ACTIONS(876), + [anon_sym_extern] = ACTIONS(878), + [anon_sym_ref] = ACTIONS(880), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(922), - [anon_sym_AMP] = ACTIONS(924), - [anon_sym_DOT_DOT_DOT] = ACTIONS(884), - [anon_sym_dyn] = ACTIONS(886), - [sym_mutable_specifier] = ACTIONS(888), - [anon_sym_DOT_DOT] = ACTIONS(890), - [anon_sym_DASH] = ACTIONS(892), - [sym_integer_literal] = ACTIONS(894), - [aux_sym_string_literal_token1] = ACTIONS(896), - [sym_char_literal] = ACTIONS(894), - [anon_sym_true] = ACTIONS(898), - [anon_sym_false] = ACTIONS(898), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(926), - [sym_super] = ACTIONS(928), - [sym_crate] = ACTIONS(928), - [sym_metavariable] = ACTIONS(930), - [sym_grit_metavariable] = ACTIONS(910), - [sym_raw_string_literal] = ACTIONS(894), - [sym_float_literal] = ACTIONS(894), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), + [anon_sym_DOT_DOT_DOT] = ACTIONS(886), + [anon_sym_dyn] = ACTIONS(888), + [sym_mutable_specifier] = ACTIONS(890), + [anon_sym_DOT_DOT] = ACTIONS(892), + [anon_sym_DASH] = ACTIONS(894), + [sym_integer_literal] = ACTIONS(896), + [aux_sym_string_literal_token1] = ACTIONS(898), + [sym_char_literal] = ACTIONS(896), + [anon_sym_true] = ACTIONS(900), + [anon_sym_false] = ACTIONS(900), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(908), + [sym_crate] = ACTIONS(908), + [sym_metavariable] = ACTIONS(910), + [sym_grit_metavariable] = ACTIONS(912), + [sym_raw_string_literal] = ACTIONS(896), + [sym_float_literal] = ACTIONS(896), [sym_block_comment] = ACTIONS(3), }, [187] = { - [sym_attribute_item] = STATE(196), - [sym_function_modifiers] = STATE(2724), - [sym_self_parameter] = STATE(2213), - [sym_variadic_parameter] = STATE(2213), - [sym_parameter] = STATE(2213), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(2076), - [sym_bracketed_type] = STATE(2682), - [sym_lifetime] = STATE(2155), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2683), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1914), - [sym_scoped_identifier] = STATE(1720), - [sym_scoped_type_identifier] = STATE(1646), - [sym_const_block] = STATE(1616), - [sym_pattern] = STATE(2486), - [sym_tuple_pattern] = STATE(1616), - [sym_slice_pattern] = STATE(1616), - [sym_tuple_struct_pattern] = STATE(1616), - [sym_struct_pattern] = STATE(1616), - [sym_remaining_field_pattern] = STATE(1616), - [sym_mut_pattern] = STATE(1616), - [sym_range_pattern] = STATE(1616), - [sym_ref_pattern] = STATE(1616), - [sym_captured_pattern] = STATE(1616), - [sym_reference_pattern] = STATE(1616), - [sym_or_pattern] = STATE(1616), - [sym__literal_pattern] = STATE(1496), - [sym_negative_literal] = STATE(1513), - [sym_string_literal] = STATE(1513), - [sym_boolean_literal] = STATE(1513), - [sym_primitive_type] = STATE(1679), - [sym_identifier] = STATE(1484), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [sym_underscore] = ACTIONS(932), - [anon_sym_LPAREN] = ACTIONS(912), - [anon_sym_RPAREN] = ACTIONS(934), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(854), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(858), - [anon_sym_default] = ACTIONS(916), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(918), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_POUND] = ACTIONS(870), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_COMMA] = ACTIONS(936), - [anon_sym_extern] = ACTIONS(876), - [anon_sym_ref] = ACTIONS(878), + [sym_attribute_item] = STATE(197), + [sym_function_modifiers] = STATE(2667), + [sym_self_parameter] = STATE(2217), + [sym_variadic_parameter] = STATE(2217), + [sym_parameter] = STATE(2217), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(2118), + [sym_bracketed_type] = STATE(2686), + [sym_lifetime] = STATE(2350), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2687), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1926), + [sym_scoped_identifier] = STATE(1726), + [sym_scoped_type_identifier] = STATE(1654), + [sym_const_block] = STATE(1615), + [sym_pattern] = STATE(2429), + [sym_tuple_pattern] = STATE(1615), + [sym_slice_pattern] = STATE(1615), + [sym_tuple_struct_pattern] = STATE(1615), + [sym_struct_pattern] = STATE(1615), + [sym_remaining_field_pattern] = STATE(1615), + [sym_mut_pattern] = STATE(1615), + [sym_range_pattern] = STATE(1615), + [sym_ref_pattern] = STATE(1615), + [sym_captured_pattern] = STATE(1615), + [sym_reference_pattern] = STATE(1615), + [sym_or_pattern] = STATE(1615), + [sym__literal_pattern] = STATE(1492), + [sym_negative_literal] = STATE(1521), + [sym_string_literal] = STATE(1521), + [sym_boolean_literal] = STATE(1521), + [sym_primitive_type] = STATE(1691), + [sym_identifier] = STATE(1472), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [sym_underscore] = ACTIONS(914), + [anon_sym_LPAREN] = ACTIONS(916), + [anon_sym_RPAREN] = ACTIONS(918), + [anon_sym_LBRACK] = ACTIONS(852), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(856), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(860), + [anon_sym_default] = ACTIONS(920), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(922), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_POUND] = ACTIONS(872), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_COMMA] = ACTIONS(924), + [anon_sym_extern] = ACTIONS(878), + [anon_sym_ref] = ACTIONS(880), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(922), - [anon_sym_AMP] = ACTIONS(924), - [anon_sym_DOT_DOT_DOT] = ACTIONS(884), - [anon_sym_dyn] = ACTIONS(886), - [sym_mutable_specifier] = ACTIONS(888), - [anon_sym_DOT_DOT] = ACTIONS(890), - [anon_sym_DASH] = ACTIONS(892), - [sym_integer_literal] = ACTIONS(894), - [aux_sym_string_literal_token1] = ACTIONS(896), - [sym_char_literal] = ACTIONS(894), - [anon_sym_true] = ACTIONS(898), - [anon_sym_false] = ACTIONS(898), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(926), - [sym_super] = ACTIONS(928), - [sym_crate] = ACTIONS(928), - [sym_metavariable] = ACTIONS(930), - [sym_grit_metavariable] = ACTIONS(938), - [sym_raw_string_literal] = ACTIONS(894), - [sym_float_literal] = ACTIONS(894), + [anon_sym_COLON_COLON] = ACTIONS(926), + [anon_sym_AMP] = ACTIONS(928), + [anon_sym_DOT_DOT_DOT] = ACTIONS(886), + [anon_sym_dyn] = ACTIONS(888), + [sym_mutable_specifier] = ACTIONS(890), + [anon_sym_DOT_DOT] = ACTIONS(892), + [anon_sym_DASH] = ACTIONS(894), + [sym_integer_literal] = ACTIONS(896), + [aux_sym_string_literal_token1] = ACTIONS(898), + [sym_char_literal] = ACTIONS(896), + [anon_sym_true] = ACTIONS(900), + [anon_sym_false] = ACTIONS(900), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(930), + [sym_super] = ACTIONS(932), + [sym_crate] = ACTIONS(932), + [sym_metavariable] = ACTIONS(934), + [sym_grit_metavariable] = ACTIONS(936), + [sym_raw_string_literal] = ACTIONS(896), + [sym_float_literal] = ACTIONS(896), [sym_block_comment] = ACTIONS(3), }, [188] = { - [sym_attribute_item] = STATE(197), - [sym_function_modifiers] = STATE(2724), - [sym_self_parameter] = STATE(2151), - [sym_variadic_parameter] = STATE(2151), - [sym_parameter] = STATE(2151), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(2087), - [sym_bracketed_type] = STATE(2640), - [sym_lifetime] = STATE(2155), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2728), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1925), - [sym_scoped_identifier] = STATE(1672), - [sym_scoped_type_identifier] = STATE(1646), - [sym_const_block] = STATE(1616), - [sym_pattern] = STATE(1949), - [sym_tuple_pattern] = STATE(1616), - [sym_slice_pattern] = STATE(1616), - [sym_tuple_struct_pattern] = STATE(1616), - [sym_struct_pattern] = STATE(1616), - [sym_remaining_field_pattern] = STATE(1616), - [sym_mut_pattern] = STATE(1616), - [sym_range_pattern] = STATE(1616), - [sym_ref_pattern] = STATE(1616), - [sym_captured_pattern] = STATE(1616), - [sym_reference_pattern] = STATE(1616), - [sym_or_pattern] = STATE(1616), - [sym__literal_pattern] = STATE(1496), - [sym_negative_literal] = STATE(1513), - [sym_string_literal] = STATE(1513), - [sym_boolean_literal] = STATE(1513), - [sym_primitive_type] = STATE(1677), - [sym_identifier] = STATE(1481), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [sym_underscore] = ACTIONS(844), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_RPAREN] = ACTIONS(940), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(854), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(858), - [anon_sym_default] = ACTIONS(860), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(868), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_POUND] = ACTIONS(870), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_COMMA] = ACTIONS(942), - [anon_sym_extern] = ACTIONS(876), - [anon_sym_ref] = ACTIONS(878), + [sym_attribute_item] = STATE(199), + [sym_function_modifiers] = STATE(2667), + [sym_self_parameter] = STATE(2349), + [sym_variadic_parameter] = STATE(2349), + [sym_parameter] = STATE(2349), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(2060), + [sym_bracketed_type] = STATE(2608), + [sym_lifetime] = STATE(2350), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2609), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1893), + [sym_scoped_identifier] = STATE(1670), + [sym_scoped_type_identifier] = STATE(1654), + [sym_const_block] = STATE(1615), + [sym_pattern] = STATE(1955), + [sym_tuple_pattern] = STATE(1615), + [sym_slice_pattern] = STATE(1615), + [sym_tuple_struct_pattern] = STATE(1615), + [sym_struct_pattern] = STATE(1615), + [sym_remaining_field_pattern] = STATE(1615), + [sym_mut_pattern] = STATE(1615), + [sym_range_pattern] = STATE(1615), + [sym_ref_pattern] = STATE(1615), + [sym_captured_pattern] = STATE(1615), + [sym_reference_pattern] = STATE(1615), + [sym_or_pattern] = STATE(1615), + [sym__literal_pattern] = STATE(1492), + [sym_negative_literal] = STATE(1521), + [sym_string_literal] = STATE(1521), + [sym_boolean_literal] = STATE(1521), + [sym_primitive_type] = STATE(1692), + [sym_identifier] = STATE(1477), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [sym_underscore] = ACTIONS(846), + [anon_sym_LPAREN] = ACTIONS(848), + [anon_sym_RPAREN] = ACTIONS(938), + [anon_sym_LBRACK] = ACTIONS(852), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(856), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(860), + [anon_sym_default] = ACTIONS(862), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(870), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_POUND] = ACTIONS(872), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_COMMA] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(878), + [anon_sym_ref] = ACTIONS(880), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(880), - [anon_sym_AMP] = ACTIONS(882), - [anon_sym_DOT_DOT_DOT] = ACTIONS(884), - [anon_sym_dyn] = ACTIONS(886), - [sym_mutable_specifier] = ACTIONS(888), - [anon_sym_DOT_DOT] = ACTIONS(890), - [anon_sym_DASH] = ACTIONS(892), - [sym_integer_literal] = ACTIONS(894), - [aux_sym_string_literal_token1] = ACTIONS(896), - [sym_char_literal] = ACTIONS(894), - [anon_sym_true] = ACTIONS(898), - [anon_sym_false] = ACTIONS(898), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(904), - [sym_super] = ACTIONS(906), - [sym_crate] = ACTIONS(906), - [sym_metavariable] = ACTIONS(908), - [sym_grit_metavariable] = ACTIONS(910), - [sym_raw_string_literal] = ACTIONS(894), - [sym_float_literal] = ACTIONS(894), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), + [anon_sym_DOT_DOT_DOT] = ACTIONS(886), + [anon_sym_dyn] = ACTIONS(888), + [sym_mutable_specifier] = ACTIONS(890), + [anon_sym_DOT_DOT] = ACTIONS(892), + [anon_sym_DASH] = ACTIONS(894), + [sym_integer_literal] = ACTIONS(896), + [aux_sym_string_literal_token1] = ACTIONS(898), + [sym_char_literal] = ACTIONS(896), + [anon_sym_true] = ACTIONS(900), + [anon_sym_false] = ACTIONS(900), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(908), + [sym_crate] = ACTIONS(908), + [sym_metavariable] = ACTIONS(910), + [sym_grit_metavariable] = ACTIONS(912), + [sym_raw_string_literal] = ACTIONS(896), + [sym_float_literal] = ACTIONS(896), [sym_block_comment] = ACTIONS(3), }, [189] = { - [sym_attribute_item] = STATE(198), - [sym_function_modifiers] = STATE(2724), - [sym_self_parameter] = STATE(2532), - [sym_variadic_parameter] = STATE(2532), - [sym_parameter] = STATE(2532), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(2280), - [sym_bracketed_type] = STATE(2682), - [sym_lifetime] = STATE(2155), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2683), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1914), - [sym_scoped_identifier] = STATE(1720), - [sym_scoped_type_identifier] = STATE(1646), - [sym_const_block] = STATE(1616), - [sym_pattern] = STATE(2486), - [sym_tuple_pattern] = STATE(1616), - [sym_slice_pattern] = STATE(1616), - [sym_tuple_struct_pattern] = STATE(1616), - [sym_struct_pattern] = STATE(1616), - [sym_remaining_field_pattern] = STATE(1616), - [sym_mut_pattern] = STATE(1616), - [sym_range_pattern] = STATE(1616), - [sym_ref_pattern] = STATE(1616), - [sym_captured_pattern] = STATE(1616), - [sym_reference_pattern] = STATE(1616), - [sym_or_pattern] = STATE(1616), - [sym__literal_pattern] = STATE(1496), - [sym_negative_literal] = STATE(1513), - [sym_string_literal] = STATE(1513), - [sym_boolean_literal] = STATE(1513), - [sym_primitive_type] = STATE(1679), - [sym_identifier] = STATE(1484), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [sym_underscore] = ACTIONS(944), - [anon_sym_LPAREN] = ACTIONS(912), - [anon_sym_RPAREN] = ACTIONS(946), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(854), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(858), - [anon_sym_default] = ACTIONS(916), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(918), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_POUND] = ACTIONS(870), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), - [anon_sym_ref] = ACTIONS(878), + [sym_attribute_item] = STATE(199), + [sym_function_modifiers] = STATE(2667), + [sym_self_parameter] = STATE(2349), + [sym_variadic_parameter] = STATE(2349), + [sym_parameter] = STATE(2349), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(2060), + [sym_bracketed_type] = STATE(2686), + [sym_lifetime] = STATE(2350), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2687), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1926), + [sym_scoped_identifier] = STATE(1726), + [sym_scoped_type_identifier] = STATE(1654), + [sym_const_block] = STATE(1615), + [sym_pattern] = STATE(2429), + [sym_tuple_pattern] = STATE(1615), + [sym_slice_pattern] = STATE(1615), + [sym_tuple_struct_pattern] = STATE(1615), + [sym_struct_pattern] = STATE(1615), + [sym_remaining_field_pattern] = STATE(1615), + [sym_mut_pattern] = STATE(1615), + [sym_range_pattern] = STATE(1615), + [sym_ref_pattern] = STATE(1615), + [sym_captured_pattern] = STATE(1615), + [sym_reference_pattern] = STATE(1615), + [sym_or_pattern] = STATE(1615), + [sym__literal_pattern] = STATE(1492), + [sym_negative_literal] = STATE(1521), + [sym_string_literal] = STATE(1521), + [sym_boolean_literal] = STATE(1521), + [sym_primitive_type] = STATE(1691), + [sym_identifier] = STATE(1472), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [sym_underscore] = ACTIONS(846), + [anon_sym_LPAREN] = ACTIONS(916), + [anon_sym_RPAREN] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(852), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(856), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(860), + [anon_sym_default] = ACTIONS(920), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(922), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_POUND] = ACTIONS(872), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_COMMA] = ACTIONS(944), + [anon_sym_extern] = ACTIONS(878), + [anon_sym_ref] = ACTIONS(880), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(922), - [anon_sym_AMP] = ACTIONS(924), - [anon_sym_DOT_DOT_DOT] = ACTIONS(884), - [anon_sym_dyn] = ACTIONS(886), - [sym_mutable_specifier] = ACTIONS(888), - [anon_sym_DOT_DOT] = ACTIONS(890), - [anon_sym_DASH] = ACTIONS(892), - [sym_integer_literal] = ACTIONS(894), - [aux_sym_string_literal_token1] = ACTIONS(896), - [sym_char_literal] = ACTIONS(894), - [anon_sym_true] = ACTIONS(898), - [anon_sym_false] = ACTIONS(898), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(926), - [sym_super] = ACTIONS(928), - [sym_crate] = ACTIONS(928), - [sym_metavariable] = ACTIONS(930), - [sym_grit_metavariable] = ACTIONS(948), - [sym_raw_string_literal] = ACTIONS(894), - [sym_float_literal] = ACTIONS(894), + [anon_sym_COLON_COLON] = ACTIONS(926), + [anon_sym_AMP] = ACTIONS(928), + [anon_sym_DOT_DOT_DOT] = ACTIONS(886), + [anon_sym_dyn] = ACTIONS(888), + [sym_mutable_specifier] = ACTIONS(890), + [anon_sym_DOT_DOT] = ACTIONS(892), + [anon_sym_DASH] = ACTIONS(894), + [sym_integer_literal] = ACTIONS(896), + [aux_sym_string_literal_token1] = ACTIONS(898), + [sym_char_literal] = ACTIONS(896), + [anon_sym_true] = ACTIONS(900), + [anon_sym_false] = ACTIONS(900), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(930), + [sym_super] = ACTIONS(932), + [sym_crate] = ACTIONS(932), + [sym_metavariable] = ACTIONS(934), + [sym_grit_metavariable] = ACTIONS(912), + [sym_raw_string_literal] = ACTIONS(896), + [sym_float_literal] = ACTIONS(896), [sym_block_comment] = ACTIONS(3), }, [190] = { [sym_attribute_item] = STATE(198), - [sym_function_modifiers] = STATE(2724), - [sym_self_parameter] = STATE(2532), - [sym_variadic_parameter] = STATE(2532), - [sym_parameter] = STATE(2532), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(2280), - [sym_bracketed_type] = STATE(2682), - [sym_lifetime] = STATE(2155), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2683), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1914), - [sym_scoped_identifier] = STATE(1720), - [sym_scoped_type_identifier] = STATE(1646), - [sym_const_block] = STATE(1616), - [sym_pattern] = STATE(2486), - [sym_tuple_pattern] = STATE(1616), - [sym_slice_pattern] = STATE(1616), - [sym_tuple_struct_pattern] = STATE(1616), - [sym_struct_pattern] = STATE(1616), - [sym_remaining_field_pattern] = STATE(1616), - [sym_mut_pattern] = STATE(1616), - [sym_range_pattern] = STATE(1616), - [sym_ref_pattern] = STATE(1616), - [sym_captured_pattern] = STATE(1616), - [sym_reference_pattern] = STATE(1616), - [sym_or_pattern] = STATE(1616), - [sym__literal_pattern] = STATE(1496), - [sym_negative_literal] = STATE(1513), - [sym_string_literal] = STATE(1513), - [sym_boolean_literal] = STATE(1513), - [sym_primitive_type] = STATE(1679), - [sym_identifier] = STATE(1484), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [sym_underscore] = ACTIONS(944), - [anon_sym_LPAREN] = ACTIONS(912), - [anon_sym_RPAREN] = ACTIONS(950), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(854), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(858), - [anon_sym_default] = ACTIONS(916), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(918), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_POUND] = ACTIONS(870), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), - [anon_sym_ref] = ACTIONS(878), + [sym_function_modifiers] = STATE(2667), + [sym_self_parameter] = STATE(2526), + [sym_variadic_parameter] = STATE(2526), + [sym_parameter] = STATE(2526), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(2302), + [sym_bracketed_type] = STATE(2686), + [sym_lifetime] = STATE(2350), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2687), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1926), + [sym_scoped_identifier] = STATE(1726), + [sym_scoped_type_identifier] = STATE(1654), + [sym_const_block] = STATE(1615), + [sym_pattern] = STATE(2429), + [sym_tuple_pattern] = STATE(1615), + [sym_slice_pattern] = STATE(1615), + [sym_tuple_struct_pattern] = STATE(1615), + [sym_struct_pattern] = STATE(1615), + [sym_remaining_field_pattern] = STATE(1615), + [sym_mut_pattern] = STATE(1615), + [sym_range_pattern] = STATE(1615), + [sym_ref_pattern] = STATE(1615), + [sym_captured_pattern] = STATE(1615), + [sym_reference_pattern] = STATE(1615), + [sym_or_pattern] = STATE(1615), + [sym__literal_pattern] = STATE(1492), + [sym_negative_literal] = STATE(1521), + [sym_string_literal] = STATE(1521), + [sym_boolean_literal] = STATE(1521), + [sym_primitive_type] = STATE(1691), + [sym_identifier] = STATE(1472), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [sym_underscore] = ACTIONS(946), + [anon_sym_LPAREN] = ACTIONS(916), + [anon_sym_RPAREN] = ACTIONS(948), + [anon_sym_LBRACK] = ACTIONS(852), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(856), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(860), + [anon_sym_default] = ACTIONS(920), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(922), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_POUND] = ACTIONS(872), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), + [anon_sym_ref] = ACTIONS(880), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(922), - [anon_sym_AMP] = ACTIONS(924), - [anon_sym_DOT_DOT_DOT] = ACTIONS(884), - [anon_sym_dyn] = ACTIONS(886), - [sym_mutable_specifier] = ACTIONS(888), - [anon_sym_DOT_DOT] = ACTIONS(890), - [anon_sym_DASH] = ACTIONS(892), - [sym_integer_literal] = ACTIONS(894), - [aux_sym_string_literal_token1] = ACTIONS(896), - [sym_char_literal] = ACTIONS(894), - [anon_sym_true] = ACTIONS(898), - [anon_sym_false] = ACTIONS(898), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(926), - [sym_super] = ACTIONS(928), - [sym_crate] = ACTIONS(928), - [sym_metavariable] = ACTIONS(930), - [sym_grit_metavariable] = ACTIONS(948), - [sym_raw_string_literal] = ACTIONS(894), - [sym_float_literal] = ACTIONS(894), + [anon_sym_COLON_COLON] = ACTIONS(926), + [anon_sym_AMP] = ACTIONS(928), + [anon_sym_DOT_DOT_DOT] = ACTIONS(886), + [anon_sym_dyn] = ACTIONS(888), + [sym_mutable_specifier] = ACTIONS(890), + [anon_sym_DOT_DOT] = ACTIONS(892), + [anon_sym_DASH] = ACTIONS(894), + [sym_integer_literal] = ACTIONS(896), + [aux_sym_string_literal_token1] = ACTIONS(898), + [sym_char_literal] = ACTIONS(896), + [anon_sym_true] = ACTIONS(900), + [anon_sym_false] = ACTIONS(900), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(930), + [sym_super] = ACTIONS(932), + [sym_crate] = ACTIONS(932), + [sym_metavariable] = ACTIONS(934), + [sym_grit_metavariable] = ACTIONS(950), + [sym_raw_string_literal] = ACTIONS(896), + [sym_float_literal] = ACTIONS(896), [sym_block_comment] = ACTIONS(3), }, [191] = { [sym_attribute_item] = STATE(198), - [sym_function_modifiers] = STATE(2724), - [sym_self_parameter] = STATE(2532), - [sym_variadic_parameter] = STATE(2532), - [sym_parameter] = STATE(2532), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(2280), - [sym_bracketed_type] = STATE(2682), - [sym_lifetime] = STATE(2155), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2683), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1914), - [sym_scoped_identifier] = STATE(1720), - [sym_scoped_type_identifier] = STATE(1646), - [sym_const_block] = STATE(1616), - [sym_pattern] = STATE(2486), - [sym_tuple_pattern] = STATE(1616), - [sym_slice_pattern] = STATE(1616), - [sym_tuple_struct_pattern] = STATE(1616), - [sym_struct_pattern] = STATE(1616), - [sym_remaining_field_pattern] = STATE(1616), - [sym_mut_pattern] = STATE(1616), - [sym_range_pattern] = STATE(1616), - [sym_ref_pattern] = STATE(1616), - [sym_captured_pattern] = STATE(1616), - [sym_reference_pattern] = STATE(1616), - [sym_or_pattern] = STATE(1616), - [sym__literal_pattern] = STATE(1496), - [sym_negative_literal] = STATE(1513), - [sym_string_literal] = STATE(1513), - [sym_boolean_literal] = STATE(1513), - [sym_primitive_type] = STATE(1679), - [sym_identifier] = STATE(1484), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [sym_underscore] = ACTIONS(944), - [anon_sym_LPAREN] = ACTIONS(912), + [sym_function_modifiers] = STATE(2667), + [sym_self_parameter] = STATE(2526), + [sym_variadic_parameter] = STATE(2526), + [sym_parameter] = STATE(2526), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(2302), + [sym_bracketed_type] = STATE(2686), + [sym_lifetime] = STATE(2350), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2687), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1926), + [sym_scoped_identifier] = STATE(1726), + [sym_scoped_type_identifier] = STATE(1654), + [sym_const_block] = STATE(1615), + [sym_pattern] = STATE(2429), + [sym_tuple_pattern] = STATE(1615), + [sym_slice_pattern] = STATE(1615), + [sym_tuple_struct_pattern] = STATE(1615), + [sym_struct_pattern] = STATE(1615), + [sym_remaining_field_pattern] = STATE(1615), + [sym_mut_pattern] = STATE(1615), + [sym_range_pattern] = STATE(1615), + [sym_ref_pattern] = STATE(1615), + [sym_captured_pattern] = STATE(1615), + [sym_reference_pattern] = STATE(1615), + [sym_or_pattern] = STATE(1615), + [sym__literal_pattern] = STATE(1492), + [sym_negative_literal] = STATE(1521), + [sym_string_literal] = STATE(1521), + [sym_boolean_literal] = STATE(1521), + [sym_primitive_type] = STATE(1691), + [sym_identifier] = STATE(1472), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [sym_underscore] = ACTIONS(946), + [anon_sym_LPAREN] = ACTIONS(916), [anon_sym_RPAREN] = ACTIONS(952), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(854), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(858), - [anon_sym_default] = ACTIONS(916), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(918), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_POUND] = ACTIONS(870), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), - [anon_sym_ref] = ACTIONS(878), + [anon_sym_LBRACK] = ACTIONS(852), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(856), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(860), + [anon_sym_default] = ACTIONS(920), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(922), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_POUND] = ACTIONS(872), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), + [anon_sym_ref] = ACTIONS(880), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(922), - [anon_sym_AMP] = ACTIONS(924), - [anon_sym_DOT_DOT_DOT] = ACTIONS(884), - [anon_sym_dyn] = ACTIONS(886), - [sym_mutable_specifier] = ACTIONS(888), - [anon_sym_DOT_DOT] = ACTIONS(890), - [anon_sym_DASH] = ACTIONS(892), - [sym_integer_literal] = ACTIONS(894), - [aux_sym_string_literal_token1] = ACTIONS(896), - [sym_char_literal] = ACTIONS(894), - [anon_sym_true] = ACTIONS(898), - [anon_sym_false] = ACTIONS(898), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(926), - [sym_super] = ACTIONS(928), - [sym_crate] = ACTIONS(928), - [sym_metavariable] = ACTIONS(930), - [sym_grit_metavariable] = ACTIONS(948), - [sym_raw_string_literal] = ACTIONS(894), - [sym_float_literal] = ACTIONS(894), + [anon_sym_COLON_COLON] = ACTIONS(926), + [anon_sym_AMP] = ACTIONS(928), + [anon_sym_DOT_DOT_DOT] = ACTIONS(886), + [anon_sym_dyn] = ACTIONS(888), + [sym_mutable_specifier] = ACTIONS(890), + [anon_sym_DOT_DOT] = ACTIONS(892), + [anon_sym_DASH] = ACTIONS(894), + [sym_integer_literal] = ACTIONS(896), + [aux_sym_string_literal_token1] = ACTIONS(898), + [sym_char_literal] = ACTIONS(896), + [anon_sym_true] = ACTIONS(900), + [anon_sym_false] = ACTIONS(900), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(930), + [sym_super] = ACTIONS(932), + [sym_crate] = ACTIONS(932), + [sym_metavariable] = ACTIONS(934), + [sym_grit_metavariable] = ACTIONS(950), + [sym_raw_string_literal] = ACTIONS(896), + [sym_float_literal] = ACTIONS(896), [sym_block_comment] = ACTIONS(3), }, [192] = { [sym_attribute_item] = STATE(198), - [sym_function_modifiers] = STATE(2724), - [sym_self_parameter] = STATE(2532), - [sym_variadic_parameter] = STATE(2532), - [sym_parameter] = STATE(2532), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(2280), - [sym_bracketed_type] = STATE(2682), - [sym_lifetime] = STATE(2155), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2683), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1914), - [sym_scoped_identifier] = STATE(1720), - [sym_scoped_type_identifier] = STATE(1646), - [sym_const_block] = STATE(1616), - [sym_pattern] = STATE(2486), - [sym_tuple_pattern] = STATE(1616), - [sym_slice_pattern] = STATE(1616), - [sym_tuple_struct_pattern] = STATE(1616), - [sym_struct_pattern] = STATE(1616), - [sym_remaining_field_pattern] = STATE(1616), - [sym_mut_pattern] = STATE(1616), - [sym_range_pattern] = STATE(1616), - [sym_ref_pattern] = STATE(1616), - [sym_captured_pattern] = STATE(1616), - [sym_reference_pattern] = STATE(1616), - [sym_or_pattern] = STATE(1616), - [sym__literal_pattern] = STATE(1496), - [sym_negative_literal] = STATE(1513), - [sym_string_literal] = STATE(1513), - [sym_boolean_literal] = STATE(1513), - [sym_primitive_type] = STATE(1679), - [sym_identifier] = STATE(1484), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [sym_underscore] = ACTIONS(944), - [anon_sym_LPAREN] = ACTIONS(912), + [sym_function_modifiers] = STATE(2667), + [sym_self_parameter] = STATE(2526), + [sym_variadic_parameter] = STATE(2526), + [sym_parameter] = STATE(2526), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(2302), + [sym_bracketed_type] = STATE(2686), + [sym_lifetime] = STATE(2350), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2687), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1926), + [sym_scoped_identifier] = STATE(1726), + [sym_scoped_type_identifier] = STATE(1654), + [sym_const_block] = STATE(1615), + [sym_pattern] = STATE(2429), + [sym_tuple_pattern] = STATE(1615), + [sym_slice_pattern] = STATE(1615), + [sym_tuple_struct_pattern] = STATE(1615), + [sym_struct_pattern] = STATE(1615), + [sym_remaining_field_pattern] = STATE(1615), + [sym_mut_pattern] = STATE(1615), + [sym_range_pattern] = STATE(1615), + [sym_ref_pattern] = STATE(1615), + [sym_captured_pattern] = STATE(1615), + [sym_reference_pattern] = STATE(1615), + [sym_or_pattern] = STATE(1615), + [sym__literal_pattern] = STATE(1492), + [sym_negative_literal] = STATE(1521), + [sym_string_literal] = STATE(1521), + [sym_boolean_literal] = STATE(1521), + [sym_primitive_type] = STATE(1691), + [sym_identifier] = STATE(1472), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [sym_underscore] = ACTIONS(946), + [anon_sym_LPAREN] = ACTIONS(916), [anon_sym_RPAREN] = ACTIONS(954), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(854), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(858), - [anon_sym_default] = ACTIONS(916), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(918), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_POUND] = ACTIONS(870), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), - [anon_sym_ref] = ACTIONS(878), + [anon_sym_LBRACK] = ACTIONS(852), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(856), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(860), + [anon_sym_default] = ACTIONS(920), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(922), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_POUND] = ACTIONS(872), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), + [anon_sym_ref] = ACTIONS(880), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(922), - [anon_sym_AMP] = ACTIONS(924), - [anon_sym_DOT_DOT_DOT] = ACTIONS(884), - [anon_sym_dyn] = ACTIONS(886), - [sym_mutable_specifier] = ACTIONS(888), - [anon_sym_DOT_DOT] = ACTIONS(890), - [anon_sym_DASH] = ACTIONS(892), - [sym_integer_literal] = ACTIONS(894), - [aux_sym_string_literal_token1] = ACTIONS(896), - [sym_char_literal] = ACTIONS(894), - [anon_sym_true] = ACTIONS(898), - [anon_sym_false] = ACTIONS(898), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(926), - [sym_super] = ACTIONS(928), - [sym_crate] = ACTIONS(928), - [sym_metavariable] = ACTIONS(930), - [sym_grit_metavariable] = ACTIONS(948), - [sym_raw_string_literal] = ACTIONS(894), - [sym_float_literal] = ACTIONS(894), + [anon_sym_COLON_COLON] = ACTIONS(926), + [anon_sym_AMP] = ACTIONS(928), + [anon_sym_DOT_DOT_DOT] = ACTIONS(886), + [anon_sym_dyn] = ACTIONS(888), + [sym_mutable_specifier] = ACTIONS(890), + [anon_sym_DOT_DOT] = ACTIONS(892), + [anon_sym_DASH] = ACTIONS(894), + [sym_integer_literal] = ACTIONS(896), + [aux_sym_string_literal_token1] = ACTIONS(898), + [sym_char_literal] = ACTIONS(896), + [anon_sym_true] = ACTIONS(900), + [anon_sym_false] = ACTIONS(900), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(930), + [sym_super] = ACTIONS(932), + [sym_crate] = ACTIONS(932), + [sym_metavariable] = ACTIONS(934), + [sym_grit_metavariable] = ACTIONS(950), + [sym_raw_string_literal] = ACTIONS(896), + [sym_float_literal] = ACTIONS(896), [sym_block_comment] = ACTIONS(3), }, [193] = { [sym_attribute_item] = STATE(198), - [sym_function_modifiers] = STATE(2724), - [sym_self_parameter] = STATE(2532), - [sym_variadic_parameter] = STATE(2532), - [sym_parameter] = STATE(2532), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(2280), - [sym_bracketed_type] = STATE(2682), - [sym_lifetime] = STATE(2155), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2683), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1914), - [sym_scoped_identifier] = STATE(1720), - [sym_scoped_type_identifier] = STATE(1646), - [sym_const_block] = STATE(1616), - [sym_pattern] = STATE(2486), - [sym_tuple_pattern] = STATE(1616), - [sym_slice_pattern] = STATE(1616), - [sym_tuple_struct_pattern] = STATE(1616), - [sym_struct_pattern] = STATE(1616), - [sym_remaining_field_pattern] = STATE(1616), - [sym_mut_pattern] = STATE(1616), - [sym_range_pattern] = STATE(1616), - [sym_ref_pattern] = STATE(1616), - [sym_captured_pattern] = STATE(1616), - [sym_reference_pattern] = STATE(1616), - [sym_or_pattern] = STATE(1616), - [sym__literal_pattern] = STATE(1496), - [sym_negative_literal] = STATE(1513), - [sym_string_literal] = STATE(1513), - [sym_boolean_literal] = STATE(1513), - [sym_primitive_type] = STATE(1679), - [sym_identifier] = STATE(1484), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [sym_underscore] = ACTIONS(944), - [anon_sym_LPAREN] = ACTIONS(912), + [sym_function_modifiers] = STATE(2667), + [sym_self_parameter] = STATE(2526), + [sym_variadic_parameter] = STATE(2526), + [sym_parameter] = STATE(2526), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(2302), + [sym_bracketed_type] = STATE(2686), + [sym_lifetime] = STATE(2350), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2687), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1926), + [sym_scoped_identifier] = STATE(1726), + [sym_scoped_type_identifier] = STATE(1654), + [sym_const_block] = STATE(1615), + [sym_pattern] = STATE(2429), + [sym_tuple_pattern] = STATE(1615), + [sym_slice_pattern] = STATE(1615), + [sym_tuple_struct_pattern] = STATE(1615), + [sym_struct_pattern] = STATE(1615), + [sym_remaining_field_pattern] = STATE(1615), + [sym_mut_pattern] = STATE(1615), + [sym_range_pattern] = STATE(1615), + [sym_ref_pattern] = STATE(1615), + [sym_captured_pattern] = STATE(1615), + [sym_reference_pattern] = STATE(1615), + [sym_or_pattern] = STATE(1615), + [sym__literal_pattern] = STATE(1492), + [sym_negative_literal] = STATE(1521), + [sym_string_literal] = STATE(1521), + [sym_boolean_literal] = STATE(1521), + [sym_primitive_type] = STATE(1691), + [sym_identifier] = STATE(1472), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [sym_underscore] = ACTIONS(946), + [anon_sym_LPAREN] = ACTIONS(916), [anon_sym_RPAREN] = ACTIONS(956), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(854), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(858), - [anon_sym_default] = ACTIONS(916), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(918), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_POUND] = ACTIONS(870), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), - [anon_sym_ref] = ACTIONS(878), + [anon_sym_LBRACK] = ACTIONS(852), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(856), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(860), + [anon_sym_default] = ACTIONS(920), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(922), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_POUND] = ACTIONS(872), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), + [anon_sym_ref] = ACTIONS(880), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(922), - [anon_sym_AMP] = ACTIONS(924), - [anon_sym_DOT_DOT_DOT] = ACTIONS(884), - [anon_sym_dyn] = ACTIONS(886), - [sym_mutable_specifier] = ACTIONS(888), - [anon_sym_DOT_DOT] = ACTIONS(890), - [anon_sym_DASH] = ACTIONS(892), - [sym_integer_literal] = ACTIONS(894), - [aux_sym_string_literal_token1] = ACTIONS(896), - [sym_char_literal] = ACTIONS(894), - [anon_sym_true] = ACTIONS(898), - [anon_sym_false] = ACTIONS(898), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(926), - [sym_super] = ACTIONS(928), - [sym_crate] = ACTIONS(928), - [sym_metavariable] = ACTIONS(930), - [sym_grit_metavariable] = ACTIONS(948), - [sym_raw_string_literal] = ACTIONS(894), - [sym_float_literal] = ACTIONS(894), + [anon_sym_COLON_COLON] = ACTIONS(926), + [anon_sym_AMP] = ACTIONS(928), + [anon_sym_DOT_DOT_DOT] = ACTIONS(886), + [anon_sym_dyn] = ACTIONS(888), + [sym_mutable_specifier] = ACTIONS(890), + [anon_sym_DOT_DOT] = ACTIONS(892), + [anon_sym_DASH] = ACTIONS(894), + [sym_integer_literal] = ACTIONS(896), + [aux_sym_string_literal_token1] = ACTIONS(898), + [sym_char_literal] = ACTIONS(896), + [anon_sym_true] = ACTIONS(900), + [anon_sym_false] = ACTIONS(900), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(930), + [sym_super] = ACTIONS(932), + [sym_crate] = ACTIONS(932), + [sym_metavariable] = ACTIONS(934), + [sym_grit_metavariable] = ACTIONS(950), + [sym_raw_string_literal] = ACTIONS(896), + [sym_float_literal] = ACTIONS(896), [sym_block_comment] = ACTIONS(3), }, [194] = { [sym_attribute_item] = STATE(198), - [sym_function_modifiers] = STATE(2724), - [sym_self_parameter] = STATE(2532), - [sym_variadic_parameter] = STATE(2532), - [sym_parameter] = STATE(2532), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(2280), - [sym_bracketed_type] = STATE(2682), - [sym_lifetime] = STATE(2155), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2683), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1914), - [sym_scoped_identifier] = STATE(1720), - [sym_scoped_type_identifier] = STATE(1646), - [sym_const_block] = STATE(1616), - [sym_pattern] = STATE(2486), - [sym_tuple_pattern] = STATE(1616), - [sym_slice_pattern] = STATE(1616), - [sym_tuple_struct_pattern] = STATE(1616), - [sym_struct_pattern] = STATE(1616), - [sym_remaining_field_pattern] = STATE(1616), - [sym_mut_pattern] = STATE(1616), - [sym_range_pattern] = STATE(1616), - [sym_ref_pattern] = STATE(1616), - [sym_captured_pattern] = STATE(1616), - [sym_reference_pattern] = STATE(1616), - [sym_or_pattern] = STATE(1616), - [sym__literal_pattern] = STATE(1496), - [sym_negative_literal] = STATE(1513), - [sym_string_literal] = STATE(1513), - [sym_boolean_literal] = STATE(1513), - [sym_primitive_type] = STATE(1679), - [sym_identifier] = STATE(1484), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [sym_underscore] = ACTIONS(944), - [anon_sym_LPAREN] = ACTIONS(912), + [sym_function_modifiers] = STATE(2667), + [sym_self_parameter] = STATE(2526), + [sym_variadic_parameter] = STATE(2526), + [sym_parameter] = STATE(2526), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(2302), + [sym_bracketed_type] = STATE(2686), + [sym_lifetime] = STATE(2350), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2687), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1926), + [sym_scoped_identifier] = STATE(1726), + [sym_scoped_type_identifier] = STATE(1654), + [sym_const_block] = STATE(1615), + [sym_pattern] = STATE(2429), + [sym_tuple_pattern] = STATE(1615), + [sym_slice_pattern] = STATE(1615), + [sym_tuple_struct_pattern] = STATE(1615), + [sym_struct_pattern] = STATE(1615), + [sym_remaining_field_pattern] = STATE(1615), + [sym_mut_pattern] = STATE(1615), + [sym_range_pattern] = STATE(1615), + [sym_ref_pattern] = STATE(1615), + [sym_captured_pattern] = STATE(1615), + [sym_reference_pattern] = STATE(1615), + [sym_or_pattern] = STATE(1615), + [sym__literal_pattern] = STATE(1492), + [sym_negative_literal] = STATE(1521), + [sym_string_literal] = STATE(1521), + [sym_boolean_literal] = STATE(1521), + [sym_primitive_type] = STATE(1691), + [sym_identifier] = STATE(1472), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [sym_underscore] = ACTIONS(946), + [anon_sym_LPAREN] = ACTIONS(916), [anon_sym_RPAREN] = ACTIONS(958), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(854), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(858), - [anon_sym_default] = ACTIONS(916), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(918), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_POUND] = ACTIONS(870), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), - [anon_sym_ref] = ACTIONS(878), + [anon_sym_LBRACK] = ACTIONS(852), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(856), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(860), + [anon_sym_default] = ACTIONS(920), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(922), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_POUND] = ACTIONS(872), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), + [anon_sym_ref] = ACTIONS(880), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(922), - [anon_sym_AMP] = ACTIONS(924), - [anon_sym_DOT_DOT_DOT] = ACTIONS(884), - [anon_sym_dyn] = ACTIONS(886), - [sym_mutable_specifier] = ACTIONS(888), - [anon_sym_DOT_DOT] = ACTIONS(890), - [anon_sym_DASH] = ACTIONS(892), - [sym_integer_literal] = ACTIONS(894), - [aux_sym_string_literal_token1] = ACTIONS(896), - [sym_char_literal] = ACTIONS(894), - [anon_sym_true] = ACTIONS(898), - [anon_sym_false] = ACTIONS(898), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(926), - [sym_super] = ACTIONS(928), - [sym_crate] = ACTIONS(928), - [sym_metavariable] = ACTIONS(930), - [sym_grit_metavariable] = ACTIONS(948), - [sym_raw_string_literal] = ACTIONS(894), - [sym_float_literal] = ACTIONS(894), + [anon_sym_COLON_COLON] = ACTIONS(926), + [anon_sym_AMP] = ACTIONS(928), + [anon_sym_DOT_DOT_DOT] = ACTIONS(886), + [anon_sym_dyn] = ACTIONS(888), + [sym_mutable_specifier] = ACTIONS(890), + [anon_sym_DOT_DOT] = ACTIONS(892), + [anon_sym_DASH] = ACTIONS(894), + [sym_integer_literal] = ACTIONS(896), + [aux_sym_string_literal_token1] = ACTIONS(898), + [sym_char_literal] = ACTIONS(896), + [anon_sym_true] = ACTIONS(900), + [anon_sym_false] = ACTIONS(900), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(930), + [sym_super] = ACTIONS(932), + [sym_crate] = ACTIONS(932), + [sym_metavariable] = ACTIONS(934), + [sym_grit_metavariable] = ACTIONS(950), + [sym_raw_string_literal] = ACTIONS(896), + [sym_float_literal] = ACTIONS(896), [sym_block_comment] = ACTIONS(3), }, [195] = { [sym_attribute_item] = STATE(198), - [sym_function_modifiers] = STATE(2724), - [sym_self_parameter] = STATE(2532), - [sym_variadic_parameter] = STATE(2532), - [sym_parameter] = STATE(2532), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(2280), - [sym_bracketed_type] = STATE(2682), - [sym_lifetime] = STATE(2155), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2683), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1914), - [sym_scoped_identifier] = STATE(1720), - [sym_scoped_type_identifier] = STATE(1646), - [sym_const_block] = STATE(1616), - [sym_pattern] = STATE(2486), - [sym_tuple_pattern] = STATE(1616), - [sym_slice_pattern] = STATE(1616), - [sym_tuple_struct_pattern] = STATE(1616), - [sym_struct_pattern] = STATE(1616), - [sym_remaining_field_pattern] = STATE(1616), - [sym_mut_pattern] = STATE(1616), - [sym_range_pattern] = STATE(1616), - [sym_ref_pattern] = STATE(1616), - [sym_captured_pattern] = STATE(1616), - [sym_reference_pattern] = STATE(1616), - [sym_or_pattern] = STATE(1616), - [sym__literal_pattern] = STATE(1496), - [sym_negative_literal] = STATE(1513), - [sym_string_literal] = STATE(1513), - [sym_boolean_literal] = STATE(1513), - [sym_primitive_type] = STATE(1679), - [sym_identifier] = STATE(1484), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [sym_underscore] = ACTIONS(944), - [anon_sym_LPAREN] = ACTIONS(912), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(854), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(858), - [anon_sym_default] = ACTIONS(916), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(918), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_POUND] = ACTIONS(870), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), - [anon_sym_ref] = ACTIONS(878), + [sym_function_modifiers] = STATE(2667), + [sym_self_parameter] = STATE(2526), + [sym_variadic_parameter] = STATE(2526), + [sym_parameter] = STATE(2526), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(2302), + [sym_bracketed_type] = STATE(2686), + [sym_lifetime] = STATE(2350), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2687), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1926), + [sym_scoped_identifier] = STATE(1726), + [sym_scoped_type_identifier] = STATE(1654), + [sym_const_block] = STATE(1615), + [sym_pattern] = STATE(2429), + [sym_tuple_pattern] = STATE(1615), + [sym_slice_pattern] = STATE(1615), + [sym_tuple_struct_pattern] = STATE(1615), + [sym_struct_pattern] = STATE(1615), + [sym_remaining_field_pattern] = STATE(1615), + [sym_mut_pattern] = STATE(1615), + [sym_range_pattern] = STATE(1615), + [sym_ref_pattern] = STATE(1615), + [sym_captured_pattern] = STATE(1615), + [sym_reference_pattern] = STATE(1615), + [sym_or_pattern] = STATE(1615), + [sym__literal_pattern] = STATE(1492), + [sym_negative_literal] = STATE(1521), + [sym_string_literal] = STATE(1521), + [sym_boolean_literal] = STATE(1521), + [sym_primitive_type] = STATE(1691), + [sym_identifier] = STATE(1472), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [sym_underscore] = ACTIONS(946), + [anon_sym_LPAREN] = ACTIONS(916), + [anon_sym_RPAREN] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(852), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(856), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(860), + [anon_sym_default] = ACTIONS(920), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(922), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_POUND] = ACTIONS(872), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), + [anon_sym_ref] = ACTIONS(880), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(922), - [anon_sym_AMP] = ACTIONS(924), - [anon_sym_DOT_DOT_DOT] = ACTIONS(884), - [anon_sym_dyn] = ACTIONS(886), - [sym_mutable_specifier] = ACTIONS(888), - [anon_sym_DOT_DOT] = ACTIONS(890), - [anon_sym_DASH] = ACTIONS(892), - [sym_integer_literal] = ACTIONS(894), - [aux_sym_string_literal_token1] = ACTIONS(896), - [sym_char_literal] = ACTIONS(894), - [anon_sym_true] = ACTIONS(898), - [anon_sym_false] = ACTIONS(898), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(926), - [sym_super] = ACTIONS(928), - [sym_crate] = ACTIONS(928), - [sym_metavariable] = ACTIONS(930), - [sym_grit_metavariable] = ACTIONS(948), - [sym_raw_string_literal] = ACTIONS(894), - [sym_float_literal] = ACTIONS(894), + [anon_sym_COLON_COLON] = ACTIONS(926), + [anon_sym_AMP] = ACTIONS(928), + [anon_sym_DOT_DOT_DOT] = ACTIONS(886), + [anon_sym_dyn] = ACTIONS(888), + [sym_mutable_specifier] = ACTIONS(890), + [anon_sym_DOT_DOT] = ACTIONS(892), + [anon_sym_DASH] = ACTIONS(894), + [sym_integer_literal] = ACTIONS(896), + [aux_sym_string_literal_token1] = ACTIONS(898), + [sym_char_literal] = ACTIONS(896), + [anon_sym_true] = ACTIONS(900), + [anon_sym_false] = ACTIONS(900), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(930), + [sym_super] = ACTIONS(932), + [sym_crate] = ACTIONS(932), + [sym_metavariable] = ACTIONS(934), + [sym_grit_metavariable] = ACTIONS(950), + [sym_raw_string_literal] = ACTIONS(896), + [sym_float_literal] = ACTIONS(896), [sym_block_comment] = ACTIONS(3), }, [196] = { - [sym_function_modifiers] = STATE(2724), - [sym_self_parameter] = STATE(2291), - [sym_variadic_parameter] = STATE(2291), - [sym_parameter] = STATE(2291), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(2019), - [sym_bracketed_type] = STATE(2682), - [sym_lifetime] = STATE(2155), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2683), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1914), - [sym_scoped_identifier] = STATE(1720), - [sym_scoped_type_identifier] = STATE(1646), - [sym_const_block] = STATE(1616), - [sym_pattern] = STATE(2486), - [sym_tuple_pattern] = STATE(1616), - [sym_slice_pattern] = STATE(1616), - [sym_tuple_struct_pattern] = STATE(1616), - [sym_struct_pattern] = STATE(1616), - [sym_remaining_field_pattern] = STATE(1616), - [sym_mut_pattern] = STATE(1616), - [sym_range_pattern] = STATE(1616), - [sym_ref_pattern] = STATE(1616), - [sym_captured_pattern] = STATE(1616), - [sym_reference_pattern] = STATE(1616), - [sym_or_pattern] = STATE(1616), - [sym__literal_pattern] = STATE(1496), - [sym_negative_literal] = STATE(1513), - [sym_string_literal] = STATE(1513), - [sym_boolean_literal] = STATE(1513), - [sym_primitive_type] = STATE(1679), - [sym_identifier] = STATE(1484), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [sym_underscore] = ACTIONS(960), - [anon_sym_LPAREN] = ACTIONS(912), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(854), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(858), - [anon_sym_default] = ACTIONS(916), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(918), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), - [anon_sym_ref] = ACTIONS(878), + [sym_attribute_item] = STATE(198), + [sym_function_modifiers] = STATE(2667), + [sym_self_parameter] = STATE(2526), + [sym_variadic_parameter] = STATE(2526), + [sym_parameter] = STATE(2526), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(2302), + [sym_bracketed_type] = STATE(2686), + [sym_lifetime] = STATE(2350), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2687), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1926), + [sym_scoped_identifier] = STATE(1726), + [sym_scoped_type_identifier] = STATE(1654), + [sym_const_block] = STATE(1615), + [sym_pattern] = STATE(2429), + [sym_tuple_pattern] = STATE(1615), + [sym_slice_pattern] = STATE(1615), + [sym_tuple_struct_pattern] = STATE(1615), + [sym_struct_pattern] = STATE(1615), + [sym_remaining_field_pattern] = STATE(1615), + [sym_mut_pattern] = STATE(1615), + [sym_range_pattern] = STATE(1615), + [sym_ref_pattern] = STATE(1615), + [sym_captured_pattern] = STATE(1615), + [sym_reference_pattern] = STATE(1615), + [sym_or_pattern] = STATE(1615), + [sym__literal_pattern] = STATE(1492), + [sym_negative_literal] = STATE(1521), + [sym_string_literal] = STATE(1521), + [sym_boolean_literal] = STATE(1521), + [sym_primitive_type] = STATE(1691), + [sym_identifier] = STATE(1472), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [sym_underscore] = ACTIONS(946), + [anon_sym_LPAREN] = ACTIONS(916), + [anon_sym_LBRACK] = ACTIONS(852), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(856), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(860), + [anon_sym_default] = ACTIONS(920), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(922), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_POUND] = ACTIONS(872), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), + [anon_sym_ref] = ACTIONS(880), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(922), - [anon_sym_AMP] = ACTIONS(924), - [anon_sym_DOT_DOT_DOT] = ACTIONS(884), - [anon_sym_dyn] = ACTIONS(886), - [sym_mutable_specifier] = ACTIONS(888), - [anon_sym_DOT_DOT] = ACTIONS(890), - [anon_sym_DASH] = ACTIONS(892), - [sym_integer_literal] = ACTIONS(894), - [aux_sym_string_literal_token1] = ACTIONS(896), - [sym_char_literal] = ACTIONS(894), - [anon_sym_true] = ACTIONS(898), - [anon_sym_false] = ACTIONS(898), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(926), - [sym_super] = ACTIONS(928), - [sym_crate] = ACTIONS(928), - [sym_metavariable] = ACTIONS(930), - [sym_grit_metavariable] = ACTIONS(962), - [sym_raw_string_literal] = ACTIONS(894), - [sym_float_literal] = ACTIONS(894), + [anon_sym_COLON_COLON] = ACTIONS(926), + [anon_sym_AMP] = ACTIONS(928), + [anon_sym_DOT_DOT_DOT] = ACTIONS(886), + [anon_sym_dyn] = ACTIONS(888), + [sym_mutable_specifier] = ACTIONS(890), + [anon_sym_DOT_DOT] = ACTIONS(892), + [anon_sym_DASH] = ACTIONS(894), + [sym_integer_literal] = ACTIONS(896), + [aux_sym_string_literal_token1] = ACTIONS(898), + [sym_char_literal] = ACTIONS(896), + [anon_sym_true] = ACTIONS(900), + [anon_sym_false] = ACTIONS(900), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(930), + [sym_super] = ACTIONS(932), + [sym_crate] = ACTIONS(932), + [sym_metavariable] = ACTIONS(934), + [sym_grit_metavariable] = ACTIONS(950), + [sym_raw_string_literal] = ACTIONS(896), + [sym_float_literal] = ACTIONS(896), [sym_block_comment] = ACTIONS(3), }, [197] = { - [sym_function_modifiers] = STATE(2724), - [sym_self_parameter] = STATE(2322), - [sym_variadic_parameter] = STATE(2322), - [sym_parameter] = STATE(2322), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(2002), - [sym_bracketed_type] = STATE(2682), - [sym_lifetime] = STATE(2155), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2683), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1914), - [sym_scoped_identifier] = STATE(1720), - [sym_scoped_type_identifier] = STATE(1646), - [sym_const_block] = STATE(1616), - [sym_pattern] = STATE(2486), - [sym_tuple_pattern] = STATE(1616), - [sym_slice_pattern] = STATE(1616), - [sym_tuple_struct_pattern] = STATE(1616), - [sym_struct_pattern] = STATE(1616), - [sym_remaining_field_pattern] = STATE(1616), - [sym_mut_pattern] = STATE(1616), - [sym_range_pattern] = STATE(1616), - [sym_ref_pattern] = STATE(1616), - [sym_captured_pattern] = STATE(1616), - [sym_reference_pattern] = STATE(1616), - [sym_or_pattern] = STATE(1616), - [sym__literal_pattern] = STATE(1496), - [sym_negative_literal] = STATE(1513), - [sym_string_literal] = STATE(1513), - [sym_boolean_literal] = STATE(1513), - [sym_primitive_type] = STATE(1679), - [sym_identifier] = STATE(1484), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [sym_underscore] = ACTIONS(964), - [anon_sym_LPAREN] = ACTIONS(912), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(854), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(858), - [anon_sym_default] = ACTIONS(916), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(918), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), - [anon_sym_ref] = ACTIONS(878), + [sym_function_modifiers] = STATE(2667), + [sym_self_parameter] = STATE(2295), + [sym_variadic_parameter] = STATE(2295), + [sym_parameter] = STATE(2295), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(2095), + [sym_bracketed_type] = STATE(2686), + [sym_lifetime] = STATE(2350), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2687), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1926), + [sym_scoped_identifier] = STATE(1726), + [sym_scoped_type_identifier] = STATE(1654), + [sym_const_block] = STATE(1615), + [sym_pattern] = STATE(2429), + [sym_tuple_pattern] = STATE(1615), + [sym_slice_pattern] = STATE(1615), + [sym_tuple_struct_pattern] = STATE(1615), + [sym_struct_pattern] = STATE(1615), + [sym_remaining_field_pattern] = STATE(1615), + [sym_mut_pattern] = STATE(1615), + [sym_range_pattern] = STATE(1615), + [sym_ref_pattern] = STATE(1615), + [sym_captured_pattern] = STATE(1615), + [sym_reference_pattern] = STATE(1615), + [sym_or_pattern] = STATE(1615), + [sym__literal_pattern] = STATE(1492), + [sym_negative_literal] = STATE(1521), + [sym_string_literal] = STATE(1521), + [sym_boolean_literal] = STATE(1521), + [sym_primitive_type] = STATE(1691), + [sym_identifier] = STATE(1472), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [sym_underscore] = ACTIONS(962), + [anon_sym_LPAREN] = ACTIONS(916), + [anon_sym_LBRACK] = ACTIONS(852), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(856), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(860), + [anon_sym_default] = ACTIONS(920), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(922), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), + [anon_sym_ref] = ACTIONS(880), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(922), - [anon_sym_AMP] = ACTIONS(924), - [anon_sym_DOT_DOT_DOT] = ACTIONS(884), - [anon_sym_dyn] = ACTIONS(886), - [sym_mutable_specifier] = ACTIONS(888), - [anon_sym_DOT_DOT] = ACTIONS(890), - [anon_sym_DASH] = ACTIONS(892), - [sym_integer_literal] = ACTIONS(894), - [aux_sym_string_literal_token1] = ACTIONS(896), - [sym_char_literal] = ACTIONS(894), - [anon_sym_true] = ACTIONS(898), - [anon_sym_false] = ACTIONS(898), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(926), - [sym_super] = ACTIONS(928), - [sym_crate] = ACTIONS(928), - [sym_metavariable] = ACTIONS(930), - [sym_grit_metavariable] = ACTIONS(966), - [sym_raw_string_literal] = ACTIONS(894), - [sym_float_literal] = ACTIONS(894), + [anon_sym_COLON_COLON] = ACTIONS(926), + [anon_sym_AMP] = ACTIONS(928), + [anon_sym_DOT_DOT_DOT] = ACTIONS(886), + [anon_sym_dyn] = ACTIONS(888), + [sym_mutable_specifier] = ACTIONS(890), + [anon_sym_DOT_DOT] = ACTIONS(892), + [anon_sym_DASH] = ACTIONS(894), + [sym_integer_literal] = ACTIONS(896), + [aux_sym_string_literal_token1] = ACTIONS(898), + [sym_char_literal] = ACTIONS(896), + [anon_sym_true] = ACTIONS(900), + [anon_sym_false] = ACTIONS(900), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(930), + [sym_super] = ACTIONS(932), + [sym_crate] = ACTIONS(932), + [sym_metavariable] = ACTIONS(934), + [sym_grit_metavariable] = ACTIONS(964), + [sym_raw_string_literal] = ACTIONS(896), + [sym_float_literal] = ACTIONS(896), [sym_block_comment] = ACTIONS(3), }, [198] = { - [sym_function_modifiers] = STATE(2724), - [sym_self_parameter] = STATE(2510), - [sym_variadic_parameter] = STATE(2510), - [sym_parameter] = STATE(2510), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(2209), - [sym_bracketed_type] = STATE(2682), - [sym_lifetime] = STATE(2155), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2683), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1914), - [sym_scoped_identifier] = STATE(1720), - [sym_scoped_type_identifier] = STATE(1646), - [sym_const_block] = STATE(1616), - [sym_pattern] = STATE(2486), - [sym_tuple_pattern] = STATE(1616), - [sym_slice_pattern] = STATE(1616), - [sym_tuple_struct_pattern] = STATE(1616), - [sym_struct_pattern] = STATE(1616), - [sym_remaining_field_pattern] = STATE(1616), - [sym_mut_pattern] = STATE(1616), - [sym_range_pattern] = STATE(1616), - [sym_ref_pattern] = STATE(1616), - [sym_captured_pattern] = STATE(1616), - [sym_reference_pattern] = STATE(1616), - [sym_or_pattern] = STATE(1616), - [sym__literal_pattern] = STATE(1496), - [sym_negative_literal] = STATE(1513), - [sym_string_literal] = STATE(1513), - [sym_boolean_literal] = STATE(1513), - [sym_primitive_type] = STATE(1679), - [sym_identifier] = STATE(1484), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [sym_underscore] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(912), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(854), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(858), - [anon_sym_default] = ACTIONS(916), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(918), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), - [anon_sym_ref] = ACTIONS(878), + [sym_function_modifiers] = STATE(2667), + [sym_self_parameter] = STATE(2517), + [sym_variadic_parameter] = STATE(2517), + [sym_parameter] = STATE(2517), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(2213), + [sym_bracketed_type] = STATE(2686), + [sym_lifetime] = STATE(2350), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2687), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1926), + [sym_scoped_identifier] = STATE(1726), + [sym_scoped_type_identifier] = STATE(1654), + [sym_const_block] = STATE(1615), + [sym_pattern] = STATE(2429), + [sym_tuple_pattern] = STATE(1615), + [sym_slice_pattern] = STATE(1615), + [sym_tuple_struct_pattern] = STATE(1615), + [sym_struct_pattern] = STATE(1615), + [sym_remaining_field_pattern] = STATE(1615), + [sym_mut_pattern] = STATE(1615), + [sym_range_pattern] = STATE(1615), + [sym_ref_pattern] = STATE(1615), + [sym_captured_pattern] = STATE(1615), + [sym_reference_pattern] = STATE(1615), + [sym_or_pattern] = STATE(1615), + [sym__literal_pattern] = STATE(1492), + [sym_negative_literal] = STATE(1521), + [sym_string_literal] = STATE(1521), + [sym_boolean_literal] = STATE(1521), + [sym_primitive_type] = STATE(1691), + [sym_identifier] = STATE(1472), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [sym_underscore] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(916), + [anon_sym_LBRACK] = ACTIONS(852), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(856), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(860), + [anon_sym_default] = ACTIONS(920), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(922), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), + [anon_sym_ref] = ACTIONS(880), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(922), - [anon_sym_AMP] = ACTIONS(924), - [anon_sym_DOT_DOT_DOT] = ACTIONS(884), - [anon_sym_dyn] = ACTIONS(886), - [sym_mutable_specifier] = ACTIONS(888), - [anon_sym_DOT_DOT] = ACTIONS(890), - [anon_sym_DASH] = ACTIONS(892), - [sym_integer_literal] = ACTIONS(894), - [aux_sym_string_literal_token1] = ACTIONS(896), - [sym_char_literal] = ACTIONS(894), - [anon_sym_true] = ACTIONS(898), - [anon_sym_false] = ACTIONS(898), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(926), - [sym_super] = ACTIONS(928), - [sym_crate] = ACTIONS(928), - [sym_metavariable] = ACTIONS(930), - [sym_grit_metavariable] = ACTIONS(970), - [sym_raw_string_literal] = ACTIONS(894), - [sym_float_literal] = ACTIONS(894), + [anon_sym_COLON_COLON] = ACTIONS(926), + [anon_sym_AMP] = ACTIONS(928), + [anon_sym_DOT_DOT_DOT] = ACTIONS(886), + [anon_sym_dyn] = ACTIONS(888), + [sym_mutable_specifier] = ACTIONS(890), + [anon_sym_DOT_DOT] = ACTIONS(892), + [anon_sym_DASH] = ACTIONS(894), + [sym_integer_literal] = ACTIONS(896), + [aux_sym_string_literal_token1] = ACTIONS(898), + [sym_char_literal] = ACTIONS(896), + [anon_sym_true] = ACTIONS(900), + [anon_sym_false] = ACTIONS(900), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(930), + [sym_super] = ACTIONS(932), + [sym_crate] = ACTIONS(932), + [sym_metavariable] = ACTIONS(934), + [sym_grit_metavariable] = ACTIONS(968), + [sym_raw_string_literal] = ACTIONS(896), + [sym_float_literal] = ACTIONS(896), [sym_block_comment] = ACTIONS(3), }, [199] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(2011), - [sym_bracketed_type] = STATE(2640), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2728), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1925), - [sym_scoped_identifier] = STATE(1672), - [sym_scoped_type_identifier] = STATE(1646), - [sym_const_block] = STATE(1616), - [sym_pattern] = STATE(1964), - [sym_tuple_pattern] = STATE(1616), - [sym_slice_pattern] = STATE(1616), - [sym_tuple_struct_pattern] = STATE(1616), - [sym_struct_pattern] = STATE(1616), - [sym_remaining_field_pattern] = STATE(1616), - [sym_mut_pattern] = STATE(1616), - [sym_range_pattern] = STATE(1616), - [sym_ref_pattern] = STATE(1616), - [sym_captured_pattern] = STATE(1616), - [sym_reference_pattern] = STATE(1616), - [sym_or_pattern] = STATE(1616), - [sym__literal_pattern] = STATE(1496), - [sym_negative_literal] = STATE(1513), - [sym_string_literal] = STATE(1513), - [sym_boolean_literal] = STATE(1513), - [sym_primitive_type] = STATE(1677), - [sym_identifier] = STATE(1481), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [sym_underscore] = ACTIONS(972), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_RPAREN] = ACTIONS(974), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(854), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(858), - [anon_sym_default] = ACTIONS(860), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(868), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_COMMA] = ACTIONS(976), - [anon_sym_extern] = ACTIONS(876), - [anon_sym_ref] = ACTIONS(878), + [sym_function_modifiers] = STATE(2667), + [sym_self_parameter] = STATE(2190), + [sym_variadic_parameter] = STATE(2190), + [sym_parameter] = STATE(2190), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(2129), + [sym_bracketed_type] = STATE(2686), + [sym_lifetime] = STATE(2350), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2687), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1926), + [sym_scoped_identifier] = STATE(1726), + [sym_scoped_type_identifier] = STATE(1654), + [sym_const_block] = STATE(1615), + [sym_pattern] = STATE(2429), + [sym_tuple_pattern] = STATE(1615), + [sym_slice_pattern] = STATE(1615), + [sym_tuple_struct_pattern] = STATE(1615), + [sym_struct_pattern] = STATE(1615), + [sym_remaining_field_pattern] = STATE(1615), + [sym_mut_pattern] = STATE(1615), + [sym_range_pattern] = STATE(1615), + [sym_ref_pattern] = STATE(1615), + [sym_captured_pattern] = STATE(1615), + [sym_reference_pattern] = STATE(1615), + [sym_or_pattern] = STATE(1615), + [sym__literal_pattern] = STATE(1492), + [sym_negative_literal] = STATE(1521), + [sym_string_literal] = STATE(1521), + [sym_boolean_literal] = STATE(1521), + [sym_primitive_type] = STATE(1691), + [sym_identifier] = STATE(1472), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [sym_underscore] = ACTIONS(970), + [anon_sym_LPAREN] = ACTIONS(916), + [anon_sym_LBRACK] = ACTIONS(852), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(856), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(860), + [anon_sym_default] = ACTIONS(920), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(922), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), + [anon_sym_ref] = ACTIONS(880), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(880), - [anon_sym_AMP] = ACTIONS(978), - [anon_sym_dyn] = ACTIONS(886), - [sym_mutable_specifier] = ACTIONS(980), - [anon_sym_DOT_DOT] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(892), - [sym_integer_literal] = ACTIONS(894), - [aux_sym_string_literal_token1] = ACTIONS(896), - [sym_char_literal] = ACTIONS(894), - [anon_sym_true] = ACTIONS(898), - [anon_sym_false] = ACTIONS(898), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(906), - [sym_super] = ACTIONS(906), - [sym_crate] = ACTIONS(906), - [sym_metavariable] = ACTIONS(908), - [sym_grit_metavariable] = ACTIONS(984), - [sym_raw_string_literal] = ACTIONS(894), - [sym_float_literal] = ACTIONS(894), + [anon_sym_COLON_COLON] = ACTIONS(926), + [anon_sym_AMP] = ACTIONS(928), + [anon_sym_DOT_DOT_DOT] = ACTIONS(886), + [anon_sym_dyn] = ACTIONS(888), + [sym_mutable_specifier] = ACTIONS(890), + [anon_sym_DOT_DOT] = ACTIONS(892), + [anon_sym_DASH] = ACTIONS(894), + [sym_integer_literal] = ACTIONS(896), + [aux_sym_string_literal_token1] = ACTIONS(898), + [sym_char_literal] = ACTIONS(896), + [anon_sym_true] = ACTIONS(900), + [anon_sym_false] = ACTIONS(900), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(930), + [sym_super] = ACTIONS(932), + [sym_crate] = ACTIONS(932), + [sym_metavariable] = ACTIONS(934), + [sym_grit_metavariable] = ACTIONS(972), + [sym_raw_string_literal] = ACTIONS(896), + [sym_float_literal] = ACTIONS(896), [sym_block_comment] = ACTIONS(3), }, [200] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(2212), - [sym_bracketed_type] = STATE(2689), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2690), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1930), - [sym_scoped_identifier] = STATE(1683), - [sym_scoped_type_identifier] = STATE(1646), - [sym_const_block] = STATE(1616), - [sym_pattern] = STATE(2089), - [sym_tuple_pattern] = STATE(1616), - [sym_slice_pattern] = STATE(1616), - [sym_tuple_struct_pattern] = STATE(1616), - [sym_struct_pattern] = STATE(1616), - [sym_remaining_field_pattern] = STATE(1616), - [sym_mut_pattern] = STATE(1616), - [sym_range_pattern] = STATE(1616), - [sym_ref_pattern] = STATE(1616), - [sym_captured_pattern] = STATE(1616), - [sym_reference_pattern] = STATE(1616), - [sym_or_pattern] = STATE(1616), - [sym__literal_pattern] = STATE(1496), - [sym_negative_literal] = STATE(1513), - [sym_string_literal] = STATE(1513), - [sym_boolean_literal] = STATE(1513), - [sym_primitive_type] = STATE(1701), - [sym_identifier] = STATE(1483), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [sym_underscore] = ACTIONS(972), - [anon_sym_LPAREN] = ACTIONS(986), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_RBRACK] = ACTIONS(988), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(854), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(858), - [anon_sym_default] = ACTIONS(990), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(992), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_COMMA] = ACTIONS(994), - [anon_sym_extern] = ACTIONS(876), - [anon_sym_ref] = ACTIONS(878), + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(1989), + [sym_bracketed_type] = STATE(2608), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2609), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1893), + [sym_scoped_identifier] = STATE(1670), + [sym_scoped_type_identifier] = STATE(1654), + [sym_const_block] = STATE(1615), + [sym_pattern] = STATE(1979), + [sym_tuple_pattern] = STATE(1615), + [sym_slice_pattern] = STATE(1615), + [sym_tuple_struct_pattern] = STATE(1615), + [sym_struct_pattern] = STATE(1615), + [sym_remaining_field_pattern] = STATE(1615), + [sym_mut_pattern] = STATE(1615), + [sym_range_pattern] = STATE(1615), + [sym_ref_pattern] = STATE(1615), + [sym_captured_pattern] = STATE(1615), + [sym_reference_pattern] = STATE(1615), + [sym_or_pattern] = STATE(1615), + [sym__literal_pattern] = STATE(1492), + [sym_negative_literal] = STATE(1521), + [sym_string_literal] = STATE(1521), + [sym_boolean_literal] = STATE(1521), + [sym_primitive_type] = STATE(1692), + [sym_identifier] = STATE(1477), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [sym_underscore] = ACTIONS(974), + [anon_sym_LPAREN] = ACTIONS(848), + [anon_sym_RPAREN] = ACTIONS(976), + [anon_sym_LBRACK] = ACTIONS(852), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(856), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(860), + [anon_sym_default] = ACTIONS(862), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(870), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_COMMA] = ACTIONS(978), + [anon_sym_extern] = ACTIONS(878), + [anon_sym_ref] = ACTIONS(880), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(996), - [anon_sym_AMP] = ACTIONS(998), - [anon_sym_dyn] = ACTIONS(886), - [sym_mutable_specifier] = ACTIONS(980), - [anon_sym_DOT_DOT] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(892), - [sym_integer_literal] = ACTIONS(894), - [aux_sym_string_literal_token1] = ACTIONS(896), - [sym_char_literal] = ACTIONS(894), - [anon_sym_true] = ACTIONS(898), - [anon_sym_false] = ACTIONS(898), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1000), - [sym_super] = ACTIONS(1000), - [sym_crate] = ACTIONS(1000), - [sym_metavariable] = ACTIONS(1002), - [sym_grit_metavariable] = ACTIONS(1004), - [sym_raw_string_literal] = ACTIONS(894), - [sym_float_literal] = ACTIONS(894), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(980), + [anon_sym_dyn] = ACTIONS(888), + [sym_mutable_specifier] = ACTIONS(982), + [anon_sym_DOT_DOT] = ACTIONS(984), + [anon_sym_DASH] = ACTIONS(894), + [sym_integer_literal] = ACTIONS(896), + [aux_sym_string_literal_token1] = ACTIONS(898), + [sym_char_literal] = ACTIONS(896), + [anon_sym_true] = ACTIONS(900), + [anon_sym_false] = ACTIONS(900), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(908), + [sym_super] = ACTIONS(908), + [sym_crate] = ACTIONS(908), + [sym_metavariable] = ACTIONS(910), + [sym_grit_metavariable] = ACTIONS(986), + [sym_raw_string_literal] = ACTIONS(896), + [sym_float_literal] = ACTIONS(896), [sym_block_comment] = ACTIONS(3), }, [201] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(2011), - [sym_bracketed_type] = STATE(2640), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2728), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1925), - [sym_scoped_identifier] = STATE(1672), - [sym_scoped_type_identifier] = STATE(1646), - [sym_const_block] = STATE(1616), - [sym_pattern] = STATE(1964), - [sym_tuple_pattern] = STATE(1616), - [sym_slice_pattern] = STATE(1616), - [sym_tuple_struct_pattern] = STATE(1616), - [sym_struct_pattern] = STATE(1616), - [sym_remaining_field_pattern] = STATE(1616), - [sym_mut_pattern] = STATE(1616), - [sym_range_pattern] = STATE(1616), - [sym_ref_pattern] = STATE(1616), - [sym_captured_pattern] = STATE(1616), - [sym_reference_pattern] = STATE(1616), - [sym_or_pattern] = STATE(1616), - [sym__literal_pattern] = STATE(1496), - [sym_negative_literal] = STATE(1513), - [sym_string_literal] = STATE(1513), - [sym_boolean_literal] = STATE(1513), - [sym_primitive_type] = STATE(1677), - [sym_identifier] = STATE(1481), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [sym_underscore] = ACTIONS(972), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_RPAREN] = ACTIONS(1006), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(854), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(858), - [anon_sym_default] = ACTIONS(860), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(868), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_COMMA] = ACTIONS(976), - [anon_sym_extern] = ACTIONS(876), - [anon_sym_ref] = ACTIONS(878), + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(2257), + [sym_bracketed_type] = STATE(2693), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2694), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1946), + [sym_scoped_identifier] = STATE(1688), + [sym_scoped_type_identifier] = STATE(1654), + [sym_const_block] = STATE(1615), + [sym_pattern] = STATE(1980), + [sym_tuple_pattern] = STATE(1615), + [sym_slice_pattern] = STATE(1615), + [sym_tuple_struct_pattern] = STATE(1615), + [sym_struct_pattern] = STATE(1615), + [sym_remaining_field_pattern] = STATE(1615), + [sym_mut_pattern] = STATE(1615), + [sym_range_pattern] = STATE(1615), + [sym_ref_pattern] = STATE(1615), + [sym_captured_pattern] = STATE(1615), + [sym_reference_pattern] = STATE(1615), + [sym_or_pattern] = STATE(1615), + [sym__literal_pattern] = STATE(1492), + [sym_negative_literal] = STATE(1521), + [sym_string_literal] = STATE(1521), + [sym_boolean_literal] = STATE(1521), + [sym_primitive_type] = STATE(1686), + [sym_identifier] = STATE(1480), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [sym_underscore] = ACTIONS(974), + [anon_sym_LPAREN] = ACTIONS(988), + [anon_sym_LBRACK] = ACTIONS(852), + [anon_sym_RBRACK] = ACTIONS(990), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(856), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(860), + [anon_sym_default] = ACTIONS(992), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(994), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_COMMA] = ACTIONS(996), + [anon_sym_extern] = ACTIONS(878), + [anon_sym_ref] = ACTIONS(880), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(880), - [anon_sym_AMP] = ACTIONS(978), - [anon_sym_dyn] = ACTIONS(886), - [sym_mutable_specifier] = ACTIONS(980), - [anon_sym_DOT_DOT] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(892), - [sym_integer_literal] = ACTIONS(894), - [aux_sym_string_literal_token1] = ACTIONS(896), - [sym_char_literal] = ACTIONS(894), - [anon_sym_true] = ACTIONS(898), - [anon_sym_false] = ACTIONS(898), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(906), - [sym_super] = ACTIONS(906), - [sym_crate] = ACTIONS(906), - [sym_metavariable] = ACTIONS(908), - [sym_grit_metavariable] = ACTIONS(984), - [sym_raw_string_literal] = ACTIONS(894), - [sym_float_literal] = ACTIONS(894), + [anon_sym_COLON_COLON] = ACTIONS(998), + [anon_sym_AMP] = ACTIONS(1000), + [anon_sym_dyn] = ACTIONS(888), + [sym_mutable_specifier] = ACTIONS(982), + [anon_sym_DOT_DOT] = ACTIONS(984), + [anon_sym_DASH] = ACTIONS(894), + [sym_integer_literal] = ACTIONS(896), + [aux_sym_string_literal_token1] = ACTIONS(898), + [sym_char_literal] = ACTIONS(896), + [anon_sym_true] = ACTIONS(900), + [anon_sym_false] = ACTIONS(900), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1002), + [sym_super] = ACTIONS(1002), + [sym_crate] = ACTIONS(1002), + [sym_metavariable] = ACTIONS(1004), + [sym_grit_metavariable] = ACTIONS(1006), + [sym_raw_string_literal] = ACTIONS(896), + [sym_float_literal] = ACTIONS(896), [sym_block_comment] = ACTIONS(3), }, [202] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(2011), - [sym_bracketed_type] = STATE(2640), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2728), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1925), - [sym_scoped_identifier] = STATE(1672), - [sym_scoped_type_identifier] = STATE(1646), - [sym_const_block] = STATE(1616), - [sym_pattern] = STATE(1964), - [sym_tuple_pattern] = STATE(1616), - [sym_slice_pattern] = STATE(1616), - [sym_tuple_struct_pattern] = STATE(1616), - [sym_struct_pattern] = STATE(1616), - [sym_remaining_field_pattern] = STATE(1616), - [sym_mut_pattern] = STATE(1616), - [sym_range_pattern] = STATE(1616), - [sym_ref_pattern] = STATE(1616), - [sym_captured_pattern] = STATE(1616), - [sym_reference_pattern] = STATE(1616), - [sym_or_pattern] = STATE(1616), - [sym__literal_pattern] = STATE(1496), - [sym_negative_literal] = STATE(1513), - [sym_string_literal] = STATE(1513), - [sym_boolean_literal] = STATE(1513), - [sym_primitive_type] = STATE(1677), - [sym_identifier] = STATE(1481), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [sym_underscore] = ACTIONS(972), - [anon_sym_LPAREN] = ACTIONS(846), + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(1989), + [sym_bracketed_type] = STATE(2608), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2609), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1893), + [sym_scoped_identifier] = STATE(1670), + [sym_scoped_type_identifier] = STATE(1654), + [sym_const_block] = STATE(1615), + [sym_pattern] = STATE(1979), + [sym_tuple_pattern] = STATE(1615), + [sym_slice_pattern] = STATE(1615), + [sym_tuple_struct_pattern] = STATE(1615), + [sym_struct_pattern] = STATE(1615), + [sym_remaining_field_pattern] = STATE(1615), + [sym_mut_pattern] = STATE(1615), + [sym_range_pattern] = STATE(1615), + [sym_ref_pattern] = STATE(1615), + [sym_captured_pattern] = STATE(1615), + [sym_reference_pattern] = STATE(1615), + [sym_or_pattern] = STATE(1615), + [sym__literal_pattern] = STATE(1492), + [sym_negative_literal] = STATE(1521), + [sym_string_literal] = STATE(1521), + [sym_boolean_literal] = STATE(1521), + [sym_primitive_type] = STATE(1692), + [sym_identifier] = STATE(1477), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [sym_underscore] = ACTIONS(974), + [anon_sym_LPAREN] = ACTIONS(848), [anon_sym_RPAREN] = ACTIONS(1008), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(854), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(858), - [anon_sym_default] = ACTIONS(860), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(868), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_COMMA] = ACTIONS(976), - [anon_sym_extern] = ACTIONS(876), - [anon_sym_ref] = ACTIONS(878), + [anon_sym_LBRACK] = ACTIONS(852), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(856), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(860), + [anon_sym_default] = ACTIONS(862), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(870), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_COMMA] = ACTIONS(978), + [anon_sym_extern] = ACTIONS(878), + [anon_sym_ref] = ACTIONS(880), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(880), - [anon_sym_AMP] = ACTIONS(978), - [anon_sym_dyn] = ACTIONS(886), - [sym_mutable_specifier] = ACTIONS(980), - [anon_sym_DOT_DOT] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(892), - [sym_integer_literal] = ACTIONS(894), - [aux_sym_string_literal_token1] = ACTIONS(896), - [sym_char_literal] = ACTIONS(894), - [anon_sym_true] = ACTIONS(898), - [anon_sym_false] = ACTIONS(898), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(906), - [sym_super] = ACTIONS(906), - [sym_crate] = ACTIONS(906), - [sym_metavariable] = ACTIONS(908), - [sym_grit_metavariable] = ACTIONS(984), - [sym_raw_string_literal] = ACTIONS(894), - [sym_float_literal] = ACTIONS(894), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(980), + [anon_sym_dyn] = ACTIONS(888), + [sym_mutable_specifier] = ACTIONS(982), + [anon_sym_DOT_DOT] = ACTIONS(984), + [anon_sym_DASH] = ACTIONS(894), + [sym_integer_literal] = ACTIONS(896), + [aux_sym_string_literal_token1] = ACTIONS(898), + [sym_char_literal] = ACTIONS(896), + [anon_sym_true] = ACTIONS(900), + [anon_sym_false] = ACTIONS(900), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(908), + [sym_super] = ACTIONS(908), + [sym_crate] = ACTIONS(908), + [sym_metavariable] = ACTIONS(910), + [sym_grit_metavariable] = ACTIONS(986), + [sym_raw_string_literal] = ACTIONS(896), + [sym_float_literal] = ACTIONS(896), [sym_block_comment] = ACTIONS(3), }, [203] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(1509), - [sym_bracketed_type] = STATE(2689), - [sym_lifetime] = STATE(640), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2690), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1930), - [sym_scoped_identifier] = STATE(1683), - [sym_scoped_type_identifier] = STATE(1646), - [sym_const_block] = STATE(1616), - [sym_pattern] = STATE(1614), - [sym_tuple_pattern] = STATE(1616), - [sym_slice_pattern] = STATE(1616), - [sym_tuple_struct_pattern] = STATE(1616), - [sym_struct_pattern] = STATE(1616), - [sym_remaining_field_pattern] = STATE(1616), - [sym_mut_pattern] = STATE(1616), - [sym_range_pattern] = STATE(1616), - [sym_ref_pattern] = STATE(1616), - [sym_captured_pattern] = STATE(1616), - [sym_reference_pattern] = STATE(1616), - [sym_or_pattern] = STATE(1616), - [sym__literal_pattern] = STATE(1496), - [sym_negative_literal] = STATE(1513), - [sym_string_literal] = STATE(1513), - [sym_boolean_literal] = STATE(1513), - [sym_primitive_type] = STATE(1701), - [sym_identifier] = STATE(1483), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [sym_underscore] = ACTIONS(972), - [anon_sym_LPAREN] = ACTIONS(986), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(1010), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(858), - [anon_sym_default] = ACTIONS(990), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(992), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), - [anon_sym_ref] = ACTIONS(878), + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(1989), + [sym_bracketed_type] = STATE(2608), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2609), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1893), + [sym_scoped_identifier] = STATE(1670), + [sym_scoped_type_identifier] = STATE(1654), + [sym_const_block] = STATE(1615), + [sym_pattern] = STATE(1979), + [sym_tuple_pattern] = STATE(1615), + [sym_slice_pattern] = STATE(1615), + [sym_tuple_struct_pattern] = STATE(1615), + [sym_struct_pattern] = STATE(1615), + [sym_remaining_field_pattern] = STATE(1615), + [sym_mut_pattern] = STATE(1615), + [sym_range_pattern] = STATE(1615), + [sym_ref_pattern] = STATE(1615), + [sym_captured_pattern] = STATE(1615), + [sym_reference_pattern] = STATE(1615), + [sym_or_pattern] = STATE(1615), + [sym__literal_pattern] = STATE(1492), + [sym_negative_literal] = STATE(1521), + [sym_string_literal] = STATE(1521), + [sym_boolean_literal] = STATE(1521), + [sym_primitive_type] = STATE(1692), + [sym_identifier] = STATE(1477), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [sym_underscore] = ACTIONS(974), + [anon_sym_LPAREN] = ACTIONS(848), + [anon_sym_RPAREN] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(852), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(856), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(860), + [anon_sym_default] = ACTIONS(862), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(870), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_COMMA] = ACTIONS(978), + [anon_sym_extern] = ACTIONS(878), + [anon_sym_ref] = ACTIONS(880), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(996), - [anon_sym_AMP] = ACTIONS(998), - [anon_sym_dyn] = ACTIONS(886), - [sym_mutable_specifier] = ACTIONS(1012), - [anon_sym_DOT_DOT] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(892), - [sym_integer_literal] = ACTIONS(894), - [aux_sym_string_literal_token1] = ACTIONS(896), - [sym_char_literal] = ACTIONS(894), - [anon_sym_true] = ACTIONS(898), - [anon_sym_false] = ACTIONS(898), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1000), - [sym_super] = ACTIONS(1000), - [sym_crate] = ACTIONS(1000), - [sym_metavariable] = ACTIONS(1002), - [sym_grit_metavariable] = ACTIONS(1004), - [sym_raw_string_literal] = ACTIONS(894), - [sym_float_literal] = ACTIONS(894), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(980), + [anon_sym_dyn] = ACTIONS(888), + [sym_mutable_specifier] = ACTIONS(982), + [anon_sym_DOT_DOT] = ACTIONS(984), + [anon_sym_DASH] = ACTIONS(894), + [sym_integer_literal] = ACTIONS(896), + [aux_sym_string_literal_token1] = ACTIONS(898), + [sym_char_literal] = ACTIONS(896), + [anon_sym_true] = ACTIONS(900), + [anon_sym_false] = ACTIONS(900), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(908), + [sym_super] = ACTIONS(908), + [sym_crate] = ACTIONS(908), + [sym_metavariable] = ACTIONS(910), + [sym_grit_metavariable] = ACTIONS(986), + [sym_raw_string_literal] = ACTIONS(896), + [sym_float_literal] = ACTIONS(896), [sym_block_comment] = ACTIONS(3), }, [204] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(1509), - [sym_bracketed_type] = STATE(2640), - [sym_lifetime] = STATE(640), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2728), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1925), - [sym_scoped_identifier] = STATE(1672), - [sym_scoped_type_identifier] = STATE(1646), - [sym_const_block] = STATE(1616), - [sym_pattern] = STATE(1614), - [sym_tuple_pattern] = STATE(1616), - [sym_slice_pattern] = STATE(1616), - [sym_tuple_struct_pattern] = STATE(1616), - [sym_struct_pattern] = STATE(1616), - [sym_remaining_field_pattern] = STATE(1616), - [sym_mut_pattern] = STATE(1616), - [sym_range_pattern] = STATE(1616), - [sym_ref_pattern] = STATE(1616), - [sym_captured_pattern] = STATE(1616), - [sym_reference_pattern] = STATE(1616), - [sym_or_pattern] = STATE(1616), - [sym__literal_pattern] = STATE(1496), - [sym_negative_literal] = STATE(1513), - [sym_string_literal] = STATE(1513), - [sym_boolean_literal] = STATE(1513), - [sym_primitive_type] = STATE(1677), - [sym_identifier] = STATE(1481), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [sym_underscore] = ACTIONS(972), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(1010), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(858), - [anon_sym_default] = ACTIONS(860), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(868), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), - [anon_sym_ref] = ACTIONS(878), + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(1531), + [sym_bracketed_type] = STATE(2686), + [sym_lifetime] = STATE(659), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2687), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1926), + [sym_scoped_identifier] = STATE(1726), + [sym_scoped_type_identifier] = STATE(1654), + [sym_const_block] = STATE(1615), + [sym_pattern] = STATE(1567), + [sym_tuple_pattern] = STATE(1615), + [sym_slice_pattern] = STATE(1615), + [sym_tuple_struct_pattern] = STATE(1615), + [sym_struct_pattern] = STATE(1615), + [sym_remaining_field_pattern] = STATE(1615), + [sym_mut_pattern] = STATE(1615), + [sym_range_pattern] = STATE(1615), + [sym_ref_pattern] = STATE(1615), + [sym_captured_pattern] = STATE(1615), + [sym_reference_pattern] = STATE(1615), + [sym_or_pattern] = STATE(1615), + [sym__literal_pattern] = STATE(1492), + [sym_negative_literal] = STATE(1521), + [sym_string_literal] = STATE(1521), + [sym_boolean_literal] = STATE(1521), + [sym_primitive_type] = STATE(1691), + [sym_identifier] = STATE(1472), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [sym_underscore] = ACTIONS(974), + [anon_sym_LPAREN] = ACTIONS(916), + [anon_sym_LBRACK] = ACTIONS(852), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(1012), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(860), + [anon_sym_default] = ACTIONS(920), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(922), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), + [anon_sym_ref] = ACTIONS(880), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(880), - [anon_sym_AMP] = ACTIONS(978), - [anon_sym_dyn] = ACTIONS(886), - [sym_mutable_specifier] = ACTIONS(1014), - [anon_sym_DOT_DOT] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(892), - [sym_integer_literal] = ACTIONS(894), - [aux_sym_string_literal_token1] = ACTIONS(896), - [sym_char_literal] = ACTIONS(894), - [anon_sym_true] = ACTIONS(898), - [anon_sym_false] = ACTIONS(898), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(906), - [sym_super] = ACTIONS(906), - [sym_crate] = ACTIONS(906), - [sym_metavariable] = ACTIONS(908), - [sym_grit_metavariable] = ACTIONS(984), - [sym_raw_string_literal] = ACTIONS(894), - [sym_float_literal] = ACTIONS(894), + [anon_sym_COLON_COLON] = ACTIONS(926), + [anon_sym_AMP] = ACTIONS(1014), + [anon_sym_dyn] = ACTIONS(888), + [sym_mutable_specifier] = ACTIONS(1016), + [anon_sym_DOT_DOT] = ACTIONS(984), + [anon_sym_DASH] = ACTIONS(894), + [sym_integer_literal] = ACTIONS(896), + [aux_sym_string_literal_token1] = ACTIONS(898), + [sym_char_literal] = ACTIONS(896), + [anon_sym_true] = ACTIONS(900), + [anon_sym_false] = ACTIONS(900), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(932), + [sym_super] = ACTIONS(932), + [sym_crate] = ACTIONS(932), + [sym_metavariable] = ACTIONS(934), + [sym_grit_metavariable] = ACTIONS(1018), + [sym_raw_string_literal] = ACTIONS(896), + [sym_float_literal] = ACTIONS(896), [sym_block_comment] = ACTIONS(3), }, [205] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(1511), - [sym_bracketed_type] = STATE(2640), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2728), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1925), - [sym_scoped_identifier] = STATE(1672), - [sym_scoped_type_identifier] = STATE(1646), - [sym_const_block] = STATE(1616), - [sym_pattern] = STATE(1599), - [sym_tuple_pattern] = STATE(1616), - [sym_slice_pattern] = STATE(1616), - [sym_tuple_struct_pattern] = STATE(1616), - [sym_struct_pattern] = STATE(1616), - [sym_remaining_field_pattern] = STATE(1616), - [sym_mut_pattern] = STATE(1616), - [sym_range_pattern] = STATE(1616), - [sym_ref_pattern] = STATE(1616), - [sym_captured_pattern] = STATE(1616), - [sym_reference_pattern] = STATE(1616), - [sym_or_pattern] = STATE(1616), - [sym__literal_pattern] = STATE(1496), - [sym_negative_literal] = STATE(1513), - [sym_string_literal] = STATE(1513), - [sym_boolean_literal] = STATE(1513), - [sym_primitive_type] = STATE(1677), - [sym_identifier] = STATE(1481), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [sym_underscore] = ACTIONS(972), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(854), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(858), - [anon_sym_default] = ACTIONS(860), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(868), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), - [anon_sym_ref] = ACTIONS(878), + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(1531), + [sym_bracketed_type] = STATE(2608), + [sym_lifetime] = STATE(645), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2609), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1893), + [sym_scoped_identifier] = STATE(1670), + [sym_scoped_type_identifier] = STATE(1654), + [sym_const_block] = STATE(1615), + [sym_pattern] = STATE(1567), + [sym_tuple_pattern] = STATE(1615), + [sym_slice_pattern] = STATE(1615), + [sym_tuple_struct_pattern] = STATE(1615), + [sym_struct_pattern] = STATE(1615), + [sym_remaining_field_pattern] = STATE(1615), + [sym_mut_pattern] = STATE(1615), + [sym_range_pattern] = STATE(1615), + [sym_ref_pattern] = STATE(1615), + [sym_captured_pattern] = STATE(1615), + [sym_reference_pattern] = STATE(1615), + [sym_or_pattern] = STATE(1615), + [sym__literal_pattern] = STATE(1492), + [sym_negative_literal] = STATE(1521), + [sym_string_literal] = STATE(1521), + [sym_boolean_literal] = STATE(1521), + [sym_primitive_type] = STATE(1692), + [sym_identifier] = STATE(1477), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [sym_underscore] = ACTIONS(974), + [anon_sym_LPAREN] = ACTIONS(848), + [anon_sym_LBRACK] = ACTIONS(852), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(1012), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(860), + [anon_sym_default] = ACTIONS(862), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(870), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), + [anon_sym_ref] = ACTIONS(880), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(880), - [anon_sym_AMP] = ACTIONS(978), - [anon_sym_dyn] = ACTIONS(886), - [sym_mutable_specifier] = ACTIONS(980), - [anon_sym_DOT_DOT] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(892), - [sym_integer_literal] = ACTIONS(894), - [aux_sym_string_literal_token1] = ACTIONS(896), - [sym_char_literal] = ACTIONS(894), - [anon_sym_true] = ACTIONS(898), - [anon_sym_false] = ACTIONS(898), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1016), - [sym_super] = ACTIONS(906), - [sym_crate] = ACTIONS(906), - [sym_metavariable] = ACTIONS(908), - [sym_grit_metavariable] = ACTIONS(984), - [sym_raw_string_literal] = ACTIONS(894), - [sym_float_literal] = ACTIONS(894), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(980), + [anon_sym_dyn] = ACTIONS(888), + [sym_mutable_specifier] = ACTIONS(1020), + [anon_sym_DOT_DOT] = ACTIONS(984), + [anon_sym_DASH] = ACTIONS(894), + [sym_integer_literal] = ACTIONS(896), + [aux_sym_string_literal_token1] = ACTIONS(898), + [sym_char_literal] = ACTIONS(896), + [anon_sym_true] = ACTIONS(900), + [anon_sym_false] = ACTIONS(900), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1022), + [sym_super] = ACTIONS(908), + [sym_crate] = ACTIONS(908), + [sym_metavariable] = ACTIONS(910), + [sym_grit_metavariable] = ACTIONS(986), + [sym_raw_string_literal] = ACTIONS(896), + [sym_float_literal] = ACTIONS(896), [sym_block_comment] = ACTIONS(3), }, [206] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(1511), - [sym_bracketed_type] = STATE(2682), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2683), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1914), - [sym_scoped_identifier] = STATE(1720), - [sym_scoped_type_identifier] = STATE(1646), - [sym_const_block] = STATE(1616), - [sym_pattern] = STATE(1599), - [sym_tuple_pattern] = STATE(1616), - [sym_slice_pattern] = STATE(1616), - [sym_tuple_struct_pattern] = STATE(1616), - [sym_struct_pattern] = STATE(1616), - [sym_remaining_field_pattern] = STATE(1616), - [sym_mut_pattern] = STATE(1616), - [sym_range_pattern] = STATE(1616), - [sym_ref_pattern] = STATE(1616), - [sym_captured_pattern] = STATE(1616), - [sym_reference_pattern] = STATE(1616), - [sym_or_pattern] = STATE(1616), - [sym__literal_pattern] = STATE(1496), - [sym_negative_literal] = STATE(1513), - [sym_string_literal] = STATE(1513), - [sym_boolean_literal] = STATE(1513), - [sym_primitive_type] = STATE(1679), - [sym_identifier] = STATE(1484), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [sym_underscore] = ACTIONS(972), - [anon_sym_LPAREN] = ACTIONS(912), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(854), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(858), - [anon_sym_default] = ACTIONS(916), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(918), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), - [anon_sym_ref] = ACTIONS(878), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(922), - [anon_sym_AMP] = ACTIONS(1018), - [anon_sym_dyn] = ACTIONS(886), - [sym_mutable_specifier] = ACTIONS(980), - [anon_sym_DOT_DOT] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(892), - [sym_integer_literal] = ACTIONS(894), - [aux_sym_string_literal_token1] = ACTIONS(896), - [sym_char_literal] = ACTIONS(894), - [anon_sym_true] = ACTIONS(898), - [anon_sym_false] = ACTIONS(898), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(928), - [sym_super] = ACTIONS(928), - [sym_crate] = ACTIONS(928), - [sym_metavariable] = ACTIONS(930), - [sym_grit_metavariable] = ACTIONS(1020), - [sym_raw_string_literal] = ACTIONS(894), - [sym_float_literal] = ACTIONS(894), - [sym_block_comment] = ACTIONS(3), - }, - [207] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(1509), - [sym_bracketed_type] = STATE(2682), - [sym_lifetime] = STATE(640), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2683), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1914), - [sym_scoped_identifier] = STATE(1720), - [sym_scoped_type_identifier] = STATE(1646), - [sym_const_block] = STATE(1616), - [sym_pattern] = STATE(1614), - [sym_tuple_pattern] = STATE(1616), - [sym_slice_pattern] = STATE(1616), - [sym_tuple_struct_pattern] = STATE(1616), - [sym_struct_pattern] = STATE(1616), - [sym_remaining_field_pattern] = STATE(1616), - [sym_mut_pattern] = STATE(1616), - [sym_range_pattern] = STATE(1616), - [sym_ref_pattern] = STATE(1616), - [sym_captured_pattern] = STATE(1616), - [sym_reference_pattern] = STATE(1616), - [sym_or_pattern] = STATE(1616), - [sym__literal_pattern] = STATE(1496), - [sym_negative_literal] = STATE(1513), - [sym_string_literal] = STATE(1513), - [sym_boolean_literal] = STATE(1513), - [sym_primitive_type] = STATE(1679), - [sym_identifier] = STATE(1484), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [sym_underscore] = ACTIONS(972), - [anon_sym_LPAREN] = ACTIONS(912), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(1010), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(858), - [anon_sym_default] = ACTIONS(916), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(918), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), - [anon_sym_ref] = ACTIONS(878), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(922), - [anon_sym_AMP] = ACTIONS(1018), - [anon_sym_dyn] = ACTIONS(886), - [sym_mutable_specifier] = ACTIONS(1022), - [anon_sym_DOT_DOT] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(892), - [sym_integer_literal] = ACTIONS(894), - [aux_sym_string_literal_token1] = ACTIONS(896), - [sym_char_literal] = ACTIONS(894), - [anon_sym_true] = ACTIONS(898), - [anon_sym_false] = ACTIONS(898), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(928), - [sym_super] = ACTIONS(928), - [sym_crate] = ACTIONS(928), - [sym_metavariable] = ACTIONS(930), - [sym_grit_metavariable] = ACTIONS(1020), - [sym_raw_string_literal] = ACTIONS(894), - [sym_float_literal] = ACTIONS(894), - [sym_block_comment] = ACTIONS(3), - }, - [208] = { [sym__primitive_identifier] = ACTIONS(1024), [anon_sym_SEMI] = ACTIONS(1026), [anon_sym_LPAREN] = ACTIONS(1026), @@ -43913,2485 +43763,2372 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1026), [sym_block_comment] = ACTIONS(3), }, + [207] = { + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(1503), + [sym_bracketed_type] = STATE(2608), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2609), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1893), + [sym_scoped_identifier] = STATE(1670), + [sym_scoped_type_identifier] = STATE(1654), + [sym_const_block] = STATE(1615), + [sym_pattern] = STATE(1617), + [sym_tuple_pattern] = STATE(1615), + [sym_slice_pattern] = STATE(1615), + [sym_tuple_struct_pattern] = STATE(1615), + [sym_struct_pattern] = STATE(1615), + [sym_remaining_field_pattern] = STATE(1615), + [sym_mut_pattern] = STATE(1615), + [sym_range_pattern] = STATE(1615), + [sym_ref_pattern] = STATE(1615), + [sym_captured_pattern] = STATE(1615), + [sym_reference_pattern] = STATE(1615), + [sym_or_pattern] = STATE(1615), + [sym__literal_pattern] = STATE(1492), + [sym_negative_literal] = STATE(1521), + [sym_string_literal] = STATE(1521), + [sym_boolean_literal] = STATE(1521), + [sym_primitive_type] = STATE(1692), + [sym_identifier] = STATE(1477), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [sym_underscore] = ACTIONS(974), + [anon_sym_LPAREN] = ACTIONS(848), + [anon_sym_LBRACK] = ACTIONS(852), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(856), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(860), + [anon_sym_default] = ACTIONS(862), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(870), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), + [anon_sym_ref] = ACTIONS(880), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(980), + [anon_sym_dyn] = ACTIONS(888), + [sym_mutable_specifier] = ACTIONS(982), + [anon_sym_DOT_DOT] = ACTIONS(984), + [anon_sym_DASH] = ACTIONS(894), + [sym_integer_literal] = ACTIONS(896), + [aux_sym_string_literal_token1] = ACTIONS(898), + [sym_char_literal] = ACTIONS(896), + [anon_sym_true] = ACTIONS(900), + [anon_sym_false] = ACTIONS(900), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1028), + [sym_super] = ACTIONS(908), + [sym_crate] = ACTIONS(908), + [sym_metavariable] = ACTIONS(910), + [sym_grit_metavariable] = ACTIONS(986), + [sym_raw_string_literal] = ACTIONS(896), + [sym_float_literal] = ACTIONS(896), + [sym_block_comment] = ACTIONS(3), + }, + [208] = { + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(1503), + [sym_bracketed_type] = STATE(2608), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2609), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1893), + [sym_scoped_identifier] = STATE(1670), + [sym_scoped_type_identifier] = STATE(1654), + [sym_const_block] = STATE(1615), + [sym_pattern] = STATE(1617), + [sym_tuple_pattern] = STATE(1615), + [sym_slice_pattern] = STATE(1615), + [sym_tuple_struct_pattern] = STATE(1615), + [sym_struct_pattern] = STATE(1615), + [sym_remaining_field_pattern] = STATE(1615), + [sym_mut_pattern] = STATE(1615), + [sym_range_pattern] = STATE(1615), + [sym_ref_pattern] = STATE(1615), + [sym_captured_pattern] = STATE(1615), + [sym_reference_pattern] = STATE(1615), + [sym_or_pattern] = STATE(1615), + [sym__literal_pattern] = STATE(1492), + [sym_negative_literal] = STATE(1521), + [sym_string_literal] = STATE(1521), + [sym_boolean_literal] = STATE(1521), + [sym_primitive_type] = STATE(1692), + [sym_identifier] = STATE(1477), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [sym_underscore] = ACTIONS(974), + [anon_sym_LPAREN] = ACTIONS(848), + [anon_sym_LBRACK] = ACTIONS(852), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(856), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(860), + [anon_sym_default] = ACTIONS(862), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(870), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), + [anon_sym_ref] = ACTIONS(880), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(980), + [anon_sym_dyn] = ACTIONS(888), + [sym_mutable_specifier] = ACTIONS(982), + [anon_sym_DOT_DOT] = ACTIONS(984), + [anon_sym_DASH] = ACTIONS(894), + [sym_integer_literal] = ACTIONS(896), + [aux_sym_string_literal_token1] = ACTIONS(898), + [sym_char_literal] = ACTIONS(896), + [anon_sym_true] = ACTIONS(900), + [anon_sym_false] = ACTIONS(900), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(908), + [sym_super] = ACTIONS(908), + [sym_crate] = ACTIONS(908), + [sym_metavariable] = ACTIONS(910), + [sym_grit_metavariable] = ACTIONS(986), + [sym_raw_string_literal] = ACTIONS(896), + [sym_float_literal] = ACTIONS(896), + [sym_block_comment] = ACTIONS(3), + }, [209] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(1509), - [sym_bracketed_type] = STATE(2682), - [sym_lifetime] = STATE(654), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2683), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1914), - [sym_scoped_identifier] = STATE(1720), - [sym_scoped_type_identifier] = STATE(1646), - [sym_const_block] = STATE(1616), - [sym_pattern] = STATE(1614), - [sym_tuple_pattern] = STATE(1616), - [sym_slice_pattern] = STATE(1616), - [sym_tuple_struct_pattern] = STATE(1616), - [sym_struct_pattern] = STATE(1616), - [sym_remaining_field_pattern] = STATE(1616), - [sym_mut_pattern] = STATE(1616), - [sym_range_pattern] = STATE(1616), - [sym_ref_pattern] = STATE(1616), - [sym_captured_pattern] = STATE(1616), - [sym_reference_pattern] = STATE(1616), - [sym_or_pattern] = STATE(1616), - [sym__literal_pattern] = STATE(1496), - [sym_negative_literal] = STATE(1513), - [sym_string_literal] = STATE(1513), - [sym_boolean_literal] = STATE(1513), - [sym_primitive_type] = STATE(1679), - [sym_identifier] = STATE(1484), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [sym_underscore] = ACTIONS(972), - [anon_sym_LPAREN] = ACTIONS(912), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(1010), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(858), - [anon_sym_default] = ACTIONS(916), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(918), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), - [anon_sym_ref] = ACTIONS(878), + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(1531), + [sym_bracketed_type] = STATE(2608), + [sym_lifetime] = STATE(659), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2609), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1893), + [sym_scoped_identifier] = STATE(1670), + [sym_scoped_type_identifier] = STATE(1654), + [sym_const_block] = STATE(1615), + [sym_pattern] = STATE(1567), + [sym_tuple_pattern] = STATE(1615), + [sym_slice_pattern] = STATE(1615), + [sym_tuple_struct_pattern] = STATE(1615), + [sym_struct_pattern] = STATE(1615), + [sym_remaining_field_pattern] = STATE(1615), + [sym_mut_pattern] = STATE(1615), + [sym_range_pattern] = STATE(1615), + [sym_ref_pattern] = STATE(1615), + [sym_captured_pattern] = STATE(1615), + [sym_reference_pattern] = STATE(1615), + [sym_or_pattern] = STATE(1615), + [sym__literal_pattern] = STATE(1492), + [sym_negative_literal] = STATE(1521), + [sym_string_literal] = STATE(1521), + [sym_boolean_literal] = STATE(1521), + [sym_primitive_type] = STATE(1692), + [sym_identifier] = STATE(1477), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [sym_underscore] = ACTIONS(974), + [anon_sym_LPAREN] = ACTIONS(848), + [anon_sym_LBRACK] = ACTIONS(852), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(1012), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(860), + [anon_sym_default] = ACTIONS(862), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(870), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), + [anon_sym_ref] = ACTIONS(880), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(922), - [anon_sym_AMP] = ACTIONS(1018), - [anon_sym_dyn] = ACTIONS(886), - [sym_mutable_specifier] = ACTIONS(1028), - [anon_sym_DOT_DOT] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(892), - [sym_integer_literal] = ACTIONS(894), - [aux_sym_string_literal_token1] = ACTIONS(896), - [sym_char_literal] = ACTIONS(894), - [anon_sym_true] = ACTIONS(898), - [anon_sym_false] = ACTIONS(898), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1030), - [sym_super] = ACTIONS(928), - [sym_crate] = ACTIONS(928), - [sym_metavariable] = ACTIONS(930), - [sym_grit_metavariable] = ACTIONS(1020), - [sym_raw_string_literal] = ACTIONS(894), - [sym_float_literal] = ACTIONS(894), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(980), + [anon_sym_dyn] = ACTIONS(888), + [sym_mutable_specifier] = ACTIONS(1030), + [anon_sym_DOT_DOT] = ACTIONS(984), + [anon_sym_DASH] = ACTIONS(894), + [sym_integer_literal] = ACTIONS(896), + [aux_sym_string_literal_token1] = ACTIONS(898), + [sym_char_literal] = ACTIONS(896), + [anon_sym_true] = ACTIONS(900), + [anon_sym_false] = ACTIONS(900), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(908), + [sym_super] = ACTIONS(908), + [sym_crate] = ACTIONS(908), + [sym_metavariable] = ACTIONS(910), + [sym_grit_metavariable] = ACTIONS(986), + [sym_raw_string_literal] = ACTIONS(896), + [sym_float_literal] = ACTIONS(896), [sym_block_comment] = ACTIONS(3), }, [210] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(1509), - [sym_bracketed_type] = STATE(2640), - [sym_lifetime] = STATE(654), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2728), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1925), - [sym_scoped_identifier] = STATE(1672), - [sym_scoped_type_identifier] = STATE(1646), - [sym_const_block] = STATE(1616), - [sym_pattern] = STATE(1614), - [sym_tuple_pattern] = STATE(1616), - [sym_slice_pattern] = STATE(1616), - [sym_tuple_struct_pattern] = STATE(1616), - [sym_struct_pattern] = STATE(1616), - [sym_remaining_field_pattern] = STATE(1616), - [sym_mut_pattern] = STATE(1616), - [sym_range_pattern] = STATE(1616), - [sym_ref_pattern] = STATE(1616), - [sym_captured_pattern] = STATE(1616), - [sym_reference_pattern] = STATE(1616), - [sym_or_pattern] = STATE(1616), - [sym__literal_pattern] = STATE(1496), - [sym_negative_literal] = STATE(1513), - [sym_string_literal] = STATE(1513), - [sym_boolean_literal] = STATE(1513), - [sym_primitive_type] = STATE(1677), - [sym_identifier] = STATE(1481), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [sym_underscore] = ACTIONS(972), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(1010), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(858), - [anon_sym_default] = ACTIONS(860), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(868), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), - [anon_sym_ref] = ACTIONS(878), + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(1531), + [sym_bracketed_type] = STATE(2686), + [sym_lifetime] = STATE(645), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2687), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1926), + [sym_scoped_identifier] = STATE(1726), + [sym_scoped_type_identifier] = STATE(1654), + [sym_const_block] = STATE(1615), + [sym_pattern] = STATE(1567), + [sym_tuple_pattern] = STATE(1615), + [sym_slice_pattern] = STATE(1615), + [sym_tuple_struct_pattern] = STATE(1615), + [sym_struct_pattern] = STATE(1615), + [sym_remaining_field_pattern] = STATE(1615), + [sym_mut_pattern] = STATE(1615), + [sym_range_pattern] = STATE(1615), + [sym_ref_pattern] = STATE(1615), + [sym_captured_pattern] = STATE(1615), + [sym_reference_pattern] = STATE(1615), + [sym_or_pattern] = STATE(1615), + [sym__literal_pattern] = STATE(1492), + [sym_negative_literal] = STATE(1521), + [sym_string_literal] = STATE(1521), + [sym_boolean_literal] = STATE(1521), + [sym_primitive_type] = STATE(1691), + [sym_identifier] = STATE(1472), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [sym_underscore] = ACTIONS(974), + [anon_sym_LPAREN] = ACTIONS(916), + [anon_sym_LBRACK] = ACTIONS(852), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(1012), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(860), + [anon_sym_default] = ACTIONS(920), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(922), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), + [anon_sym_ref] = ACTIONS(880), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(880), - [anon_sym_AMP] = ACTIONS(978), - [anon_sym_dyn] = ACTIONS(886), + [anon_sym_COLON_COLON] = ACTIONS(926), + [anon_sym_AMP] = ACTIONS(1014), + [anon_sym_dyn] = ACTIONS(888), [sym_mutable_specifier] = ACTIONS(1032), - [anon_sym_DOT_DOT] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(892), - [sym_integer_literal] = ACTIONS(894), - [aux_sym_string_literal_token1] = ACTIONS(896), - [sym_char_literal] = ACTIONS(894), - [anon_sym_true] = ACTIONS(898), - [anon_sym_false] = ACTIONS(898), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), + [anon_sym_DOT_DOT] = ACTIONS(984), + [anon_sym_DASH] = ACTIONS(894), + [sym_integer_literal] = ACTIONS(896), + [aux_sym_string_literal_token1] = ACTIONS(898), + [sym_char_literal] = ACTIONS(896), + [anon_sym_true] = ACTIONS(900), + [anon_sym_false] = ACTIONS(900), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), [sym_self] = ACTIONS(1034), - [sym_super] = ACTIONS(906), - [sym_crate] = ACTIONS(906), - [sym_metavariable] = ACTIONS(908), - [sym_grit_metavariable] = ACTIONS(984), - [sym_raw_string_literal] = ACTIONS(894), - [sym_float_literal] = ACTIONS(894), + [sym_super] = ACTIONS(932), + [sym_crate] = ACTIONS(932), + [sym_metavariable] = ACTIONS(934), + [sym_grit_metavariable] = ACTIONS(1018), + [sym_raw_string_literal] = ACTIONS(896), + [sym_float_literal] = ACTIONS(896), [sym_block_comment] = ACTIONS(3), }, [211] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(1511), - [sym_bracketed_type] = STATE(2682), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2683), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1914), - [sym_scoped_identifier] = STATE(1720), - [sym_scoped_type_identifier] = STATE(1646), - [sym_const_block] = STATE(1616), - [sym_pattern] = STATE(1599), - [sym_tuple_pattern] = STATE(1616), - [sym_slice_pattern] = STATE(1616), - [sym_tuple_struct_pattern] = STATE(1616), - [sym_struct_pattern] = STATE(1616), - [sym_remaining_field_pattern] = STATE(1616), - [sym_mut_pattern] = STATE(1616), - [sym_range_pattern] = STATE(1616), - [sym_ref_pattern] = STATE(1616), - [sym_captured_pattern] = STATE(1616), - [sym_reference_pattern] = STATE(1616), - [sym_or_pattern] = STATE(1616), - [sym__literal_pattern] = STATE(1496), - [sym_negative_literal] = STATE(1513), - [sym_string_literal] = STATE(1513), - [sym_boolean_literal] = STATE(1513), - [sym_primitive_type] = STATE(1679), - [sym_identifier] = STATE(1484), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [sym_underscore] = ACTIONS(972), - [anon_sym_LPAREN] = ACTIONS(912), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(854), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(858), - [anon_sym_default] = ACTIONS(916), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(918), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), - [anon_sym_ref] = ACTIONS(878), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(922), - [anon_sym_AMP] = ACTIONS(1018), - [anon_sym_dyn] = ACTIONS(886), - [sym_mutable_specifier] = ACTIONS(980), - [anon_sym_DOT_DOT] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(892), - [sym_integer_literal] = ACTIONS(894), - [aux_sym_string_literal_token1] = ACTIONS(896), - [sym_char_literal] = ACTIONS(894), - [anon_sym_true] = ACTIONS(898), - [anon_sym_false] = ACTIONS(898), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), + [sym__primitive_identifier] = ACTIONS(1036), + [anon_sym_SEMI] = ACTIONS(1038), + [anon_sym_LPAREN] = ACTIONS(1038), + [anon_sym_RPAREN] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(1038), + [anon_sym_RBRACE] = ACTIONS(1038), + [anon_sym_EQ_GT] = ACTIONS(1038), + [anon_sym_LBRACK] = ACTIONS(1038), + [anon_sym_RBRACK] = ACTIONS(1038), + [anon_sym_COLON] = ACTIONS(1036), + [anon_sym_PLUS] = ACTIONS(1036), + [anon_sym_STAR] = ACTIONS(1036), + [anon_sym_QMARK] = ACTIONS(1038), + [anon_sym_SQUOTE] = ACTIONS(1036), + [anon_sym_as] = ACTIONS(1036), + [anon_sym_async] = ACTIONS(1036), + [anon_sym_break] = ACTIONS(1036), + [anon_sym_const] = ACTIONS(1036), + [anon_sym_continue] = ACTIONS(1036), + [anon_sym_default] = ACTIONS(1036), + [anon_sym_for] = ACTIONS(1036), + [anon_sym_if] = ACTIONS(1036), + [anon_sym_loop] = ACTIONS(1036), + [anon_sym_match] = ACTIONS(1036), + [anon_sym_return] = ACTIONS(1036), + [anon_sym_union] = ACTIONS(1036), + [anon_sym_unsafe] = ACTIONS(1036), + [anon_sym_while] = ACTIONS(1036), + [anon_sym_BANG] = ACTIONS(1036), + [anon_sym_EQ] = ACTIONS(1036), + [anon_sym_COMMA] = ACTIONS(1038), + [anon_sym_LT] = ACTIONS(1036), + [anon_sym_GT] = ACTIONS(1036), + [anon_sym_else] = ACTIONS(1036), + [anon_sym_COLON_COLON] = ACTIONS(1038), + [anon_sym_AMP] = ACTIONS(1036), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1038), + [anon_sym_DOT_DOT] = ACTIONS(1036), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1038), + [anon_sym_DASH] = ACTIONS(1036), + [anon_sym_AMP_AMP] = ACTIONS(1038), + [anon_sym_PIPE_PIPE] = ACTIONS(1038), + [anon_sym_PIPE] = ACTIONS(1036), + [anon_sym_CARET] = ACTIONS(1036), + [anon_sym_EQ_EQ] = ACTIONS(1038), + [anon_sym_BANG_EQ] = ACTIONS(1038), + [anon_sym_LT_EQ] = ACTIONS(1038), + [anon_sym_GT_EQ] = ACTIONS(1038), + [anon_sym_LT_LT] = ACTIONS(1036), + [anon_sym_GT_GT] = ACTIONS(1036), + [anon_sym_SLASH] = ACTIONS(1036), + [anon_sym_PERCENT] = ACTIONS(1036), + [anon_sym_PLUS_EQ] = ACTIONS(1038), + [anon_sym_DASH_EQ] = ACTIONS(1038), + [anon_sym_STAR_EQ] = ACTIONS(1038), + [anon_sym_SLASH_EQ] = ACTIONS(1038), + [anon_sym_PERCENT_EQ] = ACTIONS(1038), + [anon_sym_AMP_EQ] = ACTIONS(1038), + [anon_sym_PIPE_EQ] = ACTIONS(1038), + [anon_sym_CARET_EQ] = ACTIONS(1038), + [anon_sym_LT_LT_EQ] = ACTIONS(1038), + [anon_sym_GT_GT_EQ] = ACTIONS(1038), + [anon_sym_yield] = ACTIONS(1036), + [anon_sym_move] = ACTIONS(1036), + [anon_sym_DOT] = ACTIONS(1036), + [sym_integer_literal] = ACTIONS(1038), + [aux_sym_string_literal_token1] = ACTIONS(1038), + [sym_char_literal] = ACTIONS(1038), + [anon_sym_true] = ACTIONS(1036), + [anon_sym_false] = ACTIONS(1036), + [anon_sym_u8] = ACTIONS(1036), + [anon_sym_i8] = ACTIONS(1036), + [anon_sym_u16] = ACTIONS(1036), + [anon_sym_i16] = ACTIONS(1036), + [anon_sym_u32] = ACTIONS(1036), + [anon_sym_i32] = ACTIONS(1036), + [anon_sym_u64] = ACTIONS(1036), + [anon_sym_i64] = ACTIONS(1036), + [anon_sym_u128] = ACTIONS(1036), + [anon_sym_i128] = ACTIONS(1036), + [anon_sym_isize] = ACTIONS(1036), + [anon_sym_usize] = ACTIONS(1036), + [anon_sym_f32] = ACTIONS(1036), + [anon_sym_f64] = ACTIONS(1036), + [anon_sym_bool] = ACTIONS(1036), + [anon_sym_str] = ACTIONS(1036), + [anon_sym_char] = ACTIONS(1036), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(1038), [sym_self] = ACTIONS(1036), - [sym_super] = ACTIONS(928), - [sym_crate] = ACTIONS(928), - [sym_metavariable] = ACTIONS(930), - [sym_grit_metavariable] = ACTIONS(1020), - [sym_raw_string_literal] = ACTIONS(894), - [sym_float_literal] = ACTIONS(894), + [sym_super] = ACTIONS(1036), + [sym_crate] = ACTIONS(1036), + [sym_metavariable] = ACTIONS(1038), + [sym_grit_metavariable] = ACTIONS(1038), + [sym_raw_string_literal] = ACTIONS(1038), + [sym_float_literal] = ACTIONS(1038), [sym_block_comment] = ACTIONS(3), }, [212] = { - [sym__primitive_identifier] = ACTIONS(1038), - [anon_sym_SEMI] = ACTIONS(1040), - [anon_sym_LPAREN] = ACTIONS(1040), - [anon_sym_RPAREN] = ACTIONS(1040), - [anon_sym_LBRACE] = ACTIONS(1040), - [anon_sym_RBRACE] = ACTIONS(1040), - [anon_sym_EQ_GT] = ACTIONS(1040), - [anon_sym_LBRACK] = ACTIONS(1040), - [anon_sym_RBRACK] = ACTIONS(1040), - [anon_sym_COLON] = ACTIONS(1038), - [anon_sym_PLUS] = ACTIONS(1038), - [anon_sym_STAR] = ACTIONS(1038), - [anon_sym_QMARK] = ACTIONS(1040), - [anon_sym_SQUOTE] = ACTIONS(1038), - [anon_sym_as] = ACTIONS(1038), - [anon_sym_async] = ACTIONS(1038), - [anon_sym_break] = ACTIONS(1038), - [anon_sym_const] = ACTIONS(1038), - [anon_sym_continue] = ACTIONS(1038), - [anon_sym_default] = ACTIONS(1038), - [anon_sym_for] = ACTIONS(1038), - [anon_sym_if] = ACTIONS(1038), - [anon_sym_loop] = ACTIONS(1038), - [anon_sym_match] = ACTIONS(1038), - [anon_sym_return] = ACTIONS(1038), - [anon_sym_union] = ACTIONS(1038), - [anon_sym_unsafe] = ACTIONS(1038), - [anon_sym_while] = ACTIONS(1038), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_EQ] = ACTIONS(1038), - [anon_sym_COMMA] = ACTIONS(1040), - [anon_sym_LT] = ACTIONS(1038), - [anon_sym_GT] = ACTIONS(1038), - [anon_sym_else] = ACTIONS(1038), - [anon_sym_COLON_COLON] = ACTIONS(1040), - [anon_sym_AMP] = ACTIONS(1038), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1040), - [anon_sym_DOT_DOT] = ACTIONS(1038), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1040), - [anon_sym_DASH] = ACTIONS(1038), - [anon_sym_AMP_AMP] = ACTIONS(1040), - [anon_sym_PIPE_PIPE] = ACTIONS(1040), - [anon_sym_PIPE] = ACTIONS(1038), - [anon_sym_CARET] = ACTIONS(1038), - [anon_sym_EQ_EQ] = ACTIONS(1040), - [anon_sym_BANG_EQ] = ACTIONS(1040), - [anon_sym_LT_EQ] = ACTIONS(1040), - [anon_sym_GT_EQ] = ACTIONS(1040), - [anon_sym_LT_LT] = ACTIONS(1038), - [anon_sym_GT_GT] = ACTIONS(1038), - [anon_sym_SLASH] = ACTIONS(1038), - [anon_sym_PERCENT] = ACTIONS(1038), - [anon_sym_PLUS_EQ] = ACTIONS(1040), - [anon_sym_DASH_EQ] = ACTIONS(1040), - [anon_sym_STAR_EQ] = ACTIONS(1040), - [anon_sym_SLASH_EQ] = ACTIONS(1040), - [anon_sym_PERCENT_EQ] = ACTIONS(1040), - [anon_sym_AMP_EQ] = ACTIONS(1040), - [anon_sym_PIPE_EQ] = ACTIONS(1040), - [anon_sym_CARET_EQ] = ACTIONS(1040), - [anon_sym_LT_LT_EQ] = ACTIONS(1040), - [anon_sym_GT_GT_EQ] = ACTIONS(1040), - [anon_sym_yield] = ACTIONS(1038), - [anon_sym_move] = ACTIONS(1038), - [anon_sym_DOT] = ACTIONS(1038), - [sym_integer_literal] = ACTIONS(1040), - [aux_sym_string_literal_token1] = ACTIONS(1040), - [sym_char_literal] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1038), - [anon_sym_false] = ACTIONS(1038), - [anon_sym_u8] = ACTIONS(1038), - [anon_sym_i8] = ACTIONS(1038), - [anon_sym_u16] = ACTIONS(1038), - [anon_sym_i16] = ACTIONS(1038), - [anon_sym_u32] = ACTIONS(1038), - [anon_sym_i32] = ACTIONS(1038), - [anon_sym_u64] = ACTIONS(1038), - [anon_sym_i64] = ACTIONS(1038), - [anon_sym_u128] = ACTIONS(1038), - [anon_sym_i128] = ACTIONS(1038), - [anon_sym_isize] = ACTIONS(1038), - [anon_sym_usize] = ACTIONS(1038), - [anon_sym_f32] = ACTIONS(1038), - [anon_sym_f64] = ACTIONS(1038), - [anon_sym_bool] = ACTIONS(1038), - [anon_sym_str] = ACTIONS(1038), - [anon_sym_char] = ACTIONS(1038), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1040), - [sym_self] = ACTIONS(1038), - [sym_super] = ACTIONS(1038), - [sym_crate] = ACTIONS(1038), - [sym_metavariable] = ACTIONS(1040), - [sym_grit_metavariable] = ACTIONS(1040), - [sym_raw_string_literal] = ACTIONS(1040), - [sym_float_literal] = ACTIONS(1040), + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(1503), + [sym_bracketed_type] = STATE(2686), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2687), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1926), + [sym_scoped_identifier] = STATE(1726), + [sym_scoped_type_identifier] = STATE(1654), + [sym_const_block] = STATE(1615), + [sym_pattern] = STATE(1617), + [sym_tuple_pattern] = STATE(1615), + [sym_slice_pattern] = STATE(1615), + [sym_tuple_struct_pattern] = STATE(1615), + [sym_struct_pattern] = STATE(1615), + [sym_remaining_field_pattern] = STATE(1615), + [sym_mut_pattern] = STATE(1615), + [sym_range_pattern] = STATE(1615), + [sym_ref_pattern] = STATE(1615), + [sym_captured_pattern] = STATE(1615), + [sym_reference_pattern] = STATE(1615), + [sym_or_pattern] = STATE(1615), + [sym__literal_pattern] = STATE(1492), + [sym_negative_literal] = STATE(1521), + [sym_string_literal] = STATE(1521), + [sym_boolean_literal] = STATE(1521), + [sym_primitive_type] = STATE(1691), + [sym_identifier] = STATE(1472), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [sym_underscore] = ACTIONS(974), + [anon_sym_LPAREN] = ACTIONS(916), + [anon_sym_LBRACK] = ACTIONS(852), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(856), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(860), + [anon_sym_default] = ACTIONS(920), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(922), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), + [anon_sym_ref] = ACTIONS(880), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(926), + [anon_sym_AMP] = ACTIONS(1014), + [anon_sym_dyn] = ACTIONS(888), + [sym_mutable_specifier] = ACTIONS(982), + [anon_sym_DOT_DOT] = ACTIONS(984), + [anon_sym_DASH] = ACTIONS(894), + [sym_integer_literal] = ACTIONS(896), + [aux_sym_string_literal_token1] = ACTIONS(898), + [sym_char_literal] = ACTIONS(896), + [anon_sym_true] = ACTIONS(900), + [anon_sym_false] = ACTIONS(900), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1040), + [sym_super] = ACTIONS(932), + [sym_crate] = ACTIONS(932), + [sym_metavariable] = ACTIONS(934), + [sym_grit_metavariable] = ACTIONS(1018), + [sym_raw_string_literal] = ACTIONS(896), + [sym_float_literal] = ACTIONS(896), [sym_block_comment] = ACTIONS(3), }, [213] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(1511), - [sym_bracketed_type] = STATE(2640), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2728), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1925), - [sym_scoped_identifier] = STATE(1672), - [sym_scoped_type_identifier] = STATE(1646), - [sym_const_block] = STATE(1616), - [sym_pattern] = STATE(1599), - [sym_tuple_pattern] = STATE(1616), - [sym_slice_pattern] = STATE(1616), - [sym_tuple_struct_pattern] = STATE(1616), - [sym_struct_pattern] = STATE(1616), - [sym_remaining_field_pattern] = STATE(1616), - [sym_mut_pattern] = STATE(1616), - [sym_range_pattern] = STATE(1616), - [sym_ref_pattern] = STATE(1616), - [sym_captured_pattern] = STATE(1616), - [sym_reference_pattern] = STATE(1616), - [sym_or_pattern] = STATE(1616), - [sym__literal_pattern] = STATE(1496), - [sym_negative_literal] = STATE(1513), - [sym_string_literal] = STATE(1513), - [sym_boolean_literal] = STATE(1513), - [sym_primitive_type] = STATE(1677), - [sym_identifier] = STATE(1481), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [sym_underscore] = ACTIONS(972), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(854), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(858), - [anon_sym_default] = ACTIONS(860), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(868), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), - [anon_sym_ref] = ACTIONS(878), + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(1531), + [sym_bracketed_type] = STATE(2693), + [sym_lifetime] = STATE(659), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2694), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1946), + [sym_scoped_identifier] = STATE(1688), + [sym_scoped_type_identifier] = STATE(1654), + [sym_const_block] = STATE(1615), + [sym_pattern] = STATE(1567), + [sym_tuple_pattern] = STATE(1615), + [sym_slice_pattern] = STATE(1615), + [sym_tuple_struct_pattern] = STATE(1615), + [sym_struct_pattern] = STATE(1615), + [sym_remaining_field_pattern] = STATE(1615), + [sym_mut_pattern] = STATE(1615), + [sym_range_pattern] = STATE(1615), + [sym_ref_pattern] = STATE(1615), + [sym_captured_pattern] = STATE(1615), + [sym_reference_pattern] = STATE(1615), + [sym_or_pattern] = STATE(1615), + [sym__literal_pattern] = STATE(1492), + [sym_negative_literal] = STATE(1521), + [sym_string_literal] = STATE(1521), + [sym_boolean_literal] = STATE(1521), + [sym_primitive_type] = STATE(1686), + [sym_identifier] = STATE(1480), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [sym_underscore] = ACTIONS(974), + [anon_sym_LPAREN] = ACTIONS(988), + [anon_sym_LBRACK] = ACTIONS(852), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(1012), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(860), + [anon_sym_default] = ACTIONS(992), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(994), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), + [anon_sym_ref] = ACTIONS(880), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(880), - [anon_sym_AMP] = ACTIONS(978), - [anon_sym_dyn] = ACTIONS(886), - [sym_mutable_specifier] = ACTIONS(980), - [anon_sym_DOT_DOT] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(892), - [sym_integer_literal] = ACTIONS(894), - [aux_sym_string_literal_token1] = ACTIONS(896), - [sym_char_literal] = ACTIONS(894), - [anon_sym_true] = ACTIONS(898), - [anon_sym_false] = ACTIONS(898), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(906), - [sym_super] = ACTIONS(906), - [sym_crate] = ACTIONS(906), - [sym_metavariable] = ACTIONS(908), - [sym_grit_metavariable] = ACTIONS(984), - [sym_raw_string_literal] = ACTIONS(894), - [sym_float_literal] = ACTIONS(894), + [anon_sym_COLON_COLON] = ACTIONS(998), + [anon_sym_AMP] = ACTIONS(1000), + [anon_sym_dyn] = ACTIONS(888), + [sym_mutable_specifier] = ACTIONS(1042), + [anon_sym_DOT_DOT] = ACTIONS(984), + [anon_sym_DASH] = ACTIONS(894), + [sym_integer_literal] = ACTIONS(896), + [aux_sym_string_literal_token1] = ACTIONS(898), + [sym_char_literal] = ACTIONS(896), + [anon_sym_true] = ACTIONS(900), + [anon_sym_false] = ACTIONS(900), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1002), + [sym_super] = ACTIONS(1002), + [sym_crate] = ACTIONS(1002), + [sym_metavariable] = ACTIONS(1004), + [sym_grit_metavariable] = ACTIONS(1006), + [sym_raw_string_literal] = ACTIONS(896), + [sym_float_literal] = ACTIONS(896), [sym_block_comment] = ACTIONS(3), }, [214] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(1511), - [sym_bracketed_type] = STATE(2689), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2690), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1930), - [sym_scoped_identifier] = STATE(1683), - [sym_scoped_type_identifier] = STATE(1646), - [sym_const_block] = STATE(1616), - [sym_pattern] = STATE(1599), - [sym_tuple_pattern] = STATE(1616), - [sym_slice_pattern] = STATE(1616), - [sym_tuple_struct_pattern] = STATE(1616), - [sym_struct_pattern] = STATE(1616), - [sym_remaining_field_pattern] = STATE(1616), - [sym_mut_pattern] = STATE(1616), - [sym_range_pattern] = STATE(1616), - [sym_ref_pattern] = STATE(1616), - [sym_captured_pattern] = STATE(1616), - [sym_reference_pattern] = STATE(1616), - [sym_or_pattern] = STATE(1616), - [sym__literal_pattern] = STATE(1496), - [sym_negative_literal] = STATE(1513), - [sym_string_literal] = STATE(1513), - [sym_boolean_literal] = STATE(1513), - [sym_primitive_type] = STATE(1701), - [sym_identifier] = STATE(1483), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [sym_underscore] = ACTIONS(972), - [anon_sym_LPAREN] = ACTIONS(986), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(854), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(858), - [anon_sym_default] = ACTIONS(990), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(992), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), - [anon_sym_ref] = ACTIONS(878), + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(1503), + [sym_bracketed_type] = STATE(2693), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2694), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1946), + [sym_scoped_identifier] = STATE(1688), + [sym_scoped_type_identifier] = STATE(1654), + [sym_const_block] = STATE(1615), + [sym_pattern] = STATE(1617), + [sym_tuple_pattern] = STATE(1615), + [sym_slice_pattern] = STATE(1615), + [sym_tuple_struct_pattern] = STATE(1615), + [sym_struct_pattern] = STATE(1615), + [sym_remaining_field_pattern] = STATE(1615), + [sym_mut_pattern] = STATE(1615), + [sym_range_pattern] = STATE(1615), + [sym_ref_pattern] = STATE(1615), + [sym_captured_pattern] = STATE(1615), + [sym_reference_pattern] = STATE(1615), + [sym_or_pattern] = STATE(1615), + [sym__literal_pattern] = STATE(1492), + [sym_negative_literal] = STATE(1521), + [sym_string_literal] = STATE(1521), + [sym_boolean_literal] = STATE(1521), + [sym_primitive_type] = STATE(1686), + [sym_identifier] = STATE(1480), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [sym_underscore] = ACTIONS(974), + [anon_sym_LPAREN] = ACTIONS(988), + [anon_sym_LBRACK] = ACTIONS(852), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(856), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(860), + [anon_sym_default] = ACTIONS(992), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(994), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), + [anon_sym_ref] = ACTIONS(880), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(996), - [anon_sym_AMP] = ACTIONS(998), - [anon_sym_dyn] = ACTIONS(886), - [sym_mutable_specifier] = ACTIONS(980), - [anon_sym_DOT_DOT] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(892), - [sym_integer_literal] = ACTIONS(894), - [aux_sym_string_literal_token1] = ACTIONS(896), - [sym_char_literal] = ACTIONS(894), - [anon_sym_true] = ACTIONS(898), - [anon_sym_false] = ACTIONS(898), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1000), - [sym_super] = ACTIONS(1000), - [sym_crate] = ACTIONS(1000), - [sym_metavariable] = ACTIONS(1002), - [sym_grit_metavariable] = ACTIONS(1004), - [sym_raw_string_literal] = ACTIONS(894), - [sym_float_literal] = ACTIONS(894), + [anon_sym_COLON_COLON] = ACTIONS(998), + [anon_sym_AMP] = ACTIONS(1000), + [anon_sym_dyn] = ACTIONS(888), + [sym_mutable_specifier] = ACTIONS(982), + [anon_sym_DOT_DOT] = ACTIONS(984), + [anon_sym_DASH] = ACTIONS(894), + [sym_integer_literal] = ACTIONS(896), + [aux_sym_string_literal_token1] = ACTIONS(898), + [sym_char_literal] = ACTIONS(896), + [anon_sym_true] = ACTIONS(900), + [anon_sym_false] = ACTIONS(900), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1002), + [sym_super] = ACTIONS(1002), + [sym_crate] = ACTIONS(1002), + [sym_metavariable] = ACTIONS(1004), + [sym_grit_metavariable] = ACTIONS(1006), + [sym_raw_string_literal] = ACTIONS(896), + [sym_float_literal] = ACTIONS(896), [sym_block_comment] = ACTIONS(3), }, [215] = { - [sym_bracketed_type] = STATE(2658), - [sym_generic_type] = STATE(2655), - [sym_generic_type_with_turbofish] = STATE(2638), - [sym_macro_invocation] = STATE(1616), - [sym_scoped_identifier] = STATE(1451), - [sym_scoped_type_identifier] = STATE(2231), - [sym_const_block] = STATE(1616), - [sym_pattern] = STATE(1590), - [sym_tuple_pattern] = STATE(1616), - [sym_slice_pattern] = STATE(1616), - [sym_tuple_struct_pattern] = STATE(1616), - [sym_struct_pattern] = STATE(1616), - [sym_remaining_field_pattern] = STATE(1616), - [sym_mut_pattern] = STATE(1616), - [sym_range_pattern] = STATE(1616), - [sym_ref_pattern] = STATE(1616), - [sym_captured_pattern] = STATE(1616), - [sym_reference_pattern] = STATE(1616), - [sym_or_pattern] = STATE(1616), - [sym__literal_pattern] = STATE(1496), - [sym_negative_literal] = STATE(1513), - [sym_string_literal] = STATE(1513), - [sym_boolean_literal] = STATE(1513), - [sym_primitive_type] = STATE(1471), - [sym_identifier] = STATE(1428), - [sym__primitive_identifier] = ACTIONS(1042), - [sym_underscore] = ACTIONS(972), - [anon_sym_LPAREN] = ACTIONS(1044), - [anon_sym_LBRACE] = ACTIONS(1044), - [anon_sym_LBRACK] = ACTIONS(1044), - [anon_sym_STAR] = ACTIONS(1044), - [anon_sym_SQUOTE] = ACTIONS(1042), - [anon_sym_async] = ACTIONS(1042), - [anon_sym_break] = ACTIONS(1042), - [anon_sym_const] = ACTIONS(1042), - [anon_sym_continue] = ACTIONS(1042), - [anon_sym_default] = ACTIONS(1042), - [anon_sym_for] = ACTIONS(1042), - [anon_sym_if] = ACTIONS(1042), - [anon_sym_loop] = ACTIONS(1042), - [anon_sym_match] = ACTIONS(1042), - [anon_sym_return] = ACTIONS(1042), - [anon_sym_union] = ACTIONS(1042), - [anon_sym_unsafe] = ACTIONS(1042), - [anon_sym_while] = ACTIONS(1042), - [anon_sym_BANG] = ACTIONS(1044), - [anon_sym_ref] = ACTIONS(878), - [anon_sym_DASH_GT] = ACTIONS(1044), - [anon_sym_LT] = ACTIONS(1044), - [anon_sym_COLON_COLON] = ACTIONS(1044), - [anon_sym_AMP] = ACTIONS(1044), - [sym_mutable_specifier] = ACTIONS(980), - [anon_sym_DOT_DOT] = ACTIONS(1044), - [anon_sym_DASH] = ACTIONS(1042), - [anon_sym_PIPE] = ACTIONS(1044), - [anon_sym_yield] = ACTIONS(1042), - [anon_sym_move] = ACTIONS(1042), - [sym_integer_literal] = ACTIONS(1044), - [aux_sym_string_literal_token1] = ACTIONS(1044), - [sym_char_literal] = ACTIONS(1044), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_u8] = ACTIONS(1042), - [anon_sym_i8] = ACTIONS(1042), - [anon_sym_u16] = ACTIONS(1042), - [anon_sym_i16] = ACTIONS(1042), - [anon_sym_u32] = ACTIONS(1042), - [anon_sym_i32] = ACTIONS(1042), - [anon_sym_u64] = ACTIONS(1042), - [anon_sym_i64] = ACTIONS(1042), - [anon_sym_u128] = ACTIONS(1042), - [anon_sym_i128] = ACTIONS(1042), - [anon_sym_isize] = ACTIONS(1042), - [anon_sym_usize] = ACTIONS(1042), - [anon_sym_f32] = ACTIONS(1042), - [anon_sym_f64] = ACTIONS(1042), - [anon_sym_bool] = ACTIONS(1042), - [anon_sym_str] = ACTIONS(1042), - [anon_sym_char] = ACTIONS(1042), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1044), - [sym_self] = ACTIONS(1042), - [sym_super] = ACTIONS(1042), - [sym_crate] = ACTIONS(1042), - [sym_metavariable] = ACTIONS(1044), - [sym_grit_metavariable] = ACTIONS(1044), - [sym_raw_string_literal] = ACTIONS(1044), - [sym_float_literal] = ACTIONS(1044), + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(1503), + [sym_bracketed_type] = STATE(2686), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2687), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1926), + [sym_scoped_identifier] = STATE(1726), + [sym_scoped_type_identifier] = STATE(1654), + [sym_const_block] = STATE(1615), + [sym_pattern] = STATE(1617), + [sym_tuple_pattern] = STATE(1615), + [sym_slice_pattern] = STATE(1615), + [sym_tuple_struct_pattern] = STATE(1615), + [sym_struct_pattern] = STATE(1615), + [sym_remaining_field_pattern] = STATE(1615), + [sym_mut_pattern] = STATE(1615), + [sym_range_pattern] = STATE(1615), + [sym_ref_pattern] = STATE(1615), + [sym_captured_pattern] = STATE(1615), + [sym_reference_pattern] = STATE(1615), + [sym_or_pattern] = STATE(1615), + [sym__literal_pattern] = STATE(1492), + [sym_negative_literal] = STATE(1521), + [sym_string_literal] = STATE(1521), + [sym_boolean_literal] = STATE(1521), + [sym_primitive_type] = STATE(1691), + [sym_identifier] = STATE(1472), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [sym_underscore] = ACTIONS(974), + [anon_sym_LPAREN] = ACTIONS(916), + [anon_sym_LBRACK] = ACTIONS(852), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(856), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(860), + [anon_sym_default] = ACTIONS(920), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(922), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), + [anon_sym_ref] = ACTIONS(880), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(926), + [anon_sym_AMP] = ACTIONS(1014), + [anon_sym_dyn] = ACTIONS(888), + [sym_mutable_specifier] = ACTIONS(982), + [anon_sym_DOT_DOT] = ACTIONS(984), + [anon_sym_DASH] = ACTIONS(894), + [sym_integer_literal] = ACTIONS(896), + [aux_sym_string_literal_token1] = ACTIONS(898), + [sym_char_literal] = ACTIONS(896), + [anon_sym_true] = ACTIONS(900), + [anon_sym_false] = ACTIONS(900), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(932), + [sym_super] = ACTIONS(932), + [sym_crate] = ACTIONS(932), + [sym_metavariable] = ACTIONS(934), + [sym_grit_metavariable] = ACTIONS(1018), + [sym_raw_string_literal] = ACTIONS(896), + [sym_float_literal] = ACTIONS(896), [sym_block_comment] = ACTIONS(3), }, [216] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(2267), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2266), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_type_binding] = STATE(2562), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_block] = STATE(2562), - [sym__literal] = STATE(2562), - [sym_string_literal] = STATE(2430), - [sym_boolean_literal] = STATE(2430), + [sym_bracketed_type] = STATE(2684), + [sym_generic_type] = STATE(2683), + [sym_generic_type_with_turbofish] = STATE(2682), + [sym_macro_invocation] = STATE(1615), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier] = STATE(2202), + [sym_const_block] = STATE(1615), + [sym_pattern] = STATE(1573), + [sym_tuple_pattern] = STATE(1615), + [sym_slice_pattern] = STATE(1615), + [sym_tuple_struct_pattern] = STATE(1615), + [sym_struct_pattern] = STATE(1615), + [sym_remaining_field_pattern] = STATE(1615), + [sym_mut_pattern] = STATE(1615), + [sym_range_pattern] = STATE(1615), + [sym_ref_pattern] = STATE(1615), + [sym_captured_pattern] = STATE(1615), + [sym_reference_pattern] = STATE(1615), + [sym_or_pattern] = STATE(1615), + [sym__literal_pattern] = STATE(1492), + [sym_negative_literal] = STATE(1521), + [sym_string_literal] = STATE(1521), + [sym_boolean_literal] = STATE(1521), [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1648), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), + [sym_identifier] = STATE(1432), + [sym__primitive_identifier] = ACTIONS(1044), + [sym_underscore] = ACTIONS(974), [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1048), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(854), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT] = ACTIONS(1056), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [sym_integer_literal] = ACTIONS(1062), - [aux_sym_string_literal_token1] = ACTIONS(896), - [sym_char_literal] = ACTIONS(1062), - [anon_sym_true] = ACTIONS(898), - [anon_sym_false] = ACTIONS(898), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(1068), - [sym_raw_string_literal] = ACTIONS(1062), - [sym_float_literal] = ACTIONS(1062), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_LBRACK] = ACTIONS(1046), + [anon_sym_STAR] = ACTIONS(1046), + [anon_sym_SQUOTE] = ACTIONS(1044), + [anon_sym_async] = ACTIONS(1044), + [anon_sym_break] = ACTIONS(1044), + [anon_sym_const] = ACTIONS(1044), + [anon_sym_continue] = ACTIONS(1044), + [anon_sym_default] = ACTIONS(1044), + [anon_sym_for] = ACTIONS(1044), + [anon_sym_if] = ACTIONS(1044), + [anon_sym_loop] = ACTIONS(1044), + [anon_sym_match] = ACTIONS(1044), + [anon_sym_return] = ACTIONS(1044), + [anon_sym_union] = ACTIONS(1044), + [anon_sym_unsafe] = ACTIONS(1044), + [anon_sym_while] = ACTIONS(1044), + [anon_sym_BANG] = ACTIONS(1046), + [anon_sym_ref] = ACTIONS(880), + [anon_sym_DASH_GT] = ACTIONS(1046), + [anon_sym_LT] = ACTIONS(1046), + [anon_sym_COLON_COLON] = ACTIONS(1046), + [anon_sym_AMP] = ACTIONS(1046), + [sym_mutable_specifier] = ACTIONS(982), + [anon_sym_DOT_DOT] = ACTIONS(1046), + [anon_sym_DASH] = ACTIONS(1044), + [anon_sym_PIPE] = ACTIONS(1046), + [anon_sym_yield] = ACTIONS(1044), + [anon_sym_move] = ACTIONS(1044), + [sym_integer_literal] = ACTIONS(1046), + [aux_sym_string_literal_token1] = ACTIONS(1046), + [sym_char_literal] = ACTIONS(1046), + [anon_sym_true] = ACTIONS(1044), + [anon_sym_false] = ACTIONS(1044), + [anon_sym_u8] = ACTIONS(1044), + [anon_sym_i8] = ACTIONS(1044), + [anon_sym_u16] = ACTIONS(1044), + [anon_sym_i16] = ACTIONS(1044), + [anon_sym_u32] = ACTIONS(1044), + [anon_sym_i32] = ACTIONS(1044), + [anon_sym_u64] = ACTIONS(1044), + [anon_sym_i64] = ACTIONS(1044), + [anon_sym_u128] = ACTIONS(1044), + [anon_sym_i128] = ACTIONS(1044), + [anon_sym_isize] = ACTIONS(1044), + [anon_sym_usize] = ACTIONS(1044), + [anon_sym_f32] = ACTIONS(1044), + [anon_sym_f64] = ACTIONS(1044), + [anon_sym_bool] = ACTIONS(1044), + [anon_sym_str] = ACTIONS(1044), + [anon_sym_char] = ACTIONS(1044), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(1046), + [sym_self] = ACTIONS(1044), + [sym_super] = ACTIONS(1044), + [sym_crate] = ACTIONS(1044), + [sym_metavariable] = ACTIONS(1046), + [sym_grit_metavariable] = ACTIONS(1046), + [sym_raw_string_literal] = ACTIONS(1046), + [sym_float_literal] = ACTIONS(1046), [sym_block_comment] = ACTIONS(3), }, [217] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(2267), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2266), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_type_binding] = STATE(2562), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_block] = STATE(2562), - [sym__literal] = STATE(2562), - [sym_string_literal] = STATE(2430), - [sym_boolean_literal] = STATE(2430), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1648), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1048), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(854), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(2279), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2278), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_type_binding] = STATE(2559), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_block] = STATE(2559), + [sym__literal] = STATE(2559), + [sym_string_literal] = STATE(2588), + [sym_boolean_literal] = STATE(2588), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1649), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(856), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT] = ACTIONS(1070), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [sym_integer_literal] = ACTIONS(1062), - [aux_sym_string_literal_token1] = ACTIONS(896), - [sym_char_literal] = ACTIONS(1062), - [anon_sym_true] = ACTIONS(898), - [anon_sym_false] = ACTIONS(898), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(1068), - [sym_raw_string_literal] = ACTIONS(1062), - [sym_float_literal] = ACTIONS(1062), + [anon_sym_GT] = ACTIONS(1058), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [sym_integer_literal] = ACTIONS(1064), + [aux_sym_string_literal_token1] = ACTIONS(898), + [sym_char_literal] = ACTIONS(1064), + [anon_sym_true] = ACTIONS(900), + [anon_sym_false] = ACTIONS(900), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(1070), + [sym_raw_string_literal] = ACTIONS(1064), + [sym_float_literal] = ACTIONS(1064), [sym_block_comment] = ACTIONS(3), }, [218] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(2267), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2266), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_type_binding] = STATE(2562), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_block] = STATE(2562), - [sym__literal] = STATE(2562), - [sym_string_literal] = STATE(2430), - [sym_boolean_literal] = STATE(2430), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1648), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1048), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(854), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(2279), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2278), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_type_binding] = STATE(2559), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_block] = STATE(2559), + [sym__literal] = STATE(2559), + [sym_string_literal] = STATE(2588), + [sym_boolean_literal] = STATE(2588), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1649), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(856), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), [anon_sym_GT] = ACTIONS(1072), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [sym_integer_literal] = ACTIONS(1062), - [aux_sym_string_literal_token1] = ACTIONS(896), - [sym_char_literal] = ACTIONS(1062), - [anon_sym_true] = ACTIONS(898), - [anon_sym_false] = ACTIONS(898), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(1068), - [sym_raw_string_literal] = ACTIONS(1062), - [sym_float_literal] = ACTIONS(1062), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [sym_integer_literal] = ACTIONS(1064), + [aux_sym_string_literal_token1] = ACTIONS(898), + [sym_char_literal] = ACTIONS(1064), + [anon_sym_true] = ACTIONS(900), + [anon_sym_false] = ACTIONS(900), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(1070), + [sym_raw_string_literal] = ACTIONS(1064), + [sym_float_literal] = ACTIONS(1064), [sym_block_comment] = ACTIONS(3), }, [219] = { - [sym_else_clause] = STATE(250), - [sym__primitive_identifier] = ACTIONS(567), - [sym_underscore] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(565), - [anon_sym_RBRACE] = ACTIONS(565), - [anon_sym_LBRACK] = ACTIONS(565), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(567), - [anon_sym_QMARK] = ACTIONS(565), - [anon_sym_as] = ACTIONS(567), - [anon_sym_const] = ACTIONS(567), - [anon_sym_default] = ACTIONS(567), - [anon_sym_union] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(565), - [anon_sym_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(565), - [anon_sym_ref] = ACTIONS(567), - [anon_sym_LT] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_else] = ACTIONS(1074), - [anon_sym_COLON_COLON] = ACTIONS(565), - [anon_sym_AMP] = ACTIONS(567), - [anon_sym_DOT_DOT_DOT] = ACTIONS(565), - [sym_mutable_specifier] = ACTIONS(567), - [anon_sym_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(567), - [anon_sym_AMP_AMP] = ACTIONS(565), - [anon_sym_PIPE_PIPE] = ACTIONS(565), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_CARET] = ACTIONS(567), - [anon_sym_EQ_EQ] = ACTIONS(565), - [anon_sym_BANG_EQ] = ACTIONS(565), - [anon_sym_LT_EQ] = ACTIONS(565), - [anon_sym_GT_EQ] = ACTIONS(565), - [anon_sym_LT_LT] = ACTIONS(567), - [anon_sym_GT_GT] = ACTIONS(567), - [anon_sym_SLASH] = ACTIONS(567), - [anon_sym_PERCENT] = ACTIONS(567), - [anon_sym_PLUS_EQ] = ACTIONS(565), - [anon_sym_DASH_EQ] = ACTIONS(565), - [anon_sym_STAR_EQ] = ACTIONS(565), - [anon_sym_SLASH_EQ] = ACTIONS(565), - [anon_sym_PERCENT_EQ] = ACTIONS(565), - [anon_sym_AMP_EQ] = ACTIONS(565), - [anon_sym_PIPE_EQ] = ACTIONS(565), - [anon_sym_CARET_EQ] = ACTIONS(565), - [anon_sym_LT_LT_EQ] = ACTIONS(565), - [anon_sym_GT_GT_EQ] = ACTIONS(565), - [anon_sym_DOT] = ACTIONS(567), - [sym_integer_literal] = ACTIONS(565), - [aux_sym_string_literal_token1] = ACTIONS(565), - [sym_char_literal] = ACTIONS(565), - [anon_sym_true] = ACTIONS(567), - [anon_sym_false] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(567), - [anon_sym_i8] = ACTIONS(567), - [anon_sym_u16] = ACTIONS(567), - [anon_sym_i16] = ACTIONS(567), - [anon_sym_u32] = ACTIONS(567), - [anon_sym_i32] = ACTIONS(567), - [anon_sym_u64] = ACTIONS(567), - [anon_sym_i64] = ACTIONS(567), - [anon_sym_u128] = ACTIONS(567), - [anon_sym_i128] = ACTIONS(567), - [anon_sym_isize] = ACTIONS(567), - [anon_sym_usize] = ACTIONS(567), - [anon_sym_f32] = ACTIONS(567), - [anon_sym_f64] = ACTIONS(567), - [anon_sym_bool] = ACTIONS(567), - [anon_sym_str] = ACTIONS(567), - [anon_sym_char] = ACTIONS(567), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(565), - [sym_self] = ACTIONS(567), - [sym_super] = ACTIONS(567), - [sym_crate] = ACTIONS(567), - [sym_metavariable] = ACTIONS(565), - [sym_grit_metavariable] = ACTIONS(565), - [sym_raw_string_literal] = ACTIONS(565), - [sym_float_literal] = ACTIONS(565), + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(2279), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2278), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_type_binding] = STATE(2559), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_block] = STATE(2559), + [sym__literal] = STATE(2559), + [sym_string_literal] = STATE(2588), + [sym_boolean_literal] = STATE(2588), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1649), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(856), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(1074), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [sym_integer_literal] = ACTIONS(1064), + [aux_sym_string_literal_token1] = ACTIONS(898), + [sym_char_literal] = ACTIONS(1064), + [anon_sym_true] = ACTIONS(900), + [anon_sym_false] = ACTIONS(900), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(1070), + [sym_raw_string_literal] = ACTIONS(1064), + [sym_float_literal] = ACTIONS(1064), [sym_block_comment] = ACTIONS(3), }, [220] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(2267), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2266), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_type_binding] = STATE(2562), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_block] = STATE(2562), - [sym__literal] = STATE(2562), - [sym_string_literal] = STATE(2430), - [sym_boolean_literal] = STATE(2430), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1648), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1048), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(854), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(2279), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2278), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_type_binding] = STATE(2559), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_block] = STATE(2559), + [sym__literal] = STATE(2559), + [sym_string_literal] = STATE(2588), + [sym_boolean_literal] = STATE(2588), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1649), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(856), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), [anon_sym_GT] = ACTIONS(1076), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [sym_integer_literal] = ACTIONS(1062), - [aux_sym_string_literal_token1] = ACTIONS(896), - [sym_char_literal] = ACTIONS(1062), - [anon_sym_true] = ACTIONS(898), - [anon_sym_false] = ACTIONS(898), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(1068), - [sym_raw_string_literal] = ACTIONS(1062), - [sym_float_literal] = ACTIONS(1062), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [sym_integer_literal] = ACTIONS(1064), + [aux_sym_string_literal_token1] = ACTIONS(898), + [sym_char_literal] = ACTIONS(1064), + [anon_sym_true] = ACTIONS(900), + [anon_sym_false] = ACTIONS(900), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(1070), + [sym_raw_string_literal] = ACTIONS(1064), + [sym_float_literal] = ACTIONS(1064), [sym_block_comment] = ACTIONS(3), }, [221] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(2067), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2064), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_type_binding] = STATE(2219), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_block] = STATE(2219), - [sym__literal] = STATE(2219), - [sym_string_literal] = STATE(2430), - [sym_boolean_literal] = STATE(2430), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1648), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1048), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(854), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [sym_integer_literal] = ACTIONS(1062), - [aux_sym_string_literal_token1] = ACTIONS(896), - [sym_char_literal] = ACTIONS(1062), - [anon_sym_true] = ACTIONS(898), - [anon_sym_false] = ACTIONS(898), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(1068), - [sym_raw_string_literal] = ACTIONS(1062), - [sym_float_literal] = ACTIONS(1062), + [sym_else_clause] = STATE(229), + [sym__primitive_identifier] = ACTIONS(679), + [sym_underscore] = ACTIONS(679), + [anon_sym_LPAREN] = ACTIONS(677), + [anon_sym_RBRACE] = ACTIONS(677), + [anon_sym_LBRACK] = ACTIONS(677), + [anon_sym_PLUS] = ACTIONS(679), + [anon_sym_STAR] = ACTIONS(679), + [anon_sym_QMARK] = ACTIONS(677), + [anon_sym_as] = ACTIONS(679), + [anon_sym_const] = ACTIONS(679), + [anon_sym_default] = ACTIONS(679), + [anon_sym_union] = ACTIONS(679), + [anon_sym_POUND] = ACTIONS(677), + [anon_sym_EQ] = ACTIONS(679), + [anon_sym_COMMA] = ACTIONS(677), + [anon_sym_ref] = ACTIONS(679), + [anon_sym_LT] = ACTIONS(679), + [anon_sym_GT] = ACTIONS(679), + [anon_sym_else] = ACTIONS(1078), + [anon_sym_COLON_COLON] = ACTIONS(677), + [anon_sym_AMP] = ACTIONS(679), + [anon_sym_DOT_DOT_DOT] = ACTIONS(677), + [sym_mutable_specifier] = ACTIONS(679), + [anon_sym_DOT_DOT] = ACTIONS(679), + [anon_sym_DOT_DOT_EQ] = ACTIONS(677), + [anon_sym_DASH] = ACTIONS(679), + [anon_sym_AMP_AMP] = ACTIONS(677), + [anon_sym_PIPE_PIPE] = ACTIONS(677), + [anon_sym_PIPE] = ACTIONS(679), + [anon_sym_CARET] = ACTIONS(679), + [anon_sym_EQ_EQ] = ACTIONS(677), + [anon_sym_BANG_EQ] = ACTIONS(677), + [anon_sym_LT_EQ] = ACTIONS(677), + [anon_sym_GT_EQ] = ACTIONS(677), + [anon_sym_LT_LT] = ACTIONS(679), + [anon_sym_GT_GT] = ACTIONS(679), + [anon_sym_SLASH] = ACTIONS(679), + [anon_sym_PERCENT] = ACTIONS(679), + [anon_sym_PLUS_EQ] = ACTIONS(677), + [anon_sym_DASH_EQ] = ACTIONS(677), + [anon_sym_STAR_EQ] = ACTIONS(677), + [anon_sym_SLASH_EQ] = ACTIONS(677), + [anon_sym_PERCENT_EQ] = ACTIONS(677), + [anon_sym_AMP_EQ] = ACTIONS(677), + [anon_sym_PIPE_EQ] = ACTIONS(677), + [anon_sym_CARET_EQ] = ACTIONS(677), + [anon_sym_LT_LT_EQ] = ACTIONS(677), + [anon_sym_GT_GT_EQ] = ACTIONS(677), + [anon_sym_DOT] = ACTIONS(679), + [sym_integer_literal] = ACTIONS(677), + [aux_sym_string_literal_token1] = ACTIONS(677), + [sym_char_literal] = ACTIONS(677), + [anon_sym_true] = ACTIONS(679), + [anon_sym_false] = ACTIONS(679), + [anon_sym_u8] = ACTIONS(679), + [anon_sym_i8] = ACTIONS(679), + [anon_sym_u16] = ACTIONS(679), + [anon_sym_i16] = ACTIONS(679), + [anon_sym_u32] = ACTIONS(679), + [anon_sym_i32] = ACTIONS(679), + [anon_sym_u64] = ACTIONS(679), + [anon_sym_i64] = ACTIONS(679), + [anon_sym_u128] = ACTIONS(679), + [anon_sym_i128] = ACTIONS(679), + [anon_sym_isize] = ACTIONS(679), + [anon_sym_usize] = ACTIONS(679), + [anon_sym_f32] = ACTIONS(679), + [anon_sym_f64] = ACTIONS(679), + [anon_sym_bool] = ACTIONS(679), + [anon_sym_str] = ACTIONS(679), + [anon_sym_char] = ACTIONS(679), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(677), + [sym_self] = ACTIONS(679), + [sym_super] = ACTIONS(679), + [sym_crate] = ACTIONS(679), + [sym_metavariable] = ACTIONS(677), + [sym_grit_metavariable] = ACTIONS(677), + [sym_raw_string_literal] = ACTIONS(677), + [sym_float_literal] = ACTIONS(677), [sym_block_comment] = ACTIONS(3), }, [222] = { - [sym__primitive_identifier] = ACTIONS(701), - [sym_underscore] = ACTIONS(701), - [anon_sym_LPAREN] = ACTIONS(699), - [anon_sym_RBRACE] = ACTIONS(699), - [anon_sym_LBRACK] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(701), - [anon_sym_QMARK] = ACTIONS(699), - [anon_sym_as] = ACTIONS(701), - [anon_sym_const] = ACTIONS(701), - [anon_sym_default] = ACTIONS(701), - [anon_sym_union] = ACTIONS(701), - [anon_sym_POUND] = ACTIONS(699), - [anon_sym_EQ] = ACTIONS(701), - [anon_sym_COMMA] = ACTIONS(699), - [anon_sym_ref] = ACTIONS(701), - [anon_sym_LT] = ACTIONS(701), - [anon_sym_GT] = ACTIONS(701), - [anon_sym_else] = ACTIONS(701), - [anon_sym_COLON_COLON] = ACTIONS(699), - [anon_sym_AMP] = ACTIONS(701), - [anon_sym_DOT_DOT_DOT] = ACTIONS(699), - [sym_mutable_specifier] = ACTIONS(701), - [anon_sym_DOT_DOT] = ACTIONS(701), - [anon_sym_DOT_DOT_EQ] = ACTIONS(699), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_AMP_AMP] = ACTIONS(699), - [anon_sym_PIPE_PIPE] = ACTIONS(699), - [anon_sym_PIPE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_EQ_EQ] = ACTIONS(699), - [anon_sym_BANG_EQ] = ACTIONS(699), - [anon_sym_LT_EQ] = ACTIONS(699), - [anon_sym_GT_EQ] = ACTIONS(699), - [anon_sym_LT_LT] = ACTIONS(701), - [anon_sym_GT_GT] = ACTIONS(701), - [anon_sym_SLASH] = ACTIONS(701), - [anon_sym_PERCENT] = ACTIONS(701), - [anon_sym_PLUS_EQ] = ACTIONS(699), - [anon_sym_DASH_EQ] = ACTIONS(699), - [anon_sym_STAR_EQ] = ACTIONS(699), - [anon_sym_SLASH_EQ] = ACTIONS(699), - [anon_sym_PERCENT_EQ] = ACTIONS(699), - [anon_sym_AMP_EQ] = ACTIONS(699), - [anon_sym_PIPE_EQ] = ACTIONS(699), - [anon_sym_CARET_EQ] = ACTIONS(699), - [anon_sym_LT_LT_EQ] = ACTIONS(699), - [anon_sym_GT_GT_EQ] = ACTIONS(699), - [anon_sym_DOT] = ACTIONS(701), - [sym_integer_literal] = ACTIONS(699), - [aux_sym_string_literal_token1] = ACTIONS(699), - [sym_char_literal] = ACTIONS(699), - [anon_sym_true] = ACTIONS(701), - [anon_sym_false] = ACTIONS(701), - [anon_sym_u8] = ACTIONS(701), - [anon_sym_i8] = ACTIONS(701), - [anon_sym_u16] = ACTIONS(701), - [anon_sym_i16] = ACTIONS(701), - [anon_sym_u32] = ACTIONS(701), - [anon_sym_i32] = ACTIONS(701), - [anon_sym_u64] = ACTIONS(701), - [anon_sym_i64] = ACTIONS(701), - [anon_sym_u128] = ACTIONS(701), - [anon_sym_i128] = ACTIONS(701), - [anon_sym_isize] = ACTIONS(701), - [anon_sym_usize] = ACTIONS(701), - [anon_sym_f32] = ACTIONS(701), - [anon_sym_f64] = ACTIONS(701), - [anon_sym_bool] = ACTIONS(701), - [anon_sym_str] = ACTIONS(701), - [anon_sym_char] = ACTIONS(701), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(699), - [sym_self] = ACTIONS(701), - [sym_super] = ACTIONS(701), - [sym_crate] = ACTIONS(701), - [sym_metavariable] = ACTIONS(699), - [sym_grit_metavariable] = ACTIONS(699), - [sym_raw_string_literal] = ACTIONS(699), - [sym_float_literal] = ACTIONS(699), + [sym__primitive_identifier] = ACTIONS(691), + [sym_underscore] = ACTIONS(691), + [anon_sym_LPAREN] = ACTIONS(689), + [anon_sym_RBRACE] = ACTIONS(689), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_PLUS] = ACTIONS(691), + [anon_sym_STAR] = ACTIONS(691), + [anon_sym_QMARK] = ACTIONS(689), + [anon_sym_as] = ACTIONS(691), + [anon_sym_const] = ACTIONS(691), + [anon_sym_default] = ACTIONS(691), + [anon_sym_union] = ACTIONS(691), + [anon_sym_POUND] = ACTIONS(689), + [anon_sym_EQ] = ACTIONS(691), + [anon_sym_COMMA] = ACTIONS(689), + [anon_sym_ref] = ACTIONS(691), + [anon_sym_LT] = ACTIONS(691), + [anon_sym_GT] = ACTIONS(691), + [anon_sym_else] = ACTIONS(691), + [anon_sym_COLON_COLON] = ACTIONS(689), + [anon_sym_AMP] = ACTIONS(691), + [anon_sym_DOT_DOT_DOT] = ACTIONS(689), + [sym_mutable_specifier] = ACTIONS(691), + [anon_sym_DOT_DOT] = ACTIONS(691), + [anon_sym_DOT_DOT_EQ] = ACTIONS(689), + [anon_sym_DASH] = ACTIONS(691), + [anon_sym_AMP_AMP] = ACTIONS(689), + [anon_sym_PIPE_PIPE] = ACTIONS(689), + [anon_sym_PIPE] = ACTIONS(691), + [anon_sym_CARET] = ACTIONS(691), + [anon_sym_EQ_EQ] = ACTIONS(689), + [anon_sym_BANG_EQ] = ACTIONS(689), + [anon_sym_LT_EQ] = ACTIONS(689), + [anon_sym_GT_EQ] = ACTIONS(689), + [anon_sym_LT_LT] = ACTIONS(691), + [anon_sym_GT_GT] = ACTIONS(691), + [anon_sym_SLASH] = ACTIONS(691), + [anon_sym_PERCENT] = ACTIONS(691), + [anon_sym_PLUS_EQ] = ACTIONS(689), + [anon_sym_DASH_EQ] = ACTIONS(689), + [anon_sym_STAR_EQ] = ACTIONS(689), + [anon_sym_SLASH_EQ] = ACTIONS(689), + [anon_sym_PERCENT_EQ] = ACTIONS(689), + [anon_sym_AMP_EQ] = ACTIONS(689), + [anon_sym_PIPE_EQ] = ACTIONS(689), + [anon_sym_CARET_EQ] = ACTIONS(689), + [anon_sym_LT_LT_EQ] = ACTIONS(689), + [anon_sym_GT_GT_EQ] = ACTIONS(689), + [anon_sym_DOT] = ACTIONS(691), + [sym_integer_literal] = ACTIONS(689), + [aux_sym_string_literal_token1] = ACTIONS(689), + [sym_char_literal] = ACTIONS(689), + [anon_sym_true] = ACTIONS(691), + [anon_sym_false] = ACTIONS(691), + [anon_sym_u8] = ACTIONS(691), + [anon_sym_i8] = ACTIONS(691), + [anon_sym_u16] = ACTIONS(691), + [anon_sym_i16] = ACTIONS(691), + [anon_sym_u32] = ACTIONS(691), + [anon_sym_i32] = ACTIONS(691), + [anon_sym_u64] = ACTIONS(691), + [anon_sym_i64] = ACTIONS(691), + [anon_sym_u128] = ACTIONS(691), + [anon_sym_i128] = ACTIONS(691), + [anon_sym_isize] = ACTIONS(691), + [anon_sym_usize] = ACTIONS(691), + [anon_sym_f32] = ACTIONS(691), + [anon_sym_f64] = ACTIONS(691), + [anon_sym_bool] = ACTIONS(691), + [anon_sym_str] = ACTIONS(691), + [anon_sym_char] = ACTIONS(691), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(689), + [sym_self] = ACTIONS(691), + [sym_super] = ACTIONS(691), + [sym_crate] = ACTIONS(691), + [sym_metavariable] = ACTIONS(689), + [sym_grit_metavariable] = ACTIONS(689), + [sym_raw_string_literal] = ACTIONS(689), + [sym_float_literal] = ACTIONS(689), [sym_block_comment] = ACTIONS(3), }, [223] = { - [sym__primitive_identifier] = ACTIONS(695), - [sym_underscore] = ACTIONS(695), - [anon_sym_LPAREN] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(693), - [anon_sym_LBRACK] = ACTIONS(693), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_QMARK] = ACTIONS(693), - [anon_sym_as] = ACTIONS(695), - [anon_sym_const] = ACTIONS(695), - [anon_sym_default] = ACTIONS(695), - [anon_sym_union] = ACTIONS(695), - [anon_sym_POUND] = ACTIONS(693), - [anon_sym_EQ] = ACTIONS(695), - [anon_sym_COMMA] = ACTIONS(693), - [anon_sym_ref] = ACTIONS(695), - [anon_sym_LT] = ACTIONS(695), - [anon_sym_GT] = ACTIONS(695), - [anon_sym_else] = ACTIONS(695), - [anon_sym_COLON_COLON] = ACTIONS(693), - [anon_sym_AMP] = ACTIONS(695), - [anon_sym_DOT_DOT_DOT] = ACTIONS(693), - [sym_mutable_specifier] = ACTIONS(695), - [anon_sym_DOT_DOT] = ACTIONS(695), - [anon_sym_DOT_DOT_EQ] = ACTIONS(693), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_AMP_AMP] = ACTIONS(693), - [anon_sym_PIPE_PIPE] = ACTIONS(693), - [anon_sym_PIPE] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(695), - [anon_sym_EQ_EQ] = ACTIONS(693), - [anon_sym_BANG_EQ] = ACTIONS(693), - [anon_sym_LT_EQ] = ACTIONS(693), - [anon_sym_GT_EQ] = ACTIONS(693), - [anon_sym_LT_LT] = ACTIONS(695), - [anon_sym_GT_GT] = ACTIONS(695), - [anon_sym_SLASH] = ACTIONS(695), - [anon_sym_PERCENT] = ACTIONS(695), - [anon_sym_PLUS_EQ] = ACTIONS(693), - [anon_sym_DASH_EQ] = ACTIONS(693), - [anon_sym_STAR_EQ] = ACTIONS(693), - [anon_sym_SLASH_EQ] = ACTIONS(693), - [anon_sym_PERCENT_EQ] = ACTIONS(693), - [anon_sym_AMP_EQ] = ACTIONS(693), - [anon_sym_PIPE_EQ] = ACTIONS(693), - [anon_sym_CARET_EQ] = ACTIONS(693), - [anon_sym_LT_LT_EQ] = ACTIONS(693), - [anon_sym_GT_GT_EQ] = ACTIONS(693), - [anon_sym_DOT] = ACTIONS(695), - [sym_integer_literal] = ACTIONS(693), - [aux_sym_string_literal_token1] = ACTIONS(693), - [sym_char_literal] = ACTIONS(693), - [anon_sym_true] = ACTIONS(695), - [anon_sym_false] = ACTIONS(695), - [anon_sym_u8] = ACTIONS(695), - [anon_sym_i8] = ACTIONS(695), - [anon_sym_u16] = ACTIONS(695), - [anon_sym_i16] = ACTIONS(695), - [anon_sym_u32] = ACTIONS(695), - [anon_sym_i32] = ACTIONS(695), - [anon_sym_u64] = ACTIONS(695), - [anon_sym_i64] = ACTIONS(695), - [anon_sym_u128] = ACTIONS(695), - [anon_sym_i128] = ACTIONS(695), - [anon_sym_isize] = ACTIONS(695), - [anon_sym_usize] = ACTIONS(695), - [anon_sym_f32] = ACTIONS(695), - [anon_sym_f64] = ACTIONS(695), - [anon_sym_bool] = ACTIONS(695), - [anon_sym_str] = ACTIONS(695), - [anon_sym_char] = ACTIONS(695), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(693), - [sym_self] = ACTIONS(695), - [sym_super] = ACTIONS(695), - [sym_crate] = ACTIONS(695), - [sym_metavariable] = ACTIONS(693), - [sym_grit_metavariable] = ACTIONS(693), - [sym_raw_string_literal] = ACTIONS(693), - [sym_float_literal] = ACTIONS(693), + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(2074), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2076), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_type_binding] = STATE(2381), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_block] = STATE(2381), + [sym__literal] = STATE(2381), + [sym_string_literal] = STATE(2588), + [sym_boolean_literal] = STATE(2588), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1649), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(856), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [sym_integer_literal] = ACTIONS(1064), + [aux_sym_string_literal_token1] = ACTIONS(898), + [sym_char_literal] = ACTIONS(1064), + [anon_sym_true] = ACTIONS(900), + [anon_sym_false] = ACTIONS(900), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(1070), + [sym_raw_string_literal] = ACTIONS(1064), + [sym_float_literal] = ACTIONS(1064), [sym_block_comment] = ACTIONS(3), }, [224] = { - [sym__primitive_identifier] = ACTIONS(687), - [sym_underscore] = ACTIONS(687), - [anon_sym_LPAREN] = ACTIONS(685), - [anon_sym_RBRACE] = ACTIONS(685), - [anon_sym_LBRACK] = ACTIONS(685), - [anon_sym_PLUS] = ACTIONS(687), - [anon_sym_STAR] = ACTIONS(687), - [anon_sym_QMARK] = ACTIONS(685), - [anon_sym_as] = ACTIONS(687), - [anon_sym_const] = ACTIONS(687), - [anon_sym_default] = ACTIONS(687), - [anon_sym_union] = ACTIONS(687), - [anon_sym_POUND] = ACTIONS(685), - [anon_sym_EQ] = ACTIONS(687), - [anon_sym_COMMA] = ACTIONS(685), - [anon_sym_ref] = ACTIONS(687), - [anon_sym_LT] = ACTIONS(687), - [anon_sym_GT] = ACTIONS(687), - [anon_sym_else] = ACTIONS(687), - [anon_sym_COLON_COLON] = ACTIONS(685), - [anon_sym_AMP] = ACTIONS(687), - [anon_sym_DOT_DOT_DOT] = ACTIONS(685), - [sym_mutable_specifier] = ACTIONS(687), - [anon_sym_DOT_DOT] = ACTIONS(687), - [anon_sym_DOT_DOT_EQ] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(687), - [anon_sym_AMP_AMP] = ACTIONS(685), - [anon_sym_PIPE_PIPE] = ACTIONS(685), - [anon_sym_PIPE] = ACTIONS(687), - [anon_sym_CARET] = ACTIONS(687), - [anon_sym_EQ_EQ] = ACTIONS(685), - [anon_sym_BANG_EQ] = ACTIONS(685), - [anon_sym_LT_EQ] = ACTIONS(685), - [anon_sym_GT_EQ] = ACTIONS(685), - [anon_sym_LT_LT] = ACTIONS(687), - [anon_sym_GT_GT] = ACTIONS(687), - [anon_sym_SLASH] = ACTIONS(687), - [anon_sym_PERCENT] = ACTIONS(687), - [anon_sym_PLUS_EQ] = ACTIONS(685), - [anon_sym_DASH_EQ] = ACTIONS(685), - [anon_sym_STAR_EQ] = ACTIONS(685), - [anon_sym_SLASH_EQ] = ACTIONS(685), - [anon_sym_PERCENT_EQ] = ACTIONS(685), - [anon_sym_AMP_EQ] = ACTIONS(685), - [anon_sym_PIPE_EQ] = ACTIONS(685), - [anon_sym_CARET_EQ] = ACTIONS(685), - [anon_sym_LT_LT_EQ] = ACTIONS(685), - [anon_sym_GT_GT_EQ] = ACTIONS(685), - [anon_sym_DOT] = ACTIONS(687), - [sym_integer_literal] = ACTIONS(685), - [aux_sym_string_literal_token1] = ACTIONS(685), - [sym_char_literal] = ACTIONS(685), - [anon_sym_true] = ACTIONS(687), - [anon_sym_false] = ACTIONS(687), - [anon_sym_u8] = ACTIONS(687), - [anon_sym_i8] = ACTIONS(687), - [anon_sym_u16] = ACTIONS(687), - [anon_sym_i16] = ACTIONS(687), - [anon_sym_u32] = ACTIONS(687), - [anon_sym_i32] = ACTIONS(687), - [anon_sym_u64] = ACTIONS(687), - [anon_sym_i64] = ACTIONS(687), - [anon_sym_u128] = ACTIONS(687), - [anon_sym_i128] = ACTIONS(687), - [anon_sym_isize] = ACTIONS(687), - [anon_sym_usize] = ACTIONS(687), - [anon_sym_f32] = ACTIONS(687), - [anon_sym_f64] = ACTIONS(687), - [anon_sym_bool] = ACTIONS(687), - [anon_sym_str] = ACTIONS(687), - [anon_sym_char] = ACTIONS(687), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(685), - [sym_self] = ACTIONS(687), - [sym_super] = ACTIONS(687), - [sym_crate] = ACTIONS(687), - [sym_metavariable] = ACTIONS(685), - [sym_grit_metavariable] = ACTIONS(685), - [sym_raw_string_literal] = ACTIONS(685), - [sym_float_literal] = ACTIONS(685), + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(2279), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2278), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_type_binding] = STATE(2559), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_block] = STATE(2559), + [sym__literal] = STATE(2559), + [sym_string_literal] = STATE(2588), + [sym_boolean_literal] = STATE(2588), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1649), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(856), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [sym_integer_literal] = ACTIONS(1064), + [aux_sym_string_literal_token1] = ACTIONS(898), + [sym_char_literal] = ACTIONS(1064), + [anon_sym_true] = ACTIONS(900), + [anon_sym_false] = ACTIONS(900), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(1070), + [sym_raw_string_literal] = ACTIONS(1064), + [sym_float_literal] = ACTIONS(1064), [sym_block_comment] = ACTIONS(3), }, [225] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(2129), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2144), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_type_binding] = STATE(2148), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_block] = STATE(2148), - [sym__literal] = STATE(2148), - [sym_string_literal] = STATE(2430), - [sym_boolean_literal] = STATE(2430), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1648), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1048), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(854), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(2116), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2115), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_type_binding] = STATE(2223), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_block] = STATE(2223), + [sym__literal] = STATE(2223), + [sym_string_literal] = STATE(2588), + [sym_boolean_literal] = STATE(2588), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1649), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(856), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [sym_integer_literal] = ACTIONS(1062), - [aux_sym_string_literal_token1] = ACTIONS(896), - [sym_char_literal] = ACTIONS(1062), - [anon_sym_true] = ACTIONS(898), - [anon_sym_false] = ACTIONS(898), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(1068), - [sym_raw_string_literal] = ACTIONS(1062), - [sym_float_literal] = ACTIONS(1062), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [sym_integer_literal] = ACTIONS(1064), + [aux_sym_string_literal_token1] = ACTIONS(898), + [sym_char_literal] = ACTIONS(1064), + [anon_sym_true] = ACTIONS(900), + [anon_sym_false] = ACTIONS(900), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(1070), + [sym_raw_string_literal] = ACTIONS(1064), + [sym_float_literal] = ACTIONS(1064), [sym_block_comment] = ACTIONS(3), }, [226] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(2267), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2266), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_type_binding] = STATE(2562), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_block] = STATE(2562), - [sym__literal] = STATE(2562), - [sym_string_literal] = STATE(2430), - [sym_boolean_literal] = STATE(2430), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1648), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1048), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(854), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [sym_integer_literal] = ACTIONS(1062), - [aux_sym_string_literal_token1] = ACTIONS(896), - [sym_char_literal] = ACTIONS(1062), - [anon_sym_true] = ACTIONS(898), - [anon_sym_false] = ACTIONS(898), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(1068), - [sym_raw_string_literal] = ACTIONS(1062), - [sym_float_literal] = ACTIONS(1062), + [sym__primitive_identifier] = ACTIONS(697), + [sym_underscore] = ACTIONS(697), + [anon_sym_LPAREN] = ACTIONS(695), + [anon_sym_RBRACE] = ACTIONS(695), + [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_PLUS] = ACTIONS(697), + [anon_sym_STAR] = ACTIONS(697), + [anon_sym_QMARK] = ACTIONS(695), + [anon_sym_as] = ACTIONS(697), + [anon_sym_const] = ACTIONS(697), + [anon_sym_default] = ACTIONS(697), + [anon_sym_union] = ACTIONS(697), + [anon_sym_POUND] = ACTIONS(695), + [anon_sym_EQ] = ACTIONS(697), + [anon_sym_COMMA] = ACTIONS(695), + [anon_sym_ref] = ACTIONS(697), + [anon_sym_LT] = ACTIONS(697), + [anon_sym_GT] = ACTIONS(697), + [anon_sym_else] = ACTIONS(697), + [anon_sym_COLON_COLON] = ACTIONS(695), + [anon_sym_AMP] = ACTIONS(697), + [anon_sym_DOT_DOT_DOT] = ACTIONS(695), + [sym_mutable_specifier] = ACTIONS(697), + [anon_sym_DOT_DOT] = ACTIONS(697), + [anon_sym_DOT_DOT_EQ] = ACTIONS(695), + [anon_sym_DASH] = ACTIONS(697), + [anon_sym_AMP_AMP] = ACTIONS(695), + [anon_sym_PIPE_PIPE] = ACTIONS(695), + [anon_sym_PIPE] = ACTIONS(697), + [anon_sym_CARET] = ACTIONS(697), + [anon_sym_EQ_EQ] = ACTIONS(695), + [anon_sym_BANG_EQ] = ACTIONS(695), + [anon_sym_LT_EQ] = ACTIONS(695), + [anon_sym_GT_EQ] = ACTIONS(695), + [anon_sym_LT_LT] = ACTIONS(697), + [anon_sym_GT_GT] = ACTIONS(697), + [anon_sym_SLASH] = ACTIONS(697), + [anon_sym_PERCENT] = ACTIONS(697), + [anon_sym_PLUS_EQ] = ACTIONS(695), + [anon_sym_DASH_EQ] = ACTIONS(695), + [anon_sym_STAR_EQ] = ACTIONS(695), + [anon_sym_SLASH_EQ] = ACTIONS(695), + [anon_sym_PERCENT_EQ] = ACTIONS(695), + [anon_sym_AMP_EQ] = ACTIONS(695), + [anon_sym_PIPE_EQ] = ACTIONS(695), + [anon_sym_CARET_EQ] = ACTIONS(695), + [anon_sym_LT_LT_EQ] = ACTIONS(695), + [anon_sym_GT_GT_EQ] = ACTIONS(695), + [anon_sym_DOT] = ACTIONS(697), + [sym_integer_literal] = ACTIONS(695), + [aux_sym_string_literal_token1] = ACTIONS(695), + [sym_char_literal] = ACTIONS(695), + [anon_sym_true] = ACTIONS(697), + [anon_sym_false] = ACTIONS(697), + [anon_sym_u8] = ACTIONS(697), + [anon_sym_i8] = ACTIONS(697), + [anon_sym_u16] = ACTIONS(697), + [anon_sym_i16] = ACTIONS(697), + [anon_sym_u32] = ACTIONS(697), + [anon_sym_i32] = ACTIONS(697), + [anon_sym_u64] = ACTIONS(697), + [anon_sym_i64] = ACTIONS(697), + [anon_sym_u128] = ACTIONS(697), + [anon_sym_i128] = ACTIONS(697), + [anon_sym_isize] = ACTIONS(697), + [anon_sym_usize] = ACTIONS(697), + [anon_sym_f32] = ACTIONS(697), + [anon_sym_f64] = ACTIONS(697), + [anon_sym_bool] = ACTIONS(697), + [anon_sym_str] = ACTIONS(697), + [anon_sym_char] = ACTIONS(697), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(695), + [sym_self] = ACTIONS(697), + [sym_super] = ACTIONS(697), + [sym_crate] = ACTIONS(697), + [sym_metavariable] = ACTIONS(695), + [sym_grit_metavariable] = ACTIONS(695), + [sym_raw_string_literal] = ACTIONS(695), + [sym_float_literal] = ACTIONS(695), [sym_block_comment] = ACTIONS(3), }, [227] = { - [sym__primitive_identifier] = ACTIONS(816), - [sym_underscore] = ACTIONS(816), - [anon_sym_LPAREN] = ACTIONS(814), - [anon_sym_RBRACE] = ACTIONS(814), - [anon_sym_LBRACK] = ACTIONS(814), - [anon_sym_PLUS] = ACTIONS(816), - [anon_sym_STAR] = ACTIONS(816), - [anon_sym_QMARK] = ACTIONS(814), - [anon_sym_as] = ACTIONS(816), - [anon_sym_const] = ACTIONS(816), - [anon_sym_default] = ACTIONS(816), - [anon_sym_union] = ACTIONS(816), - [anon_sym_POUND] = ACTIONS(814), - [anon_sym_EQ] = ACTIONS(816), - [anon_sym_COMMA] = ACTIONS(814), - [anon_sym_ref] = ACTIONS(816), - [anon_sym_LT] = ACTIONS(816), - [anon_sym_GT] = ACTIONS(816), - [anon_sym_COLON_COLON] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(816), - [anon_sym_DOT_DOT_DOT] = ACTIONS(814), - [sym_mutable_specifier] = ACTIONS(816), - [anon_sym_DOT_DOT] = ACTIONS(816), - [anon_sym_DOT_DOT_EQ] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(816), - [anon_sym_AMP_AMP] = ACTIONS(814), - [anon_sym_PIPE_PIPE] = ACTIONS(814), - [anon_sym_PIPE] = ACTIONS(816), - [anon_sym_CARET] = ACTIONS(816), - [anon_sym_EQ_EQ] = ACTIONS(814), - [anon_sym_BANG_EQ] = ACTIONS(814), - [anon_sym_LT_EQ] = ACTIONS(814), - [anon_sym_GT_EQ] = ACTIONS(814), - [anon_sym_LT_LT] = ACTIONS(816), - [anon_sym_GT_GT] = ACTIONS(816), - [anon_sym_SLASH] = ACTIONS(816), - [anon_sym_PERCENT] = ACTIONS(816), - [anon_sym_PLUS_EQ] = ACTIONS(814), - [anon_sym_DASH_EQ] = ACTIONS(814), - [anon_sym_STAR_EQ] = ACTIONS(814), - [anon_sym_SLASH_EQ] = ACTIONS(814), - [anon_sym_PERCENT_EQ] = ACTIONS(814), - [anon_sym_AMP_EQ] = ACTIONS(814), - [anon_sym_PIPE_EQ] = ACTIONS(814), - [anon_sym_CARET_EQ] = ACTIONS(814), - [anon_sym_LT_LT_EQ] = ACTIONS(814), - [anon_sym_GT_GT_EQ] = ACTIONS(814), - [anon_sym_DOT] = ACTIONS(816), - [sym_integer_literal] = ACTIONS(814), - [aux_sym_string_literal_token1] = ACTIONS(814), - [sym_char_literal] = ACTIONS(814), - [anon_sym_true] = ACTIONS(816), - [anon_sym_false] = ACTIONS(816), - [anon_sym_u8] = ACTIONS(816), - [anon_sym_i8] = ACTIONS(816), - [anon_sym_u16] = ACTIONS(816), - [anon_sym_i16] = ACTIONS(816), - [anon_sym_u32] = ACTIONS(816), - [anon_sym_i32] = ACTIONS(816), - [anon_sym_u64] = ACTIONS(816), - [anon_sym_i64] = ACTIONS(816), - [anon_sym_u128] = ACTIONS(816), - [anon_sym_i128] = ACTIONS(816), - [anon_sym_isize] = ACTIONS(816), - [anon_sym_usize] = ACTIONS(816), - [anon_sym_f32] = ACTIONS(816), - [anon_sym_f64] = ACTIONS(816), - [anon_sym_bool] = ACTIONS(816), - [anon_sym_str] = ACTIONS(816), - [anon_sym_char] = ACTIONS(816), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(814), - [sym_self] = ACTIONS(816), - [sym_super] = ACTIONS(816), - [sym_crate] = ACTIONS(816), - [sym_metavariable] = ACTIONS(814), - [sym_grit_metavariable] = ACTIONS(814), - [sym_raw_string_literal] = ACTIONS(814), - [sym_float_literal] = ACTIONS(814), + [sym__primitive_identifier] = ACTIONS(707), + [sym_underscore] = ACTIONS(707), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_RBRACE] = ACTIONS(705), + [anon_sym_LBRACK] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_STAR] = ACTIONS(707), + [anon_sym_QMARK] = ACTIONS(705), + [anon_sym_as] = ACTIONS(707), + [anon_sym_const] = ACTIONS(707), + [anon_sym_default] = ACTIONS(707), + [anon_sym_union] = ACTIONS(707), + [anon_sym_POUND] = ACTIONS(705), + [anon_sym_EQ] = ACTIONS(707), + [anon_sym_COMMA] = ACTIONS(705), + [anon_sym_ref] = ACTIONS(707), + [anon_sym_LT] = ACTIONS(707), + [anon_sym_GT] = ACTIONS(707), + [anon_sym_else] = ACTIONS(707), + [anon_sym_COLON_COLON] = ACTIONS(705), + [anon_sym_AMP] = ACTIONS(707), + [anon_sym_DOT_DOT_DOT] = ACTIONS(705), + [sym_mutable_specifier] = ACTIONS(707), + [anon_sym_DOT_DOT] = ACTIONS(707), + [anon_sym_DOT_DOT_EQ] = ACTIONS(705), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_AMP_AMP] = ACTIONS(705), + [anon_sym_PIPE_PIPE] = ACTIONS(705), + [anon_sym_PIPE] = ACTIONS(707), + [anon_sym_CARET] = ACTIONS(707), + [anon_sym_EQ_EQ] = ACTIONS(705), + [anon_sym_BANG_EQ] = ACTIONS(705), + [anon_sym_LT_EQ] = ACTIONS(705), + [anon_sym_GT_EQ] = ACTIONS(705), + [anon_sym_LT_LT] = ACTIONS(707), + [anon_sym_GT_GT] = ACTIONS(707), + [anon_sym_SLASH] = ACTIONS(707), + [anon_sym_PERCENT] = ACTIONS(707), + [anon_sym_PLUS_EQ] = ACTIONS(705), + [anon_sym_DASH_EQ] = ACTIONS(705), + [anon_sym_STAR_EQ] = ACTIONS(705), + [anon_sym_SLASH_EQ] = ACTIONS(705), + [anon_sym_PERCENT_EQ] = ACTIONS(705), + [anon_sym_AMP_EQ] = ACTIONS(705), + [anon_sym_PIPE_EQ] = ACTIONS(705), + [anon_sym_CARET_EQ] = ACTIONS(705), + [anon_sym_LT_LT_EQ] = ACTIONS(705), + [anon_sym_GT_GT_EQ] = ACTIONS(705), + [anon_sym_DOT] = ACTIONS(707), + [sym_integer_literal] = ACTIONS(705), + [aux_sym_string_literal_token1] = ACTIONS(705), + [sym_char_literal] = ACTIONS(705), + [anon_sym_true] = ACTIONS(707), + [anon_sym_false] = ACTIONS(707), + [anon_sym_u8] = ACTIONS(707), + [anon_sym_i8] = ACTIONS(707), + [anon_sym_u16] = ACTIONS(707), + [anon_sym_i16] = ACTIONS(707), + [anon_sym_u32] = ACTIONS(707), + [anon_sym_i32] = ACTIONS(707), + [anon_sym_u64] = ACTIONS(707), + [anon_sym_i64] = ACTIONS(707), + [anon_sym_u128] = ACTIONS(707), + [anon_sym_i128] = ACTIONS(707), + [anon_sym_isize] = ACTIONS(707), + [anon_sym_usize] = ACTIONS(707), + [anon_sym_f32] = ACTIONS(707), + [anon_sym_f64] = ACTIONS(707), + [anon_sym_bool] = ACTIONS(707), + [anon_sym_str] = ACTIONS(707), + [anon_sym_char] = ACTIONS(707), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(705), + [sym_self] = ACTIONS(707), + [sym_super] = ACTIONS(707), + [sym_crate] = ACTIONS(707), + [sym_metavariable] = ACTIONS(705), + [sym_grit_metavariable] = ACTIONS(705), + [sym_raw_string_literal] = ACTIONS(705), + [sym_float_literal] = ACTIONS(705), [sym_block_comment] = ACTIONS(3), }, [228] = { - [sym__primitive_identifier] = ACTIONS(715), - [sym_underscore] = ACTIONS(715), - [anon_sym_LPAREN] = ACTIONS(713), - [anon_sym_RBRACE] = ACTIONS(713), - [anon_sym_LBRACK] = ACTIONS(713), - [anon_sym_PLUS] = ACTIONS(715), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_QMARK] = ACTIONS(713), - [anon_sym_as] = ACTIONS(715), - [anon_sym_const] = ACTIONS(715), - [anon_sym_default] = ACTIONS(715), - [anon_sym_union] = ACTIONS(715), - [anon_sym_POUND] = ACTIONS(713), - [anon_sym_EQ] = ACTIONS(715), - [anon_sym_COMMA] = ACTIONS(713), - [anon_sym_ref] = ACTIONS(715), - [anon_sym_LT] = ACTIONS(715), - [anon_sym_GT] = ACTIONS(715), - [anon_sym_COLON_COLON] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(715), - [anon_sym_DOT_DOT_DOT] = ACTIONS(713), - [sym_mutable_specifier] = ACTIONS(715), - [anon_sym_DOT_DOT] = ACTIONS(715), - [anon_sym_DOT_DOT_EQ] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(715), - [anon_sym_AMP_AMP] = ACTIONS(713), - [anon_sym_PIPE_PIPE] = ACTIONS(713), - [anon_sym_PIPE] = ACTIONS(715), - [anon_sym_CARET] = ACTIONS(715), - [anon_sym_EQ_EQ] = ACTIONS(713), - [anon_sym_BANG_EQ] = ACTIONS(713), - [anon_sym_LT_EQ] = ACTIONS(713), - [anon_sym_GT_EQ] = ACTIONS(713), - [anon_sym_LT_LT] = ACTIONS(715), - [anon_sym_GT_GT] = ACTIONS(715), - [anon_sym_SLASH] = ACTIONS(715), - [anon_sym_PERCENT] = ACTIONS(715), - [anon_sym_PLUS_EQ] = ACTIONS(713), - [anon_sym_DASH_EQ] = ACTIONS(713), - [anon_sym_STAR_EQ] = ACTIONS(713), - [anon_sym_SLASH_EQ] = ACTIONS(713), - [anon_sym_PERCENT_EQ] = ACTIONS(713), - [anon_sym_AMP_EQ] = ACTIONS(713), - [anon_sym_PIPE_EQ] = ACTIONS(713), - [anon_sym_CARET_EQ] = ACTIONS(713), - [anon_sym_LT_LT_EQ] = ACTIONS(713), - [anon_sym_GT_GT_EQ] = ACTIONS(713), - [anon_sym_DOT] = ACTIONS(715), - [sym_integer_literal] = ACTIONS(713), - [aux_sym_string_literal_token1] = ACTIONS(713), - [sym_char_literal] = ACTIONS(713), - [anon_sym_true] = ACTIONS(715), - [anon_sym_false] = ACTIONS(715), - [anon_sym_u8] = ACTIONS(715), - [anon_sym_i8] = ACTIONS(715), - [anon_sym_u16] = ACTIONS(715), - [anon_sym_i16] = ACTIONS(715), - [anon_sym_u32] = ACTIONS(715), - [anon_sym_i32] = ACTIONS(715), - [anon_sym_u64] = ACTIONS(715), - [anon_sym_i64] = ACTIONS(715), - [anon_sym_u128] = ACTIONS(715), - [anon_sym_i128] = ACTIONS(715), - [anon_sym_isize] = ACTIONS(715), - [anon_sym_usize] = ACTIONS(715), - [anon_sym_f32] = ACTIONS(715), - [anon_sym_f64] = ACTIONS(715), - [anon_sym_bool] = ACTIONS(715), - [anon_sym_str] = ACTIONS(715), - [anon_sym_char] = ACTIONS(715), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(713), - [sym_self] = ACTIONS(715), - [sym_super] = ACTIONS(715), - [sym_crate] = ACTIONS(715), - [sym_metavariable] = ACTIONS(713), - [sym_grit_metavariable] = ACTIONS(713), - [sym_raw_string_literal] = ACTIONS(713), - [sym_float_literal] = ACTIONS(713), + [sym__primitive_identifier] = ACTIONS(806), + [sym_underscore] = ACTIONS(806), + [anon_sym_LPAREN] = ACTIONS(804), + [anon_sym_RBRACE] = ACTIONS(804), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_STAR] = ACTIONS(806), + [anon_sym_QMARK] = ACTIONS(804), + [anon_sym_as] = ACTIONS(806), + [anon_sym_const] = ACTIONS(806), + [anon_sym_default] = ACTIONS(806), + [anon_sym_union] = ACTIONS(806), + [anon_sym_POUND] = ACTIONS(804), + [anon_sym_EQ] = ACTIONS(806), + [anon_sym_COMMA] = ACTIONS(804), + [anon_sym_ref] = ACTIONS(806), + [anon_sym_LT] = ACTIONS(806), + [anon_sym_GT] = ACTIONS(806), + [anon_sym_COLON_COLON] = ACTIONS(804), + [anon_sym_AMP] = ACTIONS(806), + [anon_sym_DOT_DOT_DOT] = ACTIONS(804), + [sym_mutable_specifier] = ACTIONS(806), + [anon_sym_DOT_DOT] = ACTIONS(806), + [anon_sym_DOT_DOT_EQ] = ACTIONS(804), + [anon_sym_DASH] = ACTIONS(806), + [anon_sym_AMP_AMP] = ACTIONS(804), + [anon_sym_PIPE_PIPE] = ACTIONS(804), + [anon_sym_PIPE] = ACTIONS(806), + [anon_sym_CARET] = ACTIONS(806), + [anon_sym_EQ_EQ] = ACTIONS(804), + [anon_sym_BANG_EQ] = ACTIONS(804), + [anon_sym_LT_EQ] = ACTIONS(804), + [anon_sym_GT_EQ] = ACTIONS(804), + [anon_sym_LT_LT] = ACTIONS(806), + [anon_sym_GT_GT] = ACTIONS(806), + [anon_sym_SLASH] = ACTIONS(806), + [anon_sym_PERCENT] = ACTIONS(806), + [anon_sym_PLUS_EQ] = ACTIONS(804), + [anon_sym_DASH_EQ] = ACTIONS(804), + [anon_sym_STAR_EQ] = ACTIONS(804), + [anon_sym_SLASH_EQ] = ACTIONS(804), + [anon_sym_PERCENT_EQ] = ACTIONS(804), + [anon_sym_AMP_EQ] = ACTIONS(804), + [anon_sym_PIPE_EQ] = ACTIONS(804), + [anon_sym_CARET_EQ] = ACTIONS(804), + [anon_sym_LT_LT_EQ] = ACTIONS(804), + [anon_sym_GT_GT_EQ] = ACTIONS(804), + [anon_sym_DOT] = ACTIONS(806), + [sym_integer_literal] = ACTIONS(804), + [aux_sym_string_literal_token1] = ACTIONS(804), + [sym_char_literal] = ACTIONS(804), + [anon_sym_true] = ACTIONS(806), + [anon_sym_false] = ACTIONS(806), + [anon_sym_u8] = ACTIONS(806), + [anon_sym_i8] = ACTIONS(806), + [anon_sym_u16] = ACTIONS(806), + [anon_sym_i16] = ACTIONS(806), + [anon_sym_u32] = ACTIONS(806), + [anon_sym_i32] = ACTIONS(806), + [anon_sym_u64] = ACTIONS(806), + [anon_sym_i64] = ACTIONS(806), + [anon_sym_u128] = ACTIONS(806), + [anon_sym_i128] = ACTIONS(806), + [anon_sym_isize] = ACTIONS(806), + [anon_sym_usize] = ACTIONS(806), + [anon_sym_f32] = ACTIONS(806), + [anon_sym_f64] = ACTIONS(806), + [anon_sym_bool] = ACTIONS(806), + [anon_sym_str] = ACTIONS(806), + [anon_sym_char] = ACTIONS(806), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(804), + [sym_self] = ACTIONS(806), + [sym_super] = ACTIONS(806), + [sym_crate] = ACTIONS(806), + [sym_metavariable] = ACTIONS(804), + [sym_grit_metavariable] = ACTIONS(804), + [sym_raw_string_literal] = ACTIONS(804), + [sym_float_literal] = ACTIONS(804), [sym_block_comment] = ACTIONS(3), }, [229] = { - [sym__primitive_identifier] = ACTIONS(828), - [sym_underscore] = ACTIONS(828), - [anon_sym_LPAREN] = ACTIONS(826), - [anon_sym_RBRACE] = ACTIONS(826), - [anon_sym_LBRACK] = ACTIONS(826), - [anon_sym_PLUS] = ACTIONS(828), - [anon_sym_STAR] = ACTIONS(828), - [anon_sym_QMARK] = ACTIONS(826), - [anon_sym_as] = ACTIONS(828), - [anon_sym_const] = ACTIONS(828), - [anon_sym_default] = ACTIONS(828), - [anon_sym_union] = ACTIONS(828), - [anon_sym_POUND] = ACTIONS(826), - [anon_sym_EQ] = ACTIONS(828), - [anon_sym_COMMA] = ACTIONS(826), - [anon_sym_ref] = ACTIONS(828), - [anon_sym_LT] = ACTIONS(828), - [anon_sym_GT] = ACTIONS(828), - [anon_sym_COLON_COLON] = ACTIONS(826), - [anon_sym_AMP] = ACTIONS(828), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_mutable_specifier] = ACTIONS(828), - [anon_sym_DOT_DOT] = ACTIONS(828), - [anon_sym_DOT_DOT_EQ] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(828), - [anon_sym_AMP_AMP] = ACTIONS(826), - [anon_sym_PIPE_PIPE] = ACTIONS(826), - [anon_sym_PIPE] = ACTIONS(828), - [anon_sym_CARET] = ACTIONS(828), - [anon_sym_EQ_EQ] = ACTIONS(826), - [anon_sym_BANG_EQ] = ACTIONS(826), - [anon_sym_LT_EQ] = ACTIONS(826), - [anon_sym_GT_EQ] = ACTIONS(826), - [anon_sym_LT_LT] = ACTIONS(828), - [anon_sym_GT_GT] = ACTIONS(828), - [anon_sym_SLASH] = ACTIONS(828), - [anon_sym_PERCENT] = ACTIONS(828), - [anon_sym_PLUS_EQ] = ACTIONS(826), - [anon_sym_DASH_EQ] = ACTIONS(826), - [anon_sym_STAR_EQ] = ACTIONS(826), - [anon_sym_SLASH_EQ] = ACTIONS(826), - [anon_sym_PERCENT_EQ] = ACTIONS(826), - [anon_sym_AMP_EQ] = ACTIONS(826), - [anon_sym_PIPE_EQ] = ACTIONS(826), - [anon_sym_CARET_EQ] = ACTIONS(826), - [anon_sym_LT_LT_EQ] = ACTIONS(826), - [anon_sym_GT_GT_EQ] = ACTIONS(826), - [anon_sym_DOT] = ACTIONS(828), - [sym_integer_literal] = ACTIONS(826), - [aux_sym_string_literal_token1] = ACTIONS(826), - [sym_char_literal] = ACTIONS(826), - [anon_sym_true] = ACTIONS(828), - [anon_sym_false] = ACTIONS(828), - [anon_sym_u8] = ACTIONS(828), - [anon_sym_i8] = ACTIONS(828), - [anon_sym_u16] = ACTIONS(828), - [anon_sym_i16] = ACTIONS(828), - [anon_sym_u32] = ACTIONS(828), - [anon_sym_i32] = ACTIONS(828), - [anon_sym_u64] = ACTIONS(828), - [anon_sym_i64] = ACTIONS(828), - [anon_sym_u128] = ACTIONS(828), - [anon_sym_i128] = ACTIONS(828), - [anon_sym_isize] = ACTIONS(828), - [anon_sym_usize] = ACTIONS(828), - [anon_sym_f32] = ACTIONS(828), - [anon_sym_f64] = ACTIONS(828), - [anon_sym_bool] = ACTIONS(828), - [anon_sym_str] = ACTIONS(828), - [anon_sym_char] = ACTIONS(828), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(826), - [sym_self] = ACTIONS(828), - [sym_super] = ACTIONS(828), - [sym_crate] = ACTIONS(828), - [sym_metavariable] = ACTIONS(826), - [sym_grit_metavariable] = ACTIONS(826), - [sym_raw_string_literal] = ACTIONS(826), - [sym_float_literal] = ACTIONS(826), + [sym__primitive_identifier] = ACTIONS(790), + [sym_underscore] = ACTIONS(790), + [anon_sym_LPAREN] = ACTIONS(788), + [anon_sym_RBRACE] = ACTIONS(788), + [anon_sym_LBRACK] = ACTIONS(788), + [anon_sym_PLUS] = ACTIONS(790), + [anon_sym_STAR] = ACTIONS(790), + [anon_sym_QMARK] = ACTIONS(788), + [anon_sym_as] = ACTIONS(790), + [anon_sym_const] = ACTIONS(790), + [anon_sym_default] = ACTIONS(790), + [anon_sym_union] = ACTIONS(790), + [anon_sym_POUND] = ACTIONS(788), + [anon_sym_EQ] = ACTIONS(790), + [anon_sym_COMMA] = ACTIONS(788), + [anon_sym_ref] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(790), + [anon_sym_GT] = ACTIONS(790), + [anon_sym_COLON_COLON] = ACTIONS(788), + [anon_sym_AMP] = ACTIONS(790), + [anon_sym_DOT_DOT_DOT] = ACTIONS(788), + [sym_mutable_specifier] = ACTIONS(790), + [anon_sym_DOT_DOT] = ACTIONS(790), + [anon_sym_DOT_DOT_EQ] = ACTIONS(788), + [anon_sym_DASH] = ACTIONS(790), + [anon_sym_AMP_AMP] = ACTIONS(788), + [anon_sym_PIPE_PIPE] = ACTIONS(788), + [anon_sym_PIPE] = ACTIONS(790), + [anon_sym_CARET] = ACTIONS(790), + [anon_sym_EQ_EQ] = ACTIONS(788), + [anon_sym_BANG_EQ] = ACTIONS(788), + [anon_sym_LT_EQ] = ACTIONS(788), + [anon_sym_GT_EQ] = ACTIONS(788), + [anon_sym_LT_LT] = ACTIONS(790), + [anon_sym_GT_GT] = ACTIONS(790), + [anon_sym_SLASH] = ACTIONS(790), + [anon_sym_PERCENT] = ACTIONS(790), + [anon_sym_PLUS_EQ] = ACTIONS(788), + [anon_sym_DASH_EQ] = ACTIONS(788), + [anon_sym_STAR_EQ] = ACTIONS(788), + [anon_sym_SLASH_EQ] = ACTIONS(788), + [anon_sym_PERCENT_EQ] = ACTIONS(788), + [anon_sym_AMP_EQ] = ACTIONS(788), + [anon_sym_PIPE_EQ] = ACTIONS(788), + [anon_sym_CARET_EQ] = ACTIONS(788), + [anon_sym_LT_LT_EQ] = ACTIONS(788), + [anon_sym_GT_GT_EQ] = ACTIONS(788), + [anon_sym_DOT] = ACTIONS(790), + [sym_integer_literal] = ACTIONS(788), + [aux_sym_string_literal_token1] = ACTIONS(788), + [sym_char_literal] = ACTIONS(788), + [anon_sym_true] = ACTIONS(790), + [anon_sym_false] = ACTIONS(790), + [anon_sym_u8] = ACTIONS(790), + [anon_sym_i8] = ACTIONS(790), + [anon_sym_u16] = ACTIONS(790), + [anon_sym_i16] = ACTIONS(790), + [anon_sym_u32] = ACTIONS(790), + [anon_sym_i32] = ACTIONS(790), + [anon_sym_u64] = ACTIONS(790), + [anon_sym_i64] = ACTIONS(790), + [anon_sym_u128] = ACTIONS(790), + [anon_sym_i128] = ACTIONS(790), + [anon_sym_isize] = ACTIONS(790), + [anon_sym_usize] = ACTIONS(790), + [anon_sym_f32] = ACTIONS(790), + [anon_sym_f64] = ACTIONS(790), + [anon_sym_bool] = ACTIONS(790), + [anon_sym_str] = ACTIONS(790), + [anon_sym_char] = ACTIONS(790), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(788), + [sym_self] = ACTIONS(790), + [sym_super] = ACTIONS(790), + [sym_crate] = ACTIONS(790), + [sym_metavariable] = ACTIONS(788), + [sym_grit_metavariable] = ACTIONS(788), + [sym_raw_string_literal] = ACTIONS(788), + [sym_float_literal] = ACTIONS(788), [sym_block_comment] = ACTIONS(3), }, [230] = { - [sym__primitive_identifier] = ACTIONS(812), - [sym_underscore] = ACTIONS(812), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_RBRACE] = ACTIONS(810), - [anon_sym_LBRACK] = ACTIONS(810), - [anon_sym_PLUS] = ACTIONS(812), - [anon_sym_STAR] = ACTIONS(812), - [anon_sym_QMARK] = ACTIONS(810), - [anon_sym_as] = ACTIONS(812), - [anon_sym_const] = ACTIONS(812), - [anon_sym_default] = ACTIONS(812), - [anon_sym_union] = ACTIONS(812), - [anon_sym_POUND] = ACTIONS(810), - [anon_sym_EQ] = ACTIONS(812), - [anon_sym_COMMA] = ACTIONS(810), - [anon_sym_ref] = ACTIONS(812), - [anon_sym_LT] = ACTIONS(812), - [anon_sym_GT] = ACTIONS(812), - [anon_sym_COLON_COLON] = ACTIONS(810), - [anon_sym_AMP] = ACTIONS(812), - [anon_sym_DOT_DOT_DOT] = ACTIONS(810), - [sym_mutable_specifier] = ACTIONS(812), - [anon_sym_DOT_DOT] = ACTIONS(812), - [anon_sym_DOT_DOT_EQ] = ACTIONS(810), - [anon_sym_DASH] = ACTIONS(812), - [anon_sym_AMP_AMP] = ACTIONS(810), - [anon_sym_PIPE_PIPE] = ACTIONS(810), - [anon_sym_PIPE] = ACTIONS(812), - [anon_sym_CARET] = ACTIONS(812), - [anon_sym_EQ_EQ] = ACTIONS(810), - [anon_sym_BANG_EQ] = ACTIONS(810), - [anon_sym_LT_EQ] = ACTIONS(810), - [anon_sym_GT_EQ] = ACTIONS(810), - [anon_sym_LT_LT] = ACTIONS(812), - [anon_sym_GT_GT] = ACTIONS(812), - [anon_sym_SLASH] = ACTIONS(812), - [anon_sym_PERCENT] = ACTIONS(812), - [anon_sym_PLUS_EQ] = ACTIONS(810), - [anon_sym_DASH_EQ] = ACTIONS(810), - [anon_sym_STAR_EQ] = ACTIONS(810), - [anon_sym_SLASH_EQ] = ACTIONS(810), - [anon_sym_PERCENT_EQ] = ACTIONS(810), - [anon_sym_AMP_EQ] = ACTIONS(810), - [anon_sym_PIPE_EQ] = ACTIONS(810), - [anon_sym_CARET_EQ] = ACTIONS(810), - [anon_sym_LT_LT_EQ] = ACTIONS(810), - [anon_sym_GT_GT_EQ] = ACTIONS(810), - [anon_sym_DOT] = ACTIONS(812), - [sym_integer_literal] = ACTIONS(810), - [aux_sym_string_literal_token1] = ACTIONS(810), - [sym_char_literal] = ACTIONS(810), - [anon_sym_true] = ACTIONS(812), - [anon_sym_false] = ACTIONS(812), - [anon_sym_u8] = ACTIONS(812), - [anon_sym_i8] = ACTIONS(812), - [anon_sym_u16] = ACTIONS(812), - [anon_sym_i16] = ACTIONS(812), - [anon_sym_u32] = ACTIONS(812), - [anon_sym_i32] = ACTIONS(812), - [anon_sym_u64] = ACTIONS(812), - [anon_sym_i64] = ACTIONS(812), - [anon_sym_u128] = ACTIONS(812), - [anon_sym_i128] = ACTIONS(812), - [anon_sym_isize] = ACTIONS(812), - [anon_sym_usize] = ACTIONS(812), - [anon_sym_f32] = ACTIONS(812), - [anon_sym_f64] = ACTIONS(812), - [anon_sym_bool] = ACTIONS(812), - [anon_sym_str] = ACTIONS(812), - [anon_sym_char] = ACTIONS(812), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(810), - [sym_self] = ACTIONS(812), - [sym_super] = ACTIONS(812), - [sym_crate] = ACTIONS(812), - [sym_metavariable] = ACTIONS(810), - [sym_grit_metavariable] = ACTIONS(810), - [sym_raw_string_literal] = ACTIONS(810), - [sym_float_literal] = ACTIONS(810), + [sym__primitive_identifier] = ACTIONS(814), + [sym_underscore] = ACTIONS(814), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_RBRACE] = ACTIONS(812), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_PLUS] = ACTIONS(814), + [anon_sym_STAR] = ACTIONS(814), + [anon_sym_QMARK] = ACTIONS(812), + [anon_sym_as] = ACTIONS(814), + [anon_sym_const] = ACTIONS(814), + [anon_sym_default] = ACTIONS(814), + [anon_sym_union] = ACTIONS(814), + [anon_sym_POUND] = ACTIONS(812), + [anon_sym_EQ] = ACTIONS(814), + [anon_sym_COMMA] = ACTIONS(812), + [anon_sym_ref] = ACTIONS(814), + [anon_sym_LT] = ACTIONS(814), + [anon_sym_GT] = ACTIONS(814), + [anon_sym_COLON_COLON] = ACTIONS(812), + [anon_sym_AMP] = ACTIONS(814), + [anon_sym_DOT_DOT_DOT] = ACTIONS(812), + [sym_mutable_specifier] = ACTIONS(814), + [anon_sym_DOT_DOT] = ACTIONS(814), + [anon_sym_DOT_DOT_EQ] = ACTIONS(812), + [anon_sym_DASH] = ACTIONS(814), + [anon_sym_AMP_AMP] = ACTIONS(812), + [anon_sym_PIPE_PIPE] = ACTIONS(812), + [anon_sym_PIPE] = ACTIONS(814), + [anon_sym_CARET] = ACTIONS(814), + [anon_sym_EQ_EQ] = ACTIONS(812), + [anon_sym_BANG_EQ] = ACTIONS(812), + [anon_sym_LT_EQ] = ACTIONS(812), + [anon_sym_GT_EQ] = ACTIONS(812), + [anon_sym_LT_LT] = ACTIONS(814), + [anon_sym_GT_GT] = ACTIONS(814), + [anon_sym_SLASH] = ACTIONS(814), + [anon_sym_PERCENT] = ACTIONS(814), + [anon_sym_PLUS_EQ] = ACTIONS(812), + [anon_sym_DASH_EQ] = ACTIONS(812), + [anon_sym_STAR_EQ] = ACTIONS(812), + [anon_sym_SLASH_EQ] = ACTIONS(812), + [anon_sym_PERCENT_EQ] = ACTIONS(812), + [anon_sym_AMP_EQ] = ACTIONS(812), + [anon_sym_PIPE_EQ] = ACTIONS(812), + [anon_sym_CARET_EQ] = ACTIONS(812), + [anon_sym_LT_LT_EQ] = ACTIONS(812), + [anon_sym_GT_GT_EQ] = ACTIONS(812), + [anon_sym_DOT] = ACTIONS(814), + [sym_integer_literal] = ACTIONS(812), + [aux_sym_string_literal_token1] = ACTIONS(812), + [sym_char_literal] = ACTIONS(812), + [anon_sym_true] = ACTIONS(814), + [anon_sym_false] = ACTIONS(814), + [anon_sym_u8] = ACTIONS(814), + [anon_sym_i8] = ACTIONS(814), + [anon_sym_u16] = ACTIONS(814), + [anon_sym_i16] = ACTIONS(814), + [anon_sym_u32] = ACTIONS(814), + [anon_sym_i32] = ACTIONS(814), + [anon_sym_u64] = ACTIONS(814), + [anon_sym_i64] = ACTIONS(814), + [anon_sym_u128] = ACTIONS(814), + [anon_sym_i128] = ACTIONS(814), + [anon_sym_isize] = ACTIONS(814), + [anon_sym_usize] = ACTIONS(814), + [anon_sym_f32] = ACTIONS(814), + [anon_sym_f64] = ACTIONS(814), + [anon_sym_bool] = ACTIONS(814), + [anon_sym_str] = ACTIONS(814), + [anon_sym_char] = ACTIONS(814), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(812), + [sym_self] = ACTIONS(814), + [sym_super] = ACTIONS(814), + [sym_crate] = ACTIONS(814), + [sym_metavariable] = ACTIONS(812), + [sym_grit_metavariable] = ACTIONS(812), + [sym_raw_string_literal] = ACTIONS(812), + [sym_float_literal] = ACTIONS(812), [sym_block_comment] = ACTIONS(3), }, [231] = { - [sym__primitive_identifier] = ACTIONS(735), - [sym_underscore] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(733), - [anon_sym_RBRACE] = ACTIONS(733), - [anon_sym_LBRACK] = ACTIONS(733), - [anon_sym_PLUS] = ACTIONS(735), - [anon_sym_STAR] = ACTIONS(735), - [anon_sym_QMARK] = ACTIONS(733), - [anon_sym_as] = ACTIONS(735), - [anon_sym_const] = ACTIONS(735), - [anon_sym_default] = ACTIONS(735), - [anon_sym_union] = ACTIONS(735), - [anon_sym_POUND] = ACTIONS(733), - [anon_sym_EQ] = ACTIONS(735), - [anon_sym_COMMA] = ACTIONS(733), - [anon_sym_ref] = ACTIONS(735), - [anon_sym_LT] = ACTIONS(735), - [anon_sym_GT] = ACTIONS(735), - [anon_sym_COLON_COLON] = ACTIONS(733), - [anon_sym_AMP] = ACTIONS(735), - [anon_sym_DOT_DOT_DOT] = ACTIONS(733), - [sym_mutable_specifier] = ACTIONS(735), - [anon_sym_DOT_DOT] = ACTIONS(735), - [anon_sym_DOT_DOT_EQ] = ACTIONS(733), - [anon_sym_DASH] = ACTIONS(735), - [anon_sym_AMP_AMP] = ACTIONS(733), - [anon_sym_PIPE_PIPE] = ACTIONS(733), - [anon_sym_PIPE] = ACTIONS(735), - [anon_sym_CARET] = ACTIONS(735), - [anon_sym_EQ_EQ] = ACTIONS(733), - [anon_sym_BANG_EQ] = ACTIONS(733), - [anon_sym_LT_EQ] = ACTIONS(733), - [anon_sym_GT_EQ] = ACTIONS(733), - [anon_sym_LT_LT] = ACTIONS(735), - [anon_sym_GT_GT] = ACTIONS(735), - [anon_sym_SLASH] = ACTIONS(735), - [anon_sym_PERCENT] = ACTIONS(735), - [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_AMP_EQ] = ACTIONS(733), - [anon_sym_PIPE_EQ] = ACTIONS(733), - [anon_sym_CARET_EQ] = ACTIONS(733), - [anon_sym_LT_LT_EQ] = ACTIONS(733), - [anon_sym_GT_GT_EQ] = ACTIONS(733), - [anon_sym_DOT] = ACTIONS(735), - [sym_integer_literal] = ACTIONS(733), - [aux_sym_string_literal_token1] = ACTIONS(733), - [sym_char_literal] = ACTIONS(733), - [anon_sym_true] = ACTIONS(735), - [anon_sym_false] = ACTIONS(735), - [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), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(733), - [sym_self] = ACTIONS(735), - [sym_super] = ACTIONS(735), - [sym_crate] = ACTIONS(735), - [sym_metavariable] = ACTIONS(733), - [sym_grit_metavariable] = ACTIONS(733), - [sym_raw_string_literal] = ACTIONS(733), - [sym_float_literal] = ACTIONS(733), + [sym__token_pattern] = STATE(231), + [sym_token_tree_pattern] = STATE(231), + [sym_token_binding_pattern] = STATE(231), + [sym_token_repetition_pattern] = STATE(231), + [sym__literal] = STATE(231), + [sym_string_literal] = STATE(652), + [sym_boolean_literal] = STATE(652), + [sym_primitive_type] = STATE(231), + [sym_identifier] = STATE(231), + [aux_sym_token_tree_pattern_repeat1] = STATE(231), + [sym__primitive_identifier] = ACTIONS(1080), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_RPAREN] = ACTIONS(1086), + [anon_sym_LBRACE] = ACTIONS(1088), + [anon_sym_RBRACE] = ACTIONS(1086), + [anon_sym_LBRACK] = ACTIONS(1091), + [anon_sym_RBRACK] = ACTIONS(1086), + [anon_sym_DOLLAR] = ACTIONS(1094), + [aux_sym__non_special_token_token1] = ACTIONS(1097), + [anon_sym_SQUOTE] = ACTIONS(1097), + [anon_sym_as] = ACTIONS(1097), + [anon_sym_async] = ACTIONS(1097), + [anon_sym_await] = ACTIONS(1097), + [anon_sym_break] = ACTIONS(1097), + [anon_sym_const] = ACTIONS(1097), + [anon_sym_continue] = ACTIONS(1097), + [anon_sym_default] = ACTIONS(1097), + [anon_sym_enum] = ACTIONS(1097), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1097), + [anon_sym_if] = ACTIONS(1097), + [anon_sym_impl] = ACTIONS(1097), + [anon_sym_let] = ACTIONS(1097), + [anon_sym_loop] = ACTIONS(1097), + [anon_sym_match] = ACTIONS(1097), + [anon_sym_mod] = ACTIONS(1097), + [anon_sym_pub] = ACTIONS(1097), + [anon_sym_return] = ACTIONS(1097), + [anon_sym_static] = ACTIONS(1097), + [anon_sym_struct] = ACTIONS(1097), + [anon_sym_trait] = ACTIONS(1097), + [anon_sym_type] = ACTIONS(1097), + [anon_sym_union] = ACTIONS(1097), + [anon_sym_unsafe] = ACTIONS(1097), + [anon_sym_use] = ACTIONS(1097), + [anon_sym_where] = ACTIONS(1097), + [anon_sym_while] = ACTIONS(1097), + [sym_mutable_specifier] = ACTIONS(1097), + [sym_integer_literal] = ACTIONS(1100), + [aux_sym_string_literal_token1] = ACTIONS(1103), + [sym_char_literal] = ACTIONS(1100), + [anon_sym_true] = ACTIONS(1106), + [anon_sym_false] = ACTIONS(1106), + [anon_sym_u8] = ACTIONS(1109), + [anon_sym_i8] = ACTIONS(1109), + [anon_sym_u16] = ACTIONS(1109), + [anon_sym_i16] = ACTIONS(1109), + [anon_sym_u32] = ACTIONS(1109), + [anon_sym_i32] = ACTIONS(1109), + [anon_sym_u64] = ACTIONS(1109), + [anon_sym_i64] = ACTIONS(1109), + [anon_sym_u128] = ACTIONS(1109), + [anon_sym_i128] = ACTIONS(1109), + [anon_sym_isize] = ACTIONS(1109), + [anon_sym_usize] = ACTIONS(1109), + [anon_sym_f32] = ACTIONS(1109), + [anon_sym_f64] = ACTIONS(1109), + [anon_sym_bool] = ACTIONS(1109), + [anon_sym_str] = ACTIONS(1109), + [anon_sym_char] = ACTIONS(1109), + [sym_line_comment] = ACTIONS(1112), + [sym__raw_identifier] = ACTIONS(1114), + [sym_self] = ACTIONS(1097), + [sym_super] = ACTIONS(1097), + [sym_crate] = ACTIONS(1097), + [sym_metavariable] = ACTIONS(1117), + [sym_grit_metavariable] = ACTIONS(1120), + [sym_raw_string_literal] = ACTIONS(1100), + [sym_float_literal] = ACTIONS(1100), [sym_block_comment] = ACTIONS(3), }, [232] = { - [sym__primitive_identifier] = ACTIONS(836), - [sym_underscore] = ACTIONS(836), - [anon_sym_LPAREN] = ACTIONS(834), - [anon_sym_RBRACE] = ACTIONS(834), - [anon_sym_LBRACK] = ACTIONS(834), - [anon_sym_PLUS] = ACTIONS(836), - [anon_sym_STAR] = ACTIONS(836), - [anon_sym_QMARK] = ACTIONS(834), - [anon_sym_as] = ACTIONS(836), - [anon_sym_const] = ACTIONS(836), - [anon_sym_default] = ACTIONS(836), - [anon_sym_union] = ACTIONS(836), - [anon_sym_POUND] = ACTIONS(834), - [anon_sym_EQ] = ACTIONS(836), - [anon_sym_COMMA] = ACTIONS(834), - [anon_sym_ref] = ACTIONS(836), - [anon_sym_LT] = ACTIONS(836), - [anon_sym_GT] = ACTIONS(836), - [anon_sym_COLON_COLON] = ACTIONS(834), - [anon_sym_AMP] = ACTIONS(836), - [anon_sym_DOT_DOT_DOT] = ACTIONS(834), - [sym_mutable_specifier] = ACTIONS(836), - [anon_sym_DOT_DOT] = ACTIONS(836), - [anon_sym_DOT_DOT_EQ] = ACTIONS(834), - [anon_sym_DASH] = ACTIONS(836), - [anon_sym_AMP_AMP] = ACTIONS(834), - [anon_sym_PIPE_PIPE] = ACTIONS(834), - [anon_sym_PIPE] = ACTIONS(836), - [anon_sym_CARET] = ACTIONS(836), - [anon_sym_EQ_EQ] = ACTIONS(834), - [anon_sym_BANG_EQ] = ACTIONS(834), - [anon_sym_LT_EQ] = ACTIONS(834), - [anon_sym_GT_EQ] = ACTIONS(834), - [anon_sym_LT_LT] = ACTIONS(836), - [anon_sym_GT_GT] = ACTIONS(836), - [anon_sym_SLASH] = ACTIONS(836), - [anon_sym_PERCENT] = ACTIONS(836), - [anon_sym_PLUS_EQ] = ACTIONS(834), - [anon_sym_DASH_EQ] = ACTIONS(834), - [anon_sym_STAR_EQ] = ACTIONS(834), - [anon_sym_SLASH_EQ] = ACTIONS(834), - [anon_sym_PERCENT_EQ] = ACTIONS(834), - [anon_sym_AMP_EQ] = ACTIONS(834), - [anon_sym_PIPE_EQ] = ACTIONS(834), - [anon_sym_CARET_EQ] = ACTIONS(834), - [anon_sym_LT_LT_EQ] = ACTIONS(834), - [anon_sym_GT_GT_EQ] = ACTIONS(834), - [anon_sym_DOT] = ACTIONS(836), - [sym_integer_literal] = ACTIONS(834), - [aux_sym_string_literal_token1] = ACTIONS(834), - [sym_char_literal] = ACTIONS(834), - [anon_sym_true] = ACTIONS(836), - [anon_sym_false] = ACTIONS(836), - [anon_sym_u8] = ACTIONS(836), - [anon_sym_i8] = ACTIONS(836), - [anon_sym_u16] = ACTIONS(836), - [anon_sym_i16] = ACTIONS(836), - [anon_sym_u32] = ACTIONS(836), - [anon_sym_i32] = ACTIONS(836), - [anon_sym_u64] = ACTIONS(836), - [anon_sym_i64] = ACTIONS(836), - [anon_sym_u128] = ACTIONS(836), - [anon_sym_i128] = ACTIONS(836), - [anon_sym_isize] = ACTIONS(836), - [anon_sym_usize] = ACTIONS(836), - [anon_sym_f32] = ACTIONS(836), - [anon_sym_f64] = ACTIONS(836), - [anon_sym_bool] = ACTIONS(836), - [anon_sym_str] = ACTIONS(836), - [anon_sym_char] = ACTIONS(836), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(834), - [sym_self] = ACTIONS(836), - [sym_super] = ACTIONS(836), - [sym_crate] = ACTIONS(836), - [sym_metavariable] = ACTIONS(834), - [sym_grit_metavariable] = ACTIONS(834), - [sym_raw_string_literal] = ACTIONS(834), - [sym_float_literal] = ACTIONS(834), + [sym__primitive_identifier] = ACTIONS(733), + [sym_underscore] = ACTIONS(733), + [anon_sym_LPAREN] = ACTIONS(731), + [anon_sym_RBRACE] = ACTIONS(731), + [anon_sym_LBRACK] = ACTIONS(731), + [anon_sym_PLUS] = ACTIONS(733), + [anon_sym_STAR] = ACTIONS(733), + [anon_sym_QMARK] = ACTIONS(731), + [anon_sym_as] = ACTIONS(733), + [anon_sym_const] = ACTIONS(733), + [anon_sym_default] = ACTIONS(733), + [anon_sym_union] = ACTIONS(733), + [anon_sym_POUND] = ACTIONS(731), + [anon_sym_EQ] = ACTIONS(733), + [anon_sym_COMMA] = ACTIONS(731), + [anon_sym_ref] = ACTIONS(733), + [anon_sym_LT] = ACTIONS(733), + [anon_sym_GT] = ACTIONS(733), + [anon_sym_COLON_COLON] = ACTIONS(731), + [anon_sym_AMP] = ACTIONS(733), + [anon_sym_DOT_DOT_DOT] = ACTIONS(731), + [sym_mutable_specifier] = ACTIONS(733), + [anon_sym_DOT_DOT] = ACTIONS(733), + [anon_sym_DOT_DOT_EQ] = ACTIONS(731), + [anon_sym_DASH] = ACTIONS(733), + [anon_sym_AMP_AMP] = ACTIONS(731), + [anon_sym_PIPE_PIPE] = ACTIONS(731), + [anon_sym_PIPE] = ACTIONS(733), + [anon_sym_CARET] = ACTIONS(733), + [anon_sym_EQ_EQ] = ACTIONS(731), + [anon_sym_BANG_EQ] = ACTIONS(731), + [anon_sym_LT_EQ] = ACTIONS(731), + [anon_sym_GT_EQ] = ACTIONS(731), + [anon_sym_LT_LT] = ACTIONS(733), + [anon_sym_GT_GT] = ACTIONS(733), + [anon_sym_SLASH] = ACTIONS(733), + [anon_sym_PERCENT] = ACTIONS(733), + [anon_sym_PLUS_EQ] = ACTIONS(731), + [anon_sym_DASH_EQ] = ACTIONS(731), + [anon_sym_STAR_EQ] = ACTIONS(731), + [anon_sym_SLASH_EQ] = ACTIONS(731), + [anon_sym_PERCENT_EQ] = ACTIONS(731), + [anon_sym_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_EQ] = ACTIONS(731), + [anon_sym_CARET_EQ] = ACTIONS(731), + [anon_sym_LT_LT_EQ] = ACTIONS(731), + [anon_sym_GT_GT_EQ] = ACTIONS(731), + [anon_sym_DOT] = ACTIONS(733), + [sym_integer_literal] = ACTIONS(731), + [aux_sym_string_literal_token1] = ACTIONS(731), + [sym_char_literal] = ACTIONS(731), + [anon_sym_true] = ACTIONS(733), + [anon_sym_false] = ACTIONS(733), + [anon_sym_u8] = ACTIONS(733), + [anon_sym_i8] = ACTIONS(733), + [anon_sym_u16] = ACTIONS(733), + [anon_sym_i16] = ACTIONS(733), + [anon_sym_u32] = ACTIONS(733), + [anon_sym_i32] = ACTIONS(733), + [anon_sym_u64] = ACTIONS(733), + [anon_sym_i64] = ACTIONS(733), + [anon_sym_u128] = ACTIONS(733), + [anon_sym_i128] = ACTIONS(733), + [anon_sym_isize] = ACTIONS(733), + [anon_sym_usize] = ACTIONS(733), + [anon_sym_f32] = ACTIONS(733), + [anon_sym_f64] = ACTIONS(733), + [anon_sym_bool] = ACTIONS(733), + [anon_sym_str] = ACTIONS(733), + [anon_sym_char] = ACTIONS(733), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(731), + [sym_self] = ACTIONS(733), + [sym_super] = ACTIONS(733), + [sym_crate] = ACTIONS(733), + [sym_metavariable] = ACTIONS(731), + [sym_grit_metavariable] = ACTIONS(731), + [sym_raw_string_literal] = ACTIONS(731), + [sym_float_literal] = ACTIONS(731), [sym_block_comment] = ACTIONS(3), }, [233] = { - [sym__primitive_identifier] = ACTIONS(840), - [sym_underscore] = ACTIONS(840), - [anon_sym_LPAREN] = ACTIONS(838), - [anon_sym_RBRACE] = ACTIONS(838), - [anon_sym_LBRACK] = ACTIONS(838), - [anon_sym_PLUS] = ACTIONS(840), - [anon_sym_STAR] = ACTIONS(840), - [anon_sym_QMARK] = ACTIONS(838), - [anon_sym_as] = ACTIONS(840), - [anon_sym_const] = ACTIONS(840), - [anon_sym_default] = ACTIONS(840), - [anon_sym_union] = ACTIONS(840), - [anon_sym_POUND] = ACTIONS(838), - [anon_sym_EQ] = ACTIONS(840), - [anon_sym_COMMA] = ACTIONS(838), - [anon_sym_ref] = ACTIONS(840), - [anon_sym_LT] = ACTIONS(840), - [anon_sym_GT] = ACTIONS(840), - [anon_sym_COLON_COLON] = ACTIONS(838), - [anon_sym_AMP] = ACTIONS(840), - [anon_sym_DOT_DOT_DOT] = ACTIONS(838), - [sym_mutable_specifier] = ACTIONS(840), - [anon_sym_DOT_DOT] = ACTIONS(840), - [anon_sym_DOT_DOT_EQ] = ACTIONS(838), - [anon_sym_DASH] = ACTIONS(840), - [anon_sym_AMP_AMP] = ACTIONS(838), - [anon_sym_PIPE_PIPE] = ACTIONS(838), - [anon_sym_PIPE] = ACTIONS(840), - [anon_sym_CARET] = ACTIONS(840), - [anon_sym_EQ_EQ] = ACTIONS(838), - [anon_sym_BANG_EQ] = ACTIONS(838), - [anon_sym_LT_EQ] = ACTIONS(838), - [anon_sym_GT_EQ] = ACTIONS(838), - [anon_sym_LT_LT] = ACTIONS(840), - [anon_sym_GT_GT] = ACTIONS(840), - [anon_sym_SLASH] = ACTIONS(840), - [anon_sym_PERCENT] = ACTIONS(840), - [anon_sym_PLUS_EQ] = ACTIONS(838), - [anon_sym_DASH_EQ] = ACTIONS(838), - [anon_sym_STAR_EQ] = ACTIONS(838), - [anon_sym_SLASH_EQ] = ACTIONS(838), - [anon_sym_PERCENT_EQ] = ACTIONS(838), - [anon_sym_AMP_EQ] = ACTIONS(838), - [anon_sym_PIPE_EQ] = ACTIONS(838), - [anon_sym_CARET_EQ] = ACTIONS(838), - [anon_sym_LT_LT_EQ] = ACTIONS(838), - [anon_sym_GT_GT_EQ] = ACTIONS(838), - [anon_sym_DOT] = ACTIONS(840), - [sym_integer_literal] = ACTIONS(838), - [aux_sym_string_literal_token1] = ACTIONS(838), - [sym_char_literal] = ACTIONS(838), - [anon_sym_true] = ACTIONS(840), - [anon_sym_false] = ACTIONS(840), - [anon_sym_u8] = ACTIONS(840), - [anon_sym_i8] = ACTIONS(840), - [anon_sym_u16] = ACTIONS(840), - [anon_sym_i16] = ACTIONS(840), - [anon_sym_u32] = ACTIONS(840), - [anon_sym_i32] = ACTIONS(840), - [anon_sym_u64] = ACTIONS(840), - [anon_sym_i64] = ACTIONS(840), - [anon_sym_u128] = ACTIONS(840), - [anon_sym_i128] = ACTIONS(840), - [anon_sym_isize] = ACTIONS(840), - [anon_sym_usize] = ACTIONS(840), - [anon_sym_f32] = ACTIONS(840), - [anon_sym_f64] = ACTIONS(840), - [anon_sym_bool] = ACTIONS(840), - [anon_sym_str] = ACTIONS(840), - [anon_sym_char] = ACTIONS(840), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(838), - [sym_self] = ACTIONS(840), - [sym_super] = ACTIONS(840), - [sym_crate] = ACTIONS(840), - [sym_metavariable] = ACTIONS(838), - [sym_grit_metavariable] = ACTIONS(838), - [sym_raw_string_literal] = ACTIONS(838), - [sym_float_literal] = ACTIONS(838), - [sym_block_comment] = ACTIONS(3), - }, - [234] = { - [sym__primitive_identifier] = ACTIONS(820), - [sym_underscore] = ACTIONS(820), - [anon_sym_LPAREN] = ACTIONS(818), - [anon_sym_RBRACE] = ACTIONS(818), - [anon_sym_LBRACK] = ACTIONS(818), - [anon_sym_PLUS] = ACTIONS(820), - [anon_sym_STAR] = ACTIONS(820), - [anon_sym_QMARK] = ACTIONS(818), - [anon_sym_as] = ACTIONS(820), - [anon_sym_const] = ACTIONS(820), - [anon_sym_default] = ACTIONS(820), - [anon_sym_union] = ACTIONS(820), - [anon_sym_POUND] = ACTIONS(818), - [anon_sym_EQ] = ACTIONS(820), - [anon_sym_COMMA] = ACTIONS(818), - [anon_sym_ref] = ACTIONS(820), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_GT] = ACTIONS(820), - [anon_sym_COLON_COLON] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(820), - [anon_sym_DOT_DOT_DOT] = ACTIONS(818), - [sym_mutable_specifier] = ACTIONS(820), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DOT_DOT_EQ] = ACTIONS(818), - [anon_sym_DASH] = ACTIONS(820), - [anon_sym_AMP_AMP] = ACTIONS(818), - [anon_sym_PIPE_PIPE] = ACTIONS(818), - [anon_sym_PIPE] = ACTIONS(820), - [anon_sym_CARET] = ACTIONS(820), - [anon_sym_EQ_EQ] = ACTIONS(818), - [anon_sym_BANG_EQ] = ACTIONS(818), - [anon_sym_LT_EQ] = ACTIONS(818), - [anon_sym_GT_EQ] = ACTIONS(818), - [anon_sym_LT_LT] = ACTIONS(820), - [anon_sym_GT_GT] = ACTIONS(820), - [anon_sym_SLASH] = ACTIONS(820), - [anon_sym_PERCENT] = ACTIONS(820), - [anon_sym_PLUS_EQ] = ACTIONS(818), - [anon_sym_DASH_EQ] = ACTIONS(818), - [anon_sym_STAR_EQ] = ACTIONS(818), - [anon_sym_SLASH_EQ] = ACTIONS(818), - [anon_sym_PERCENT_EQ] = ACTIONS(818), - [anon_sym_AMP_EQ] = ACTIONS(818), - [anon_sym_PIPE_EQ] = ACTIONS(818), - [anon_sym_CARET_EQ] = ACTIONS(818), - [anon_sym_LT_LT_EQ] = ACTIONS(818), - [anon_sym_GT_GT_EQ] = ACTIONS(818), - [anon_sym_DOT] = ACTIONS(820), - [sym_integer_literal] = ACTIONS(818), - [aux_sym_string_literal_token1] = ACTIONS(818), - [sym_char_literal] = ACTIONS(818), - [anon_sym_true] = ACTIONS(820), - [anon_sym_false] = ACTIONS(820), - [anon_sym_u8] = ACTIONS(820), - [anon_sym_i8] = ACTIONS(820), - [anon_sym_u16] = ACTIONS(820), - [anon_sym_i16] = ACTIONS(820), - [anon_sym_u32] = ACTIONS(820), - [anon_sym_i32] = ACTIONS(820), - [anon_sym_u64] = ACTIONS(820), - [anon_sym_i64] = ACTIONS(820), - [anon_sym_u128] = ACTIONS(820), - [anon_sym_i128] = ACTIONS(820), - [anon_sym_isize] = ACTIONS(820), - [anon_sym_usize] = ACTIONS(820), - [anon_sym_f32] = ACTIONS(820), - [anon_sym_f64] = ACTIONS(820), - [anon_sym_bool] = ACTIONS(820), - [anon_sym_str] = ACTIONS(820), - [anon_sym_char] = ACTIONS(820), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(818), - [sym_self] = ACTIONS(820), - [sym_super] = ACTIONS(820), - [sym_crate] = ACTIONS(820), - [sym_metavariable] = ACTIONS(818), - [sym_grit_metavariable] = ACTIONS(818), - [sym_raw_string_literal] = ACTIONS(818), - [sym_float_literal] = ACTIONS(818), - [sym_block_comment] = ACTIONS(3), - }, - [235] = { - [sym__primitive_identifier] = ACTIONS(743), - [sym_underscore] = ACTIONS(743), - [anon_sym_LPAREN] = ACTIONS(741), - [anon_sym_RBRACE] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_PLUS] = ACTIONS(743), - [anon_sym_STAR] = ACTIONS(743), - [anon_sym_QMARK] = ACTIONS(741), - [anon_sym_as] = ACTIONS(743), - [anon_sym_const] = ACTIONS(743), - [anon_sym_default] = ACTIONS(743), - [anon_sym_union] = ACTIONS(743), - [anon_sym_POUND] = ACTIONS(741), - [anon_sym_EQ] = ACTIONS(743), - [anon_sym_COMMA] = ACTIONS(741), - [anon_sym_ref] = ACTIONS(743), - [anon_sym_LT] = ACTIONS(743), - [anon_sym_GT] = ACTIONS(743), - [anon_sym_COLON_COLON] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(743), - [anon_sym_DOT_DOT_DOT] = ACTIONS(741), - [sym_mutable_specifier] = ACTIONS(743), - [anon_sym_DOT_DOT] = ACTIONS(743), - [anon_sym_DOT_DOT_EQ] = ACTIONS(741), - [anon_sym_DASH] = ACTIONS(743), - [anon_sym_AMP_AMP] = ACTIONS(741), - [anon_sym_PIPE_PIPE] = ACTIONS(741), - [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_CARET] = ACTIONS(743), - [anon_sym_EQ_EQ] = ACTIONS(741), - [anon_sym_BANG_EQ] = ACTIONS(741), - [anon_sym_LT_EQ] = ACTIONS(741), - [anon_sym_GT_EQ] = ACTIONS(741), - [anon_sym_LT_LT] = ACTIONS(743), - [anon_sym_GT_GT] = ACTIONS(743), - [anon_sym_SLASH] = ACTIONS(743), - [anon_sym_PERCENT] = ACTIONS(743), - [anon_sym_PLUS_EQ] = ACTIONS(741), - [anon_sym_DASH_EQ] = ACTIONS(741), - [anon_sym_STAR_EQ] = ACTIONS(741), - [anon_sym_SLASH_EQ] = ACTIONS(741), - [anon_sym_PERCENT_EQ] = ACTIONS(741), - [anon_sym_AMP_EQ] = ACTIONS(741), - [anon_sym_PIPE_EQ] = ACTIONS(741), - [anon_sym_CARET_EQ] = ACTIONS(741), - [anon_sym_LT_LT_EQ] = ACTIONS(741), - [anon_sym_GT_GT_EQ] = ACTIONS(741), - [anon_sym_DOT] = ACTIONS(743), - [sym_integer_literal] = ACTIONS(741), - [aux_sym_string_literal_token1] = ACTIONS(741), - [sym_char_literal] = ACTIONS(741), - [anon_sym_true] = ACTIONS(743), - [anon_sym_false] = ACTIONS(743), - [anon_sym_u8] = ACTIONS(743), - [anon_sym_i8] = ACTIONS(743), - [anon_sym_u16] = ACTIONS(743), - [anon_sym_i16] = ACTIONS(743), - [anon_sym_u32] = ACTIONS(743), - [anon_sym_i32] = ACTIONS(743), - [anon_sym_u64] = ACTIONS(743), - [anon_sym_i64] = ACTIONS(743), - [anon_sym_u128] = ACTIONS(743), - [anon_sym_i128] = ACTIONS(743), - [anon_sym_isize] = ACTIONS(743), - [anon_sym_usize] = ACTIONS(743), - [anon_sym_f32] = ACTIONS(743), - [anon_sym_f64] = ACTIONS(743), - [anon_sym_bool] = ACTIONS(743), - [anon_sym_str] = ACTIONS(743), - [anon_sym_char] = ACTIONS(743), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(741), - [sym_self] = ACTIONS(743), - [sym_super] = ACTIONS(743), - [sym_crate] = ACTIONS(743), - [sym_metavariable] = ACTIONS(741), - [sym_grit_metavariable] = ACTIONS(741), - [sym_raw_string_literal] = ACTIONS(741), - [sym_float_literal] = ACTIONS(741), - [sym_block_comment] = ACTIONS(3), - }, - [236] = { - [sym__primitive_identifier] = ACTIONS(755), - [sym_underscore] = ACTIONS(755), - [anon_sym_LPAREN] = ACTIONS(753), - [anon_sym_RBRACE] = ACTIONS(753), - [anon_sym_LBRACK] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(755), - [anon_sym_STAR] = ACTIONS(755), - [anon_sym_QMARK] = ACTIONS(753), - [anon_sym_as] = ACTIONS(755), - [anon_sym_const] = ACTIONS(755), - [anon_sym_default] = ACTIONS(755), - [anon_sym_union] = ACTIONS(755), - [anon_sym_POUND] = ACTIONS(753), - [anon_sym_EQ] = ACTIONS(755), - [anon_sym_COMMA] = ACTIONS(753), - [anon_sym_ref] = ACTIONS(755), - [anon_sym_LT] = ACTIONS(755), - [anon_sym_GT] = ACTIONS(755), - [anon_sym_COLON_COLON] = ACTIONS(753), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_DOT_DOT_DOT] = ACTIONS(753), - [sym_mutable_specifier] = ACTIONS(755), - [anon_sym_DOT_DOT] = ACTIONS(755), - [anon_sym_DOT_DOT_EQ] = ACTIONS(753), - [anon_sym_DASH] = ACTIONS(755), - [anon_sym_AMP_AMP] = ACTIONS(753), - [anon_sym_PIPE_PIPE] = ACTIONS(753), - [anon_sym_PIPE] = ACTIONS(755), - [anon_sym_CARET] = ACTIONS(755), - [anon_sym_EQ_EQ] = ACTIONS(753), - [anon_sym_BANG_EQ] = ACTIONS(753), - [anon_sym_LT_EQ] = ACTIONS(753), - [anon_sym_GT_EQ] = ACTIONS(753), - [anon_sym_LT_LT] = ACTIONS(755), - [anon_sym_GT_GT] = ACTIONS(755), - [anon_sym_SLASH] = ACTIONS(755), - [anon_sym_PERCENT] = ACTIONS(755), - [anon_sym_PLUS_EQ] = ACTIONS(753), - [anon_sym_DASH_EQ] = ACTIONS(753), - [anon_sym_STAR_EQ] = ACTIONS(753), - [anon_sym_SLASH_EQ] = ACTIONS(753), - [anon_sym_PERCENT_EQ] = ACTIONS(753), - [anon_sym_AMP_EQ] = ACTIONS(753), - [anon_sym_PIPE_EQ] = ACTIONS(753), - [anon_sym_CARET_EQ] = ACTIONS(753), - [anon_sym_LT_LT_EQ] = ACTIONS(753), - [anon_sym_GT_GT_EQ] = ACTIONS(753), - [anon_sym_DOT] = ACTIONS(755), - [sym_integer_literal] = ACTIONS(753), - [aux_sym_string_literal_token1] = ACTIONS(753), - [sym_char_literal] = ACTIONS(753), - [anon_sym_true] = ACTIONS(755), - [anon_sym_false] = ACTIONS(755), - [anon_sym_u8] = ACTIONS(755), - [anon_sym_i8] = ACTIONS(755), - [anon_sym_u16] = ACTIONS(755), - [anon_sym_i16] = ACTIONS(755), - [anon_sym_u32] = ACTIONS(755), - [anon_sym_i32] = ACTIONS(755), - [anon_sym_u64] = ACTIONS(755), - [anon_sym_i64] = ACTIONS(755), - [anon_sym_u128] = ACTIONS(755), - [anon_sym_i128] = ACTIONS(755), - [anon_sym_isize] = ACTIONS(755), - [anon_sym_usize] = ACTIONS(755), - [anon_sym_f32] = ACTIONS(755), - [anon_sym_f64] = ACTIONS(755), - [anon_sym_bool] = ACTIONS(755), - [anon_sym_str] = ACTIONS(755), - [anon_sym_char] = ACTIONS(755), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(753), - [sym_self] = ACTIONS(755), - [sym_super] = ACTIONS(755), - [sym_crate] = ACTIONS(755), - [sym_metavariable] = ACTIONS(753), - [sym_grit_metavariable] = ACTIONS(753), - [sym_raw_string_literal] = ACTIONS(753), - [sym_float_literal] = ACTIONS(753), - [sym_block_comment] = ACTIONS(3), - }, - [237] = { - [sym_empty_statement] = STATE(249), - [sym_macro_definition] = STATE(249), - [sym_attribute_item] = STATE(249), - [sym_inner_attribute_item] = STATE(249), - [sym_mod_item] = STATE(249), - [sym_foreign_mod_item] = STATE(249), - [sym_struct_item] = STATE(249), - [sym_union_item] = STATE(249), - [sym_enum_item] = STATE(249), - [sym_extern_crate_declaration] = STATE(249), - [sym_const_item] = STATE(249), - [sym_static_item] = STATE(249), - [sym_type_item] = STATE(249), - [sym_function_item] = STATE(249), - [sym_function_signature_item] = STATE(249), - [sym_function_modifiers] = STATE(2742), - [sym_impl_item] = STATE(249), - [sym_trait_item] = STATE(249), - [sym_associated_type] = STATE(249), - [sym_let_declaration] = STATE(249), - [sym_use_declaration] = STATE(249), - [sym_extern_modifier] = STATE(1656), - [sym_visibility_modifier] = STATE(1448), - [sym_bracketed_type] = STATE(2668), - [sym_generic_type_with_turbofish] = STATE(2752), - [sym_macro_invocation] = STATE(249), - [sym_scoped_identifier] = STATE(2453), - [sym_primitive_type] = STATE(2713), - [sym_identifier] = STATE(2451), - [aux_sym_declaration_list_repeat1] = STATE(249), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_SEMI] = ACTIONS(1078), - [anon_sym_macro_rules_BANG] = ACTIONS(1080), - [anon_sym_RBRACE] = ACTIONS(1082), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(1084), - [anon_sym_default] = ACTIONS(1086), - [anon_sym_enum] = ACTIONS(1088), - [anon_sym_fn] = ACTIONS(1090), - [anon_sym_impl] = ACTIONS(1092), - [anon_sym_let] = ACTIONS(1094), - [anon_sym_mod] = ACTIONS(1096), + [sym_empty_statement] = STATE(243), + [sym_macro_definition] = STATE(243), + [sym_attribute_item] = STATE(243), + [sym_inner_attribute_item] = STATE(243), + [sym_mod_item] = STATE(243), + [sym_foreign_mod_item] = STATE(243), + [sym_struct_item] = STATE(243), + [sym_union_item] = STATE(243), + [sym_enum_item] = STATE(243), + [sym_extern_crate_declaration] = STATE(243), + [sym_const_item] = STATE(243), + [sym_static_item] = STATE(243), + [sym_type_item] = STATE(243), + [sym_function_item] = STATE(243), + [sym_function_signature_item] = STATE(243), + [sym_function_modifiers] = STATE(2746), + [sym_impl_item] = STATE(243), + [sym_trait_item] = STATE(243), + [sym_associated_type] = STATE(243), + [sym_let_declaration] = STATE(243), + [sym_use_declaration] = STATE(243), + [sym_extern_modifier] = STATE(1668), + [sym_visibility_modifier] = STATE(1464), + [sym_bracketed_type] = STATE(2698), + [sym_generic_type_with_turbofish] = STATE(2656), + [sym_macro_invocation] = STATE(243), + [sym_scoped_identifier] = STATE(2520), + [sym_primitive_type] = STATE(2695), + [sym_identifier] = STATE(2514), + [aux_sym_declaration_list_repeat1] = STATE(243), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_SEMI] = ACTIONS(1123), + [anon_sym_macro_rules_BANG] = ACTIONS(1125), + [anon_sym_RBRACE] = ACTIONS(1127), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(1129), + [anon_sym_default] = ACTIONS(1131), + [anon_sym_enum] = ACTIONS(1133), + [anon_sym_fn] = ACTIONS(1135), + [anon_sym_impl] = ACTIONS(1137), + [anon_sym_let] = ACTIONS(1139), + [anon_sym_mod] = ACTIONS(1141), [anon_sym_pub] = ACTIONS(51), - [anon_sym_static] = ACTIONS(1098), - [anon_sym_struct] = ACTIONS(1100), - [anon_sym_trait] = ACTIONS(1102), - [anon_sym_type] = ACTIONS(1104), - [anon_sym_union] = ACTIONS(1106), - [anon_sym_unsafe] = ACTIONS(1108), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_POUND] = ACTIONS(1112), - [anon_sym_extern] = ACTIONS(1114), + [anon_sym_static] = ACTIONS(1143), + [anon_sym_struct] = ACTIONS(1145), + [anon_sym_trait] = ACTIONS(1147), + [anon_sym_type] = ACTIONS(1149), + [anon_sym_union] = ACTIONS(1151), + [anon_sym_unsafe] = ACTIONS(1153), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_POUND] = ACTIONS(1157), + [anon_sym_extern] = ACTIONS(1159), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1116), + [anon_sym_COLON_COLON] = ACTIONS(1161), [anon_sym_u8] = ACTIONS(95), [anon_sym_i8] = ACTIONS(95), [anon_sym_u16] = ACTIONS(95), @@ -46410,398 +46147,316 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(95), [anon_sym_char] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1118), - [sym_super] = ACTIONS(1118), - [sym_crate] = ACTIONS(1120), - [sym_metavariable] = ACTIONS(1122), - [sym_grit_metavariable] = ACTIONS(1124), - [sym_block_comment] = ACTIONS(3), - }, - [238] = { - [sym__primitive_identifier] = ACTIONS(751), - [sym_underscore] = ACTIONS(751), - [anon_sym_LPAREN] = ACTIONS(749), - [anon_sym_RBRACE] = ACTIONS(749), - [anon_sym_LBRACK] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(751), - [anon_sym_STAR] = ACTIONS(751), - [anon_sym_QMARK] = ACTIONS(749), - [anon_sym_as] = ACTIONS(751), - [anon_sym_const] = ACTIONS(751), - [anon_sym_default] = ACTIONS(751), - [anon_sym_union] = ACTIONS(751), - [anon_sym_POUND] = ACTIONS(749), - [anon_sym_EQ] = ACTIONS(751), - [anon_sym_COMMA] = ACTIONS(749), - [anon_sym_ref] = ACTIONS(751), - [anon_sym_LT] = ACTIONS(751), - [anon_sym_GT] = ACTIONS(751), - [anon_sym_COLON_COLON] = ACTIONS(749), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_DOT_DOT_DOT] = ACTIONS(749), - [sym_mutable_specifier] = ACTIONS(751), - [anon_sym_DOT_DOT] = ACTIONS(751), - [anon_sym_DOT_DOT_EQ] = ACTIONS(749), - [anon_sym_DASH] = ACTIONS(751), - [anon_sym_AMP_AMP] = ACTIONS(749), - [anon_sym_PIPE_PIPE] = ACTIONS(749), - [anon_sym_PIPE] = ACTIONS(751), - [anon_sym_CARET] = ACTIONS(751), - [anon_sym_EQ_EQ] = ACTIONS(749), - [anon_sym_BANG_EQ] = ACTIONS(749), - [anon_sym_LT_EQ] = ACTIONS(749), - [anon_sym_GT_EQ] = ACTIONS(749), - [anon_sym_LT_LT] = ACTIONS(751), - [anon_sym_GT_GT] = ACTIONS(751), - [anon_sym_SLASH] = ACTIONS(751), - [anon_sym_PERCENT] = ACTIONS(751), - [anon_sym_PLUS_EQ] = ACTIONS(749), - [anon_sym_DASH_EQ] = ACTIONS(749), - [anon_sym_STAR_EQ] = ACTIONS(749), - [anon_sym_SLASH_EQ] = ACTIONS(749), - [anon_sym_PERCENT_EQ] = ACTIONS(749), - [anon_sym_AMP_EQ] = ACTIONS(749), - [anon_sym_PIPE_EQ] = ACTIONS(749), - [anon_sym_CARET_EQ] = ACTIONS(749), - [anon_sym_LT_LT_EQ] = ACTIONS(749), - [anon_sym_GT_GT_EQ] = ACTIONS(749), - [anon_sym_DOT] = ACTIONS(751), - [sym_integer_literal] = ACTIONS(749), - [aux_sym_string_literal_token1] = ACTIONS(749), - [sym_char_literal] = ACTIONS(749), - [anon_sym_true] = ACTIONS(751), - [anon_sym_false] = ACTIONS(751), - [anon_sym_u8] = ACTIONS(751), - [anon_sym_i8] = ACTIONS(751), - [anon_sym_u16] = ACTIONS(751), - [anon_sym_i16] = ACTIONS(751), - [anon_sym_u32] = ACTIONS(751), - [anon_sym_i32] = ACTIONS(751), - [anon_sym_u64] = ACTIONS(751), - [anon_sym_i64] = ACTIONS(751), - [anon_sym_u128] = ACTIONS(751), - [anon_sym_i128] = ACTIONS(751), - [anon_sym_isize] = ACTIONS(751), - [anon_sym_usize] = ACTIONS(751), - [anon_sym_f32] = ACTIONS(751), - [anon_sym_f64] = ACTIONS(751), - [anon_sym_bool] = ACTIONS(751), - [anon_sym_str] = ACTIONS(751), - [anon_sym_char] = ACTIONS(751), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(749), - [sym_self] = ACTIONS(751), - [sym_super] = ACTIONS(751), - [sym_crate] = ACTIONS(751), - [sym_metavariable] = ACTIONS(749), - [sym_grit_metavariable] = ACTIONS(749), - [sym_raw_string_literal] = ACTIONS(749), - [sym_float_literal] = ACTIONS(749), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1163), + [sym_super] = ACTIONS(1163), + [sym_crate] = ACTIONS(1165), + [sym_metavariable] = ACTIONS(1167), + [sym_grit_metavariable] = ACTIONS(1169), [sym_block_comment] = ACTIONS(3), }, - [239] = { - [sym__primitive_identifier] = ACTIONS(739), - [sym_underscore] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(737), - [anon_sym_RBRACE] = ACTIONS(737), - [anon_sym_LBRACK] = ACTIONS(737), - [anon_sym_PLUS] = ACTIONS(739), - [anon_sym_STAR] = ACTIONS(739), - [anon_sym_QMARK] = ACTIONS(737), - [anon_sym_as] = ACTIONS(739), - [anon_sym_const] = ACTIONS(739), - [anon_sym_default] = ACTIONS(739), - [anon_sym_union] = ACTIONS(739), - [anon_sym_POUND] = ACTIONS(737), - [anon_sym_EQ] = ACTIONS(739), - [anon_sym_COMMA] = ACTIONS(737), - [anon_sym_ref] = ACTIONS(739), - [anon_sym_LT] = ACTIONS(739), - [anon_sym_GT] = ACTIONS(739), - [anon_sym_COLON_COLON] = ACTIONS(737), - [anon_sym_AMP] = ACTIONS(739), - [anon_sym_DOT_DOT_DOT] = ACTIONS(737), - [sym_mutable_specifier] = ACTIONS(739), - [anon_sym_DOT_DOT] = ACTIONS(739), - [anon_sym_DOT_DOT_EQ] = ACTIONS(737), - [anon_sym_DASH] = ACTIONS(739), - [anon_sym_AMP_AMP] = ACTIONS(737), - [anon_sym_PIPE_PIPE] = ACTIONS(737), - [anon_sym_PIPE] = ACTIONS(739), - [anon_sym_CARET] = ACTIONS(739), - [anon_sym_EQ_EQ] = ACTIONS(737), - [anon_sym_BANG_EQ] = ACTIONS(737), - [anon_sym_LT_EQ] = ACTIONS(737), - [anon_sym_GT_EQ] = ACTIONS(737), - [anon_sym_LT_LT] = ACTIONS(739), - [anon_sym_GT_GT] = ACTIONS(739), - [anon_sym_SLASH] = ACTIONS(739), - [anon_sym_PERCENT] = ACTIONS(739), - [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_AMP_EQ] = ACTIONS(737), - [anon_sym_PIPE_EQ] = ACTIONS(737), - [anon_sym_CARET_EQ] = ACTIONS(737), - [anon_sym_LT_LT_EQ] = ACTIONS(737), - [anon_sym_GT_GT_EQ] = ACTIONS(737), - [anon_sym_DOT] = ACTIONS(739), - [sym_integer_literal] = ACTIONS(737), - [aux_sym_string_literal_token1] = ACTIONS(737), - [sym_char_literal] = ACTIONS(737), - [anon_sym_true] = ACTIONS(739), - [anon_sym_false] = ACTIONS(739), - [anon_sym_u8] = ACTIONS(739), - [anon_sym_i8] = ACTIONS(739), - [anon_sym_u16] = ACTIONS(739), - [anon_sym_i16] = ACTIONS(739), - [anon_sym_u32] = ACTIONS(739), - [anon_sym_i32] = ACTIONS(739), - [anon_sym_u64] = ACTIONS(739), - [anon_sym_i64] = ACTIONS(739), - [anon_sym_u128] = ACTIONS(739), - [anon_sym_i128] = ACTIONS(739), - [anon_sym_isize] = ACTIONS(739), - [anon_sym_usize] = ACTIONS(739), - [anon_sym_f32] = ACTIONS(739), - [anon_sym_f64] = ACTIONS(739), - [anon_sym_bool] = ACTIONS(739), - [anon_sym_str] = ACTIONS(739), - [anon_sym_char] = ACTIONS(739), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(737), - [sym_self] = ACTIONS(739), - [sym_super] = ACTIONS(739), - [sym_crate] = ACTIONS(739), - [sym_metavariable] = ACTIONS(737), - [sym_grit_metavariable] = ACTIONS(737), - [sym_raw_string_literal] = ACTIONS(737), - [sym_float_literal] = ACTIONS(737), + [234] = { + [sym__primitive_identifier] = ACTIONS(842), + [sym_underscore] = ACTIONS(842), + [anon_sym_LPAREN] = ACTIONS(840), + [anon_sym_RBRACE] = ACTIONS(840), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_PLUS] = ACTIONS(842), + [anon_sym_STAR] = ACTIONS(842), + [anon_sym_QMARK] = ACTIONS(840), + [anon_sym_as] = ACTIONS(842), + [anon_sym_const] = ACTIONS(842), + [anon_sym_default] = ACTIONS(842), + [anon_sym_union] = ACTIONS(842), + [anon_sym_POUND] = ACTIONS(840), + [anon_sym_EQ] = ACTIONS(842), + [anon_sym_COMMA] = ACTIONS(840), + [anon_sym_ref] = ACTIONS(842), + [anon_sym_LT] = ACTIONS(842), + [anon_sym_GT] = ACTIONS(842), + [anon_sym_COLON_COLON] = ACTIONS(840), + [anon_sym_AMP] = ACTIONS(842), + [anon_sym_DOT_DOT_DOT] = ACTIONS(840), + [sym_mutable_specifier] = ACTIONS(842), + [anon_sym_DOT_DOT] = ACTIONS(842), + [anon_sym_DOT_DOT_EQ] = ACTIONS(840), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_AMP_AMP] = ACTIONS(840), + [anon_sym_PIPE_PIPE] = ACTIONS(840), + [anon_sym_PIPE] = ACTIONS(842), + [anon_sym_CARET] = ACTIONS(842), + [anon_sym_EQ_EQ] = ACTIONS(840), + [anon_sym_BANG_EQ] = ACTIONS(840), + [anon_sym_LT_EQ] = ACTIONS(840), + [anon_sym_GT_EQ] = ACTIONS(840), + [anon_sym_LT_LT] = ACTIONS(842), + [anon_sym_GT_GT] = ACTIONS(842), + [anon_sym_SLASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_PLUS_EQ] = ACTIONS(840), + [anon_sym_DASH_EQ] = ACTIONS(840), + [anon_sym_STAR_EQ] = ACTIONS(840), + [anon_sym_SLASH_EQ] = ACTIONS(840), + [anon_sym_PERCENT_EQ] = ACTIONS(840), + [anon_sym_AMP_EQ] = ACTIONS(840), + [anon_sym_PIPE_EQ] = ACTIONS(840), + [anon_sym_CARET_EQ] = ACTIONS(840), + [anon_sym_LT_LT_EQ] = ACTIONS(840), + [anon_sym_GT_GT_EQ] = ACTIONS(840), + [anon_sym_DOT] = ACTIONS(842), + [sym_integer_literal] = ACTIONS(840), + [aux_sym_string_literal_token1] = ACTIONS(840), + [sym_char_literal] = ACTIONS(840), + [anon_sym_true] = ACTIONS(842), + [anon_sym_false] = ACTIONS(842), + [anon_sym_u8] = ACTIONS(842), + [anon_sym_i8] = ACTIONS(842), + [anon_sym_u16] = ACTIONS(842), + [anon_sym_i16] = ACTIONS(842), + [anon_sym_u32] = ACTIONS(842), + [anon_sym_i32] = ACTIONS(842), + [anon_sym_u64] = ACTIONS(842), + [anon_sym_i64] = ACTIONS(842), + [anon_sym_u128] = ACTIONS(842), + [anon_sym_i128] = ACTIONS(842), + [anon_sym_isize] = ACTIONS(842), + [anon_sym_usize] = ACTIONS(842), + [anon_sym_f32] = ACTIONS(842), + [anon_sym_f64] = ACTIONS(842), + [anon_sym_bool] = ACTIONS(842), + [anon_sym_str] = ACTIONS(842), + [anon_sym_char] = ACTIONS(842), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(840), + [sym_self] = ACTIONS(842), + [sym_super] = ACTIONS(842), + [sym_crate] = ACTIONS(842), + [sym_metavariable] = ACTIONS(840), + [sym_grit_metavariable] = ACTIONS(840), + [sym_raw_string_literal] = ACTIONS(840), + [sym_float_literal] = ACTIONS(840), [sym_block_comment] = ACTIONS(3), }, - [240] = { - [sym__primitive_identifier] = ACTIONS(824), - [sym_underscore] = ACTIONS(824), - [anon_sym_LPAREN] = ACTIONS(822), - [anon_sym_RBRACE] = ACTIONS(822), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_PLUS] = ACTIONS(824), - [anon_sym_STAR] = ACTIONS(824), - [anon_sym_QMARK] = ACTIONS(822), - [anon_sym_as] = ACTIONS(824), - [anon_sym_const] = ACTIONS(824), - [anon_sym_default] = ACTIONS(824), - [anon_sym_union] = ACTIONS(824), - [anon_sym_POUND] = ACTIONS(822), - [anon_sym_EQ] = ACTIONS(824), - [anon_sym_COMMA] = ACTIONS(822), - [anon_sym_ref] = ACTIONS(824), - [anon_sym_LT] = ACTIONS(824), - [anon_sym_GT] = ACTIONS(824), - [anon_sym_COLON_COLON] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(824), - [anon_sym_DOT_DOT_DOT] = ACTIONS(822), - [sym_mutable_specifier] = ACTIONS(824), - [anon_sym_DOT_DOT] = ACTIONS(824), - [anon_sym_DOT_DOT_EQ] = ACTIONS(822), - [anon_sym_DASH] = ACTIONS(824), - [anon_sym_AMP_AMP] = ACTIONS(822), - [anon_sym_PIPE_PIPE] = ACTIONS(822), - [anon_sym_PIPE] = ACTIONS(824), - [anon_sym_CARET] = ACTIONS(824), - [anon_sym_EQ_EQ] = ACTIONS(822), - [anon_sym_BANG_EQ] = ACTIONS(822), - [anon_sym_LT_EQ] = ACTIONS(822), - [anon_sym_GT_EQ] = ACTIONS(822), - [anon_sym_LT_LT] = ACTIONS(824), - [anon_sym_GT_GT] = ACTIONS(824), - [anon_sym_SLASH] = ACTIONS(824), - [anon_sym_PERCENT] = ACTIONS(824), - [anon_sym_PLUS_EQ] = ACTIONS(822), - [anon_sym_DASH_EQ] = ACTIONS(822), - [anon_sym_STAR_EQ] = ACTIONS(822), - [anon_sym_SLASH_EQ] = ACTIONS(822), - [anon_sym_PERCENT_EQ] = ACTIONS(822), - [anon_sym_AMP_EQ] = ACTIONS(822), - [anon_sym_PIPE_EQ] = ACTIONS(822), - [anon_sym_CARET_EQ] = ACTIONS(822), - [anon_sym_LT_LT_EQ] = ACTIONS(822), - [anon_sym_GT_GT_EQ] = ACTIONS(822), - [anon_sym_DOT] = ACTIONS(824), - [sym_integer_literal] = ACTIONS(822), - [aux_sym_string_literal_token1] = ACTIONS(822), - [sym_char_literal] = ACTIONS(822), - [anon_sym_true] = ACTIONS(824), - [anon_sym_false] = ACTIONS(824), - [anon_sym_u8] = ACTIONS(824), - [anon_sym_i8] = ACTIONS(824), - [anon_sym_u16] = ACTIONS(824), - [anon_sym_i16] = ACTIONS(824), - [anon_sym_u32] = ACTIONS(824), - [anon_sym_i32] = ACTIONS(824), - [anon_sym_u64] = ACTIONS(824), - [anon_sym_i64] = ACTIONS(824), - [anon_sym_u128] = ACTIONS(824), - [anon_sym_i128] = ACTIONS(824), - [anon_sym_isize] = ACTIONS(824), - [anon_sym_usize] = ACTIONS(824), - [anon_sym_f32] = ACTIONS(824), - [anon_sym_f64] = ACTIONS(824), - [anon_sym_bool] = ACTIONS(824), - [anon_sym_str] = ACTIONS(824), - [anon_sym_char] = ACTIONS(824), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(822), - [sym_self] = ACTIONS(824), - [sym_super] = ACTIONS(824), - [sym_crate] = ACTIONS(824), - [sym_metavariable] = ACTIONS(822), - [sym_grit_metavariable] = ACTIONS(822), - [sym_raw_string_literal] = ACTIONS(822), - [sym_float_literal] = ACTIONS(822), + [235] = { + [sym__primitive_identifier] = ACTIONS(810), + [sym_underscore] = ACTIONS(810), + [anon_sym_LPAREN] = ACTIONS(808), + [anon_sym_RBRACE] = ACTIONS(808), + [anon_sym_LBRACK] = ACTIONS(808), + [anon_sym_PLUS] = ACTIONS(810), + [anon_sym_STAR] = ACTIONS(810), + [anon_sym_QMARK] = ACTIONS(808), + [anon_sym_as] = ACTIONS(810), + [anon_sym_const] = ACTIONS(810), + [anon_sym_default] = ACTIONS(810), + [anon_sym_union] = ACTIONS(810), + [anon_sym_POUND] = ACTIONS(808), + [anon_sym_EQ] = ACTIONS(810), + [anon_sym_COMMA] = ACTIONS(808), + [anon_sym_ref] = ACTIONS(810), + [anon_sym_LT] = ACTIONS(810), + [anon_sym_GT] = ACTIONS(810), + [anon_sym_COLON_COLON] = ACTIONS(808), + [anon_sym_AMP] = ACTIONS(810), + [anon_sym_DOT_DOT_DOT] = ACTIONS(808), + [sym_mutable_specifier] = ACTIONS(810), + [anon_sym_DOT_DOT] = ACTIONS(810), + [anon_sym_DOT_DOT_EQ] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(810), + [anon_sym_AMP_AMP] = ACTIONS(808), + [anon_sym_PIPE_PIPE] = ACTIONS(808), + [anon_sym_PIPE] = ACTIONS(810), + [anon_sym_CARET] = ACTIONS(810), + [anon_sym_EQ_EQ] = ACTIONS(808), + [anon_sym_BANG_EQ] = ACTIONS(808), + [anon_sym_LT_EQ] = ACTIONS(808), + [anon_sym_GT_EQ] = ACTIONS(808), + [anon_sym_LT_LT] = ACTIONS(810), + [anon_sym_GT_GT] = ACTIONS(810), + [anon_sym_SLASH] = ACTIONS(810), + [anon_sym_PERCENT] = ACTIONS(810), + [anon_sym_PLUS_EQ] = ACTIONS(808), + [anon_sym_DASH_EQ] = ACTIONS(808), + [anon_sym_STAR_EQ] = ACTIONS(808), + [anon_sym_SLASH_EQ] = ACTIONS(808), + [anon_sym_PERCENT_EQ] = ACTIONS(808), + [anon_sym_AMP_EQ] = ACTIONS(808), + [anon_sym_PIPE_EQ] = ACTIONS(808), + [anon_sym_CARET_EQ] = ACTIONS(808), + [anon_sym_LT_LT_EQ] = ACTIONS(808), + [anon_sym_GT_GT_EQ] = ACTIONS(808), + [anon_sym_DOT] = ACTIONS(810), + [sym_integer_literal] = ACTIONS(808), + [aux_sym_string_literal_token1] = ACTIONS(808), + [sym_char_literal] = ACTIONS(808), + [anon_sym_true] = ACTIONS(810), + [anon_sym_false] = ACTIONS(810), + [anon_sym_u8] = ACTIONS(810), + [anon_sym_i8] = ACTIONS(810), + [anon_sym_u16] = ACTIONS(810), + [anon_sym_i16] = ACTIONS(810), + [anon_sym_u32] = ACTIONS(810), + [anon_sym_i32] = ACTIONS(810), + [anon_sym_u64] = ACTIONS(810), + [anon_sym_i64] = ACTIONS(810), + [anon_sym_u128] = ACTIONS(810), + [anon_sym_i128] = ACTIONS(810), + [anon_sym_isize] = ACTIONS(810), + [anon_sym_usize] = ACTIONS(810), + [anon_sym_f32] = ACTIONS(810), + [anon_sym_f64] = ACTIONS(810), + [anon_sym_bool] = ACTIONS(810), + [anon_sym_str] = ACTIONS(810), + [anon_sym_char] = ACTIONS(810), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(808), + [sym_self] = ACTIONS(810), + [sym_super] = ACTIONS(810), + [sym_crate] = ACTIONS(810), + [sym_metavariable] = ACTIONS(808), + [sym_grit_metavariable] = ACTIONS(808), + [sym_raw_string_literal] = ACTIONS(808), + [sym_float_literal] = ACTIONS(808), [sym_block_comment] = ACTIONS(3), }, - [241] = { - [sym__primitive_identifier] = ACTIONS(1126), - [sym_underscore] = ACTIONS(1126), - [anon_sym_LPAREN] = ACTIONS(1128), - [anon_sym_RBRACE] = ACTIONS(725), - [anon_sym_LBRACK] = ACTIONS(1128), - [anon_sym_PLUS] = ACTIONS(727), - [anon_sym_STAR] = ACTIONS(727), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_as] = ACTIONS(727), - [anon_sym_const] = ACTIONS(1126), - [anon_sym_default] = ACTIONS(1126), - [anon_sym_union] = ACTIONS(1126), - [anon_sym_POUND] = ACTIONS(1128), - [anon_sym_EQ] = ACTIONS(727), - [anon_sym_COMMA] = ACTIONS(725), - [anon_sym_ref] = ACTIONS(1126), - [anon_sym_LT] = ACTIONS(1126), - [anon_sym_GT] = ACTIONS(727), - [anon_sym_COLON_COLON] = ACTIONS(1128), - [anon_sym_AMP] = ACTIONS(1126), - [anon_sym_DOT_DOT_DOT] = ACTIONS(725), - [sym_mutable_specifier] = ACTIONS(1126), - [anon_sym_DOT_DOT] = ACTIONS(1126), - [anon_sym_DOT_DOT_EQ] = ACTIONS(725), - [anon_sym_DASH] = ACTIONS(1126), - [anon_sym_AMP_AMP] = ACTIONS(725), - [anon_sym_PIPE_PIPE] = ACTIONS(725), - [anon_sym_PIPE] = ACTIONS(727), - [anon_sym_CARET] = ACTIONS(727), - [anon_sym_EQ_EQ] = ACTIONS(725), - [anon_sym_BANG_EQ] = ACTIONS(725), - [anon_sym_LT_EQ] = ACTIONS(725), - [anon_sym_GT_EQ] = ACTIONS(725), - [anon_sym_LT_LT] = ACTIONS(727), - [anon_sym_GT_GT] = ACTIONS(727), - [anon_sym_SLASH] = ACTIONS(727), - [anon_sym_PERCENT] = ACTIONS(727), - [anon_sym_PLUS_EQ] = ACTIONS(725), - [anon_sym_DASH_EQ] = ACTIONS(725), - [anon_sym_STAR_EQ] = ACTIONS(725), - [anon_sym_SLASH_EQ] = ACTIONS(725), - [anon_sym_PERCENT_EQ] = ACTIONS(725), - [anon_sym_AMP_EQ] = ACTIONS(725), - [anon_sym_PIPE_EQ] = ACTIONS(725), - [anon_sym_CARET_EQ] = ACTIONS(725), - [anon_sym_LT_LT_EQ] = ACTIONS(725), - [anon_sym_GT_GT_EQ] = ACTIONS(725), - [anon_sym_DOT] = ACTIONS(727), - [sym_integer_literal] = ACTIONS(1128), - [aux_sym_string_literal_token1] = ACTIONS(1128), - [sym_char_literal] = ACTIONS(1128), - [anon_sym_true] = ACTIONS(1126), - [anon_sym_false] = ACTIONS(1126), - [anon_sym_u8] = ACTIONS(1126), - [anon_sym_i8] = ACTIONS(1126), - [anon_sym_u16] = ACTIONS(1126), - [anon_sym_i16] = ACTIONS(1126), - [anon_sym_u32] = ACTIONS(1126), - [anon_sym_i32] = ACTIONS(1126), - [anon_sym_u64] = ACTIONS(1126), - [anon_sym_i64] = ACTIONS(1126), - [anon_sym_u128] = ACTIONS(1126), - [anon_sym_i128] = ACTIONS(1126), - [anon_sym_isize] = ACTIONS(1126), - [anon_sym_usize] = ACTIONS(1126), - [anon_sym_f32] = ACTIONS(1126), - [anon_sym_f64] = ACTIONS(1126), - [anon_sym_bool] = ACTIONS(1126), - [anon_sym_str] = ACTIONS(1126), - [anon_sym_char] = ACTIONS(1126), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1128), - [sym_self] = ACTIONS(1126), - [sym_super] = ACTIONS(1126), - [sym_crate] = ACTIONS(1126), - [sym_metavariable] = ACTIONS(1128), - [sym_grit_metavariable] = ACTIONS(1128), - [sym_raw_string_literal] = ACTIONS(1128), - [sym_float_literal] = ACTIONS(1128), + [236] = { + [sym__primitive_identifier] = ACTIONS(794), + [sym_underscore] = ACTIONS(794), + [anon_sym_LPAREN] = ACTIONS(792), + [anon_sym_RBRACE] = ACTIONS(792), + [anon_sym_LBRACK] = ACTIONS(792), + [anon_sym_PLUS] = ACTIONS(794), + [anon_sym_STAR] = ACTIONS(794), + [anon_sym_QMARK] = ACTIONS(792), + [anon_sym_as] = ACTIONS(794), + [anon_sym_const] = ACTIONS(794), + [anon_sym_default] = ACTIONS(794), + [anon_sym_union] = ACTIONS(794), + [anon_sym_POUND] = ACTIONS(792), + [anon_sym_EQ] = ACTIONS(794), + [anon_sym_COMMA] = ACTIONS(792), + [anon_sym_ref] = ACTIONS(794), + [anon_sym_LT] = ACTIONS(794), + [anon_sym_GT] = ACTIONS(794), + [anon_sym_COLON_COLON] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(794), + [anon_sym_DOT_DOT_DOT] = ACTIONS(792), + [sym_mutable_specifier] = ACTIONS(794), + [anon_sym_DOT_DOT] = ACTIONS(794), + [anon_sym_DOT_DOT_EQ] = ACTIONS(792), + [anon_sym_DASH] = ACTIONS(794), + [anon_sym_AMP_AMP] = ACTIONS(792), + [anon_sym_PIPE_PIPE] = ACTIONS(792), + [anon_sym_PIPE] = ACTIONS(794), + [anon_sym_CARET] = ACTIONS(794), + [anon_sym_EQ_EQ] = ACTIONS(792), + [anon_sym_BANG_EQ] = ACTIONS(792), + [anon_sym_LT_EQ] = ACTIONS(792), + [anon_sym_GT_EQ] = ACTIONS(792), + [anon_sym_LT_LT] = ACTIONS(794), + [anon_sym_GT_GT] = ACTIONS(794), + [anon_sym_SLASH] = ACTIONS(794), + [anon_sym_PERCENT] = ACTIONS(794), + [anon_sym_PLUS_EQ] = ACTIONS(792), + [anon_sym_DASH_EQ] = ACTIONS(792), + [anon_sym_STAR_EQ] = ACTIONS(792), + [anon_sym_SLASH_EQ] = ACTIONS(792), + [anon_sym_PERCENT_EQ] = ACTIONS(792), + [anon_sym_AMP_EQ] = ACTIONS(792), + [anon_sym_PIPE_EQ] = ACTIONS(792), + [anon_sym_CARET_EQ] = ACTIONS(792), + [anon_sym_LT_LT_EQ] = ACTIONS(792), + [anon_sym_GT_GT_EQ] = ACTIONS(792), + [anon_sym_DOT] = ACTIONS(794), + [sym_integer_literal] = ACTIONS(792), + [aux_sym_string_literal_token1] = ACTIONS(792), + [sym_char_literal] = ACTIONS(792), + [anon_sym_true] = ACTIONS(794), + [anon_sym_false] = ACTIONS(794), + [anon_sym_u8] = ACTIONS(794), + [anon_sym_i8] = ACTIONS(794), + [anon_sym_u16] = ACTIONS(794), + [anon_sym_i16] = ACTIONS(794), + [anon_sym_u32] = ACTIONS(794), + [anon_sym_i32] = ACTIONS(794), + [anon_sym_u64] = ACTIONS(794), + [anon_sym_i64] = ACTIONS(794), + [anon_sym_u128] = ACTIONS(794), + [anon_sym_i128] = ACTIONS(794), + [anon_sym_isize] = ACTIONS(794), + [anon_sym_usize] = ACTIONS(794), + [anon_sym_f32] = ACTIONS(794), + [anon_sym_f64] = ACTIONS(794), + [anon_sym_bool] = ACTIONS(794), + [anon_sym_str] = ACTIONS(794), + [anon_sym_char] = ACTIONS(794), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(792), + [sym_self] = ACTIONS(794), + [sym_super] = ACTIONS(794), + [sym_crate] = ACTIONS(794), + [sym_metavariable] = ACTIONS(792), + [sym_grit_metavariable] = ACTIONS(792), + [sym_raw_string_literal] = ACTIONS(792), + [sym_float_literal] = ACTIONS(792), [sym_block_comment] = ACTIONS(3), }, - [242] = { - [sym_empty_statement] = STATE(244), - [sym_macro_definition] = STATE(244), - [sym_attribute_item] = STATE(244), - [sym_inner_attribute_item] = STATE(244), - [sym_mod_item] = STATE(244), - [sym_foreign_mod_item] = STATE(244), - [sym_struct_item] = STATE(244), - [sym_union_item] = STATE(244), - [sym_enum_item] = STATE(244), - [sym_extern_crate_declaration] = STATE(244), - [sym_const_item] = STATE(244), - [sym_static_item] = STATE(244), - [sym_type_item] = STATE(244), - [sym_function_item] = STATE(244), - [sym_function_signature_item] = STATE(244), - [sym_function_modifiers] = STATE(2742), - [sym_impl_item] = STATE(244), - [sym_trait_item] = STATE(244), - [sym_associated_type] = STATE(244), - [sym_let_declaration] = STATE(244), - [sym_use_declaration] = STATE(244), - [sym_extern_modifier] = STATE(1656), - [sym_visibility_modifier] = STATE(1448), - [sym_bracketed_type] = STATE(2668), - [sym_generic_type_with_turbofish] = STATE(2752), - [sym_macro_invocation] = STATE(244), - [sym_scoped_identifier] = STATE(2453), - [sym_primitive_type] = STATE(2713), - [sym_identifier] = STATE(2451), - [aux_sym_declaration_list_repeat1] = STATE(244), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_SEMI] = ACTIONS(1078), - [anon_sym_macro_rules_BANG] = ACTIONS(1080), - [anon_sym_RBRACE] = ACTIONS(1130), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(1084), - [anon_sym_default] = ACTIONS(1086), - [anon_sym_enum] = ACTIONS(1088), - [anon_sym_fn] = ACTIONS(1090), - [anon_sym_impl] = ACTIONS(1092), - [anon_sym_let] = ACTIONS(1094), - [anon_sym_mod] = ACTIONS(1096), + [237] = { + [sym_empty_statement] = STATE(246), + [sym_macro_definition] = STATE(246), + [sym_attribute_item] = STATE(246), + [sym_inner_attribute_item] = STATE(246), + [sym_mod_item] = STATE(246), + [sym_foreign_mod_item] = STATE(246), + [sym_struct_item] = STATE(246), + [sym_union_item] = STATE(246), + [sym_enum_item] = STATE(246), + [sym_extern_crate_declaration] = STATE(246), + [sym_const_item] = STATE(246), + [sym_static_item] = STATE(246), + [sym_type_item] = STATE(246), + [sym_function_item] = STATE(246), + [sym_function_signature_item] = STATE(246), + [sym_function_modifiers] = STATE(2746), + [sym_impl_item] = STATE(246), + [sym_trait_item] = STATE(246), + [sym_associated_type] = STATE(246), + [sym_let_declaration] = STATE(246), + [sym_use_declaration] = STATE(246), + [sym_extern_modifier] = STATE(1668), + [sym_visibility_modifier] = STATE(1464), + [sym_bracketed_type] = STATE(2698), + [sym_generic_type_with_turbofish] = STATE(2656), + [sym_macro_invocation] = STATE(246), + [sym_scoped_identifier] = STATE(2520), + [sym_primitive_type] = STATE(2695), + [sym_identifier] = STATE(2514), + [aux_sym_declaration_list_repeat1] = STATE(246), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_SEMI] = ACTIONS(1123), + [anon_sym_macro_rules_BANG] = ACTIONS(1125), + [anon_sym_RBRACE] = ACTIONS(1171), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(1129), + [anon_sym_default] = ACTIONS(1131), + [anon_sym_enum] = ACTIONS(1133), + [anon_sym_fn] = ACTIONS(1135), + [anon_sym_impl] = ACTIONS(1137), + [anon_sym_let] = ACTIONS(1139), + [anon_sym_mod] = ACTIONS(1141), [anon_sym_pub] = ACTIONS(51), - [anon_sym_static] = ACTIONS(1098), - [anon_sym_struct] = ACTIONS(1100), - [anon_sym_trait] = ACTIONS(1102), - [anon_sym_type] = ACTIONS(1104), - [anon_sym_union] = ACTIONS(1106), - [anon_sym_unsafe] = ACTIONS(1108), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_POUND] = ACTIONS(1112), - [anon_sym_extern] = ACTIONS(1114), + [anon_sym_static] = ACTIONS(1143), + [anon_sym_struct] = ACTIONS(1145), + [anon_sym_trait] = ACTIONS(1147), + [anon_sym_type] = ACTIONS(1149), + [anon_sym_union] = ACTIONS(1151), + [anon_sym_unsafe] = ACTIONS(1153), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_POUND] = ACTIONS(1157), + [anon_sym_extern] = ACTIONS(1159), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1116), + [anon_sym_COLON_COLON] = ACTIONS(1161), [anon_sym_u8] = ACTIONS(95), [anon_sym_i8] = ACTIONS(95), [anon_sym_u16] = ACTIONS(95), @@ -46820,152 +46475,480 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(95), [anon_sym_char] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1118), - [sym_super] = ACTIONS(1118), - [sym_crate] = ACTIONS(1120), - [sym_metavariable] = ACTIONS(1122), - [sym_grit_metavariable] = ACTIONS(1124), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1163), + [sym_super] = ACTIONS(1163), + [sym_crate] = ACTIONS(1165), + [sym_metavariable] = ACTIONS(1167), + [sym_grit_metavariable] = ACTIONS(1169), [sym_block_comment] = ACTIONS(3), }, - [243] = { - [sym__primitive_identifier] = ACTIONS(759), - [sym_underscore] = ACTIONS(759), - [anon_sym_LPAREN] = ACTIONS(757), - [anon_sym_RBRACE] = ACTIONS(757), - [anon_sym_LBRACK] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_STAR] = ACTIONS(759), - [anon_sym_QMARK] = ACTIONS(757), - [anon_sym_as] = ACTIONS(759), - [anon_sym_const] = ACTIONS(759), - [anon_sym_default] = ACTIONS(759), - [anon_sym_union] = ACTIONS(759), - [anon_sym_POUND] = ACTIONS(757), - [anon_sym_EQ] = ACTIONS(759), - [anon_sym_COMMA] = ACTIONS(757), - [anon_sym_ref] = ACTIONS(759), - [anon_sym_LT] = ACTIONS(759), - [anon_sym_GT] = ACTIONS(759), - [anon_sym_COLON_COLON] = ACTIONS(757), - [anon_sym_AMP] = ACTIONS(759), - [anon_sym_DOT_DOT_DOT] = ACTIONS(757), - [sym_mutable_specifier] = ACTIONS(759), - [anon_sym_DOT_DOT] = ACTIONS(759), - [anon_sym_DOT_DOT_EQ] = ACTIONS(757), - [anon_sym_DASH] = ACTIONS(759), - [anon_sym_AMP_AMP] = ACTIONS(757), - [anon_sym_PIPE_PIPE] = ACTIONS(757), - [anon_sym_PIPE] = ACTIONS(759), - [anon_sym_CARET] = ACTIONS(759), - [anon_sym_EQ_EQ] = ACTIONS(757), - [anon_sym_BANG_EQ] = ACTIONS(757), - [anon_sym_LT_EQ] = ACTIONS(757), - [anon_sym_GT_EQ] = ACTIONS(757), - [anon_sym_LT_LT] = ACTIONS(759), - [anon_sym_GT_GT] = ACTIONS(759), - [anon_sym_SLASH] = ACTIONS(759), - [anon_sym_PERCENT] = ACTIONS(759), - [anon_sym_PLUS_EQ] = ACTIONS(757), - [anon_sym_DASH_EQ] = ACTIONS(757), - [anon_sym_STAR_EQ] = ACTIONS(757), - [anon_sym_SLASH_EQ] = ACTIONS(757), - [anon_sym_PERCENT_EQ] = ACTIONS(757), - [anon_sym_AMP_EQ] = ACTIONS(757), - [anon_sym_PIPE_EQ] = ACTIONS(757), - [anon_sym_CARET_EQ] = ACTIONS(757), - [anon_sym_LT_LT_EQ] = ACTIONS(757), - [anon_sym_GT_GT_EQ] = ACTIONS(757), - [anon_sym_DOT] = ACTIONS(759), - [sym_integer_literal] = ACTIONS(757), - [aux_sym_string_literal_token1] = ACTIONS(757), - [sym_char_literal] = ACTIONS(757), - [anon_sym_true] = ACTIONS(759), - [anon_sym_false] = ACTIONS(759), - [anon_sym_u8] = ACTIONS(759), - [anon_sym_i8] = ACTIONS(759), - [anon_sym_u16] = ACTIONS(759), - [anon_sym_i16] = ACTIONS(759), - [anon_sym_u32] = ACTIONS(759), - [anon_sym_i32] = ACTIONS(759), - [anon_sym_u64] = ACTIONS(759), - [anon_sym_i64] = ACTIONS(759), - [anon_sym_u128] = ACTIONS(759), - [anon_sym_i128] = ACTIONS(759), - [anon_sym_isize] = ACTIONS(759), - [anon_sym_usize] = ACTIONS(759), - [anon_sym_f32] = ACTIONS(759), - [anon_sym_f64] = ACTIONS(759), - [anon_sym_bool] = ACTIONS(759), - [anon_sym_str] = ACTIONS(759), - [anon_sym_char] = ACTIONS(759), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(757), - [sym_self] = ACTIONS(759), - [sym_super] = ACTIONS(759), - [sym_crate] = ACTIONS(759), - [sym_metavariable] = ACTIONS(757), - [sym_grit_metavariable] = ACTIONS(757), - [sym_raw_string_literal] = ACTIONS(757), - [sym_float_literal] = ACTIONS(757), + [238] = { + [sym__primitive_identifier] = ACTIONS(834), + [sym_underscore] = ACTIONS(834), + [anon_sym_LPAREN] = ACTIONS(832), + [anon_sym_RBRACE] = ACTIONS(832), + [anon_sym_LBRACK] = ACTIONS(832), + [anon_sym_PLUS] = ACTIONS(834), + [anon_sym_STAR] = ACTIONS(834), + [anon_sym_QMARK] = ACTIONS(832), + [anon_sym_as] = ACTIONS(834), + [anon_sym_const] = ACTIONS(834), + [anon_sym_default] = ACTIONS(834), + [anon_sym_union] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(832), + [anon_sym_EQ] = ACTIONS(834), + [anon_sym_COMMA] = ACTIONS(832), + [anon_sym_ref] = ACTIONS(834), + [anon_sym_LT] = ACTIONS(834), + [anon_sym_GT] = ACTIONS(834), + [anon_sym_COLON_COLON] = ACTIONS(832), + [anon_sym_AMP] = ACTIONS(834), + [anon_sym_DOT_DOT_DOT] = ACTIONS(832), + [sym_mutable_specifier] = ACTIONS(834), + [anon_sym_DOT_DOT] = ACTIONS(834), + [anon_sym_DOT_DOT_EQ] = ACTIONS(832), + [anon_sym_DASH] = ACTIONS(834), + [anon_sym_AMP_AMP] = ACTIONS(832), + [anon_sym_PIPE_PIPE] = ACTIONS(832), + [anon_sym_PIPE] = ACTIONS(834), + [anon_sym_CARET] = ACTIONS(834), + [anon_sym_EQ_EQ] = ACTIONS(832), + [anon_sym_BANG_EQ] = ACTIONS(832), + [anon_sym_LT_EQ] = ACTIONS(832), + [anon_sym_GT_EQ] = ACTIONS(832), + [anon_sym_LT_LT] = ACTIONS(834), + [anon_sym_GT_GT] = ACTIONS(834), + [anon_sym_SLASH] = ACTIONS(834), + [anon_sym_PERCENT] = ACTIONS(834), + [anon_sym_PLUS_EQ] = ACTIONS(832), + [anon_sym_DASH_EQ] = ACTIONS(832), + [anon_sym_STAR_EQ] = ACTIONS(832), + [anon_sym_SLASH_EQ] = ACTIONS(832), + [anon_sym_PERCENT_EQ] = ACTIONS(832), + [anon_sym_AMP_EQ] = ACTIONS(832), + [anon_sym_PIPE_EQ] = ACTIONS(832), + [anon_sym_CARET_EQ] = ACTIONS(832), + [anon_sym_LT_LT_EQ] = ACTIONS(832), + [anon_sym_GT_GT_EQ] = ACTIONS(832), + [anon_sym_DOT] = ACTIONS(834), + [sym_integer_literal] = ACTIONS(832), + [aux_sym_string_literal_token1] = ACTIONS(832), + [sym_char_literal] = ACTIONS(832), + [anon_sym_true] = ACTIONS(834), + [anon_sym_false] = ACTIONS(834), + [anon_sym_u8] = ACTIONS(834), + [anon_sym_i8] = ACTIONS(834), + [anon_sym_u16] = ACTIONS(834), + [anon_sym_i16] = ACTIONS(834), + [anon_sym_u32] = ACTIONS(834), + [anon_sym_i32] = ACTIONS(834), + [anon_sym_u64] = ACTIONS(834), + [anon_sym_i64] = ACTIONS(834), + [anon_sym_u128] = ACTIONS(834), + [anon_sym_i128] = ACTIONS(834), + [anon_sym_isize] = ACTIONS(834), + [anon_sym_usize] = ACTIONS(834), + [anon_sym_f32] = ACTIONS(834), + [anon_sym_f64] = ACTIONS(834), + [anon_sym_bool] = ACTIONS(834), + [anon_sym_str] = ACTIONS(834), + [anon_sym_char] = ACTIONS(834), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(832), + [sym_self] = ACTIONS(834), + [sym_super] = ACTIONS(834), + [sym_crate] = ACTIONS(834), + [sym_metavariable] = ACTIONS(832), + [sym_grit_metavariable] = ACTIONS(832), + [sym_raw_string_literal] = ACTIONS(832), + [sym_float_literal] = ACTIONS(832), [sym_block_comment] = ACTIONS(3), }, - [244] = { - [sym_empty_statement] = STATE(249), - [sym_macro_definition] = STATE(249), - [sym_attribute_item] = STATE(249), - [sym_inner_attribute_item] = STATE(249), - [sym_mod_item] = STATE(249), - [sym_foreign_mod_item] = STATE(249), - [sym_struct_item] = STATE(249), - [sym_union_item] = STATE(249), - [sym_enum_item] = STATE(249), - [sym_extern_crate_declaration] = STATE(249), - [sym_const_item] = STATE(249), - [sym_static_item] = STATE(249), - [sym_type_item] = STATE(249), - [sym_function_item] = STATE(249), - [sym_function_signature_item] = STATE(249), - [sym_function_modifiers] = STATE(2742), - [sym_impl_item] = STATE(249), - [sym_trait_item] = STATE(249), - [sym_associated_type] = STATE(249), - [sym_let_declaration] = STATE(249), - [sym_use_declaration] = STATE(249), - [sym_extern_modifier] = STATE(1656), - [sym_visibility_modifier] = STATE(1448), - [sym_bracketed_type] = STATE(2668), - [sym_generic_type_with_turbofish] = STATE(2752), - [sym_macro_invocation] = STATE(249), - [sym_scoped_identifier] = STATE(2453), - [sym_primitive_type] = STATE(2713), - [sym_identifier] = STATE(2451), - [aux_sym_declaration_list_repeat1] = STATE(249), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_SEMI] = ACTIONS(1078), - [anon_sym_macro_rules_BANG] = ACTIONS(1080), - [anon_sym_RBRACE] = ACTIONS(1132), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(1084), - [anon_sym_default] = ACTIONS(1086), - [anon_sym_enum] = ACTIONS(1088), - [anon_sym_fn] = ACTIONS(1090), - [anon_sym_impl] = ACTIONS(1092), - [anon_sym_let] = ACTIONS(1094), - [anon_sym_mod] = ACTIONS(1096), + [239] = { + [sym__primitive_identifier] = ACTIONS(826), + [sym_underscore] = ACTIONS(826), + [anon_sym_LPAREN] = ACTIONS(824), + [anon_sym_RBRACE] = ACTIONS(824), + [anon_sym_LBRACK] = ACTIONS(824), + [anon_sym_PLUS] = ACTIONS(826), + [anon_sym_STAR] = ACTIONS(826), + [anon_sym_QMARK] = ACTIONS(824), + [anon_sym_as] = ACTIONS(826), + [anon_sym_const] = ACTIONS(826), + [anon_sym_default] = ACTIONS(826), + [anon_sym_union] = ACTIONS(826), + [anon_sym_POUND] = ACTIONS(824), + [anon_sym_EQ] = ACTIONS(826), + [anon_sym_COMMA] = ACTIONS(824), + [anon_sym_ref] = ACTIONS(826), + [anon_sym_LT] = ACTIONS(826), + [anon_sym_GT] = ACTIONS(826), + [anon_sym_COLON_COLON] = ACTIONS(824), + [anon_sym_AMP] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(824), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(826), + [anon_sym_DOT_DOT_EQ] = ACTIONS(824), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_AMP_AMP] = ACTIONS(824), + [anon_sym_PIPE_PIPE] = ACTIONS(824), + [anon_sym_PIPE] = ACTIONS(826), + [anon_sym_CARET] = ACTIONS(826), + [anon_sym_EQ_EQ] = ACTIONS(824), + [anon_sym_BANG_EQ] = ACTIONS(824), + [anon_sym_LT_EQ] = ACTIONS(824), + [anon_sym_GT_EQ] = ACTIONS(824), + [anon_sym_LT_LT] = ACTIONS(826), + [anon_sym_GT_GT] = ACTIONS(826), + [anon_sym_SLASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_PLUS_EQ] = ACTIONS(824), + [anon_sym_DASH_EQ] = ACTIONS(824), + [anon_sym_STAR_EQ] = ACTIONS(824), + [anon_sym_SLASH_EQ] = ACTIONS(824), + [anon_sym_PERCENT_EQ] = ACTIONS(824), + [anon_sym_AMP_EQ] = ACTIONS(824), + [anon_sym_PIPE_EQ] = ACTIONS(824), + [anon_sym_CARET_EQ] = ACTIONS(824), + [anon_sym_LT_LT_EQ] = ACTIONS(824), + [anon_sym_GT_GT_EQ] = ACTIONS(824), + [anon_sym_DOT] = ACTIONS(826), + [sym_integer_literal] = ACTIONS(824), + [aux_sym_string_literal_token1] = ACTIONS(824), + [sym_char_literal] = ACTIONS(824), + [anon_sym_true] = ACTIONS(826), + [anon_sym_false] = ACTIONS(826), + [anon_sym_u8] = ACTIONS(826), + [anon_sym_i8] = ACTIONS(826), + [anon_sym_u16] = ACTIONS(826), + [anon_sym_i16] = ACTIONS(826), + [anon_sym_u32] = ACTIONS(826), + [anon_sym_i32] = ACTIONS(826), + [anon_sym_u64] = ACTIONS(826), + [anon_sym_i64] = ACTIONS(826), + [anon_sym_u128] = ACTIONS(826), + [anon_sym_i128] = ACTIONS(826), + [anon_sym_isize] = ACTIONS(826), + [anon_sym_usize] = ACTIONS(826), + [anon_sym_f32] = ACTIONS(826), + [anon_sym_f64] = ACTIONS(826), + [anon_sym_bool] = ACTIONS(826), + [anon_sym_str] = ACTIONS(826), + [anon_sym_char] = ACTIONS(826), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(824), + [sym_self] = ACTIONS(826), + [sym_super] = ACTIONS(826), + [sym_crate] = ACTIONS(826), + [sym_metavariable] = ACTIONS(824), + [sym_grit_metavariable] = ACTIONS(824), + [sym_raw_string_literal] = ACTIONS(824), + [sym_float_literal] = ACTIONS(824), + [sym_block_comment] = ACTIONS(3), + }, + [240] = { + [sym__primitive_identifier] = ACTIONS(737), + [sym_underscore] = ACTIONS(737), + [anon_sym_LPAREN] = ACTIONS(735), + [anon_sym_RBRACE] = ACTIONS(735), + [anon_sym_LBRACK] = ACTIONS(735), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_STAR] = ACTIONS(737), + [anon_sym_QMARK] = ACTIONS(735), + [anon_sym_as] = ACTIONS(737), + [anon_sym_const] = ACTIONS(737), + [anon_sym_default] = ACTIONS(737), + [anon_sym_union] = ACTIONS(737), + [anon_sym_POUND] = ACTIONS(735), + [anon_sym_EQ] = ACTIONS(737), + [anon_sym_COMMA] = ACTIONS(735), + [anon_sym_ref] = ACTIONS(737), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_GT] = ACTIONS(737), + [anon_sym_COLON_COLON] = ACTIONS(735), + [anon_sym_AMP] = ACTIONS(737), + [anon_sym_DOT_DOT_DOT] = ACTIONS(735), + [sym_mutable_specifier] = ACTIONS(737), + [anon_sym_DOT_DOT] = ACTIONS(737), + [anon_sym_DOT_DOT_EQ] = ACTIONS(735), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_AMP_AMP] = ACTIONS(735), + [anon_sym_PIPE_PIPE] = ACTIONS(735), + [anon_sym_PIPE] = ACTIONS(737), + [anon_sym_CARET] = ACTIONS(737), + [anon_sym_EQ_EQ] = ACTIONS(735), + [anon_sym_BANG_EQ] = ACTIONS(735), + [anon_sym_LT_EQ] = ACTIONS(735), + [anon_sym_GT_EQ] = ACTIONS(735), + [anon_sym_LT_LT] = ACTIONS(737), + [anon_sym_GT_GT] = ACTIONS(737), + [anon_sym_SLASH] = ACTIONS(737), + [anon_sym_PERCENT] = ACTIONS(737), + [anon_sym_PLUS_EQ] = ACTIONS(735), + [anon_sym_DASH_EQ] = ACTIONS(735), + [anon_sym_STAR_EQ] = ACTIONS(735), + [anon_sym_SLASH_EQ] = ACTIONS(735), + [anon_sym_PERCENT_EQ] = ACTIONS(735), + [anon_sym_AMP_EQ] = ACTIONS(735), + [anon_sym_PIPE_EQ] = ACTIONS(735), + [anon_sym_CARET_EQ] = ACTIONS(735), + [anon_sym_LT_LT_EQ] = ACTIONS(735), + [anon_sym_GT_GT_EQ] = ACTIONS(735), + [anon_sym_DOT] = ACTIONS(737), + [sym_integer_literal] = ACTIONS(735), + [aux_sym_string_literal_token1] = ACTIONS(735), + [sym_char_literal] = ACTIONS(735), + [anon_sym_true] = ACTIONS(737), + [anon_sym_false] = ACTIONS(737), + [anon_sym_u8] = ACTIONS(737), + [anon_sym_i8] = ACTIONS(737), + [anon_sym_u16] = ACTIONS(737), + [anon_sym_i16] = ACTIONS(737), + [anon_sym_u32] = ACTIONS(737), + [anon_sym_i32] = ACTIONS(737), + [anon_sym_u64] = ACTIONS(737), + [anon_sym_i64] = ACTIONS(737), + [anon_sym_u128] = ACTIONS(737), + [anon_sym_i128] = ACTIONS(737), + [anon_sym_isize] = ACTIONS(737), + [anon_sym_usize] = ACTIONS(737), + [anon_sym_f32] = ACTIONS(737), + [anon_sym_f64] = ACTIONS(737), + [anon_sym_bool] = ACTIONS(737), + [anon_sym_str] = ACTIONS(737), + [anon_sym_char] = ACTIONS(737), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(735), + [sym_self] = ACTIONS(737), + [sym_super] = ACTIONS(737), + [sym_crate] = ACTIONS(737), + [sym_metavariable] = ACTIONS(735), + [sym_grit_metavariable] = ACTIONS(735), + [sym_raw_string_literal] = ACTIONS(735), + [sym_float_literal] = ACTIONS(735), + [sym_block_comment] = ACTIONS(3), + }, + [241] = { + [sym__primitive_identifier] = ACTIONS(838), + [sym_underscore] = ACTIONS(838), + [anon_sym_LPAREN] = ACTIONS(836), + [anon_sym_RBRACE] = ACTIONS(836), + [anon_sym_LBRACK] = ACTIONS(836), + [anon_sym_PLUS] = ACTIONS(838), + [anon_sym_STAR] = ACTIONS(838), + [anon_sym_QMARK] = ACTIONS(836), + [anon_sym_as] = ACTIONS(838), + [anon_sym_const] = ACTIONS(838), + [anon_sym_default] = ACTIONS(838), + [anon_sym_union] = ACTIONS(838), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_EQ] = ACTIONS(838), + [anon_sym_COMMA] = ACTIONS(836), + [anon_sym_ref] = ACTIONS(838), + [anon_sym_LT] = ACTIONS(838), + [anon_sym_GT] = ACTIONS(838), + [anon_sym_COLON_COLON] = ACTIONS(836), + [anon_sym_AMP] = ACTIONS(838), + [anon_sym_DOT_DOT_DOT] = ACTIONS(836), + [sym_mutable_specifier] = ACTIONS(838), + [anon_sym_DOT_DOT] = ACTIONS(838), + [anon_sym_DOT_DOT_EQ] = ACTIONS(836), + [anon_sym_DASH] = ACTIONS(838), + [anon_sym_AMP_AMP] = ACTIONS(836), + [anon_sym_PIPE_PIPE] = ACTIONS(836), + [anon_sym_PIPE] = ACTIONS(838), + [anon_sym_CARET] = ACTIONS(838), + [anon_sym_EQ_EQ] = ACTIONS(836), + [anon_sym_BANG_EQ] = ACTIONS(836), + [anon_sym_LT_EQ] = ACTIONS(836), + [anon_sym_GT_EQ] = ACTIONS(836), + [anon_sym_LT_LT] = ACTIONS(838), + [anon_sym_GT_GT] = ACTIONS(838), + [anon_sym_SLASH] = ACTIONS(838), + [anon_sym_PERCENT] = ACTIONS(838), + [anon_sym_PLUS_EQ] = ACTIONS(836), + [anon_sym_DASH_EQ] = ACTIONS(836), + [anon_sym_STAR_EQ] = ACTIONS(836), + [anon_sym_SLASH_EQ] = ACTIONS(836), + [anon_sym_PERCENT_EQ] = ACTIONS(836), + [anon_sym_AMP_EQ] = ACTIONS(836), + [anon_sym_PIPE_EQ] = ACTIONS(836), + [anon_sym_CARET_EQ] = ACTIONS(836), + [anon_sym_LT_LT_EQ] = ACTIONS(836), + [anon_sym_GT_GT_EQ] = ACTIONS(836), + [anon_sym_DOT] = ACTIONS(838), + [sym_integer_literal] = ACTIONS(836), + [aux_sym_string_literal_token1] = ACTIONS(836), + [sym_char_literal] = ACTIONS(836), + [anon_sym_true] = ACTIONS(838), + [anon_sym_false] = ACTIONS(838), + [anon_sym_u8] = ACTIONS(838), + [anon_sym_i8] = ACTIONS(838), + [anon_sym_u16] = ACTIONS(838), + [anon_sym_i16] = ACTIONS(838), + [anon_sym_u32] = ACTIONS(838), + [anon_sym_i32] = ACTIONS(838), + [anon_sym_u64] = ACTIONS(838), + [anon_sym_i64] = ACTIONS(838), + [anon_sym_u128] = ACTIONS(838), + [anon_sym_i128] = ACTIONS(838), + [anon_sym_isize] = ACTIONS(838), + [anon_sym_usize] = ACTIONS(838), + [anon_sym_f32] = ACTIONS(838), + [anon_sym_f64] = ACTIONS(838), + [anon_sym_bool] = ACTIONS(838), + [anon_sym_str] = ACTIONS(838), + [anon_sym_char] = ACTIONS(838), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(836), + [sym_self] = ACTIONS(838), + [sym_super] = ACTIONS(838), + [sym_crate] = ACTIONS(838), + [sym_metavariable] = ACTIONS(836), + [sym_grit_metavariable] = ACTIONS(836), + [sym_raw_string_literal] = ACTIONS(836), + [sym_float_literal] = ACTIONS(836), + [sym_block_comment] = ACTIONS(3), + }, + [242] = { + [sym__primitive_identifier] = ACTIONS(1173), + [sym_underscore] = ACTIONS(1173), + [anon_sym_LPAREN] = ACTIONS(1175), + [anon_sym_RBRACE] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(1175), + [anon_sym_PLUS] = ACTIONS(725), + [anon_sym_STAR] = ACTIONS(725), + [anon_sym_QMARK] = ACTIONS(723), + [anon_sym_as] = ACTIONS(725), + [anon_sym_const] = ACTIONS(1173), + [anon_sym_default] = ACTIONS(1173), + [anon_sym_union] = ACTIONS(1173), + [anon_sym_POUND] = ACTIONS(1175), + [anon_sym_EQ] = ACTIONS(725), + [anon_sym_COMMA] = ACTIONS(723), + [anon_sym_ref] = ACTIONS(1173), + [anon_sym_LT] = ACTIONS(1173), + [anon_sym_GT] = ACTIONS(725), + [anon_sym_COLON_COLON] = ACTIONS(1175), + [anon_sym_AMP] = ACTIONS(1173), + [anon_sym_DOT_DOT_DOT] = ACTIONS(723), + [sym_mutable_specifier] = ACTIONS(1173), + [anon_sym_DOT_DOT] = ACTIONS(1173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(723), + [anon_sym_DASH] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(723), + [anon_sym_PIPE_PIPE] = ACTIONS(723), + [anon_sym_PIPE] = ACTIONS(725), + [anon_sym_CARET] = ACTIONS(725), + [anon_sym_EQ_EQ] = ACTIONS(723), + [anon_sym_BANG_EQ] = ACTIONS(723), + [anon_sym_LT_EQ] = ACTIONS(723), + [anon_sym_GT_EQ] = ACTIONS(723), + [anon_sym_LT_LT] = ACTIONS(725), + [anon_sym_GT_GT] = ACTIONS(725), + [anon_sym_SLASH] = ACTIONS(725), + [anon_sym_PERCENT] = ACTIONS(725), + [anon_sym_PLUS_EQ] = ACTIONS(723), + [anon_sym_DASH_EQ] = ACTIONS(723), + [anon_sym_STAR_EQ] = ACTIONS(723), + [anon_sym_SLASH_EQ] = ACTIONS(723), + [anon_sym_PERCENT_EQ] = ACTIONS(723), + [anon_sym_AMP_EQ] = ACTIONS(723), + [anon_sym_PIPE_EQ] = ACTIONS(723), + [anon_sym_CARET_EQ] = ACTIONS(723), + [anon_sym_LT_LT_EQ] = ACTIONS(723), + [anon_sym_GT_GT_EQ] = ACTIONS(723), + [anon_sym_DOT] = ACTIONS(725), + [sym_integer_literal] = ACTIONS(1175), + [aux_sym_string_literal_token1] = ACTIONS(1175), + [sym_char_literal] = ACTIONS(1175), + [anon_sym_true] = ACTIONS(1173), + [anon_sym_false] = ACTIONS(1173), + [anon_sym_u8] = ACTIONS(1173), + [anon_sym_i8] = ACTIONS(1173), + [anon_sym_u16] = ACTIONS(1173), + [anon_sym_i16] = ACTIONS(1173), + [anon_sym_u32] = ACTIONS(1173), + [anon_sym_i32] = ACTIONS(1173), + [anon_sym_u64] = ACTIONS(1173), + [anon_sym_i64] = ACTIONS(1173), + [anon_sym_u128] = ACTIONS(1173), + [anon_sym_i128] = ACTIONS(1173), + [anon_sym_isize] = ACTIONS(1173), + [anon_sym_usize] = ACTIONS(1173), + [anon_sym_f32] = ACTIONS(1173), + [anon_sym_f64] = ACTIONS(1173), + [anon_sym_bool] = ACTIONS(1173), + [anon_sym_str] = ACTIONS(1173), + [anon_sym_char] = ACTIONS(1173), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(1175), + [sym_self] = ACTIONS(1173), + [sym_super] = ACTIONS(1173), + [sym_crate] = ACTIONS(1173), + [sym_metavariable] = ACTIONS(1175), + [sym_grit_metavariable] = ACTIONS(1175), + [sym_raw_string_literal] = ACTIONS(1175), + [sym_float_literal] = ACTIONS(1175), + [sym_block_comment] = ACTIONS(3), + }, + [243] = { + [sym_empty_statement] = STATE(245), + [sym_macro_definition] = STATE(245), + [sym_attribute_item] = STATE(245), + [sym_inner_attribute_item] = STATE(245), + [sym_mod_item] = STATE(245), + [sym_foreign_mod_item] = STATE(245), + [sym_struct_item] = STATE(245), + [sym_union_item] = STATE(245), + [sym_enum_item] = STATE(245), + [sym_extern_crate_declaration] = STATE(245), + [sym_const_item] = STATE(245), + [sym_static_item] = STATE(245), + [sym_type_item] = STATE(245), + [sym_function_item] = STATE(245), + [sym_function_signature_item] = STATE(245), + [sym_function_modifiers] = STATE(2746), + [sym_impl_item] = STATE(245), + [sym_trait_item] = STATE(245), + [sym_associated_type] = STATE(245), + [sym_let_declaration] = STATE(245), + [sym_use_declaration] = STATE(245), + [sym_extern_modifier] = STATE(1668), + [sym_visibility_modifier] = STATE(1464), + [sym_bracketed_type] = STATE(2698), + [sym_generic_type_with_turbofish] = STATE(2656), + [sym_macro_invocation] = STATE(245), + [sym_scoped_identifier] = STATE(2520), + [sym_primitive_type] = STATE(2695), + [sym_identifier] = STATE(2514), + [aux_sym_declaration_list_repeat1] = STATE(245), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_SEMI] = ACTIONS(1123), + [anon_sym_macro_rules_BANG] = ACTIONS(1125), + [anon_sym_RBRACE] = ACTIONS(1177), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(1129), + [anon_sym_default] = ACTIONS(1131), + [anon_sym_enum] = ACTIONS(1133), + [anon_sym_fn] = ACTIONS(1135), + [anon_sym_impl] = ACTIONS(1137), + [anon_sym_let] = ACTIONS(1139), + [anon_sym_mod] = ACTIONS(1141), [anon_sym_pub] = ACTIONS(51), - [anon_sym_static] = ACTIONS(1098), - [anon_sym_struct] = ACTIONS(1100), - [anon_sym_trait] = ACTIONS(1102), - [anon_sym_type] = ACTIONS(1104), - [anon_sym_union] = ACTIONS(1106), - [anon_sym_unsafe] = ACTIONS(1108), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_POUND] = ACTIONS(1112), - [anon_sym_extern] = ACTIONS(1114), + [anon_sym_static] = ACTIONS(1143), + [anon_sym_struct] = ACTIONS(1145), + [anon_sym_trait] = ACTIONS(1147), + [anon_sym_type] = ACTIONS(1149), + [anon_sym_union] = ACTIONS(1151), + [anon_sym_unsafe] = ACTIONS(1153), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_POUND] = ACTIONS(1157), + [anon_sym_extern] = ACTIONS(1159), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1116), + [anon_sym_COLON_COLON] = ACTIONS(1161), [anon_sym_u8] = ACTIONS(95), [anon_sym_i8] = ACTIONS(95), [anon_sym_u16] = ACTIONS(95), @@ -46984,152 +46967,234 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(95), [anon_sym_char] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1118), - [sym_super] = ACTIONS(1118), - [sym_crate] = ACTIONS(1120), - [sym_metavariable] = ACTIONS(1122), - [sym_grit_metavariable] = ACTIONS(1124), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1163), + [sym_super] = ACTIONS(1163), + [sym_crate] = ACTIONS(1165), + [sym_metavariable] = ACTIONS(1167), + [sym_grit_metavariable] = ACTIONS(1169), + [sym_block_comment] = ACTIONS(3), + }, + [244] = { + [sym__primitive_identifier] = ACTIONS(717), + [sym_underscore] = ACTIONS(717), + [anon_sym_LPAREN] = ACTIONS(715), + [anon_sym_RBRACE] = ACTIONS(715), + [anon_sym_LBRACK] = ACTIONS(715), + [anon_sym_PLUS] = ACTIONS(717), + [anon_sym_STAR] = ACTIONS(717), + [anon_sym_QMARK] = ACTIONS(715), + [anon_sym_as] = ACTIONS(717), + [anon_sym_const] = ACTIONS(717), + [anon_sym_default] = ACTIONS(717), + [anon_sym_union] = ACTIONS(717), + [anon_sym_POUND] = ACTIONS(715), + [anon_sym_EQ] = ACTIONS(717), + [anon_sym_COMMA] = ACTIONS(715), + [anon_sym_ref] = ACTIONS(717), + [anon_sym_LT] = ACTIONS(717), + [anon_sym_GT] = ACTIONS(717), + [anon_sym_COLON_COLON] = ACTIONS(715), + [anon_sym_AMP] = ACTIONS(717), + [anon_sym_DOT_DOT_DOT] = ACTIONS(715), + [sym_mutable_specifier] = ACTIONS(717), + [anon_sym_DOT_DOT] = ACTIONS(717), + [anon_sym_DOT_DOT_EQ] = ACTIONS(715), + [anon_sym_DASH] = ACTIONS(717), + [anon_sym_AMP_AMP] = ACTIONS(715), + [anon_sym_PIPE_PIPE] = ACTIONS(715), + [anon_sym_PIPE] = ACTIONS(717), + [anon_sym_CARET] = ACTIONS(717), + [anon_sym_EQ_EQ] = ACTIONS(715), + [anon_sym_BANG_EQ] = ACTIONS(715), + [anon_sym_LT_EQ] = ACTIONS(715), + [anon_sym_GT_EQ] = ACTIONS(715), + [anon_sym_LT_LT] = ACTIONS(717), + [anon_sym_GT_GT] = ACTIONS(717), + [anon_sym_SLASH] = ACTIONS(717), + [anon_sym_PERCENT] = ACTIONS(717), + [anon_sym_PLUS_EQ] = ACTIONS(715), + [anon_sym_DASH_EQ] = ACTIONS(715), + [anon_sym_STAR_EQ] = ACTIONS(715), + [anon_sym_SLASH_EQ] = ACTIONS(715), + [anon_sym_PERCENT_EQ] = ACTIONS(715), + [anon_sym_AMP_EQ] = ACTIONS(715), + [anon_sym_PIPE_EQ] = ACTIONS(715), + [anon_sym_CARET_EQ] = ACTIONS(715), + [anon_sym_LT_LT_EQ] = ACTIONS(715), + [anon_sym_GT_GT_EQ] = ACTIONS(715), + [anon_sym_DOT] = ACTIONS(717), + [sym_integer_literal] = ACTIONS(715), + [aux_sym_string_literal_token1] = ACTIONS(715), + [sym_char_literal] = ACTIONS(715), + [anon_sym_true] = ACTIONS(717), + [anon_sym_false] = ACTIONS(717), + [anon_sym_u8] = ACTIONS(717), + [anon_sym_i8] = ACTIONS(717), + [anon_sym_u16] = ACTIONS(717), + [anon_sym_i16] = ACTIONS(717), + [anon_sym_u32] = ACTIONS(717), + [anon_sym_i32] = ACTIONS(717), + [anon_sym_u64] = ACTIONS(717), + [anon_sym_i64] = ACTIONS(717), + [anon_sym_u128] = ACTIONS(717), + [anon_sym_i128] = ACTIONS(717), + [anon_sym_isize] = ACTIONS(717), + [anon_sym_usize] = ACTIONS(717), + [anon_sym_f32] = ACTIONS(717), + [anon_sym_f64] = ACTIONS(717), + [anon_sym_bool] = ACTIONS(717), + [anon_sym_str] = ACTIONS(717), + [anon_sym_char] = ACTIONS(717), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(715), + [sym_self] = ACTIONS(717), + [sym_super] = ACTIONS(717), + [sym_crate] = ACTIONS(717), + [sym_metavariable] = ACTIONS(715), + [sym_grit_metavariable] = ACTIONS(715), + [sym_raw_string_literal] = ACTIONS(715), + [sym_float_literal] = ACTIONS(715), [sym_block_comment] = ACTIONS(3), }, [245] = { - [sym__primitive_identifier] = ACTIONS(1134), - [sym_underscore] = ACTIONS(1134), - [anon_sym_LPAREN] = ACTIONS(1136), - [anon_sym_RBRACE] = ACTIONS(725), - [anon_sym_LBRACK] = ACTIONS(1136), - [anon_sym_PLUS] = ACTIONS(727), - [anon_sym_STAR] = ACTIONS(727), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_as] = ACTIONS(727), - [anon_sym_const] = ACTIONS(1134), - [anon_sym_default] = ACTIONS(1134), - [anon_sym_union] = ACTIONS(1134), - [anon_sym_POUND] = ACTIONS(1136), - [anon_sym_EQ] = ACTIONS(727), - [anon_sym_COMMA] = ACTIONS(725), - [anon_sym_ref] = ACTIONS(1134), - [anon_sym_LT] = ACTIONS(1134), - [anon_sym_GT] = ACTIONS(727), - [anon_sym_COLON_COLON] = ACTIONS(1136), - [anon_sym_AMP] = ACTIONS(1134), - [anon_sym_DOT_DOT_DOT] = ACTIONS(725), - [sym_mutable_specifier] = ACTIONS(1134), - [anon_sym_DOT_DOT] = ACTIONS(1134), - [anon_sym_DOT_DOT_EQ] = ACTIONS(725), - [anon_sym_DASH] = ACTIONS(1134), - [anon_sym_AMP_AMP] = ACTIONS(725), - [anon_sym_PIPE_PIPE] = ACTIONS(725), - [anon_sym_PIPE] = ACTIONS(727), - [anon_sym_CARET] = ACTIONS(727), - [anon_sym_EQ_EQ] = ACTIONS(725), - [anon_sym_BANG_EQ] = ACTIONS(725), - [anon_sym_LT_EQ] = ACTIONS(725), - [anon_sym_GT_EQ] = ACTIONS(725), - [anon_sym_LT_LT] = ACTIONS(727), - [anon_sym_GT_GT] = ACTIONS(727), - [anon_sym_SLASH] = ACTIONS(727), - [anon_sym_PERCENT] = ACTIONS(727), - [anon_sym_PLUS_EQ] = ACTIONS(725), - [anon_sym_DASH_EQ] = ACTIONS(725), - [anon_sym_STAR_EQ] = ACTIONS(725), - [anon_sym_SLASH_EQ] = ACTIONS(725), - [anon_sym_PERCENT_EQ] = ACTIONS(725), - [anon_sym_AMP_EQ] = ACTIONS(725), - [anon_sym_PIPE_EQ] = ACTIONS(725), - [anon_sym_CARET_EQ] = ACTIONS(725), - [anon_sym_LT_LT_EQ] = ACTIONS(725), - [anon_sym_GT_GT_EQ] = ACTIONS(725), - [anon_sym_DOT] = ACTIONS(727), - [sym_integer_literal] = ACTIONS(1136), - [aux_sym_string_literal_token1] = ACTIONS(1136), - [sym_char_literal] = ACTIONS(1136), - [anon_sym_true] = ACTIONS(1134), - [anon_sym_false] = ACTIONS(1134), - [anon_sym_u8] = ACTIONS(1134), - [anon_sym_i8] = ACTIONS(1134), - [anon_sym_u16] = ACTIONS(1134), - [anon_sym_i16] = ACTIONS(1134), - [anon_sym_u32] = ACTIONS(1134), - [anon_sym_i32] = ACTIONS(1134), - [anon_sym_u64] = ACTIONS(1134), - [anon_sym_i64] = ACTIONS(1134), - [anon_sym_u128] = ACTIONS(1134), - [anon_sym_i128] = ACTIONS(1134), - [anon_sym_isize] = ACTIONS(1134), - [anon_sym_usize] = ACTIONS(1134), - [anon_sym_f32] = ACTIONS(1134), - [anon_sym_f64] = ACTIONS(1134), - [anon_sym_bool] = ACTIONS(1134), - [anon_sym_str] = ACTIONS(1134), - [anon_sym_char] = ACTIONS(1134), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1136), - [sym_self] = ACTIONS(1134), - [sym_super] = ACTIONS(1134), - [sym_crate] = ACTIONS(1134), - [sym_metavariable] = ACTIONS(1136), - [sym_grit_metavariable] = ACTIONS(1136), - [sym_raw_string_literal] = ACTIONS(1136), - [sym_float_literal] = ACTIONS(1136), + [sym_empty_statement] = STATE(245), + [sym_macro_definition] = STATE(245), + [sym_attribute_item] = STATE(245), + [sym_inner_attribute_item] = STATE(245), + [sym_mod_item] = STATE(245), + [sym_foreign_mod_item] = STATE(245), + [sym_struct_item] = STATE(245), + [sym_union_item] = STATE(245), + [sym_enum_item] = STATE(245), + [sym_extern_crate_declaration] = STATE(245), + [sym_const_item] = STATE(245), + [sym_static_item] = STATE(245), + [sym_type_item] = STATE(245), + [sym_function_item] = STATE(245), + [sym_function_signature_item] = STATE(245), + [sym_function_modifiers] = STATE(2746), + [sym_impl_item] = STATE(245), + [sym_trait_item] = STATE(245), + [sym_associated_type] = STATE(245), + [sym_let_declaration] = STATE(245), + [sym_use_declaration] = STATE(245), + [sym_extern_modifier] = STATE(1668), + [sym_visibility_modifier] = STATE(1464), + [sym_bracketed_type] = STATE(2698), + [sym_generic_type_with_turbofish] = STATE(2656), + [sym_macro_invocation] = STATE(245), + [sym_scoped_identifier] = STATE(2520), + [sym_primitive_type] = STATE(2695), + [sym_identifier] = STATE(2514), + [aux_sym_declaration_list_repeat1] = STATE(245), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(1179), + [anon_sym_SEMI] = ACTIONS(1182), + [anon_sym_macro_rules_BANG] = ACTIONS(1185), + [anon_sym_RBRACE] = ACTIONS(1188), + [anon_sym_async] = ACTIONS(1190), + [anon_sym_const] = ACTIONS(1193), + [anon_sym_default] = ACTIONS(1196), + [anon_sym_enum] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1202), + [anon_sym_impl] = ACTIONS(1205), + [anon_sym_let] = ACTIONS(1208), + [anon_sym_mod] = ACTIONS(1211), + [anon_sym_pub] = ACTIONS(1214), + [anon_sym_static] = ACTIONS(1217), + [anon_sym_struct] = ACTIONS(1220), + [anon_sym_trait] = ACTIONS(1223), + [anon_sym_type] = ACTIONS(1226), + [anon_sym_union] = ACTIONS(1229), + [anon_sym_unsafe] = ACTIONS(1232), + [anon_sym_use] = ACTIONS(1235), + [anon_sym_POUND] = ACTIONS(1238), + [anon_sym_extern] = ACTIONS(1241), + [anon_sym_LT] = ACTIONS(1244), + [anon_sym_COLON_COLON] = ACTIONS(1247), + [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), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(1253), + [sym_self] = ACTIONS(1256), + [sym_super] = ACTIONS(1256), + [sym_crate] = ACTIONS(1259), + [sym_metavariable] = ACTIONS(1262), + [sym_grit_metavariable] = ACTIONS(1265), [sym_block_comment] = ACTIONS(3), }, [246] = { - [sym_empty_statement] = STATE(237), - [sym_macro_definition] = STATE(237), - [sym_attribute_item] = STATE(237), - [sym_inner_attribute_item] = STATE(237), - [sym_mod_item] = STATE(237), - [sym_foreign_mod_item] = STATE(237), - [sym_struct_item] = STATE(237), - [sym_union_item] = STATE(237), - [sym_enum_item] = STATE(237), - [sym_extern_crate_declaration] = STATE(237), - [sym_const_item] = STATE(237), - [sym_static_item] = STATE(237), - [sym_type_item] = STATE(237), - [sym_function_item] = STATE(237), - [sym_function_signature_item] = STATE(237), - [sym_function_modifiers] = STATE(2742), - [sym_impl_item] = STATE(237), - [sym_trait_item] = STATE(237), - [sym_associated_type] = STATE(237), - [sym_let_declaration] = STATE(237), - [sym_use_declaration] = STATE(237), - [sym_extern_modifier] = STATE(1656), - [sym_visibility_modifier] = STATE(1448), - [sym_bracketed_type] = STATE(2668), - [sym_generic_type_with_turbofish] = STATE(2752), - [sym_macro_invocation] = STATE(237), - [sym_scoped_identifier] = STATE(2453), - [sym_primitive_type] = STATE(2713), - [sym_identifier] = STATE(2451), - [aux_sym_declaration_list_repeat1] = STATE(237), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_SEMI] = ACTIONS(1078), - [anon_sym_macro_rules_BANG] = ACTIONS(1080), - [anon_sym_RBRACE] = ACTIONS(1138), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(1084), - [anon_sym_default] = ACTIONS(1086), - [anon_sym_enum] = ACTIONS(1088), - [anon_sym_fn] = ACTIONS(1090), - [anon_sym_impl] = ACTIONS(1092), - [anon_sym_let] = ACTIONS(1094), - [anon_sym_mod] = ACTIONS(1096), + [sym_empty_statement] = STATE(245), + [sym_macro_definition] = STATE(245), + [sym_attribute_item] = STATE(245), + [sym_inner_attribute_item] = STATE(245), + [sym_mod_item] = STATE(245), + [sym_foreign_mod_item] = STATE(245), + [sym_struct_item] = STATE(245), + [sym_union_item] = STATE(245), + [sym_enum_item] = STATE(245), + [sym_extern_crate_declaration] = STATE(245), + [sym_const_item] = STATE(245), + [sym_static_item] = STATE(245), + [sym_type_item] = STATE(245), + [sym_function_item] = STATE(245), + [sym_function_signature_item] = STATE(245), + [sym_function_modifiers] = STATE(2746), + [sym_impl_item] = STATE(245), + [sym_trait_item] = STATE(245), + [sym_associated_type] = STATE(245), + [sym_let_declaration] = STATE(245), + [sym_use_declaration] = STATE(245), + [sym_extern_modifier] = STATE(1668), + [sym_visibility_modifier] = STATE(1464), + [sym_bracketed_type] = STATE(2698), + [sym_generic_type_with_turbofish] = STATE(2656), + [sym_macro_invocation] = STATE(245), + [sym_scoped_identifier] = STATE(2520), + [sym_primitive_type] = STATE(2695), + [sym_identifier] = STATE(2514), + [aux_sym_declaration_list_repeat1] = STATE(245), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_SEMI] = ACTIONS(1123), + [anon_sym_macro_rules_BANG] = ACTIONS(1125), + [anon_sym_RBRACE] = ACTIONS(1268), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(1129), + [anon_sym_default] = ACTIONS(1131), + [anon_sym_enum] = ACTIONS(1133), + [anon_sym_fn] = ACTIONS(1135), + [anon_sym_impl] = ACTIONS(1137), + [anon_sym_let] = ACTIONS(1139), + [anon_sym_mod] = ACTIONS(1141), [anon_sym_pub] = ACTIONS(51), - [anon_sym_static] = ACTIONS(1098), - [anon_sym_struct] = ACTIONS(1100), - [anon_sym_trait] = ACTIONS(1102), - [anon_sym_type] = ACTIONS(1104), - [anon_sym_union] = ACTIONS(1106), - [anon_sym_unsafe] = ACTIONS(1108), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_POUND] = ACTIONS(1112), - [anon_sym_extern] = ACTIONS(1114), + [anon_sym_static] = ACTIONS(1143), + [anon_sym_struct] = ACTIONS(1145), + [anon_sym_trait] = ACTIONS(1147), + [anon_sym_type] = ACTIONS(1149), + [anon_sym_union] = ACTIONS(1151), + [anon_sym_unsafe] = ACTIONS(1153), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_POUND] = ACTIONS(1157), + [anon_sym_extern] = ACTIONS(1159), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1116), + [anon_sym_COLON_COLON] = ACTIONS(1161), [anon_sym_u8] = ACTIONS(95), [anon_sym_i8] = ACTIONS(95), [anon_sym_u16] = ACTIONS(95), @@ -47148,842 +47213,844 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(95), [anon_sym_char] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1118), - [sym_super] = ACTIONS(1118), - [sym_crate] = ACTIONS(1120), - [sym_metavariable] = ACTIONS(1122), - [sym_grit_metavariable] = ACTIONS(1124), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1163), + [sym_super] = ACTIONS(1163), + [sym_crate] = ACTIONS(1165), + [sym_metavariable] = ACTIONS(1167), + [sym_grit_metavariable] = ACTIONS(1169), [sym_block_comment] = ACTIONS(3), }, [247] = { - [sym__token_pattern] = STATE(247), - [sym_token_tree_pattern] = STATE(247), - [sym_token_binding_pattern] = STATE(247), - [sym_token_repetition_pattern] = STATE(247), - [sym__literal] = STATE(247), - [sym_string_literal] = STATE(656), - [sym_boolean_literal] = STATE(656), - [sym_primitive_type] = STATE(247), - [sym_identifier] = STATE(247), - [aux_sym_token_tree_pattern_repeat1] = STATE(247), - [sym__primitive_identifier] = ACTIONS(1140), - [anon_sym_LPAREN] = ACTIONS(1143), - [anon_sym_RPAREN] = ACTIONS(1146), - [anon_sym_LBRACE] = ACTIONS(1148), - [anon_sym_RBRACE] = ACTIONS(1146), - [anon_sym_LBRACK] = ACTIONS(1151), - [anon_sym_RBRACK] = ACTIONS(1146), - [anon_sym_DOLLAR] = ACTIONS(1154), - [aux_sym__non_special_token_token1] = ACTIONS(1157), - [anon_sym_SQUOTE] = ACTIONS(1157), - [anon_sym_as] = ACTIONS(1157), - [anon_sym_async] = ACTIONS(1157), - [anon_sym_await] = ACTIONS(1157), - [anon_sym_break] = ACTIONS(1157), - [anon_sym_const] = ACTIONS(1157), - [anon_sym_continue] = ACTIONS(1157), - [anon_sym_default] = ACTIONS(1157), - [anon_sym_enum] = ACTIONS(1157), - [anon_sym_fn] = ACTIONS(1157), - [anon_sym_for] = ACTIONS(1157), - [anon_sym_if] = ACTIONS(1157), - [anon_sym_impl] = ACTIONS(1157), - [anon_sym_let] = ACTIONS(1157), - [anon_sym_loop] = ACTIONS(1157), - [anon_sym_match] = ACTIONS(1157), - [anon_sym_mod] = ACTIONS(1157), - [anon_sym_pub] = ACTIONS(1157), - [anon_sym_return] = ACTIONS(1157), - [anon_sym_static] = ACTIONS(1157), - [anon_sym_struct] = ACTIONS(1157), - [anon_sym_trait] = ACTIONS(1157), - [anon_sym_type] = ACTIONS(1157), - [anon_sym_union] = ACTIONS(1157), - [anon_sym_unsafe] = ACTIONS(1157), - [anon_sym_use] = ACTIONS(1157), - [anon_sym_where] = ACTIONS(1157), - [anon_sym_while] = ACTIONS(1157), - [sym_mutable_specifier] = ACTIONS(1157), - [sym_integer_literal] = ACTIONS(1160), - [aux_sym_string_literal_token1] = ACTIONS(1163), - [sym_char_literal] = ACTIONS(1160), - [anon_sym_true] = ACTIONS(1166), - [anon_sym_false] = ACTIONS(1166), - [anon_sym_u8] = ACTIONS(1169), - [anon_sym_i8] = ACTIONS(1169), - [anon_sym_u16] = ACTIONS(1169), - [anon_sym_i16] = ACTIONS(1169), - [anon_sym_u32] = ACTIONS(1169), - [anon_sym_i32] = ACTIONS(1169), - [anon_sym_u64] = ACTIONS(1169), - [anon_sym_i64] = ACTIONS(1169), - [anon_sym_u128] = ACTIONS(1169), - [anon_sym_i128] = ACTIONS(1169), - [anon_sym_isize] = ACTIONS(1169), - [anon_sym_usize] = ACTIONS(1169), - [anon_sym_f32] = ACTIONS(1169), - [anon_sym_f64] = ACTIONS(1169), - [anon_sym_bool] = ACTIONS(1169), - [anon_sym_str] = ACTIONS(1169), - [anon_sym_char] = ACTIONS(1169), - [sym_line_comment] = ACTIONS(1172), - [sym__raw_identifier] = ACTIONS(1174), - [sym_self] = ACTIONS(1157), - [sym_super] = ACTIONS(1157), - [sym_crate] = ACTIONS(1157), - [sym_metavariable] = ACTIONS(1177), - [sym_grit_metavariable] = ACTIONS(1180), - [sym_raw_string_literal] = ACTIONS(1160), - [sym_float_literal] = ACTIONS(1160), + [sym__primitive_identifier] = ACTIONS(1270), + [sym_underscore] = ACTIONS(1270), + [anon_sym_LPAREN] = ACTIONS(1272), + [anon_sym_RBRACE] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(1272), + [anon_sym_PLUS] = ACTIONS(725), + [anon_sym_STAR] = ACTIONS(725), + [anon_sym_QMARK] = ACTIONS(723), + [anon_sym_as] = ACTIONS(725), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1270), + [anon_sym_union] = ACTIONS(1270), + [anon_sym_POUND] = ACTIONS(1272), + [anon_sym_EQ] = ACTIONS(725), + [anon_sym_COMMA] = ACTIONS(723), + [anon_sym_ref] = ACTIONS(1270), + [anon_sym_LT] = ACTIONS(1270), + [anon_sym_GT] = ACTIONS(725), + [anon_sym_COLON_COLON] = ACTIONS(1272), + [anon_sym_AMP] = ACTIONS(1270), + [anon_sym_DOT_DOT_DOT] = ACTIONS(723), + [sym_mutable_specifier] = ACTIONS(1270), + [anon_sym_DOT_DOT] = ACTIONS(1270), + [anon_sym_DOT_DOT_EQ] = ACTIONS(723), + [anon_sym_DASH] = ACTIONS(1270), + [anon_sym_AMP_AMP] = ACTIONS(723), + [anon_sym_PIPE_PIPE] = ACTIONS(723), + [anon_sym_PIPE] = ACTIONS(725), + [anon_sym_CARET] = ACTIONS(725), + [anon_sym_EQ_EQ] = ACTIONS(723), + [anon_sym_BANG_EQ] = ACTIONS(723), + [anon_sym_LT_EQ] = ACTIONS(723), + [anon_sym_GT_EQ] = ACTIONS(723), + [anon_sym_LT_LT] = ACTIONS(725), + [anon_sym_GT_GT] = ACTIONS(725), + [anon_sym_SLASH] = ACTIONS(725), + [anon_sym_PERCENT] = ACTIONS(725), + [anon_sym_PLUS_EQ] = ACTIONS(723), + [anon_sym_DASH_EQ] = ACTIONS(723), + [anon_sym_STAR_EQ] = ACTIONS(723), + [anon_sym_SLASH_EQ] = ACTIONS(723), + [anon_sym_PERCENT_EQ] = ACTIONS(723), + [anon_sym_AMP_EQ] = ACTIONS(723), + [anon_sym_PIPE_EQ] = ACTIONS(723), + [anon_sym_CARET_EQ] = ACTIONS(723), + [anon_sym_LT_LT_EQ] = ACTIONS(723), + [anon_sym_GT_GT_EQ] = ACTIONS(723), + [anon_sym_DOT] = ACTIONS(725), + [sym_integer_literal] = ACTIONS(1272), + [aux_sym_string_literal_token1] = ACTIONS(1272), + [sym_char_literal] = ACTIONS(1272), + [anon_sym_true] = ACTIONS(1270), + [anon_sym_false] = ACTIONS(1270), + [anon_sym_u8] = ACTIONS(1270), + [anon_sym_i8] = ACTIONS(1270), + [anon_sym_u16] = ACTIONS(1270), + [anon_sym_i16] = ACTIONS(1270), + [anon_sym_u32] = ACTIONS(1270), + [anon_sym_i32] = ACTIONS(1270), + [anon_sym_u64] = ACTIONS(1270), + [anon_sym_i64] = ACTIONS(1270), + [anon_sym_u128] = ACTIONS(1270), + [anon_sym_i128] = ACTIONS(1270), + [anon_sym_isize] = ACTIONS(1270), + [anon_sym_usize] = ACTIONS(1270), + [anon_sym_f32] = ACTIONS(1270), + [anon_sym_f64] = ACTIONS(1270), + [anon_sym_bool] = ACTIONS(1270), + [anon_sym_str] = ACTIONS(1270), + [anon_sym_char] = ACTIONS(1270), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(1272), + [sym_self] = ACTIONS(1270), + [sym_super] = ACTIONS(1270), + [sym_crate] = ACTIONS(1270), + [sym_metavariable] = ACTIONS(1272), + [sym_grit_metavariable] = ACTIONS(1272), + [sym_raw_string_literal] = ACTIONS(1272), + [sym_float_literal] = ACTIONS(1272), [sym_block_comment] = ACTIONS(3), }, [248] = { - [sym__primitive_identifier] = ACTIONS(747), - [sym_underscore] = ACTIONS(747), - [anon_sym_LPAREN] = ACTIONS(745), - [anon_sym_RBRACE] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(745), - [anon_sym_PLUS] = ACTIONS(747), - [anon_sym_STAR] = ACTIONS(747), - [anon_sym_QMARK] = ACTIONS(745), - [anon_sym_as] = ACTIONS(747), - [anon_sym_const] = ACTIONS(747), - [anon_sym_default] = ACTIONS(747), - [anon_sym_union] = ACTIONS(747), - [anon_sym_POUND] = ACTIONS(745), - [anon_sym_EQ] = ACTIONS(747), - [anon_sym_COMMA] = ACTIONS(745), - [anon_sym_ref] = ACTIONS(747), - [anon_sym_LT] = ACTIONS(747), - [anon_sym_GT] = ACTIONS(747), - [anon_sym_COLON_COLON] = ACTIONS(745), - [anon_sym_AMP] = ACTIONS(747), - [anon_sym_DOT_DOT_DOT] = ACTIONS(745), - [sym_mutable_specifier] = ACTIONS(747), - [anon_sym_DOT_DOT] = ACTIONS(747), - [anon_sym_DOT_DOT_EQ] = ACTIONS(745), - [anon_sym_DASH] = ACTIONS(747), - [anon_sym_AMP_AMP] = ACTIONS(745), - [anon_sym_PIPE_PIPE] = ACTIONS(745), - [anon_sym_PIPE] = ACTIONS(747), - [anon_sym_CARET] = ACTIONS(747), - [anon_sym_EQ_EQ] = ACTIONS(745), - [anon_sym_BANG_EQ] = ACTIONS(745), - [anon_sym_LT_EQ] = ACTIONS(745), - [anon_sym_GT_EQ] = ACTIONS(745), - [anon_sym_LT_LT] = ACTIONS(747), - [anon_sym_GT_GT] = ACTIONS(747), - [anon_sym_SLASH] = ACTIONS(747), - [anon_sym_PERCENT] = ACTIONS(747), - [anon_sym_PLUS_EQ] = ACTIONS(745), - [anon_sym_DASH_EQ] = ACTIONS(745), - [anon_sym_STAR_EQ] = ACTIONS(745), - [anon_sym_SLASH_EQ] = ACTIONS(745), - [anon_sym_PERCENT_EQ] = ACTIONS(745), - [anon_sym_AMP_EQ] = ACTIONS(745), - [anon_sym_PIPE_EQ] = ACTIONS(745), - [anon_sym_CARET_EQ] = ACTIONS(745), - [anon_sym_LT_LT_EQ] = ACTIONS(745), - [anon_sym_GT_GT_EQ] = ACTIONS(745), - [anon_sym_DOT] = ACTIONS(747), - [sym_integer_literal] = ACTIONS(745), - [aux_sym_string_literal_token1] = ACTIONS(745), - [sym_char_literal] = ACTIONS(745), - [anon_sym_true] = ACTIONS(747), - [anon_sym_false] = ACTIONS(747), - [anon_sym_u8] = ACTIONS(747), - [anon_sym_i8] = ACTIONS(747), - [anon_sym_u16] = ACTIONS(747), - [anon_sym_i16] = ACTIONS(747), - [anon_sym_u32] = ACTIONS(747), - [anon_sym_i32] = ACTIONS(747), - [anon_sym_u64] = ACTIONS(747), - [anon_sym_i64] = ACTIONS(747), - [anon_sym_u128] = ACTIONS(747), - [anon_sym_i128] = ACTIONS(747), - [anon_sym_isize] = ACTIONS(747), - [anon_sym_usize] = ACTIONS(747), - [anon_sym_f32] = ACTIONS(747), - [anon_sym_f64] = ACTIONS(747), - [anon_sym_bool] = ACTIONS(747), - [anon_sym_str] = ACTIONS(747), - [anon_sym_char] = ACTIONS(747), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(745), - [sym_self] = ACTIONS(747), - [sym_super] = ACTIONS(747), - [sym_crate] = ACTIONS(747), - [sym_metavariable] = ACTIONS(745), - [sym_grit_metavariable] = ACTIONS(745), - [sym_raw_string_literal] = ACTIONS(745), - [sym_float_literal] = ACTIONS(745), + [sym__primitive_identifier] = ACTIONS(798), + [sym_underscore] = ACTIONS(798), + [anon_sym_LPAREN] = ACTIONS(796), + [anon_sym_RBRACE] = ACTIONS(796), + [anon_sym_LBRACK] = ACTIONS(796), + [anon_sym_PLUS] = ACTIONS(798), + [anon_sym_STAR] = ACTIONS(798), + [anon_sym_QMARK] = ACTIONS(796), + [anon_sym_as] = ACTIONS(798), + [anon_sym_const] = ACTIONS(798), + [anon_sym_default] = ACTIONS(798), + [anon_sym_union] = ACTIONS(798), + [anon_sym_POUND] = ACTIONS(796), + [anon_sym_EQ] = ACTIONS(798), + [anon_sym_COMMA] = ACTIONS(796), + [anon_sym_ref] = ACTIONS(798), + [anon_sym_LT] = ACTIONS(798), + [anon_sym_GT] = ACTIONS(798), + [anon_sym_COLON_COLON] = ACTIONS(796), + [anon_sym_AMP] = ACTIONS(798), + [anon_sym_DOT_DOT_DOT] = ACTIONS(796), + [sym_mutable_specifier] = ACTIONS(798), + [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_DOT_DOT_EQ] = ACTIONS(796), + [anon_sym_DASH] = ACTIONS(798), + [anon_sym_AMP_AMP] = ACTIONS(796), + [anon_sym_PIPE_PIPE] = ACTIONS(796), + [anon_sym_PIPE] = ACTIONS(798), + [anon_sym_CARET] = ACTIONS(798), + [anon_sym_EQ_EQ] = ACTIONS(796), + [anon_sym_BANG_EQ] = ACTIONS(796), + [anon_sym_LT_EQ] = ACTIONS(796), + [anon_sym_GT_EQ] = ACTIONS(796), + [anon_sym_LT_LT] = ACTIONS(798), + [anon_sym_GT_GT] = ACTIONS(798), + [anon_sym_SLASH] = ACTIONS(798), + [anon_sym_PERCENT] = ACTIONS(798), + [anon_sym_PLUS_EQ] = ACTIONS(796), + [anon_sym_DASH_EQ] = ACTIONS(796), + [anon_sym_STAR_EQ] = ACTIONS(796), + [anon_sym_SLASH_EQ] = ACTIONS(796), + [anon_sym_PERCENT_EQ] = ACTIONS(796), + [anon_sym_AMP_EQ] = ACTIONS(796), + [anon_sym_PIPE_EQ] = ACTIONS(796), + [anon_sym_CARET_EQ] = ACTIONS(796), + [anon_sym_LT_LT_EQ] = ACTIONS(796), + [anon_sym_GT_GT_EQ] = ACTIONS(796), + [anon_sym_DOT] = ACTIONS(798), + [sym_integer_literal] = ACTIONS(796), + [aux_sym_string_literal_token1] = ACTIONS(796), + [sym_char_literal] = ACTIONS(796), + [anon_sym_true] = ACTIONS(798), + [anon_sym_false] = ACTIONS(798), + [anon_sym_u8] = ACTIONS(798), + [anon_sym_i8] = ACTIONS(798), + [anon_sym_u16] = ACTIONS(798), + [anon_sym_i16] = ACTIONS(798), + [anon_sym_u32] = ACTIONS(798), + [anon_sym_i32] = ACTIONS(798), + [anon_sym_u64] = ACTIONS(798), + [anon_sym_i64] = ACTIONS(798), + [anon_sym_u128] = ACTIONS(798), + [anon_sym_i128] = ACTIONS(798), + [anon_sym_isize] = ACTIONS(798), + [anon_sym_usize] = ACTIONS(798), + [anon_sym_f32] = ACTIONS(798), + [anon_sym_f64] = ACTIONS(798), + [anon_sym_bool] = ACTIONS(798), + [anon_sym_str] = ACTIONS(798), + [anon_sym_char] = ACTIONS(798), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(796), + [sym_self] = ACTIONS(798), + [sym_super] = ACTIONS(798), + [sym_crate] = ACTIONS(798), + [sym_metavariable] = ACTIONS(796), + [sym_grit_metavariable] = ACTIONS(796), + [sym_raw_string_literal] = ACTIONS(796), + [sym_float_literal] = ACTIONS(796), [sym_block_comment] = ACTIONS(3), }, [249] = { - [sym_empty_statement] = STATE(249), - [sym_macro_definition] = STATE(249), - [sym_attribute_item] = STATE(249), - [sym_inner_attribute_item] = STATE(249), - [sym_mod_item] = STATE(249), - [sym_foreign_mod_item] = STATE(249), - [sym_struct_item] = STATE(249), - [sym_union_item] = STATE(249), - [sym_enum_item] = STATE(249), - [sym_extern_crate_declaration] = STATE(249), - [sym_const_item] = STATE(249), - [sym_static_item] = STATE(249), - [sym_type_item] = STATE(249), - [sym_function_item] = STATE(249), - [sym_function_signature_item] = STATE(249), - [sym_function_modifiers] = STATE(2742), - [sym_impl_item] = STATE(249), - [sym_trait_item] = STATE(249), - [sym_associated_type] = STATE(249), - [sym_let_declaration] = STATE(249), - [sym_use_declaration] = STATE(249), - [sym_extern_modifier] = STATE(1656), - [sym_visibility_modifier] = STATE(1448), - [sym_bracketed_type] = STATE(2668), - [sym_generic_type_with_turbofish] = STATE(2752), - [sym_macro_invocation] = STATE(249), - [sym_scoped_identifier] = STATE(2453), - [sym_primitive_type] = STATE(2713), - [sym_identifier] = STATE(2451), - [aux_sym_declaration_list_repeat1] = STATE(249), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(1183), - [anon_sym_SEMI] = ACTIONS(1186), - [anon_sym_macro_rules_BANG] = ACTIONS(1189), - [anon_sym_RBRACE] = ACTIONS(1192), - [anon_sym_async] = ACTIONS(1194), - [anon_sym_const] = ACTIONS(1197), - [anon_sym_default] = ACTIONS(1200), - [anon_sym_enum] = ACTIONS(1203), - [anon_sym_fn] = ACTIONS(1206), - [anon_sym_impl] = ACTIONS(1209), - [anon_sym_let] = ACTIONS(1212), - [anon_sym_mod] = ACTIONS(1215), - [anon_sym_pub] = ACTIONS(1218), - [anon_sym_static] = ACTIONS(1221), - [anon_sym_struct] = ACTIONS(1224), - [anon_sym_trait] = ACTIONS(1227), - [anon_sym_type] = ACTIONS(1230), - [anon_sym_union] = ACTIONS(1233), - [anon_sym_unsafe] = ACTIONS(1236), - [anon_sym_use] = ACTIONS(1239), - [anon_sym_POUND] = ACTIONS(1242), - [anon_sym_extern] = ACTIONS(1245), - [anon_sym_LT] = ACTIONS(1248), - [anon_sym_COLON_COLON] = ACTIONS(1251), - [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), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1257), - [sym_self] = ACTIONS(1260), - [sym_super] = ACTIONS(1260), - [sym_crate] = ACTIONS(1263), - [sym_metavariable] = ACTIONS(1266), - [sym_grit_metavariable] = ACTIONS(1269), + [sym__primitive_identifier] = ACTIONS(818), + [sym_underscore] = ACTIONS(818), + [anon_sym_LPAREN] = ACTIONS(816), + [anon_sym_RBRACE] = ACTIONS(816), + [anon_sym_LBRACK] = ACTIONS(816), + [anon_sym_PLUS] = ACTIONS(818), + [anon_sym_STAR] = ACTIONS(818), + [anon_sym_QMARK] = ACTIONS(816), + [anon_sym_as] = ACTIONS(818), + [anon_sym_const] = ACTIONS(818), + [anon_sym_default] = ACTIONS(818), + [anon_sym_union] = ACTIONS(818), + [anon_sym_POUND] = ACTIONS(816), + [anon_sym_EQ] = ACTIONS(818), + [anon_sym_COMMA] = ACTIONS(816), + [anon_sym_ref] = ACTIONS(818), + [anon_sym_LT] = ACTIONS(818), + [anon_sym_GT] = ACTIONS(818), + [anon_sym_COLON_COLON] = ACTIONS(816), + [anon_sym_AMP] = ACTIONS(818), + [anon_sym_DOT_DOT_DOT] = ACTIONS(816), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(818), + [anon_sym_DOT_DOT_EQ] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(818), + [anon_sym_AMP_AMP] = ACTIONS(816), + [anon_sym_PIPE_PIPE] = ACTIONS(816), + [anon_sym_PIPE] = ACTIONS(818), + [anon_sym_CARET] = ACTIONS(818), + [anon_sym_EQ_EQ] = ACTIONS(816), + [anon_sym_BANG_EQ] = ACTIONS(816), + [anon_sym_LT_EQ] = ACTIONS(816), + [anon_sym_GT_EQ] = ACTIONS(816), + [anon_sym_LT_LT] = ACTIONS(818), + [anon_sym_GT_GT] = ACTIONS(818), + [anon_sym_SLASH] = ACTIONS(818), + [anon_sym_PERCENT] = ACTIONS(818), + [anon_sym_PLUS_EQ] = ACTIONS(816), + [anon_sym_DASH_EQ] = ACTIONS(816), + [anon_sym_STAR_EQ] = ACTIONS(816), + [anon_sym_SLASH_EQ] = ACTIONS(816), + [anon_sym_PERCENT_EQ] = ACTIONS(816), + [anon_sym_AMP_EQ] = ACTIONS(816), + [anon_sym_PIPE_EQ] = ACTIONS(816), + [anon_sym_CARET_EQ] = ACTIONS(816), + [anon_sym_LT_LT_EQ] = ACTIONS(816), + [anon_sym_GT_GT_EQ] = ACTIONS(816), + [anon_sym_DOT] = ACTIONS(818), + [sym_integer_literal] = ACTIONS(816), + [aux_sym_string_literal_token1] = ACTIONS(816), + [sym_char_literal] = ACTIONS(816), + [anon_sym_true] = ACTIONS(818), + [anon_sym_false] = ACTIONS(818), + [anon_sym_u8] = ACTIONS(818), + [anon_sym_i8] = ACTIONS(818), + [anon_sym_u16] = ACTIONS(818), + [anon_sym_i16] = ACTIONS(818), + [anon_sym_u32] = ACTIONS(818), + [anon_sym_i32] = ACTIONS(818), + [anon_sym_u64] = ACTIONS(818), + [anon_sym_i64] = ACTIONS(818), + [anon_sym_u128] = ACTIONS(818), + [anon_sym_i128] = ACTIONS(818), + [anon_sym_isize] = ACTIONS(818), + [anon_sym_usize] = ACTIONS(818), + [anon_sym_f32] = ACTIONS(818), + [anon_sym_f64] = ACTIONS(818), + [anon_sym_bool] = ACTIONS(818), + [anon_sym_str] = ACTIONS(818), + [anon_sym_char] = ACTIONS(818), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(816), + [sym_self] = ACTIONS(818), + [sym_super] = ACTIONS(818), + [sym_crate] = ACTIONS(818), + [sym_metavariable] = ACTIONS(816), + [sym_grit_metavariable] = ACTIONS(816), + [sym_raw_string_literal] = ACTIONS(816), + [sym_float_literal] = ACTIONS(816), [sym_block_comment] = ACTIONS(3), }, [250] = { - [sym__primitive_identifier] = ACTIONS(804), - [sym_underscore] = ACTIONS(804), - [anon_sym_LPAREN] = ACTIONS(802), - [anon_sym_RBRACE] = ACTIONS(802), - [anon_sym_LBRACK] = ACTIONS(802), - [anon_sym_PLUS] = ACTIONS(804), - [anon_sym_STAR] = ACTIONS(804), - [anon_sym_QMARK] = ACTIONS(802), - [anon_sym_as] = ACTIONS(804), - [anon_sym_const] = ACTIONS(804), - [anon_sym_default] = ACTIONS(804), - [anon_sym_union] = ACTIONS(804), - [anon_sym_POUND] = ACTIONS(802), - [anon_sym_EQ] = ACTIONS(804), - [anon_sym_COMMA] = ACTIONS(802), - [anon_sym_ref] = ACTIONS(804), - [anon_sym_LT] = ACTIONS(804), - [anon_sym_GT] = ACTIONS(804), - [anon_sym_COLON_COLON] = ACTIONS(802), - [anon_sym_AMP] = ACTIONS(804), - [anon_sym_DOT_DOT_DOT] = ACTIONS(802), - [sym_mutable_specifier] = ACTIONS(804), - [anon_sym_DOT_DOT] = ACTIONS(804), - [anon_sym_DOT_DOT_EQ] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(804), - [anon_sym_AMP_AMP] = ACTIONS(802), - [anon_sym_PIPE_PIPE] = ACTIONS(802), - [anon_sym_PIPE] = ACTIONS(804), - [anon_sym_CARET] = ACTIONS(804), - [anon_sym_EQ_EQ] = ACTIONS(802), - [anon_sym_BANG_EQ] = ACTIONS(802), - [anon_sym_LT_EQ] = ACTIONS(802), - [anon_sym_GT_EQ] = ACTIONS(802), - [anon_sym_LT_LT] = ACTIONS(804), - [anon_sym_GT_GT] = ACTIONS(804), - [anon_sym_SLASH] = ACTIONS(804), - [anon_sym_PERCENT] = ACTIONS(804), - [anon_sym_PLUS_EQ] = ACTIONS(802), - [anon_sym_DASH_EQ] = ACTIONS(802), - [anon_sym_STAR_EQ] = ACTIONS(802), - [anon_sym_SLASH_EQ] = ACTIONS(802), - [anon_sym_PERCENT_EQ] = ACTIONS(802), - [anon_sym_AMP_EQ] = ACTIONS(802), - [anon_sym_PIPE_EQ] = ACTIONS(802), - [anon_sym_CARET_EQ] = ACTIONS(802), - [anon_sym_LT_LT_EQ] = ACTIONS(802), - [anon_sym_GT_GT_EQ] = ACTIONS(802), - [anon_sym_DOT] = ACTIONS(804), - [sym_integer_literal] = ACTIONS(802), - [aux_sym_string_literal_token1] = ACTIONS(802), - [sym_char_literal] = ACTIONS(802), - [anon_sym_true] = ACTIONS(804), - [anon_sym_false] = ACTIONS(804), - [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), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(802), - [sym_self] = ACTIONS(804), - [sym_super] = ACTIONS(804), - [sym_crate] = ACTIONS(804), - [sym_metavariable] = ACTIONS(802), - [sym_grit_metavariable] = ACTIONS(802), - [sym_raw_string_literal] = ACTIONS(802), - [sym_float_literal] = ACTIONS(802), + [sym__primitive_identifier] = ACTIONS(802), + [sym_underscore] = ACTIONS(802), + [anon_sym_LPAREN] = ACTIONS(800), + [anon_sym_RBRACE] = ACTIONS(800), + [anon_sym_LBRACK] = ACTIONS(800), + [anon_sym_PLUS] = ACTIONS(802), + [anon_sym_STAR] = ACTIONS(802), + [anon_sym_QMARK] = ACTIONS(800), + [anon_sym_as] = ACTIONS(802), + [anon_sym_const] = ACTIONS(802), + [anon_sym_default] = ACTIONS(802), + [anon_sym_union] = ACTIONS(802), + [anon_sym_POUND] = ACTIONS(800), + [anon_sym_EQ] = ACTIONS(802), + [anon_sym_COMMA] = ACTIONS(800), + [anon_sym_ref] = ACTIONS(802), + [anon_sym_LT] = ACTIONS(802), + [anon_sym_GT] = ACTIONS(802), + [anon_sym_COLON_COLON] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(802), + [anon_sym_DOT_DOT_DOT] = ACTIONS(800), + [sym_mutable_specifier] = ACTIONS(802), + [anon_sym_DOT_DOT] = ACTIONS(802), + [anon_sym_DOT_DOT_EQ] = ACTIONS(800), + [anon_sym_DASH] = ACTIONS(802), + [anon_sym_AMP_AMP] = ACTIONS(800), + [anon_sym_PIPE_PIPE] = ACTIONS(800), + [anon_sym_PIPE] = ACTIONS(802), + [anon_sym_CARET] = ACTIONS(802), + [anon_sym_EQ_EQ] = ACTIONS(800), + [anon_sym_BANG_EQ] = ACTIONS(800), + [anon_sym_LT_EQ] = ACTIONS(800), + [anon_sym_GT_EQ] = ACTIONS(800), + [anon_sym_LT_LT] = ACTIONS(802), + [anon_sym_GT_GT] = ACTIONS(802), + [anon_sym_SLASH] = ACTIONS(802), + [anon_sym_PERCENT] = ACTIONS(802), + [anon_sym_PLUS_EQ] = ACTIONS(800), + [anon_sym_DASH_EQ] = ACTIONS(800), + [anon_sym_STAR_EQ] = ACTIONS(800), + [anon_sym_SLASH_EQ] = ACTIONS(800), + [anon_sym_PERCENT_EQ] = ACTIONS(800), + [anon_sym_AMP_EQ] = ACTIONS(800), + [anon_sym_PIPE_EQ] = ACTIONS(800), + [anon_sym_CARET_EQ] = ACTIONS(800), + [anon_sym_LT_LT_EQ] = ACTIONS(800), + [anon_sym_GT_GT_EQ] = ACTIONS(800), + [anon_sym_DOT] = ACTIONS(802), + [sym_integer_literal] = ACTIONS(800), + [aux_sym_string_literal_token1] = ACTIONS(800), + [sym_char_literal] = ACTIONS(800), + [anon_sym_true] = ACTIONS(802), + [anon_sym_false] = ACTIONS(802), + [anon_sym_u8] = ACTIONS(802), + [anon_sym_i8] = ACTIONS(802), + [anon_sym_u16] = ACTIONS(802), + [anon_sym_i16] = ACTIONS(802), + [anon_sym_u32] = ACTIONS(802), + [anon_sym_i32] = ACTIONS(802), + [anon_sym_u64] = ACTIONS(802), + [anon_sym_i64] = ACTIONS(802), + [anon_sym_u128] = ACTIONS(802), + [anon_sym_i128] = ACTIONS(802), + [anon_sym_isize] = ACTIONS(802), + [anon_sym_usize] = ACTIONS(802), + [anon_sym_f32] = ACTIONS(802), + [anon_sym_f64] = ACTIONS(802), + [anon_sym_bool] = ACTIONS(802), + [anon_sym_str] = ACTIONS(802), + [anon_sym_char] = ACTIONS(802), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(800), + [sym_self] = ACTIONS(802), + [sym_super] = ACTIONS(802), + [sym_crate] = ACTIONS(802), + [sym_metavariable] = ACTIONS(800), + [sym_grit_metavariable] = ACTIONS(800), + [sym_raw_string_literal] = ACTIONS(800), + [sym_float_literal] = ACTIONS(800), [sym_block_comment] = ACTIONS(3), }, [251] = { - [sym_attribute_item] = STATE(581), - [sym_bracketed_type] = STATE(2658), - [sym_generic_type] = STATE(2655), - [sym_generic_type_with_turbofish] = STATE(2638), - [sym_macro_invocation] = STATE(1616), - [sym_scoped_identifier] = STATE(1451), - [sym_scoped_type_identifier] = STATE(2231), - [sym_match_arm] = STATE(262), - [sym_last_match_arm] = STATE(2712), - [sym_match_pattern] = STATE(2637), - [sym_const_block] = STATE(1616), - [sym_pattern] = STATE(2278), - [sym_tuple_pattern] = STATE(1616), - [sym_slice_pattern] = STATE(1616), - [sym_tuple_struct_pattern] = STATE(1616), - [sym_struct_pattern] = STATE(1616), - [sym_remaining_field_pattern] = STATE(1616), - [sym_mut_pattern] = STATE(1616), - [sym_range_pattern] = STATE(1616), - [sym_ref_pattern] = STATE(1616), - [sym_captured_pattern] = STATE(1616), - [sym_reference_pattern] = STATE(1616), - [sym_or_pattern] = STATE(1616), - [sym__literal_pattern] = STATE(1496), - [sym_negative_literal] = STATE(1513), - [sym_string_literal] = STATE(1513), - [sym_boolean_literal] = STATE(1513), - [sym_primitive_type] = STATE(1471), - [sym_identifier] = STATE(1428), - [aux_sym_enum_variant_list_repeat1] = STATE(581), - [aux_sym_match_block_repeat1] = STATE(262), - [sym__primitive_identifier] = ACTIONS(842), - [sym_underscore] = ACTIONS(972), - [anon_sym_LPAREN] = ACTIONS(1272), - [anon_sym_RBRACE] = ACTIONS(1274), - [anon_sym_LBRACK] = ACTIONS(1276), - [anon_sym_const] = ACTIONS(1278), - [anon_sym_default] = ACTIONS(1280), - [anon_sym_union] = ACTIONS(1280), - [anon_sym_POUND] = ACTIONS(533), - [anon_sym_ref] = ACTIONS(878), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1282), - [anon_sym_AMP] = ACTIONS(1284), - [sym_mutable_specifier] = ACTIONS(980), - [anon_sym_DOT_DOT] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(892), - [sym_integer_literal] = ACTIONS(894), - [aux_sym_string_literal_token1] = ACTIONS(896), - [sym_char_literal] = ACTIONS(894), - [anon_sym_true] = ACTIONS(898), - [anon_sym_false] = ACTIONS(898), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1286), - [sym_super] = ACTIONS(1286), - [sym_crate] = ACTIONS(1286), - [sym_metavariable] = ACTIONS(1288), - [sym_grit_metavariable] = ACTIONS(1290), - [sym_raw_string_literal] = ACTIONS(894), - [sym_float_literal] = ACTIONS(894), + [sym__primitive_identifier] = ACTIONS(786), + [sym_underscore] = ACTIONS(786), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_RBRACE] = ACTIONS(784), + [anon_sym_LBRACK] = ACTIONS(784), + [anon_sym_PLUS] = ACTIONS(786), + [anon_sym_STAR] = ACTIONS(786), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_as] = ACTIONS(786), + [anon_sym_const] = ACTIONS(786), + [anon_sym_default] = ACTIONS(786), + [anon_sym_union] = ACTIONS(786), + [anon_sym_POUND] = ACTIONS(784), + [anon_sym_EQ] = ACTIONS(786), + [anon_sym_COMMA] = ACTIONS(784), + [anon_sym_ref] = ACTIONS(786), + [anon_sym_LT] = ACTIONS(786), + [anon_sym_GT] = ACTIONS(786), + [anon_sym_COLON_COLON] = ACTIONS(784), + [anon_sym_AMP] = ACTIONS(786), + [anon_sym_DOT_DOT_DOT] = ACTIONS(784), + [sym_mutable_specifier] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(786), + [anon_sym_DOT_DOT_EQ] = ACTIONS(784), + [anon_sym_DASH] = ACTIONS(786), + [anon_sym_AMP_AMP] = ACTIONS(784), + [anon_sym_PIPE_PIPE] = ACTIONS(784), + [anon_sym_PIPE] = ACTIONS(786), + [anon_sym_CARET] = ACTIONS(786), + [anon_sym_EQ_EQ] = ACTIONS(784), + [anon_sym_BANG_EQ] = ACTIONS(784), + [anon_sym_LT_EQ] = ACTIONS(784), + [anon_sym_GT_EQ] = ACTIONS(784), + [anon_sym_LT_LT] = ACTIONS(786), + [anon_sym_GT_GT] = ACTIONS(786), + [anon_sym_SLASH] = ACTIONS(786), + [anon_sym_PERCENT] = ACTIONS(786), + [anon_sym_PLUS_EQ] = ACTIONS(784), + [anon_sym_DASH_EQ] = ACTIONS(784), + [anon_sym_STAR_EQ] = ACTIONS(784), + [anon_sym_SLASH_EQ] = ACTIONS(784), + [anon_sym_PERCENT_EQ] = ACTIONS(784), + [anon_sym_AMP_EQ] = ACTIONS(784), + [anon_sym_PIPE_EQ] = ACTIONS(784), + [anon_sym_CARET_EQ] = ACTIONS(784), + [anon_sym_LT_LT_EQ] = ACTIONS(784), + [anon_sym_GT_GT_EQ] = ACTIONS(784), + [anon_sym_DOT] = ACTIONS(786), + [sym_integer_literal] = ACTIONS(784), + [aux_sym_string_literal_token1] = ACTIONS(784), + [sym_char_literal] = ACTIONS(784), + [anon_sym_true] = ACTIONS(786), + [anon_sym_false] = ACTIONS(786), + [anon_sym_u8] = ACTIONS(786), + [anon_sym_i8] = ACTIONS(786), + [anon_sym_u16] = ACTIONS(786), + [anon_sym_i16] = ACTIONS(786), + [anon_sym_u32] = ACTIONS(786), + [anon_sym_i32] = ACTIONS(786), + [anon_sym_u64] = ACTIONS(786), + [anon_sym_i64] = ACTIONS(786), + [anon_sym_u128] = ACTIONS(786), + [anon_sym_i128] = ACTIONS(786), + [anon_sym_isize] = ACTIONS(786), + [anon_sym_usize] = ACTIONS(786), + [anon_sym_f32] = ACTIONS(786), + [anon_sym_f64] = ACTIONS(786), + [anon_sym_bool] = ACTIONS(786), + [anon_sym_str] = ACTIONS(786), + [anon_sym_char] = ACTIONS(786), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(784), + [sym_self] = ACTIONS(786), + [sym_super] = ACTIONS(786), + [sym_crate] = ACTIONS(786), + [sym_metavariable] = ACTIONS(784), + [sym_grit_metavariable] = ACTIONS(784), + [sym_raw_string_literal] = ACTIONS(784), + [sym_float_literal] = ACTIONS(784), [sym_block_comment] = ACTIONS(3), }, [252] = { - [sym_attribute_item] = STATE(581), - [sym_bracketed_type] = STATE(2658), - [sym_generic_type] = STATE(2655), - [sym_generic_type_with_turbofish] = STATE(2638), - [sym_macro_invocation] = STATE(1616), - [sym_scoped_identifier] = STATE(1451), - [sym_scoped_type_identifier] = STATE(2231), - [sym_match_arm] = STATE(270), - [sym_last_match_arm] = STATE(2618), - [sym_match_pattern] = STATE(2637), - [sym_const_block] = STATE(1616), - [sym_pattern] = STATE(2278), - [sym_tuple_pattern] = STATE(1616), - [sym_slice_pattern] = STATE(1616), - [sym_tuple_struct_pattern] = STATE(1616), - [sym_struct_pattern] = STATE(1616), - [sym_remaining_field_pattern] = STATE(1616), - [sym_mut_pattern] = STATE(1616), - [sym_range_pattern] = STATE(1616), - [sym_ref_pattern] = STATE(1616), - [sym_captured_pattern] = STATE(1616), - [sym_reference_pattern] = STATE(1616), - [sym_or_pattern] = STATE(1616), - [sym__literal_pattern] = STATE(1496), - [sym_negative_literal] = STATE(1513), - [sym_string_literal] = STATE(1513), - [sym_boolean_literal] = STATE(1513), - [sym_primitive_type] = STATE(1471), - [sym_identifier] = STATE(1428), - [aux_sym_enum_variant_list_repeat1] = STATE(581), - [aux_sym_match_block_repeat1] = STATE(270), - [sym__primitive_identifier] = ACTIONS(842), - [sym_underscore] = ACTIONS(972), - [anon_sym_LPAREN] = ACTIONS(1272), - [anon_sym_RBRACE] = ACTIONS(1292), - [anon_sym_LBRACK] = ACTIONS(1276), - [anon_sym_const] = ACTIONS(1278), - [anon_sym_default] = ACTIONS(1280), - [anon_sym_union] = ACTIONS(1280), + [sym_attribute_item] = STATE(583), + [sym_bracketed_type] = STATE(2684), + [sym_generic_type] = STATE(2683), + [sym_generic_type_with_turbofish] = STATE(2682), + [sym_macro_invocation] = STATE(1615), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier] = STATE(2202), + [sym_match_arm] = STATE(256), + [sym_last_match_arm] = STATE(2742), + [sym_match_pattern] = STATE(2737), + [sym_const_block] = STATE(1615), + [sym_pattern] = STATE(2353), + [sym_tuple_pattern] = STATE(1615), + [sym_slice_pattern] = STATE(1615), + [sym_tuple_struct_pattern] = STATE(1615), + [sym_struct_pattern] = STATE(1615), + [sym_remaining_field_pattern] = STATE(1615), + [sym_mut_pattern] = STATE(1615), + [sym_range_pattern] = STATE(1615), + [sym_ref_pattern] = STATE(1615), + [sym_captured_pattern] = STATE(1615), + [sym_reference_pattern] = STATE(1615), + [sym_or_pattern] = STATE(1615), + [sym__literal_pattern] = STATE(1492), + [sym_negative_literal] = STATE(1521), + [sym_string_literal] = STATE(1521), + [sym_boolean_literal] = STATE(1521), + [sym_primitive_type] = STATE(1479), + [sym_identifier] = STATE(1432), + [aux_sym_enum_variant_list_repeat1] = STATE(583), + [aux_sym_match_block_repeat1] = STATE(256), + [sym__primitive_identifier] = ACTIONS(844), + [sym_underscore] = ACTIONS(974), + [anon_sym_LPAREN] = ACTIONS(1274), + [anon_sym_RBRACE] = ACTIONS(1276), + [anon_sym_LBRACK] = ACTIONS(1278), + [anon_sym_const] = ACTIONS(1280), + [anon_sym_default] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1282), [anon_sym_POUND] = ACTIONS(533), - [anon_sym_ref] = ACTIONS(878), + [anon_sym_ref] = ACTIONS(880), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1282), - [anon_sym_AMP] = ACTIONS(1284), - [sym_mutable_specifier] = ACTIONS(980), - [anon_sym_DOT_DOT] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(892), - [sym_integer_literal] = ACTIONS(894), - [aux_sym_string_literal_token1] = ACTIONS(896), - [sym_char_literal] = ACTIONS(894), - [anon_sym_true] = ACTIONS(898), - [anon_sym_false] = ACTIONS(898), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1286), - [sym_super] = ACTIONS(1286), - [sym_crate] = ACTIONS(1286), - [sym_metavariable] = ACTIONS(1288), - [sym_grit_metavariable] = ACTIONS(1294), - [sym_raw_string_literal] = ACTIONS(894), - [sym_float_literal] = ACTIONS(894), + [anon_sym_COLON_COLON] = ACTIONS(1284), + [anon_sym_AMP] = ACTIONS(1286), + [sym_mutable_specifier] = ACTIONS(982), + [anon_sym_DOT_DOT] = ACTIONS(984), + [anon_sym_DASH] = ACTIONS(894), + [sym_integer_literal] = ACTIONS(896), + [aux_sym_string_literal_token1] = ACTIONS(898), + [sym_char_literal] = ACTIONS(896), + [anon_sym_true] = ACTIONS(900), + [anon_sym_false] = ACTIONS(900), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1288), + [sym_super] = ACTIONS(1288), + [sym_crate] = ACTIONS(1288), + [sym_metavariable] = ACTIONS(1290), + [sym_grit_metavariable] = ACTIONS(1292), + [sym_raw_string_literal] = ACTIONS(896), + [sym_float_literal] = ACTIONS(896), [sym_block_comment] = ACTIONS(3), }, [253] = { - [sym_attribute_item] = STATE(581), - [sym_bracketed_type] = STATE(2658), - [sym_generic_type] = STATE(2655), - [sym_generic_type_with_turbofish] = STATE(2638), - [sym_macro_invocation] = STATE(1616), - [sym_scoped_identifier] = STATE(1451), - [sym_scoped_type_identifier] = STATE(2231), - [sym_match_arm] = STATE(265), - [sym_last_match_arm] = STATE(2634), - [sym_match_pattern] = STATE(2637), - [sym_const_block] = STATE(1616), - [sym_pattern] = STATE(2278), - [sym_tuple_pattern] = STATE(1616), - [sym_slice_pattern] = STATE(1616), - [sym_tuple_struct_pattern] = STATE(1616), - [sym_struct_pattern] = STATE(1616), - [sym_remaining_field_pattern] = STATE(1616), - [sym_mut_pattern] = STATE(1616), - [sym_range_pattern] = STATE(1616), - [sym_ref_pattern] = STATE(1616), - [sym_captured_pattern] = STATE(1616), - [sym_reference_pattern] = STATE(1616), - [sym_or_pattern] = STATE(1616), - [sym__literal_pattern] = STATE(1496), - [sym_negative_literal] = STATE(1513), - [sym_string_literal] = STATE(1513), - [sym_boolean_literal] = STATE(1513), - [sym_primitive_type] = STATE(1471), - [sym_identifier] = STATE(1428), - [aux_sym_enum_variant_list_repeat1] = STATE(581), - [aux_sym_match_block_repeat1] = STATE(265), - [sym__primitive_identifier] = ACTIONS(842), - [sym_underscore] = ACTIONS(972), - [anon_sym_LPAREN] = ACTIONS(1272), - [anon_sym_RBRACE] = ACTIONS(1296), - [anon_sym_LBRACK] = ACTIONS(1276), - [anon_sym_const] = ACTIONS(1278), - [anon_sym_default] = ACTIONS(1280), - [anon_sym_union] = ACTIONS(1280), + [sym_attribute_item] = STATE(583), + [sym_bracketed_type] = STATE(2684), + [sym_generic_type] = STATE(2683), + [sym_generic_type_with_turbofish] = STATE(2682), + [sym_macro_invocation] = STATE(1615), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier] = STATE(2202), + [sym_match_arm] = STATE(273), + [sym_last_match_arm] = STATE(2620), + [sym_match_pattern] = STATE(2737), + [sym_const_block] = STATE(1615), + [sym_pattern] = STATE(2353), + [sym_tuple_pattern] = STATE(1615), + [sym_slice_pattern] = STATE(1615), + [sym_tuple_struct_pattern] = STATE(1615), + [sym_struct_pattern] = STATE(1615), + [sym_remaining_field_pattern] = STATE(1615), + [sym_mut_pattern] = STATE(1615), + [sym_range_pattern] = STATE(1615), + [sym_ref_pattern] = STATE(1615), + [sym_captured_pattern] = STATE(1615), + [sym_reference_pattern] = STATE(1615), + [sym_or_pattern] = STATE(1615), + [sym__literal_pattern] = STATE(1492), + [sym_negative_literal] = STATE(1521), + [sym_string_literal] = STATE(1521), + [sym_boolean_literal] = STATE(1521), + [sym_primitive_type] = STATE(1479), + [sym_identifier] = STATE(1432), + [aux_sym_enum_variant_list_repeat1] = STATE(583), + [aux_sym_match_block_repeat1] = STATE(273), + [sym__primitive_identifier] = ACTIONS(844), + [sym_underscore] = ACTIONS(974), + [anon_sym_LPAREN] = ACTIONS(1274), + [anon_sym_RBRACE] = ACTIONS(1294), + [anon_sym_LBRACK] = ACTIONS(1278), + [anon_sym_const] = ACTIONS(1280), + [anon_sym_default] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1282), [anon_sym_POUND] = ACTIONS(533), - [anon_sym_ref] = ACTIONS(878), + [anon_sym_ref] = ACTIONS(880), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1282), - [anon_sym_AMP] = ACTIONS(1284), - [sym_mutable_specifier] = ACTIONS(980), - [anon_sym_DOT_DOT] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(892), - [sym_integer_literal] = ACTIONS(894), - [aux_sym_string_literal_token1] = ACTIONS(896), - [sym_char_literal] = ACTIONS(894), - [anon_sym_true] = ACTIONS(898), - [anon_sym_false] = ACTIONS(898), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1286), - [sym_super] = ACTIONS(1286), - [sym_crate] = ACTIONS(1286), - [sym_metavariable] = ACTIONS(1288), - [sym_grit_metavariable] = ACTIONS(1298), - [sym_raw_string_literal] = ACTIONS(894), - [sym_float_literal] = ACTIONS(894), + [anon_sym_COLON_COLON] = ACTIONS(1284), + [anon_sym_AMP] = ACTIONS(1286), + [sym_mutable_specifier] = ACTIONS(982), + [anon_sym_DOT_DOT] = ACTIONS(984), + [anon_sym_DASH] = ACTIONS(894), + [sym_integer_literal] = ACTIONS(896), + [aux_sym_string_literal_token1] = ACTIONS(898), + [sym_char_literal] = ACTIONS(896), + [anon_sym_true] = ACTIONS(900), + [anon_sym_false] = ACTIONS(900), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1288), + [sym_super] = ACTIONS(1288), + [sym_crate] = ACTIONS(1288), + [sym_metavariable] = ACTIONS(1290), + [sym_grit_metavariable] = ACTIONS(1296), + [sym_raw_string_literal] = ACTIONS(896), + [sym_float_literal] = ACTIONS(896), [sym_block_comment] = ACTIONS(3), }, [254] = { - [sym__token_pattern] = STATE(247), - [sym_token_tree_pattern] = STATE(247), - [sym_token_binding_pattern] = STATE(247), - [sym_token_repetition_pattern] = STATE(247), - [sym__literal] = STATE(247), - [sym_string_literal] = STATE(656), - [sym_boolean_literal] = STATE(656), - [sym_primitive_type] = STATE(247), - [sym_identifier] = STATE(247), - [aux_sym_token_tree_pattern_repeat1] = STATE(247), - [sym__primitive_identifier] = ACTIONS(1300), - [anon_sym_LPAREN] = ACTIONS(1302), - [anon_sym_LBRACE] = ACTIONS(1304), - [anon_sym_RBRACE] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(1308), - [anon_sym_DOLLAR] = ACTIONS(1310), - [aux_sym__non_special_token_token1] = ACTIONS(1312), - [anon_sym_SQUOTE] = ACTIONS(1312), - [anon_sym_as] = ACTIONS(1312), - [anon_sym_async] = ACTIONS(1312), - [anon_sym_await] = ACTIONS(1312), - [anon_sym_break] = ACTIONS(1312), - [anon_sym_const] = ACTIONS(1312), - [anon_sym_continue] = ACTIONS(1312), - [anon_sym_default] = ACTIONS(1312), - [anon_sym_enum] = ACTIONS(1312), - [anon_sym_fn] = ACTIONS(1312), - [anon_sym_for] = ACTIONS(1312), - [anon_sym_if] = ACTIONS(1312), - [anon_sym_impl] = ACTIONS(1312), - [anon_sym_let] = ACTIONS(1312), - [anon_sym_loop] = ACTIONS(1312), - [anon_sym_match] = ACTIONS(1312), - [anon_sym_mod] = ACTIONS(1312), - [anon_sym_pub] = ACTIONS(1312), - [anon_sym_return] = ACTIONS(1312), - [anon_sym_static] = ACTIONS(1312), - [anon_sym_struct] = ACTIONS(1312), - [anon_sym_trait] = ACTIONS(1312), - [anon_sym_type] = ACTIONS(1312), - [anon_sym_union] = ACTIONS(1312), - [anon_sym_unsafe] = ACTIONS(1312), - [anon_sym_use] = ACTIONS(1312), - [anon_sym_where] = ACTIONS(1312), - [anon_sym_while] = ACTIONS(1312), - [sym_mutable_specifier] = ACTIONS(1312), - [sym_integer_literal] = ACTIONS(1314), - [aux_sym_string_literal_token1] = ACTIONS(1316), - [sym_char_literal] = ACTIONS(1314), - [anon_sym_true] = ACTIONS(1318), - [anon_sym_false] = ACTIONS(1318), - [anon_sym_u8] = ACTIONS(1320), - [anon_sym_i8] = ACTIONS(1320), - [anon_sym_u16] = ACTIONS(1320), - [anon_sym_i16] = ACTIONS(1320), - [anon_sym_u32] = ACTIONS(1320), - [anon_sym_i32] = ACTIONS(1320), - [anon_sym_u64] = ACTIONS(1320), - [anon_sym_i64] = ACTIONS(1320), - [anon_sym_u128] = ACTIONS(1320), - [anon_sym_i128] = ACTIONS(1320), - [anon_sym_isize] = ACTIONS(1320), - [anon_sym_usize] = ACTIONS(1320), - [anon_sym_f32] = ACTIONS(1320), - [anon_sym_f64] = ACTIONS(1320), - [anon_sym_bool] = ACTIONS(1320), - [anon_sym_str] = ACTIONS(1320), - [anon_sym_char] = ACTIONS(1320), - [sym_line_comment] = ACTIONS(1172), - [sym__raw_identifier] = ACTIONS(1322), - [sym_self] = ACTIONS(1312), - [sym_super] = ACTIONS(1312), - [sym_crate] = ACTIONS(1312), - [sym_metavariable] = ACTIONS(1324), - [sym_grit_metavariable] = ACTIONS(1326), - [sym_raw_string_literal] = ACTIONS(1314), - [sym_float_literal] = ACTIONS(1314), + [sym_attribute_item] = STATE(583), + [sym_bracketed_type] = STATE(2684), + [sym_generic_type] = STATE(2683), + [sym_generic_type_with_turbofish] = STATE(2682), + [sym_macro_invocation] = STATE(1615), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier] = STATE(2202), + [sym_match_arm] = STATE(264), + [sym_last_match_arm] = STATE(2716), + [sym_match_pattern] = STATE(2737), + [sym_const_block] = STATE(1615), + [sym_pattern] = STATE(2353), + [sym_tuple_pattern] = STATE(1615), + [sym_slice_pattern] = STATE(1615), + [sym_tuple_struct_pattern] = STATE(1615), + [sym_struct_pattern] = STATE(1615), + [sym_remaining_field_pattern] = STATE(1615), + [sym_mut_pattern] = STATE(1615), + [sym_range_pattern] = STATE(1615), + [sym_ref_pattern] = STATE(1615), + [sym_captured_pattern] = STATE(1615), + [sym_reference_pattern] = STATE(1615), + [sym_or_pattern] = STATE(1615), + [sym__literal_pattern] = STATE(1492), + [sym_negative_literal] = STATE(1521), + [sym_string_literal] = STATE(1521), + [sym_boolean_literal] = STATE(1521), + [sym_primitive_type] = STATE(1479), + [sym_identifier] = STATE(1432), + [aux_sym_enum_variant_list_repeat1] = STATE(583), + [aux_sym_match_block_repeat1] = STATE(264), + [sym__primitive_identifier] = ACTIONS(844), + [sym_underscore] = ACTIONS(974), + [anon_sym_LPAREN] = ACTIONS(1274), + [anon_sym_RBRACE] = ACTIONS(1298), + [anon_sym_LBRACK] = ACTIONS(1278), + [anon_sym_const] = ACTIONS(1280), + [anon_sym_default] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1282), + [anon_sym_POUND] = ACTIONS(533), + [anon_sym_ref] = ACTIONS(880), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(1284), + [anon_sym_AMP] = ACTIONS(1286), + [sym_mutable_specifier] = ACTIONS(982), + [anon_sym_DOT_DOT] = ACTIONS(984), + [anon_sym_DASH] = ACTIONS(894), + [sym_integer_literal] = ACTIONS(896), + [aux_sym_string_literal_token1] = ACTIONS(898), + [sym_char_literal] = ACTIONS(896), + [anon_sym_true] = ACTIONS(900), + [anon_sym_false] = ACTIONS(900), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1288), + [sym_super] = ACTIONS(1288), + [sym_crate] = ACTIONS(1288), + [sym_metavariable] = ACTIONS(1290), + [sym_grit_metavariable] = ACTIONS(1300), + [sym_raw_string_literal] = ACTIONS(896), + [sym_float_literal] = ACTIONS(896), [sym_block_comment] = ACTIONS(3), }, [255] = { - [sym__token_pattern] = STATE(247), - [sym_token_tree_pattern] = STATE(247), - [sym_token_binding_pattern] = STATE(247), - [sym_token_repetition_pattern] = STATE(247), - [sym__literal] = STATE(247), - [sym_string_literal] = STATE(656), - [sym_boolean_literal] = STATE(656), - [sym_primitive_type] = STATE(247), - [sym_identifier] = STATE(247), - [aux_sym_token_tree_pattern_repeat1] = STATE(247), - [sym__primitive_identifier] = ACTIONS(1300), - [anon_sym_LPAREN] = ACTIONS(1302), - [anon_sym_LBRACE] = ACTIONS(1304), - [anon_sym_LBRACK] = ACTIONS(1308), - [anon_sym_RBRACK] = ACTIONS(1328), - [anon_sym_DOLLAR] = ACTIONS(1310), - [aux_sym__non_special_token_token1] = ACTIONS(1312), - [anon_sym_SQUOTE] = ACTIONS(1312), - [anon_sym_as] = ACTIONS(1312), - [anon_sym_async] = ACTIONS(1312), - [anon_sym_await] = ACTIONS(1312), - [anon_sym_break] = ACTIONS(1312), - [anon_sym_const] = ACTIONS(1312), - [anon_sym_continue] = ACTIONS(1312), - [anon_sym_default] = ACTIONS(1312), - [anon_sym_enum] = ACTIONS(1312), - [anon_sym_fn] = ACTIONS(1312), - [anon_sym_for] = ACTIONS(1312), - [anon_sym_if] = ACTIONS(1312), - [anon_sym_impl] = ACTIONS(1312), - [anon_sym_let] = ACTIONS(1312), - [anon_sym_loop] = ACTIONS(1312), - [anon_sym_match] = ACTIONS(1312), - [anon_sym_mod] = ACTIONS(1312), - [anon_sym_pub] = ACTIONS(1312), - [anon_sym_return] = ACTIONS(1312), - [anon_sym_static] = ACTIONS(1312), - [anon_sym_struct] = ACTIONS(1312), - [anon_sym_trait] = ACTIONS(1312), - [anon_sym_type] = ACTIONS(1312), - [anon_sym_union] = ACTIONS(1312), - [anon_sym_unsafe] = ACTIONS(1312), - [anon_sym_use] = ACTIONS(1312), - [anon_sym_where] = ACTIONS(1312), - [anon_sym_while] = ACTIONS(1312), - [sym_mutable_specifier] = ACTIONS(1312), - [sym_integer_literal] = ACTIONS(1314), - [aux_sym_string_literal_token1] = ACTIONS(1316), - [sym_char_literal] = ACTIONS(1314), - [anon_sym_true] = ACTIONS(1318), - [anon_sym_false] = ACTIONS(1318), - [anon_sym_u8] = ACTIONS(1320), - [anon_sym_i8] = ACTIONS(1320), - [anon_sym_u16] = ACTIONS(1320), - [anon_sym_i16] = ACTIONS(1320), - [anon_sym_u32] = ACTIONS(1320), - [anon_sym_i32] = ACTIONS(1320), - [anon_sym_u64] = ACTIONS(1320), - [anon_sym_i64] = ACTIONS(1320), - [anon_sym_u128] = ACTIONS(1320), - [anon_sym_i128] = ACTIONS(1320), - [anon_sym_isize] = ACTIONS(1320), - [anon_sym_usize] = ACTIONS(1320), - [anon_sym_f32] = ACTIONS(1320), - [anon_sym_f64] = ACTIONS(1320), - [anon_sym_bool] = ACTIONS(1320), - [anon_sym_str] = ACTIONS(1320), - [anon_sym_char] = ACTIONS(1320), - [sym_line_comment] = ACTIONS(1172), - [sym__raw_identifier] = ACTIONS(1322), - [sym_self] = ACTIONS(1312), - [sym_super] = ACTIONS(1312), - [sym_crate] = ACTIONS(1312), - [sym_metavariable] = ACTIONS(1324), - [sym_grit_metavariable] = ACTIONS(1326), - [sym_raw_string_literal] = ACTIONS(1314), - [sym_float_literal] = ACTIONS(1314), + [sym__token_pattern] = STATE(231), + [sym_token_tree_pattern] = STATE(231), + [sym_token_binding_pattern] = STATE(231), + [sym_token_repetition_pattern] = STATE(231), + [sym__literal] = STATE(231), + [sym_string_literal] = STATE(652), + [sym_boolean_literal] = STATE(652), + [sym_primitive_type] = STATE(231), + [sym_identifier] = STATE(231), + [aux_sym_token_tree_pattern_repeat1] = STATE(231), + [sym__primitive_identifier] = ACTIONS(1302), + [anon_sym_LPAREN] = ACTIONS(1304), + [anon_sym_LBRACE] = ACTIONS(1306), + [anon_sym_RBRACE] = ACTIONS(1308), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_DOLLAR] = ACTIONS(1312), + [aux_sym__non_special_token_token1] = ACTIONS(1314), + [anon_sym_SQUOTE] = ACTIONS(1314), + [anon_sym_as] = ACTIONS(1314), + [anon_sym_async] = ACTIONS(1314), + [anon_sym_await] = ACTIONS(1314), + [anon_sym_break] = ACTIONS(1314), + [anon_sym_const] = ACTIONS(1314), + [anon_sym_continue] = ACTIONS(1314), + [anon_sym_default] = ACTIONS(1314), + [anon_sym_enum] = ACTIONS(1314), + [anon_sym_fn] = ACTIONS(1314), + [anon_sym_for] = ACTIONS(1314), + [anon_sym_if] = ACTIONS(1314), + [anon_sym_impl] = ACTIONS(1314), + [anon_sym_let] = ACTIONS(1314), + [anon_sym_loop] = ACTIONS(1314), + [anon_sym_match] = ACTIONS(1314), + [anon_sym_mod] = ACTIONS(1314), + [anon_sym_pub] = ACTIONS(1314), + [anon_sym_return] = ACTIONS(1314), + [anon_sym_static] = ACTIONS(1314), + [anon_sym_struct] = ACTIONS(1314), + [anon_sym_trait] = ACTIONS(1314), + [anon_sym_type] = ACTIONS(1314), + [anon_sym_union] = ACTIONS(1314), + [anon_sym_unsafe] = ACTIONS(1314), + [anon_sym_use] = ACTIONS(1314), + [anon_sym_where] = ACTIONS(1314), + [anon_sym_while] = ACTIONS(1314), + [sym_mutable_specifier] = ACTIONS(1314), + [sym_integer_literal] = ACTIONS(1316), + [aux_sym_string_literal_token1] = ACTIONS(1318), + [sym_char_literal] = ACTIONS(1316), + [anon_sym_true] = ACTIONS(1320), + [anon_sym_false] = 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), + [sym_line_comment] = ACTIONS(1112), + [sym__raw_identifier] = ACTIONS(1324), + [sym_self] = ACTIONS(1314), + [sym_super] = ACTIONS(1314), + [sym_crate] = ACTIONS(1314), + [sym_metavariable] = ACTIONS(1326), + [sym_grit_metavariable] = ACTIONS(1328), + [sym_raw_string_literal] = ACTIONS(1316), + [sym_float_literal] = ACTIONS(1316), [sym_block_comment] = ACTIONS(3), }, [256] = { - [sym__token_pattern] = STATE(247), - [sym_token_tree_pattern] = STATE(247), - [sym_token_binding_pattern] = STATE(247), - [sym_token_repetition_pattern] = STATE(247), - [sym__literal] = STATE(247), - [sym_string_literal] = STATE(656), - [sym_boolean_literal] = STATE(656), - [sym_primitive_type] = STATE(247), - [sym_identifier] = STATE(247), - [aux_sym_token_tree_pattern_repeat1] = STATE(247), - [sym__primitive_identifier] = ACTIONS(1300), - [anon_sym_LPAREN] = ACTIONS(1302), - [anon_sym_RPAREN] = ACTIONS(1328), - [anon_sym_LBRACE] = ACTIONS(1304), - [anon_sym_LBRACK] = ACTIONS(1308), - [anon_sym_DOLLAR] = ACTIONS(1310), - [aux_sym__non_special_token_token1] = ACTIONS(1312), - [anon_sym_SQUOTE] = ACTIONS(1312), - [anon_sym_as] = ACTIONS(1312), - [anon_sym_async] = ACTIONS(1312), - [anon_sym_await] = ACTIONS(1312), - [anon_sym_break] = ACTIONS(1312), - [anon_sym_const] = ACTIONS(1312), - [anon_sym_continue] = ACTIONS(1312), - [anon_sym_default] = ACTIONS(1312), - [anon_sym_enum] = ACTIONS(1312), - [anon_sym_fn] = ACTIONS(1312), - [anon_sym_for] = ACTIONS(1312), - [anon_sym_if] = ACTIONS(1312), - [anon_sym_impl] = ACTIONS(1312), - [anon_sym_let] = ACTIONS(1312), - [anon_sym_loop] = ACTIONS(1312), - [anon_sym_match] = ACTIONS(1312), - [anon_sym_mod] = ACTIONS(1312), - [anon_sym_pub] = ACTIONS(1312), - [anon_sym_return] = ACTIONS(1312), - [anon_sym_static] = ACTIONS(1312), - [anon_sym_struct] = ACTIONS(1312), - [anon_sym_trait] = ACTIONS(1312), - [anon_sym_type] = ACTIONS(1312), - [anon_sym_union] = ACTIONS(1312), - [anon_sym_unsafe] = ACTIONS(1312), - [anon_sym_use] = ACTIONS(1312), - [anon_sym_where] = ACTIONS(1312), - [anon_sym_while] = ACTIONS(1312), - [sym_mutable_specifier] = ACTIONS(1312), - [sym_integer_literal] = ACTIONS(1314), - [aux_sym_string_literal_token1] = ACTIONS(1316), - [sym_char_literal] = ACTIONS(1314), - [anon_sym_true] = ACTIONS(1318), - [anon_sym_false] = ACTIONS(1318), - [anon_sym_u8] = ACTIONS(1320), - [anon_sym_i8] = ACTIONS(1320), - [anon_sym_u16] = ACTIONS(1320), - [anon_sym_i16] = ACTIONS(1320), - [anon_sym_u32] = ACTIONS(1320), - [anon_sym_i32] = ACTIONS(1320), - [anon_sym_u64] = ACTIONS(1320), - [anon_sym_i64] = ACTIONS(1320), - [anon_sym_u128] = ACTIONS(1320), - [anon_sym_i128] = ACTIONS(1320), - [anon_sym_isize] = ACTIONS(1320), - [anon_sym_usize] = ACTIONS(1320), - [anon_sym_f32] = ACTIONS(1320), - [anon_sym_f64] = ACTIONS(1320), - [anon_sym_bool] = ACTIONS(1320), - [anon_sym_str] = ACTIONS(1320), - [anon_sym_char] = ACTIONS(1320), - [sym_line_comment] = ACTIONS(1172), - [sym__raw_identifier] = ACTIONS(1322), - [sym_self] = ACTIONS(1312), - [sym_super] = ACTIONS(1312), - [sym_crate] = ACTIONS(1312), - [sym_metavariable] = ACTIONS(1324), - [sym_grit_metavariable] = ACTIONS(1326), - [sym_raw_string_literal] = ACTIONS(1314), - [sym_float_literal] = ACTIONS(1314), + [sym_attribute_item] = STATE(583), + [sym_bracketed_type] = STATE(2684), + [sym_generic_type] = STATE(2683), + [sym_generic_type_with_turbofish] = STATE(2682), + [sym_macro_invocation] = STATE(1615), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier] = STATE(2202), + [sym_match_arm] = STATE(383), + [sym_last_match_arm] = STATE(2747), + [sym_match_pattern] = STATE(2737), + [sym_const_block] = STATE(1615), + [sym_pattern] = STATE(2353), + [sym_tuple_pattern] = STATE(1615), + [sym_slice_pattern] = STATE(1615), + [sym_tuple_struct_pattern] = STATE(1615), + [sym_struct_pattern] = STATE(1615), + [sym_remaining_field_pattern] = STATE(1615), + [sym_mut_pattern] = STATE(1615), + [sym_range_pattern] = STATE(1615), + [sym_ref_pattern] = STATE(1615), + [sym_captured_pattern] = STATE(1615), + [sym_reference_pattern] = STATE(1615), + [sym_or_pattern] = STATE(1615), + [sym__literal_pattern] = STATE(1492), + [sym_negative_literal] = STATE(1521), + [sym_string_literal] = STATE(1521), + [sym_boolean_literal] = STATE(1521), + [sym_primitive_type] = STATE(1479), + [sym_identifier] = STATE(1432), + [aux_sym_enum_variant_list_repeat1] = STATE(583), + [aux_sym_match_block_repeat1] = STATE(383), + [sym__primitive_identifier] = ACTIONS(844), + [sym_underscore] = ACTIONS(974), + [anon_sym_LPAREN] = ACTIONS(1274), + [anon_sym_LBRACK] = ACTIONS(1278), + [anon_sym_const] = ACTIONS(1280), + [anon_sym_default] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1282), + [anon_sym_POUND] = ACTIONS(533), + [anon_sym_ref] = ACTIONS(880), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(1284), + [anon_sym_AMP] = ACTIONS(1286), + [sym_mutable_specifier] = ACTIONS(982), + [anon_sym_DOT_DOT] = ACTIONS(984), + [anon_sym_DASH] = ACTIONS(894), + [sym_integer_literal] = ACTIONS(896), + [aux_sym_string_literal_token1] = ACTIONS(898), + [sym_char_literal] = ACTIONS(896), + [anon_sym_true] = ACTIONS(900), + [anon_sym_false] = ACTIONS(900), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1288), + [sym_super] = ACTIONS(1288), + [sym_crate] = ACTIONS(1288), + [sym_metavariable] = ACTIONS(1290), + [sym_grit_metavariable] = ACTIONS(986), + [sym_raw_string_literal] = ACTIONS(896), + [sym_float_literal] = ACTIONS(896), [sym_block_comment] = ACTIONS(3), }, [257] = { - [sym__token_pattern] = STATE(261), - [sym_token_tree_pattern] = STATE(261), - [sym_token_binding_pattern] = STATE(261), - [sym_token_repetition_pattern] = STATE(261), - [sym__literal] = STATE(261), - [sym_string_literal] = STATE(656), - [sym_boolean_literal] = STATE(656), - [sym_primitive_type] = STATE(261), - [sym_identifier] = STATE(261), - [aux_sym_token_tree_pattern_repeat1] = STATE(261), - [sym__primitive_identifier] = ACTIONS(1300), - [anon_sym_LPAREN] = ACTIONS(1302), - [anon_sym_RPAREN] = ACTIONS(1330), - [anon_sym_LBRACE] = ACTIONS(1304), - [anon_sym_LBRACK] = ACTIONS(1308), - [anon_sym_DOLLAR] = ACTIONS(1310), + [sym__token_pattern] = STATE(260), + [sym_token_tree_pattern] = STATE(260), + [sym_token_binding_pattern] = STATE(260), + [sym_token_repetition_pattern] = STATE(260), + [sym__literal] = STATE(260), + [sym_string_literal] = STATE(652), + [sym_boolean_literal] = STATE(652), + [sym_primitive_type] = STATE(260), + [sym_identifier] = STATE(260), + [aux_sym_token_tree_pattern_repeat1] = STATE(260), + [sym__primitive_identifier] = ACTIONS(1302), + [anon_sym_LPAREN] = ACTIONS(1304), + [anon_sym_LBRACE] = ACTIONS(1306), + [anon_sym_RBRACE] = ACTIONS(1330), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_DOLLAR] = ACTIONS(1312), [aux_sym__non_special_token_token1] = ACTIONS(1332), [anon_sym_SQUOTE] = ACTIONS(1332), [anon_sym_as] = ACTIONS(1332), @@ -48014,776 +48081,616 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(1332), [anon_sym_while] = ACTIONS(1332), [sym_mutable_specifier] = ACTIONS(1332), - [sym_integer_literal] = ACTIONS(1314), - [aux_sym_string_literal_token1] = ACTIONS(1316), - [sym_char_literal] = ACTIONS(1314), - [anon_sym_true] = ACTIONS(1318), - [anon_sym_false] = ACTIONS(1318), - [anon_sym_u8] = ACTIONS(1320), - [anon_sym_i8] = ACTIONS(1320), - [anon_sym_u16] = ACTIONS(1320), - [anon_sym_i16] = ACTIONS(1320), - [anon_sym_u32] = ACTIONS(1320), - [anon_sym_i32] = ACTIONS(1320), - [anon_sym_u64] = ACTIONS(1320), - [anon_sym_i64] = ACTIONS(1320), - [anon_sym_u128] = ACTIONS(1320), - [anon_sym_i128] = ACTIONS(1320), - [anon_sym_isize] = ACTIONS(1320), - [anon_sym_usize] = ACTIONS(1320), - [anon_sym_f32] = ACTIONS(1320), - [anon_sym_f64] = ACTIONS(1320), - [anon_sym_bool] = ACTIONS(1320), - [anon_sym_str] = ACTIONS(1320), - [anon_sym_char] = ACTIONS(1320), - [sym_line_comment] = ACTIONS(1172), - [sym__raw_identifier] = ACTIONS(1322), + [sym_integer_literal] = ACTIONS(1316), + [aux_sym_string_literal_token1] = ACTIONS(1318), + [sym_char_literal] = ACTIONS(1316), + [anon_sym_true] = ACTIONS(1320), + [anon_sym_false] = 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), + [sym_line_comment] = ACTIONS(1112), + [sym__raw_identifier] = ACTIONS(1324), [sym_self] = ACTIONS(1332), [sym_super] = ACTIONS(1332), [sym_crate] = ACTIONS(1332), - [sym_metavariable] = ACTIONS(1324), - [sym_grit_metavariable] = ACTIONS(1326), - [sym_raw_string_literal] = ACTIONS(1314), - [sym_float_literal] = ACTIONS(1314), + [sym_metavariable] = ACTIONS(1326), + [sym_grit_metavariable] = ACTIONS(1328), + [sym_raw_string_literal] = ACTIONS(1316), + [sym_float_literal] = ACTIONS(1316), [sym_block_comment] = ACTIONS(3), }, [258] = { - [sym__token_pattern] = STATE(254), - [sym_token_tree_pattern] = STATE(254), - [sym_token_binding_pattern] = STATE(254), - [sym_token_repetition_pattern] = STATE(254), - [sym__literal] = STATE(254), - [sym_string_literal] = STATE(656), - [sym_boolean_literal] = STATE(656), - [sym_primitive_type] = STATE(254), - [sym_identifier] = STATE(254), - [aux_sym_token_tree_pattern_repeat1] = STATE(254), - [sym__primitive_identifier] = ACTIONS(1300), - [anon_sym_LPAREN] = ACTIONS(1302), - [anon_sym_LBRACE] = ACTIONS(1304), - [anon_sym_RBRACE] = ACTIONS(1330), - [anon_sym_LBRACK] = ACTIONS(1308), - [anon_sym_DOLLAR] = ACTIONS(1310), - [aux_sym__non_special_token_token1] = ACTIONS(1334), - [anon_sym_SQUOTE] = ACTIONS(1334), - [anon_sym_as] = ACTIONS(1334), - [anon_sym_async] = ACTIONS(1334), - [anon_sym_await] = ACTIONS(1334), - [anon_sym_break] = ACTIONS(1334), - [anon_sym_const] = ACTIONS(1334), - [anon_sym_continue] = ACTIONS(1334), - [anon_sym_default] = ACTIONS(1334), - [anon_sym_enum] = ACTIONS(1334), - [anon_sym_fn] = ACTIONS(1334), - [anon_sym_for] = ACTIONS(1334), - [anon_sym_if] = ACTIONS(1334), - [anon_sym_impl] = ACTIONS(1334), - [anon_sym_let] = ACTIONS(1334), - [anon_sym_loop] = ACTIONS(1334), - [anon_sym_match] = ACTIONS(1334), - [anon_sym_mod] = ACTIONS(1334), - [anon_sym_pub] = ACTIONS(1334), - [anon_sym_return] = ACTIONS(1334), - [anon_sym_static] = ACTIONS(1334), - [anon_sym_struct] = ACTIONS(1334), - [anon_sym_trait] = ACTIONS(1334), - [anon_sym_type] = ACTIONS(1334), - [anon_sym_union] = ACTIONS(1334), - [anon_sym_unsafe] = ACTIONS(1334), - [anon_sym_use] = ACTIONS(1334), - [anon_sym_where] = ACTIONS(1334), - [anon_sym_while] = ACTIONS(1334), - [sym_mutable_specifier] = ACTIONS(1334), - [sym_integer_literal] = ACTIONS(1314), - [aux_sym_string_literal_token1] = ACTIONS(1316), - [sym_char_literal] = ACTIONS(1314), - [anon_sym_true] = ACTIONS(1318), - [anon_sym_false] = ACTIONS(1318), - [anon_sym_u8] = ACTIONS(1320), - [anon_sym_i8] = ACTIONS(1320), - [anon_sym_u16] = ACTIONS(1320), - [anon_sym_i16] = ACTIONS(1320), - [anon_sym_u32] = ACTIONS(1320), - [anon_sym_i32] = ACTIONS(1320), - [anon_sym_u64] = ACTIONS(1320), - [anon_sym_i64] = ACTIONS(1320), - [anon_sym_u128] = ACTIONS(1320), - [anon_sym_i128] = ACTIONS(1320), - [anon_sym_isize] = ACTIONS(1320), - [anon_sym_usize] = ACTIONS(1320), - [anon_sym_f32] = ACTIONS(1320), - [anon_sym_f64] = ACTIONS(1320), - [anon_sym_bool] = ACTIONS(1320), - [anon_sym_str] = ACTIONS(1320), - [anon_sym_char] = ACTIONS(1320), - [sym_line_comment] = ACTIONS(1172), - [sym__raw_identifier] = ACTIONS(1322), - [sym_self] = ACTIONS(1334), - [sym_super] = ACTIONS(1334), - [sym_crate] = ACTIONS(1334), - [sym_metavariable] = ACTIONS(1324), - [sym_grit_metavariable] = ACTIONS(1326), - [sym_raw_string_literal] = ACTIONS(1314), - [sym_float_literal] = ACTIONS(1314), + [sym__token_pattern] = STATE(231), + [sym_token_tree_pattern] = STATE(231), + [sym_token_binding_pattern] = STATE(231), + [sym_token_repetition_pattern] = STATE(231), + [sym__literal] = STATE(231), + [sym_string_literal] = STATE(652), + [sym_boolean_literal] = STATE(652), + [sym_primitive_type] = STATE(231), + [sym_identifier] = STATE(231), + [aux_sym_token_tree_pattern_repeat1] = STATE(231), + [sym__primitive_identifier] = ACTIONS(1302), + [anon_sym_LPAREN] = ACTIONS(1304), + [anon_sym_RPAREN] = ACTIONS(1334), + [anon_sym_LBRACE] = ACTIONS(1306), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_DOLLAR] = ACTIONS(1312), + [aux_sym__non_special_token_token1] = ACTIONS(1314), + [anon_sym_SQUOTE] = ACTIONS(1314), + [anon_sym_as] = ACTIONS(1314), + [anon_sym_async] = ACTIONS(1314), + [anon_sym_await] = ACTIONS(1314), + [anon_sym_break] = ACTIONS(1314), + [anon_sym_const] = ACTIONS(1314), + [anon_sym_continue] = ACTIONS(1314), + [anon_sym_default] = ACTIONS(1314), + [anon_sym_enum] = ACTIONS(1314), + [anon_sym_fn] = ACTIONS(1314), + [anon_sym_for] = ACTIONS(1314), + [anon_sym_if] = ACTIONS(1314), + [anon_sym_impl] = ACTIONS(1314), + [anon_sym_let] = ACTIONS(1314), + [anon_sym_loop] = ACTIONS(1314), + [anon_sym_match] = ACTIONS(1314), + [anon_sym_mod] = ACTIONS(1314), + [anon_sym_pub] = ACTIONS(1314), + [anon_sym_return] = ACTIONS(1314), + [anon_sym_static] = ACTIONS(1314), + [anon_sym_struct] = ACTIONS(1314), + [anon_sym_trait] = ACTIONS(1314), + [anon_sym_type] = ACTIONS(1314), + [anon_sym_union] = ACTIONS(1314), + [anon_sym_unsafe] = ACTIONS(1314), + [anon_sym_use] = ACTIONS(1314), + [anon_sym_where] = ACTIONS(1314), + [anon_sym_while] = ACTIONS(1314), + [sym_mutable_specifier] = ACTIONS(1314), + [sym_integer_literal] = ACTIONS(1316), + [aux_sym_string_literal_token1] = ACTIONS(1318), + [sym_char_literal] = ACTIONS(1316), + [anon_sym_true] = ACTIONS(1320), + [anon_sym_false] = 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), + [sym_line_comment] = ACTIONS(1112), + [sym__raw_identifier] = ACTIONS(1324), + [sym_self] = ACTIONS(1314), + [sym_super] = ACTIONS(1314), + [sym_crate] = ACTIONS(1314), + [sym_metavariable] = ACTIONS(1326), + [sym_grit_metavariable] = ACTIONS(1328), + [sym_raw_string_literal] = ACTIONS(1316), + [sym_float_literal] = ACTIONS(1316), [sym_block_comment] = ACTIONS(3), }, [259] = { - [sym__token_pattern] = STATE(264), - [sym_token_tree_pattern] = STATE(264), - [sym_token_binding_pattern] = STATE(264), - [sym_token_repetition_pattern] = STATE(264), - [sym__literal] = STATE(264), - [sym_string_literal] = STATE(656), - [sym_boolean_literal] = STATE(656), - [sym_primitive_type] = STATE(264), - [sym_identifier] = STATE(264), - [aux_sym_token_tree_pattern_repeat1] = STATE(264), - [sym__primitive_identifier] = ACTIONS(1300), - [anon_sym_LPAREN] = ACTIONS(1302), - [anon_sym_LBRACE] = ACTIONS(1304), - [anon_sym_LBRACK] = ACTIONS(1308), - [anon_sym_RBRACK] = ACTIONS(1330), - [anon_sym_DOLLAR] = ACTIONS(1310), - [aux_sym__non_special_token_token1] = ACTIONS(1336), - [anon_sym_SQUOTE] = ACTIONS(1336), - [anon_sym_as] = ACTIONS(1336), - [anon_sym_async] = ACTIONS(1336), - [anon_sym_await] = ACTIONS(1336), - [anon_sym_break] = ACTIONS(1336), - [anon_sym_const] = ACTIONS(1336), - [anon_sym_continue] = ACTIONS(1336), - [anon_sym_default] = ACTIONS(1336), - [anon_sym_enum] = ACTIONS(1336), - [anon_sym_fn] = ACTIONS(1336), - [anon_sym_for] = ACTIONS(1336), - [anon_sym_if] = ACTIONS(1336), - [anon_sym_impl] = ACTIONS(1336), - [anon_sym_let] = ACTIONS(1336), - [anon_sym_loop] = ACTIONS(1336), - [anon_sym_match] = ACTIONS(1336), - [anon_sym_mod] = ACTIONS(1336), - [anon_sym_pub] = ACTIONS(1336), - [anon_sym_return] = ACTIONS(1336), - [anon_sym_static] = ACTIONS(1336), - [anon_sym_struct] = ACTIONS(1336), - [anon_sym_trait] = ACTIONS(1336), - [anon_sym_type] = ACTIONS(1336), - [anon_sym_union] = ACTIONS(1336), - [anon_sym_unsafe] = ACTIONS(1336), - [anon_sym_use] = ACTIONS(1336), - [anon_sym_where] = ACTIONS(1336), - [anon_sym_while] = ACTIONS(1336), - [sym_mutable_specifier] = ACTIONS(1336), - [sym_integer_literal] = ACTIONS(1314), - [aux_sym_string_literal_token1] = ACTIONS(1316), - [sym_char_literal] = ACTIONS(1314), - [anon_sym_true] = ACTIONS(1318), - [anon_sym_false] = ACTIONS(1318), - [anon_sym_u8] = ACTIONS(1320), - [anon_sym_i8] = ACTIONS(1320), - [anon_sym_u16] = ACTIONS(1320), - [anon_sym_i16] = ACTIONS(1320), - [anon_sym_u32] = ACTIONS(1320), - [anon_sym_i32] = ACTIONS(1320), - [anon_sym_u64] = ACTIONS(1320), - [anon_sym_i64] = ACTIONS(1320), - [anon_sym_u128] = ACTIONS(1320), - [anon_sym_i128] = ACTIONS(1320), - [anon_sym_isize] = ACTIONS(1320), - [anon_sym_usize] = ACTIONS(1320), - [anon_sym_f32] = ACTIONS(1320), - [anon_sym_f64] = ACTIONS(1320), - [anon_sym_bool] = ACTIONS(1320), - [anon_sym_str] = ACTIONS(1320), - [anon_sym_char] = ACTIONS(1320), - [sym_line_comment] = ACTIONS(1172), - [sym__raw_identifier] = ACTIONS(1322), - [sym_self] = ACTIONS(1336), - [sym_super] = ACTIONS(1336), - [sym_crate] = ACTIONS(1336), - [sym_metavariable] = ACTIONS(1324), - [sym_grit_metavariable] = ACTIONS(1326), - [sym_raw_string_literal] = ACTIONS(1314), - [sym_float_literal] = ACTIONS(1314), + [sym_token_tree] = STATE(259), + [sym_token_repetition] = STATE(259), + [sym__literal] = STATE(259), + [sym_string_literal] = STATE(652), + [sym_boolean_literal] = STATE(652), + [sym_primitive_type] = STATE(259), + [sym_identifier] = STATE(259), + [aux_sym_token_tree_repeat1] = STATE(259), + [sym__primitive_identifier] = ACTIONS(1336), + [anon_sym_LPAREN] = ACTIONS(1339), + [anon_sym_RPAREN] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_RBRACE] = ACTIONS(1342), + [anon_sym_LBRACK] = ACTIONS(1347), + [anon_sym_RBRACK] = ACTIONS(1342), + [anon_sym_DOLLAR] = ACTIONS(1350), + [aux_sym__non_special_token_token1] = ACTIONS(1353), + [anon_sym_SQUOTE] = ACTIONS(1353), + [anon_sym_as] = ACTIONS(1353), + [anon_sym_async] = ACTIONS(1353), + [anon_sym_await] = ACTIONS(1353), + [anon_sym_break] = ACTIONS(1353), + [anon_sym_const] = ACTIONS(1353), + [anon_sym_continue] = ACTIONS(1353), + [anon_sym_default] = ACTIONS(1353), + [anon_sym_enum] = ACTIONS(1353), + [anon_sym_fn] = ACTIONS(1353), + [anon_sym_for] = ACTIONS(1353), + [anon_sym_if] = ACTIONS(1353), + [anon_sym_impl] = ACTIONS(1353), + [anon_sym_let] = ACTIONS(1353), + [anon_sym_loop] = ACTIONS(1353), + [anon_sym_match] = ACTIONS(1353), + [anon_sym_mod] = ACTIONS(1353), + [anon_sym_pub] = ACTIONS(1353), + [anon_sym_return] = ACTIONS(1353), + [anon_sym_static] = ACTIONS(1353), + [anon_sym_struct] = ACTIONS(1353), + [anon_sym_trait] = ACTIONS(1353), + [anon_sym_type] = ACTIONS(1353), + [anon_sym_union] = ACTIONS(1353), + [anon_sym_unsafe] = ACTIONS(1353), + [anon_sym_use] = ACTIONS(1353), + [anon_sym_where] = ACTIONS(1353), + [anon_sym_while] = ACTIONS(1353), + [sym_mutable_specifier] = ACTIONS(1353), + [sym_integer_literal] = ACTIONS(1356), + [aux_sym_string_literal_token1] = ACTIONS(1359), + [sym_char_literal] = ACTIONS(1356), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_u8] = ACTIONS(1365), + [anon_sym_i8] = ACTIONS(1365), + [anon_sym_u16] = ACTIONS(1365), + [anon_sym_i16] = ACTIONS(1365), + [anon_sym_u32] = ACTIONS(1365), + [anon_sym_i32] = ACTIONS(1365), + [anon_sym_u64] = ACTIONS(1365), + [anon_sym_i64] = ACTIONS(1365), + [anon_sym_u128] = ACTIONS(1365), + [anon_sym_i128] = ACTIONS(1365), + [anon_sym_isize] = ACTIONS(1365), + [anon_sym_usize] = ACTIONS(1365), + [anon_sym_f32] = ACTIONS(1365), + [anon_sym_f64] = ACTIONS(1365), + [anon_sym_bool] = ACTIONS(1365), + [anon_sym_str] = ACTIONS(1365), + [anon_sym_char] = ACTIONS(1365), + [sym_line_comment] = ACTIONS(1112), + [sym__raw_identifier] = ACTIONS(1368), + [sym_self] = ACTIONS(1353), + [sym_super] = ACTIONS(1353), + [sym_crate] = ACTIONS(1353), + [sym_metavariable] = ACTIONS(1371), + [sym_grit_metavariable] = ACTIONS(1374), + [sym_raw_string_literal] = ACTIONS(1356), + [sym_float_literal] = ACTIONS(1356), [sym_block_comment] = ACTIONS(3), }, [260] = { - [sym__token_pattern] = STATE(247), - [sym_token_tree_pattern] = STATE(247), - [sym_token_binding_pattern] = STATE(247), - [sym_token_repetition_pattern] = STATE(247), - [sym__literal] = STATE(247), - [sym_string_literal] = STATE(656), - [sym_boolean_literal] = STATE(656), - [sym_primitive_type] = STATE(247), - [sym_identifier] = STATE(247), - [aux_sym_token_tree_pattern_repeat1] = STATE(247), - [sym__primitive_identifier] = ACTIONS(1300), - [anon_sym_LPAREN] = ACTIONS(1302), - [anon_sym_LBRACE] = ACTIONS(1304), - [anon_sym_RBRACE] = ACTIONS(1328), - [anon_sym_LBRACK] = ACTIONS(1308), - [anon_sym_DOLLAR] = ACTIONS(1310), - [aux_sym__non_special_token_token1] = ACTIONS(1312), - [anon_sym_SQUOTE] = ACTIONS(1312), - [anon_sym_as] = ACTIONS(1312), - [anon_sym_async] = ACTIONS(1312), - [anon_sym_await] = ACTIONS(1312), - [anon_sym_break] = ACTIONS(1312), - [anon_sym_const] = ACTIONS(1312), - [anon_sym_continue] = ACTIONS(1312), - [anon_sym_default] = ACTIONS(1312), - [anon_sym_enum] = ACTIONS(1312), - [anon_sym_fn] = ACTIONS(1312), - [anon_sym_for] = ACTIONS(1312), - [anon_sym_if] = ACTIONS(1312), - [anon_sym_impl] = ACTIONS(1312), - [anon_sym_let] = ACTIONS(1312), - [anon_sym_loop] = ACTIONS(1312), - [anon_sym_match] = ACTIONS(1312), - [anon_sym_mod] = ACTIONS(1312), - [anon_sym_pub] = ACTIONS(1312), - [anon_sym_return] = ACTIONS(1312), - [anon_sym_static] = ACTIONS(1312), - [anon_sym_struct] = ACTIONS(1312), - [anon_sym_trait] = ACTIONS(1312), - [anon_sym_type] = ACTIONS(1312), - [anon_sym_union] = ACTIONS(1312), - [anon_sym_unsafe] = ACTIONS(1312), - [anon_sym_use] = ACTIONS(1312), - [anon_sym_where] = ACTIONS(1312), - [anon_sym_while] = ACTIONS(1312), - [sym_mutable_specifier] = ACTIONS(1312), - [sym_integer_literal] = ACTIONS(1314), - [aux_sym_string_literal_token1] = ACTIONS(1316), - [sym_char_literal] = ACTIONS(1314), - [anon_sym_true] = ACTIONS(1318), - [anon_sym_false] = ACTIONS(1318), - [anon_sym_u8] = ACTIONS(1320), - [anon_sym_i8] = ACTIONS(1320), - [anon_sym_u16] = ACTIONS(1320), - [anon_sym_i16] = ACTIONS(1320), - [anon_sym_u32] = ACTIONS(1320), - [anon_sym_i32] = ACTIONS(1320), - [anon_sym_u64] = ACTIONS(1320), - [anon_sym_i64] = ACTIONS(1320), - [anon_sym_u128] = ACTIONS(1320), - [anon_sym_i128] = ACTIONS(1320), - [anon_sym_isize] = ACTIONS(1320), - [anon_sym_usize] = ACTIONS(1320), - [anon_sym_f32] = ACTIONS(1320), - [anon_sym_f64] = ACTIONS(1320), - [anon_sym_bool] = ACTIONS(1320), - [anon_sym_str] = ACTIONS(1320), - [anon_sym_char] = ACTIONS(1320), - [sym_line_comment] = ACTIONS(1172), - [sym__raw_identifier] = ACTIONS(1322), - [sym_self] = ACTIONS(1312), - [sym_super] = ACTIONS(1312), - [sym_crate] = ACTIONS(1312), - [sym_metavariable] = ACTIONS(1324), - [sym_grit_metavariable] = ACTIONS(1326), - [sym_raw_string_literal] = ACTIONS(1314), - [sym_float_literal] = ACTIONS(1314), + [sym__token_pattern] = STATE(231), + [sym_token_tree_pattern] = STATE(231), + [sym_token_binding_pattern] = STATE(231), + [sym_token_repetition_pattern] = STATE(231), + [sym__literal] = STATE(231), + [sym_string_literal] = STATE(652), + [sym_boolean_literal] = STATE(652), + [sym_primitive_type] = STATE(231), + [sym_identifier] = STATE(231), + [aux_sym_token_tree_pattern_repeat1] = STATE(231), + [sym__primitive_identifier] = ACTIONS(1302), + [anon_sym_LPAREN] = ACTIONS(1304), + [anon_sym_LBRACE] = ACTIONS(1306), + [anon_sym_RBRACE] = ACTIONS(1334), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_DOLLAR] = ACTIONS(1312), + [aux_sym__non_special_token_token1] = ACTIONS(1314), + [anon_sym_SQUOTE] = ACTIONS(1314), + [anon_sym_as] = ACTIONS(1314), + [anon_sym_async] = ACTIONS(1314), + [anon_sym_await] = ACTIONS(1314), + [anon_sym_break] = ACTIONS(1314), + [anon_sym_const] = ACTIONS(1314), + [anon_sym_continue] = ACTIONS(1314), + [anon_sym_default] = ACTIONS(1314), + [anon_sym_enum] = ACTIONS(1314), + [anon_sym_fn] = ACTIONS(1314), + [anon_sym_for] = ACTIONS(1314), + [anon_sym_if] = ACTIONS(1314), + [anon_sym_impl] = ACTIONS(1314), + [anon_sym_let] = ACTIONS(1314), + [anon_sym_loop] = ACTIONS(1314), + [anon_sym_match] = ACTIONS(1314), + [anon_sym_mod] = ACTIONS(1314), + [anon_sym_pub] = ACTIONS(1314), + [anon_sym_return] = ACTIONS(1314), + [anon_sym_static] = ACTIONS(1314), + [anon_sym_struct] = ACTIONS(1314), + [anon_sym_trait] = ACTIONS(1314), + [anon_sym_type] = ACTIONS(1314), + [anon_sym_union] = ACTIONS(1314), + [anon_sym_unsafe] = ACTIONS(1314), + [anon_sym_use] = ACTIONS(1314), + [anon_sym_where] = ACTIONS(1314), + [anon_sym_while] = ACTIONS(1314), + [sym_mutable_specifier] = ACTIONS(1314), + [sym_integer_literal] = ACTIONS(1316), + [aux_sym_string_literal_token1] = ACTIONS(1318), + [sym_char_literal] = ACTIONS(1316), + [anon_sym_true] = ACTIONS(1320), + [anon_sym_false] = 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), + [sym_line_comment] = ACTIONS(1112), + [sym__raw_identifier] = ACTIONS(1324), + [sym_self] = ACTIONS(1314), + [sym_super] = ACTIONS(1314), + [sym_crate] = ACTIONS(1314), + [sym_metavariable] = ACTIONS(1326), + [sym_grit_metavariable] = ACTIONS(1328), + [sym_raw_string_literal] = ACTIONS(1316), + [sym_float_literal] = ACTIONS(1316), [sym_block_comment] = ACTIONS(3), }, [261] = { - [sym__token_pattern] = STATE(247), - [sym_token_tree_pattern] = STATE(247), - [sym_token_binding_pattern] = STATE(247), - [sym_token_repetition_pattern] = STATE(247), - [sym__literal] = STATE(247), - [sym_string_literal] = STATE(656), - [sym_boolean_literal] = STATE(656), - [sym_primitive_type] = STATE(247), - [sym_identifier] = STATE(247), - [aux_sym_token_tree_pattern_repeat1] = STATE(247), - [sym__primitive_identifier] = ACTIONS(1300), - [anon_sym_LPAREN] = ACTIONS(1302), - [anon_sym_RPAREN] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1304), - [anon_sym_LBRACK] = ACTIONS(1308), - [anon_sym_DOLLAR] = ACTIONS(1310), - [aux_sym__non_special_token_token1] = ACTIONS(1312), - [anon_sym_SQUOTE] = ACTIONS(1312), - [anon_sym_as] = ACTIONS(1312), - [anon_sym_async] = ACTIONS(1312), - [anon_sym_await] = ACTIONS(1312), - [anon_sym_break] = ACTIONS(1312), - [anon_sym_const] = ACTIONS(1312), - [anon_sym_continue] = ACTIONS(1312), - [anon_sym_default] = ACTIONS(1312), - [anon_sym_enum] = ACTIONS(1312), - [anon_sym_fn] = ACTIONS(1312), - [anon_sym_for] = ACTIONS(1312), - [anon_sym_if] = ACTIONS(1312), - [anon_sym_impl] = ACTIONS(1312), - [anon_sym_let] = ACTIONS(1312), - [anon_sym_loop] = ACTIONS(1312), - [anon_sym_match] = ACTIONS(1312), - [anon_sym_mod] = ACTIONS(1312), - [anon_sym_pub] = ACTIONS(1312), - [anon_sym_return] = ACTIONS(1312), - [anon_sym_static] = ACTIONS(1312), - [anon_sym_struct] = ACTIONS(1312), - [anon_sym_trait] = ACTIONS(1312), - [anon_sym_type] = ACTIONS(1312), - [anon_sym_union] = ACTIONS(1312), - [anon_sym_unsafe] = ACTIONS(1312), - [anon_sym_use] = ACTIONS(1312), - [anon_sym_where] = ACTIONS(1312), - [anon_sym_while] = ACTIONS(1312), - [sym_mutable_specifier] = ACTIONS(1312), - [sym_integer_literal] = ACTIONS(1314), - [aux_sym_string_literal_token1] = ACTIONS(1316), - [sym_char_literal] = ACTIONS(1314), - [anon_sym_true] = ACTIONS(1318), - [anon_sym_false] = ACTIONS(1318), - [anon_sym_u8] = ACTIONS(1320), - [anon_sym_i8] = ACTIONS(1320), - [anon_sym_u16] = ACTIONS(1320), - [anon_sym_i16] = ACTIONS(1320), - [anon_sym_u32] = ACTIONS(1320), - [anon_sym_i32] = ACTIONS(1320), - [anon_sym_u64] = ACTIONS(1320), - [anon_sym_i64] = ACTIONS(1320), - [anon_sym_u128] = ACTIONS(1320), - [anon_sym_i128] = ACTIONS(1320), - [anon_sym_isize] = ACTIONS(1320), - [anon_sym_usize] = ACTIONS(1320), - [anon_sym_f32] = ACTIONS(1320), - [anon_sym_f64] = ACTIONS(1320), - [anon_sym_bool] = ACTIONS(1320), - [anon_sym_str] = ACTIONS(1320), - [anon_sym_char] = ACTIONS(1320), - [sym_line_comment] = ACTIONS(1172), - [sym__raw_identifier] = ACTIONS(1322), - [sym_self] = ACTIONS(1312), - [sym_super] = ACTIONS(1312), - [sym_crate] = ACTIONS(1312), - [sym_metavariable] = ACTIONS(1324), - [sym_grit_metavariable] = ACTIONS(1326), - [sym_raw_string_literal] = ACTIONS(1314), - [sym_float_literal] = ACTIONS(1314), + [sym__token_pattern] = STATE(262), + [sym_token_tree_pattern] = STATE(262), + [sym_token_binding_pattern] = STATE(262), + [sym_token_repetition_pattern] = STATE(262), + [sym__literal] = STATE(262), + [sym_string_literal] = STATE(652), + [sym_boolean_literal] = STATE(652), + [sym_primitive_type] = STATE(262), + [sym_identifier] = STATE(262), + [aux_sym_token_tree_pattern_repeat1] = STATE(262), + [sym__primitive_identifier] = ACTIONS(1302), + [anon_sym_LPAREN] = ACTIONS(1304), + [anon_sym_LBRACE] = ACTIONS(1306), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_RBRACK] = ACTIONS(1330), + [anon_sym_DOLLAR] = ACTIONS(1312), + [aux_sym__non_special_token_token1] = ACTIONS(1377), + [anon_sym_SQUOTE] = ACTIONS(1377), + [anon_sym_as] = ACTIONS(1377), + [anon_sym_async] = ACTIONS(1377), + [anon_sym_await] = ACTIONS(1377), + [anon_sym_break] = ACTIONS(1377), + [anon_sym_const] = ACTIONS(1377), + [anon_sym_continue] = ACTIONS(1377), + [anon_sym_default] = ACTIONS(1377), + [anon_sym_enum] = ACTIONS(1377), + [anon_sym_fn] = ACTIONS(1377), + [anon_sym_for] = ACTIONS(1377), + [anon_sym_if] = ACTIONS(1377), + [anon_sym_impl] = ACTIONS(1377), + [anon_sym_let] = ACTIONS(1377), + [anon_sym_loop] = ACTIONS(1377), + [anon_sym_match] = ACTIONS(1377), + [anon_sym_mod] = ACTIONS(1377), + [anon_sym_pub] = ACTIONS(1377), + [anon_sym_return] = ACTIONS(1377), + [anon_sym_static] = ACTIONS(1377), + [anon_sym_struct] = ACTIONS(1377), + [anon_sym_trait] = ACTIONS(1377), + [anon_sym_type] = ACTIONS(1377), + [anon_sym_union] = ACTIONS(1377), + [anon_sym_unsafe] = ACTIONS(1377), + [anon_sym_use] = ACTIONS(1377), + [anon_sym_where] = ACTIONS(1377), + [anon_sym_while] = ACTIONS(1377), + [sym_mutable_specifier] = ACTIONS(1377), + [sym_integer_literal] = ACTIONS(1316), + [aux_sym_string_literal_token1] = ACTIONS(1318), + [sym_char_literal] = ACTIONS(1316), + [anon_sym_true] = ACTIONS(1320), + [anon_sym_false] = 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), + [sym_line_comment] = ACTIONS(1112), + [sym__raw_identifier] = ACTIONS(1324), + [sym_self] = ACTIONS(1377), + [sym_super] = ACTIONS(1377), + [sym_crate] = ACTIONS(1377), + [sym_metavariable] = ACTIONS(1326), + [sym_grit_metavariable] = ACTIONS(1328), + [sym_raw_string_literal] = ACTIONS(1316), + [sym_float_literal] = ACTIONS(1316), [sym_block_comment] = ACTIONS(3), }, [262] = { - [sym_attribute_item] = STATE(581), - [sym_bracketed_type] = STATE(2658), - [sym_generic_type] = STATE(2655), - [sym_generic_type_with_turbofish] = STATE(2638), - [sym_macro_invocation] = STATE(1616), - [sym_scoped_identifier] = STATE(1451), - [sym_scoped_type_identifier] = STATE(2231), - [sym_match_arm] = STATE(468), - [sym_last_match_arm] = STATE(2711), - [sym_match_pattern] = STATE(2637), - [sym_const_block] = STATE(1616), - [sym_pattern] = STATE(2278), - [sym_tuple_pattern] = STATE(1616), - [sym_slice_pattern] = STATE(1616), - [sym_tuple_struct_pattern] = STATE(1616), - [sym_struct_pattern] = STATE(1616), - [sym_remaining_field_pattern] = STATE(1616), - [sym_mut_pattern] = STATE(1616), - [sym_range_pattern] = STATE(1616), - [sym_ref_pattern] = STATE(1616), - [sym_captured_pattern] = STATE(1616), - [sym_reference_pattern] = STATE(1616), - [sym_or_pattern] = STATE(1616), - [sym__literal_pattern] = STATE(1496), - [sym_negative_literal] = STATE(1513), - [sym_string_literal] = STATE(1513), - [sym_boolean_literal] = STATE(1513), - [sym_primitive_type] = STATE(1471), - [sym_identifier] = STATE(1428), - [aux_sym_enum_variant_list_repeat1] = STATE(581), - [aux_sym_match_block_repeat1] = STATE(468), - [sym__primitive_identifier] = ACTIONS(842), - [sym_underscore] = ACTIONS(972), - [anon_sym_LPAREN] = ACTIONS(1272), - [anon_sym_LBRACK] = ACTIONS(1276), - [anon_sym_const] = ACTIONS(1278), - [anon_sym_default] = ACTIONS(1280), - [anon_sym_union] = ACTIONS(1280), - [anon_sym_POUND] = ACTIONS(533), - [anon_sym_ref] = ACTIONS(878), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1282), - [anon_sym_AMP] = ACTIONS(1284), - [sym_mutable_specifier] = ACTIONS(980), - [anon_sym_DOT_DOT] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(892), - [sym_integer_literal] = ACTIONS(894), - [aux_sym_string_literal_token1] = ACTIONS(896), - [sym_char_literal] = ACTIONS(894), - [anon_sym_true] = ACTIONS(898), - [anon_sym_false] = ACTIONS(898), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1286), - [sym_super] = ACTIONS(1286), - [sym_crate] = ACTIONS(1286), - [sym_metavariable] = ACTIONS(1288), - [sym_grit_metavariable] = ACTIONS(984), - [sym_raw_string_literal] = ACTIONS(894), - [sym_float_literal] = ACTIONS(894), + [sym__token_pattern] = STATE(231), + [sym_token_tree_pattern] = STATE(231), + [sym_token_binding_pattern] = STATE(231), + [sym_token_repetition_pattern] = STATE(231), + [sym__literal] = STATE(231), + [sym_string_literal] = STATE(652), + [sym_boolean_literal] = STATE(652), + [sym_primitive_type] = STATE(231), + [sym_identifier] = STATE(231), + [aux_sym_token_tree_pattern_repeat1] = STATE(231), + [sym__primitive_identifier] = ACTIONS(1302), + [anon_sym_LPAREN] = ACTIONS(1304), + [anon_sym_LBRACE] = ACTIONS(1306), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_RBRACK] = ACTIONS(1334), + [anon_sym_DOLLAR] = ACTIONS(1312), + [aux_sym__non_special_token_token1] = ACTIONS(1314), + [anon_sym_SQUOTE] = ACTIONS(1314), + [anon_sym_as] = ACTIONS(1314), + [anon_sym_async] = ACTIONS(1314), + [anon_sym_await] = ACTIONS(1314), + [anon_sym_break] = ACTIONS(1314), + [anon_sym_const] = ACTIONS(1314), + [anon_sym_continue] = ACTIONS(1314), + [anon_sym_default] = ACTIONS(1314), + [anon_sym_enum] = ACTIONS(1314), + [anon_sym_fn] = ACTIONS(1314), + [anon_sym_for] = ACTIONS(1314), + [anon_sym_if] = ACTIONS(1314), + [anon_sym_impl] = ACTIONS(1314), + [anon_sym_let] = ACTIONS(1314), + [anon_sym_loop] = ACTIONS(1314), + [anon_sym_match] = ACTIONS(1314), + [anon_sym_mod] = ACTIONS(1314), + [anon_sym_pub] = ACTIONS(1314), + [anon_sym_return] = ACTIONS(1314), + [anon_sym_static] = ACTIONS(1314), + [anon_sym_struct] = ACTIONS(1314), + [anon_sym_trait] = ACTIONS(1314), + [anon_sym_type] = ACTIONS(1314), + [anon_sym_union] = ACTIONS(1314), + [anon_sym_unsafe] = ACTIONS(1314), + [anon_sym_use] = ACTIONS(1314), + [anon_sym_where] = ACTIONS(1314), + [anon_sym_while] = ACTIONS(1314), + [sym_mutable_specifier] = ACTIONS(1314), + [sym_integer_literal] = ACTIONS(1316), + [aux_sym_string_literal_token1] = ACTIONS(1318), + [sym_char_literal] = ACTIONS(1316), + [anon_sym_true] = ACTIONS(1320), + [anon_sym_false] = 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), + [sym_line_comment] = ACTIONS(1112), + [sym__raw_identifier] = ACTIONS(1324), + [sym_self] = ACTIONS(1314), + [sym_super] = ACTIONS(1314), + [sym_crate] = ACTIONS(1314), + [sym_metavariable] = ACTIONS(1326), + [sym_grit_metavariable] = ACTIONS(1328), + [sym_raw_string_literal] = ACTIONS(1316), + [sym_float_literal] = ACTIONS(1316), [sym_block_comment] = ACTIONS(3), }, [263] = { - [sym_token_tree] = STATE(263), - [sym_token_repetition] = STATE(263), - [sym__literal] = STATE(263), - [sym_string_literal] = STATE(656), - [sym_boolean_literal] = STATE(656), - [sym_primitive_type] = STATE(263), - [sym_identifier] = STATE(263), - [aux_sym_token_tree_repeat1] = STATE(263), - [sym__primitive_identifier] = ACTIONS(1338), - [anon_sym_LPAREN] = ACTIONS(1341), - [anon_sym_RPAREN] = ACTIONS(1344), - [anon_sym_LBRACE] = ACTIONS(1346), - [anon_sym_RBRACE] = ACTIONS(1344), - [anon_sym_LBRACK] = ACTIONS(1349), - [anon_sym_RBRACK] = ACTIONS(1344), - [anon_sym_DOLLAR] = ACTIONS(1352), - [aux_sym__non_special_token_token1] = ACTIONS(1355), - [anon_sym_SQUOTE] = ACTIONS(1355), - [anon_sym_as] = ACTIONS(1355), - [anon_sym_async] = ACTIONS(1355), - [anon_sym_await] = ACTIONS(1355), - [anon_sym_break] = ACTIONS(1355), - [anon_sym_const] = ACTIONS(1355), - [anon_sym_continue] = ACTIONS(1355), - [anon_sym_default] = ACTIONS(1355), - [anon_sym_enum] = ACTIONS(1355), - [anon_sym_fn] = ACTIONS(1355), - [anon_sym_for] = ACTIONS(1355), - [anon_sym_if] = ACTIONS(1355), - [anon_sym_impl] = ACTIONS(1355), - [anon_sym_let] = ACTIONS(1355), - [anon_sym_loop] = ACTIONS(1355), - [anon_sym_match] = ACTIONS(1355), - [anon_sym_mod] = ACTIONS(1355), - [anon_sym_pub] = ACTIONS(1355), - [anon_sym_return] = ACTIONS(1355), - [anon_sym_static] = ACTIONS(1355), - [anon_sym_struct] = ACTIONS(1355), - [anon_sym_trait] = ACTIONS(1355), - [anon_sym_type] = ACTIONS(1355), - [anon_sym_union] = ACTIONS(1355), - [anon_sym_unsafe] = ACTIONS(1355), - [anon_sym_use] = ACTIONS(1355), - [anon_sym_where] = ACTIONS(1355), - [anon_sym_while] = ACTIONS(1355), - [sym_mutable_specifier] = ACTIONS(1355), - [sym_integer_literal] = ACTIONS(1358), - [aux_sym_string_literal_token1] = ACTIONS(1361), - [sym_char_literal] = ACTIONS(1358), - [anon_sym_true] = ACTIONS(1364), - [anon_sym_false] = ACTIONS(1364), - [anon_sym_u8] = ACTIONS(1367), - [anon_sym_i8] = ACTIONS(1367), - [anon_sym_u16] = ACTIONS(1367), - [anon_sym_i16] = ACTIONS(1367), - [anon_sym_u32] = ACTIONS(1367), - [anon_sym_i32] = ACTIONS(1367), - [anon_sym_u64] = ACTIONS(1367), - [anon_sym_i64] = ACTIONS(1367), - [anon_sym_u128] = ACTIONS(1367), - [anon_sym_i128] = ACTIONS(1367), - [anon_sym_isize] = ACTIONS(1367), - [anon_sym_usize] = ACTIONS(1367), - [anon_sym_f32] = ACTIONS(1367), - [anon_sym_f64] = ACTIONS(1367), - [anon_sym_bool] = ACTIONS(1367), - [anon_sym_str] = ACTIONS(1367), - [anon_sym_char] = ACTIONS(1367), - [sym_line_comment] = ACTIONS(1172), - [sym__raw_identifier] = ACTIONS(1370), - [sym_self] = ACTIONS(1355), - [sym_super] = ACTIONS(1355), - [sym_crate] = ACTIONS(1355), - [sym_metavariable] = ACTIONS(1373), - [sym_grit_metavariable] = ACTIONS(1376), - [sym_raw_string_literal] = ACTIONS(1358), - [sym_float_literal] = ACTIONS(1358), + [sym__token_pattern] = STATE(258), + [sym_token_tree_pattern] = STATE(258), + [sym_token_binding_pattern] = STATE(258), + [sym_token_repetition_pattern] = STATE(258), + [sym__literal] = STATE(258), + [sym_string_literal] = STATE(652), + [sym_boolean_literal] = STATE(652), + [sym_primitive_type] = STATE(258), + [sym_identifier] = STATE(258), + [aux_sym_token_tree_pattern_repeat1] = STATE(258), + [sym__primitive_identifier] = ACTIONS(1302), + [anon_sym_LPAREN] = ACTIONS(1304), + [anon_sym_RPAREN] = ACTIONS(1330), + [anon_sym_LBRACE] = ACTIONS(1306), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_DOLLAR] = ACTIONS(1312), + [aux_sym__non_special_token_token1] = ACTIONS(1379), + [anon_sym_SQUOTE] = ACTIONS(1379), + [anon_sym_as] = ACTIONS(1379), + [anon_sym_async] = ACTIONS(1379), + [anon_sym_await] = ACTIONS(1379), + [anon_sym_break] = ACTIONS(1379), + [anon_sym_const] = ACTIONS(1379), + [anon_sym_continue] = ACTIONS(1379), + [anon_sym_default] = ACTIONS(1379), + [anon_sym_enum] = ACTIONS(1379), + [anon_sym_fn] = ACTIONS(1379), + [anon_sym_for] = ACTIONS(1379), + [anon_sym_if] = ACTIONS(1379), + [anon_sym_impl] = ACTIONS(1379), + [anon_sym_let] = ACTIONS(1379), + [anon_sym_loop] = ACTIONS(1379), + [anon_sym_match] = ACTIONS(1379), + [anon_sym_mod] = ACTIONS(1379), + [anon_sym_pub] = ACTIONS(1379), + [anon_sym_return] = ACTIONS(1379), + [anon_sym_static] = ACTIONS(1379), + [anon_sym_struct] = ACTIONS(1379), + [anon_sym_trait] = ACTIONS(1379), + [anon_sym_type] = ACTIONS(1379), + [anon_sym_union] = ACTIONS(1379), + [anon_sym_unsafe] = ACTIONS(1379), + [anon_sym_use] = ACTIONS(1379), + [anon_sym_where] = ACTIONS(1379), + [anon_sym_while] = ACTIONS(1379), + [sym_mutable_specifier] = ACTIONS(1379), + [sym_integer_literal] = ACTIONS(1316), + [aux_sym_string_literal_token1] = ACTIONS(1318), + [sym_char_literal] = ACTIONS(1316), + [anon_sym_true] = ACTIONS(1320), + [anon_sym_false] = 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), + [sym_line_comment] = ACTIONS(1112), + [sym__raw_identifier] = ACTIONS(1324), + [sym_self] = ACTIONS(1379), + [sym_super] = ACTIONS(1379), + [sym_crate] = ACTIONS(1379), + [sym_metavariable] = ACTIONS(1326), + [sym_grit_metavariable] = ACTIONS(1328), + [sym_raw_string_literal] = ACTIONS(1316), + [sym_float_literal] = ACTIONS(1316), [sym_block_comment] = ACTIONS(3), }, [264] = { - [sym__token_pattern] = STATE(247), - [sym_token_tree_pattern] = STATE(247), - [sym_token_binding_pattern] = STATE(247), - [sym_token_repetition_pattern] = STATE(247), - [sym__literal] = STATE(247), - [sym_string_literal] = STATE(656), - [sym_boolean_literal] = STATE(656), - [sym_primitive_type] = STATE(247), - [sym_identifier] = STATE(247), - [aux_sym_token_tree_pattern_repeat1] = STATE(247), - [sym__primitive_identifier] = ACTIONS(1300), - [anon_sym_LPAREN] = ACTIONS(1302), - [anon_sym_LBRACE] = ACTIONS(1304), - [anon_sym_LBRACK] = ACTIONS(1308), - [anon_sym_RBRACK] = ACTIONS(1306), - [anon_sym_DOLLAR] = ACTIONS(1310), - [aux_sym__non_special_token_token1] = ACTIONS(1312), - [anon_sym_SQUOTE] = ACTIONS(1312), - [anon_sym_as] = ACTIONS(1312), - [anon_sym_async] = ACTIONS(1312), - [anon_sym_await] = ACTIONS(1312), - [anon_sym_break] = ACTIONS(1312), - [anon_sym_const] = ACTIONS(1312), - [anon_sym_continue] = ACTIONS(1312), - [anon_sym_default] = ACTIONS(1312), - [anon_sym_enum] = ACTIONS(1312), - [anon_sym_fn] = ACTIONS(1312), - [anon_sym_for] = ACTIONS(1312), - [anon_sym_if] = ACTIONS(1312), - [anon_sym_impl] = ACTIONS(1312), - [anon_sym_let] = ACTIONS(1312), - [anon_sym_loop] = ACTIONS(1312), - [anon_sym_match] = ACTIONS(1312), - [anon_sym_mod] = ACTIONS(1312), - [anon_sym_pub] = ACTIONS(1312), - [anon_sym_return] = ACTIONS(1312), - [anon_sym_static] = ACTIONS(1312), - [anon_sym_struct] = ACTIONS(1312), - [anon_sym_trait] = ACTIONS(1312), - [anon_sym_type] = ACTIONS(1312), - [anon_sym_union] = ACTIONS(1312), - [anon_sym_unsafe] = ACTIONS(1312), - [anon_sym_use] = ACTIONS(1312), - [anon_sym_where] = ACTIONS(1312), - [anon_sym_while] = ACTIONS(1312), - [sym_mutable_specifier] = ACTIONS(1312), - [sym_integer_literal] = ACTIONS(1314), - [aux_sym_string_literal_token1] = ACTIONS(1316), - [sym_char_literal] = ACTIONS(1314), - [anon_sym_true] = ACTIONS(1318), - [anon_sym_false] = ACTIONS(1318), - [anon_sym_u8] = ACTIONS(1320), - [anon_sym_i8] = ACTIONS(1320), - [anon_sym_u16] = ACTIONS(1320), - [anon_sym_i16] = ACTIONS(1320), - [anon_sym_u32] = ACTIONS(1320), - [anon_sym_i32] = ACTIONS(1320), - [anon_sym_u64] = ACTIONS(1320), - [anon_sym_i64] = ACTIONS(1320), - [anon_sym_u128] = ACTIONS(1320), - [anon_sym_i128] = ACTIONS(1320), - [anon_sym_isize] = ACTIONS(1320), - [anon_sym_usize] = ACTIONS(1320), - [anon_sym_f32] = ACTIONS(1320), - [anon_sym_f64] = ACTIONS(1320), - [anon_sym_bool] = ACTIONS(1320), - [anon_sym_str] = ACTIONS(1320), - [anon_sym_char] = ACTIONS(1320), - [sym_line_comment] = ACTIONS(1172), - [sym__raw_identifier] = ACTIONS(1322), - [sym_self] = ACTIONS(1312), - [sym_super] = ACTIONS(1312), - [sym_crate] = ACTIONS(1312), - [sym_metavariable] = ACTIONS(1324), - [sym_grit_metavariable] = ACTIONS(1326), - [sym_raw_string_literal] = ACTIONS(1314), - [sym_float_literal] = ACTIONS(1314), - [sym_block_comment] = ACTIONS(3), - }, - [265] = { - [sym_attribute_item] = STATE(581), - [sym_bracketed_type] = STATE(2658), - [sym_generic_type] = STATE(2655), - [sym_generic_type_with_turbofish] = STATE(2638), - [sym_macro_invocation] = STATE(1616), - [sym_scoped_identifier] = STATE(1451), - [sym_scoped_type_identifier] = STATE(2231), - [sym_match_arm] = STATE(468), - [sym_last_match_arm] = STATE(2726), - [sym_match_pattern] = STATE(2637), - [sym_const_block] = STATE(1616), - [sym_pattern] = STATE(2278), - [sym_tuple_pattern] = STATE(1616), - [sym_slice_pattern] = STATE(1616), - [sym_tuple_struct_pattern] = STATE(1616), - [sym_struct_pattern] = STATE(1616), - [sym_remaining_field_pattern] = STATE(1616), - [sym_mut_pattern] = STATE(1616), - [sym_range_pattern] = STATE(1616), - [sym_ref_pattern] = STATE(1616), - [sym_captured_pattern] = STATE(1616), - [sym_reference_pattern] = STATE(1616), - [sym_or_pattern] = STATE(1616), - [sym__literal_pattern] = STATE(1496), - [sym_negative_literal] = STATE(1513), - [sym_string_literal] = STATE(1513), - [sym_boolean_literal] = STATE(1513), - [sym_primitive_type] = STATE(1471), - [sym_identifier] = STATE(1428), - [aux_sym_enum_variant_list_repeat1] = STATE(581), - [aux_sym_match_block_repeat1] = STATE(468), - [sym__primitive_identifier] = ACTIONS(842), - [sym_underscore] = ACTIONS(972), - [anon_sym_LPAREN] = ACTIONS(1272), - [anon_sym_LBRACK] = ACTIONS(1276), - [anon_sym_const] = ACTIONS(1278), - [anon_sym_default] = ACTIONS(1280), - [anon_sym_union] = ACTIONS(1280), + [sym_attribute_item] = STATE(583), + [sym_bracketed_type] = STATE(2684), + [sym_generic_type] = STATE(2683), + [sym_generic_type_with_turbofish] = STATE(2682), + [sym_macro_invocation] = STATE(1615), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier] = STATE(2202), + [sym_match_arm] = STATE(383), + [sym_last_match_arm] = STATE(2715), + [sym_match_pattern] = STATE(2737), + [sym_const_block] = STATE(1615), + [sym_pattern] = STATE(2353), + [sym_tuple_pattern] = STATE(1615), + [sym_slice_pattern] = STATE(1615), + [sym_tuple_struct_pattern] = STATE(1615), + [sym_struct_pattern] = STATE(1615), + [sym_remaining_field_pattern] = STATE(1615), + [sym_mut_pattern] = STATE(1615), + [sym_range_pattern] = STATE(1615), + [sym_ref_pattern] = STATE(1615), + [sym_captured_pattern] = STATE(1615), + [sym_reference_pattern] = STATE(1615), + [sym_or_pattern] = STATE(1615), + [sym__literal_pattern] = STATE(1492), + [sym_negative_literal] = STATE(1521), + [sym_string_literal] = STATE(1521), + [sym_boolean_literal] = STATE(1521), + [sym_primitive_type] = STATE(1479), + [sym_identifier] = STATE(1432), + [aux_sym_enum_variant_list_repeat1] = STATE(583), + [aux_sym_match_block_repeat1] = STATE(383), + [sym__primitive_identifier] = ACTIONS(844), + [sym_underscore] = ACTIONS(974), + [anon_sym_LPAREN] = ACTIONS(1274), + [anon_sym_LBRACK] = ACTIONS(1278), + [anon_sym_const] = ACTIONS(1280), + [anon_sym_default] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1282), [anon_sym_POUND] = ACTIONS(533), - [anon_sym_ref] = ACTIONS(878), + [anon_sym_ref] = ACTIONS(880), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1282), - [anon_sym_AMP] = ACTIONS(1284), - [sym_mutable_specifier] = ACTIONS(980), - [anon_sym_DOT_DOT] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(892), - [sym_integer_literal] = ACTIONS(894), - [aux_sym_string_literal_token1] = ACTIONS(896), - [sym_char_literal] = ACTIONS(894), - [anon_sym_true] = ACTIONS(898), - [anon_sym_false] = ACTIONS(898), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1286), - [sym_super] = ACTIONS(1286), - [sym_crate] = ACTIONS(1286), - [sym_metavariable] = ACTIONS(1288), - [sym_grit_metavariable] = ACTIONS(984), - [sym_raw_string_literal] = ACTIONS(894), - [sym_float_literal] = ACTIONS(894), - [sym_block_comment] = ACTIONS(3), - }, - [266] = { - [sym__token_pattern] = STATE(247), - [sym_token_tree_pattern] = STATE(247), - [sym_token_binding_pattern] = STATE(247), - [sym_token_repetition_pattern] = STATE(247), - [sym__literal] = STATE(247), - [sym_string_literal] = STATE(656), - [sym_boolean_literal] = STATE(656), - [sym_primitive_type] = STATE(247), - [sym_identifier] = STATE(247), - [aux_sym_token_tree_pattern_repeat1] = STATE(247), - [sym__primitive_identifier] = ACTIONS(1300), - [anon_sym_LPAREN] = ACTIONS(1302), - [anon_sym_RPAREN] = ACTIONS(1379), - [anon_sym_LBRACE] = ACTIONS(1304), - [anon_sym_LBRACK] = ACTIONS(1308), - [anon_sym_DOLLAR] = ACTIONS(1310), - [aux_sym__non_special_token_token1] = ACTIONS(1312), - [anon_sym_SQUOTE] = ACTIONS(1312), - [anon_sym_as] = ACTIONS(1312), - [anon_sym_async] = ACTIONS(1312), - [anon_sym_await] = ACTIONS(1312), - [anon_sym_break] = ACTIONS(1312), - [anon_sym_const] = ACTIONS(1312), - [anon_sym_continue] = ACTIONS(1312), - [anon_sym_default] = ACTIONS(1312), - [anon_sym_enum] = ACTIONS(1312), - [anon_sym_fn] = ACTIONS(1312), - [anon_sym_for] = ACTIONS(1312), - [anon_sym_if] = ACTIONS(1312), - [anon_sym_impl] = ACTIONS(1312), - [anon_sym_let] = ACTIONS(1312), - [anon_sym_loop] = ACTIONS(1312), - [anon_sym_match] = ACTIONS(1312), - [anon_sym_mod] = ACTIONS(1312), - [anon_sym_pub] = ACTIONS(1312), - [anon_sym_return] = ACTIONS(1312), - [anon_sym_static] = ACTIONS(1312), - [anon_sym_struct] = ACTIONS(1312), - [anon_sym_trait] = ACTIONS(1312), - [anon_sym_type] = ACTIONS(1312), - [anon_sym_union] = ACTIONS(1312), - [anon_sym_unsafe] = ACTIONS(1312), - [anon_sym_use] = ACTIONS(1312), - [anon_sym_where] = ACTIONS(1312), - [anon_sym_while] = ACTIONS(1312), - [sym_mutable_specifier] = ACTIONS(1312), - [sym_integer_literal] = ACTIONS(1314), - [aux_sym_string_literal_token1] = ACTIONS(1316), - [sym_char_literal] = ACTIONS(1314), - [anon_sym_true] = ACTIONS(1318), - [anon_sym_false] = ACTIONS(1318), - [anon_sym_u8] = ACTIONS(1320), - [anon_sym_i8] = ACTIONS(1320), - [anon_sym_u16] = ACTIONS(1320), - [anon_sym_i16] = ACTIONS(1320), - [anon_sym_u32] = ACTIONS(1320), - [anon_sym_i32] = ACTIONS(1320), - [anon_sym_u64] = ACTIONS(1320), - [anon_sym_i64] = ACTIONS(1320), - [anon_sym_u128] = ACTIONS(1320), - [anon_sym_i128] = ACTIONS(1320), - [anon_sym_isize] = ACTIONS(1320), - [anon_sym_usize] = ACTIONS(1320), - [anon_sym_f32] = ACTIONS(1320), - [anon_sym_f64] = ACTIONS(1320), - [anon_sym_bool] = ACTIONS(1320), - [anon_sym_str] = ACTIONS(1320), - [anon_sym_char] = ACTIONS(1320), - [sym_line_comment] = ACTIONS(1172), - [sym__raw_identifier] = ACTIONS(1322), - [sym_self] = ACTIONS(1312), - [sym_super] = ACTIONS(1312), - [sym_crate] = ACTIONS(1312), - [sym_metavariable] = ACTIONS(1324), - [sym_grit_metavariable] = ACTIONS(1326), - [sym_raw_string_literal] = ACTIONS(1314), - [sym_float_literal] = ACTIONS(1314), + [anon_sym_COLON_COLON] = ACTIONS(1284), + [anon_sym_AMP] = ACTIONS(1286), + [sym_mutable_specifier] = ACTIONS(982), + [anon_sym_DOT_DOT] = ACTIONS(984), + [anon_sym_DASH] = ACTIONS(894), + [sym_integer_literal] = ACTIONS(896), + [aux_sym_string_literal_token1] = ACTIONS(898), + [sym_char_literal] = ACTIONS(896), + [anon_sym_true] = ACTIONS(900), + [anon_sym_false] = ACTIONS(900), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1288), + [sym_super] = ACTIONS(1288), + [sym_crate] = ACTIONS(1288), + [sym_metavariable] = ACTIONS(1290), + [sym_grit_metavariable] = ACTIONS(986), + [sym_raw_string_literal] = ACTIONS(896), + [sym_float_literal] = ACTIONS(896), [sym_block_comment] = ACTIONS(3), }, - [267] = { - [sym__token_pattern] = STATE(266), - [sym_token_tree_pattern] = STATE(266), - [sym_token_binding_pattern] = STATE(266), - [sym_token_repetition_pattern] = STATE(266), - [sym__literal] = STATE(266), - [sym_string_literal] = STATE(656), - [sym_boolean_literal] = STATE(656), - [sym_primitive_type] = STATE(266), - [sym_identifier] = STATE(266), - [aux_sym_token_tree_pattern_repeat1] = STATE(266), - [sym__primitive_identifier] = ACTIONS(1300), - [anon_sym_LPAREN] = ACTIONS(1302), + [265] = { + [sym__token_pattern] = STATE(269), + [sym_token_tree_pattern] = STATE(269), + [sym_token_binding_pattern] = STATE(269), + [sym_token_repetition_pattern] = STATE(269), + [sym__literal] = STATE(269), + [sym_string_literal] = STATE(652), + [sym_boolean_literal] = STATE(652), + [sym_primitive_type] = STATE(269), + [sym_identifier] = STATE(269), + [aux_sym_token_tree_pattern_repeat1] = STATE(269), + [sym__primitive_identifier] = ACTIONS(1302), + [anon_sym_LPAREN] = ACTIONS(1304), [anon_sym_RPAREN] = ACTIONS(1381), - [anon_sym_LBRACE] = ACTIONS(1304), - [anon_sym_LBRACK] = ACTIONS(1308), - [anon_sym_DOLLAR] = ACTIONS(1310), + [anon_sym_LBRACE] = ACTIONS(1306), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_DOLLAR] = ACTIONS(1312), [aux_sym__non_special_token_token1] = ACTIONS(1383), [anon_sym_SQUOTE] = ACTIONS(1383), [anon_sym_as] = ACTIONS(1383), @@ -48814,10157 +48721,9370 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(1383), [anon_sym_while] = ACTIONS(1383), [sym_mutable_specifier] = ACTIONS(1383), - [sym_integer_literal] = ACTIONS(1314), - [aux_sym_string_literal_token1] = ACTIONS(1316), - [sym_char_literal] = ACTIONS(1314), - [anon_sym_true] = ACTIONS(1318), - [anon_sym_false] = ACTIONS(1318), - [anon_sym_u8] = ACTIONS(1320), - [anon_sym_i8] = ACTIONS(1320), - [anon_sym_u16] = ACTIONS(1320), - [anon_sym_i16] = ACTIONS(1320), - [anon_sym_u32] = ACTIONS(1320), - [anon_sym_i32] = ACTIONS(1320), - [anon_sym_u64] = ACTIONS(1320), - [anon_sym_i64] = ACTIONS(1320), - [anon_sym_u128] = ACTIONS(1320), - [anon_sym_i128] = ACTIONS(1320), - [anon_sym_isize] = ACTIONS(1320), - [anon_sym_usize] = ACTIONS(1320), - [anon_sym_f32] = ACTIONS(1320), - [anon_sym_f64] = ACTIONS(1320), - [anon_sym_bool] = ACTIONS(1320), - [anon_sym_str] = ACTIONS(1320), - [anon_sym_char] = ACTIONS(1320), - [sym_line_comment] = ACTIONS(1172), - [sym__raw_identifier] = ACTIONS(1322), + [sym_integer_literal] = ACTIONS(1316), + [aux_sym_string_literal_token1] = ACTIONS(1318), + [sym_char_literal] = ACTIONS(1316), + [anon_sym_true] = ACTIONS(1320), + [anon_sym_false] = 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), + [sym_line_comment] = ACTIONS(1112), + [sym__raw_identifier] = ACTIONS(1324), [sym_self] = ACTIONS(1383), [sym_super] = ACTIONS(1383), [sym_crate] = ACTIONS(1383), - [sym_metavariable] = ACTIONS(1324), - [sym_grit_metavariable] = ACTIONS(1326), - [sym_raw_string_literal] = ACTIONS(1314), - [sym_float_literal] = ACTIONS(1314), + [sym_metavariable] = ACTIONS(1326), + [sym_grit_metavariable] = ACTIONS(1328), + [sym_raw_string_literal] = ACTIONS(1316), + [sym_float_literal] = ACTIONS(1316), [sym_block_comment] = ACTIONS(3), }, - [268] = { - [sym_delim_token_tree] = STATE(268), - [sym__delim_tokens] = STATE(268), - [sym__non_delim_token] = STATE(268), - [sym__literal] = STATE(268), - [sym_string_literal] = STATE(662), - [sym_boolean_literal] = STATE(662), - [sym_primitive_type] = STATE(268), - [sym_identifier] = STATE(268), - [aux_sym_delim_token_tree_repeat1] = STATE(268), - [sym__primitive_identifier] = ACTIONS(1385), - [anon_sym_LPAREN] = ACTIONS(1388), - [anon_sym_RPAREN] = ACTIONS(1391), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_RBRACE] = ACTIONS(1391), - [anon_sym_LBRACK] = ACTIONS(1396), - [anon_sym_RBRACK] = ACTIONS(1391), - [anon_sym_DOLLAR] = ACTIONS(1399), - [aux_sym__non_special_token_token1] = ACTIONS(1402), - [anon_sym_SQUOTE] = ACTIONS(1402), - [anon_sym_as] = ACTIONS(1402), - [anon_sym_async] = ACTIONS(1402), - [anon_sym_await] = ACTIONS(1402), - [anon_sym_break] = ACTIONS(1402), - [anon_sym_const] = ACTIONS(1402), - [anon_sym_continue] = ACTIONS(1402), - [anon_sym_default] = ACTIONS(1402), - [anon_sym_enum] = ACTIONS(1402), - [anon_sym_fn] = ACTIONS(1402), - [anon_sym_for] = ACTIONS(1402), - [anon_sym_if] = ACTIONS(1402), - [anon_sym_impl] = ACTIONS(1402), - [anon_sym_let] = ACTIONS(1402), - [anon_sym_loop] = ACTIONS(1402), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_mod] = ACTIONS(1402), - [anon_sym_pub] = ACTIONS(1402), - [anon_sym_return] = ACTIONS(1402), - [anon_sym_static] = ACTIONS(1402), - [anon_sym_struct] = ACTIONS(1402), - [anon_sym_trait] = ACTIONS(1402), - [anon_sym_type] = ACTIONS(1402), - [anon_sym_union] = ACTIONS(1402), - [anon_sym_unsafe] = ACTIONS(1402), - [anon_sym_use] = ACTIONS(1402), - [anon_sym_where] = ACTIONS(1402), - [anon_sym_while] = ACTIONS(1402), - [sym_mutable_specifier] = ACTIONS(1402), - [sym_integer_literal] = ACTIONS(1405), - [aux_sym_string_literal_token1] = ACTIONS(1408), - [sym_char_literal] = ACTIONS(1405), - [anon_sym_true] = ACTIONS(1411), - [anon_sym_false] = ACTIONS(1411), - [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), - [sym_line_comment] = ACTIONS(1172), - [sym__raw_identifier] = ACTIONS(1417), - [sym_self] = ACTIONS(1402), - [sym_super] = ACTIONS(1402), - [sym_crate] = ACTIONS(1402), - [sym_grit_metavariable] = ACTIONS(1420), - [sym_raw_string_literal] = ACTIONS(1405), - [sym_float_literal] = ACTIONS(1405), + [266] = { + [sym__token_pattern] = STATE(231), + [sym_token_tree_pattern] = STATE(231), + [sym_token_binding_pattern] = STATE(231), + [sym_token_repetition_pattern] = STATE(231), + [sym__literal] = STATE(231), + [sym_string_literal] = STATE(652), + [sym_boolean_literal] = STATE(652), + [sym_primitive_type] = STATE(231), + [sym_identifier] = STATE(231), + [aux_sym_token_tree_pattern_repeat1] = STATE(231), + [sym__primitive_identifier] = ACTIONS(1302), + [anon_sym_LPAREN] = ACTIONS(1304), + [anon_sym_RPAREN] = ACTIONS(1385), + [anon_sym_LBRACE] = ACTIONS(1306), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_DOLLAR] = ACTIONS(1312), + [aux_sym__non_special_token_token1] = ACTIONS(1314), + [anon_sym_SQUOTE] = ACTIONS(1314), + [anon_sym_as] = ACTIONS(1314), + [anon_sym_async] = ACTIONS(1314), + [anon_sym_await] = ACTIONS(1314), + [anon_sym_break] = ACTIONS(1314), + [anon_sym_const] = ACTIONS(1314), + [anon_sym_continue] = ACTIONS(1314), + [anon_sym_default] = ACTIONS(1314), + [anon_sym_enum] = ACTIONS(1314), + [anon_sym_fn] = ACTIONS(1314), + [anon_sym_for] = ACTIONS(1314), + [anon_sym_if] = ACTIONS(1314), + [anon_sym_impl] = ACTIONS(1314), + [anon_sym_let] = ACTIONS(1314), + [anon_sym_loop] = ACTIONS(1314), + [anon_sym_match] = ACTIONS(1314), + [anon_sym_mod] = ACTIONS(1314), + [anon_sym_pub] = ACTIONS(1314), + [anon_sym_return] = ACTIONS(1314), + [anon_sym_static] = ACTIONS(1314), + [anon_sym_struct] = ACTIONS(1314), + [anon_sym_trait] = ACTIONS(1314), + [anon_sym_type] = ACTIONS(1314), + [anon_sym_union] = ACTIONS(1314), + [anon_sym_unsafe] = ACTIONS(1314), + [anon_sym_use] = ACTIONS(1314), + [anon_sym_where] = ACTIONS(1314), + [anon_sym_while] = ACTIONS(1314), + [sym_mutable_specifier] = ACTIONS(1314), + [sym_integer_literal] = ACTIONS(1316), + [aux_sym_string_literal_token1] = ACTIONS(1318), + [sym_char_literal] = ACTIONS(1316), + [anon_sym_true] = ACTIONS(1320), + [anon_sym_false] = 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), + [sym_line_comment] = ACTIONS(1112), + [sym__raw_identifier] = ACTIONS(1324), + [sym_self] = ACTIONS(1314), + [sym_super] = ACTIONS(1314), + [sym_crate] = ACTIONS(1314), + [sym_metavariable] = ACTIONS(1326), + [sym_grit_metavariable] = ACTIONS(1328), + [sym_raw_string_literal] = ACTIONS(1316), + [sym_float_literal] = ACTIONS(1316), [sym_block_comment] = ACTIONS(3), }, - [269] = { + [267] = { [sym__token_pattern] = STATE(255), [sym_token_tree_pattern] = STATE(255), [sym_token_binding_pattern] = STATE(255), [sym_token_repetition_pattern] = STATE(255), [sym__literal] = STATE(255), - [sym_string_literal] = STATE(656), - [sym_boolean_literal] = STATE(656), + [sym_string_literal] = STATE(652), + [sym_boolean_literal] = STATE(652), [sym_primitive_type] = STATE(255), [sym_identifier] = STATE(255), [aux_sym_token_tree_pattern_repeat1] = STATE(255), - [sym__primitive_identifier] = ACTIONS(1300), - [anon_sym_LPAREN] = ACTIONS(1302), - [anon_sym_LBRACE] = ACTIONS(1304), - [anon_sym_LBRACK] = ACTIONS(1308), - [anon_sym_RBRACK] = ACTIONS(1423), - [anon_sym_DOLLAR] = ACTIONS(1310), - [aux_sym__non_special_token_token1] = ACTIONS(1425), - [anon_sym_SQUOTE] = ACTIONS(1425), - [anon_sym_as] = ACTIONS(1425), - [anon_sym_async] = ACTIONS(1425), - [anon_sym_await] = ACTIONS(1425), - [anon_sym_break] = ACTIONS(1425), - [anon_sym_const] = ACTIONS(1425), - [anon_sym_continue] = ACTIONS(1425), - [anon_sym_default] = ACTIONS(1425), - [anon_sym_enum] = ACTIONS(1425), - [anon_sym_fn] = ACTIONS(1425), - [anon_sym_for] = ACTIONS(1425), - [anon_sym_if] = ACTIONS(1425), - [anon_sym_impl] = ACTIONS(1425), - [anon_sym_let] = ACTIONS(1425), - [anon_sym_loop] = ACTIONS(1425), - [anon_sym_match] = ACTIONS(1425), - [anon_sym_mod] = ACTIONS(1425), - [anon_sym_pub] = ACTIONS(1425), - [anon_sym_return] = ACTIONS(1425), - [anon_sym_static] = ACTIONS(1425), - [anon_sym_struct] = ACTIONS(1425), - [anon_sym_trait] = ACTIONS(1425), - [anon_sym_type] = ACTIONS(1425), - [anon_sym_union] = ACTIONS(1425), - [anon_sym_unsafe] = ACTIONS(1425), - [anon_sym_use] = ACTIONS(1425), - [anon_sym_where] = ACTIONS(1425), - [anon_sym_while] = ACTIONS(1425), - [sym_mutable_specifier] = ACTIONS(1425), - [sym_integer_literal] = ACTIONS(1314), - [aux_sym_string_literal_token1] = ACTIONS(1316), - [sym_char_literal] = ACTIONS(1314), - [anon_sym_true] = ACTIONS(1318), - [anon_sym_false] = ACTIONS(1318), - [anon_sym_u8] = ACTIONS(1320), - [anon_sym_i8] = ACTIONS(1320), - [anon_sym_u16] = ACTIONS(1320), - [anon_sym_i16] = ACTIONS(1320), - [anon_sym_u32] = ACTIONS(1320), - [anon_sym_i32] = ACTIONS(1320), - [anon_sym_u64] = ACTIONS(1320), - [anon_sym_i64] = ACTIONS(1320), - [anon_sym_u128] = ACTIONS(1320), - [anon_sym_i128] = ACTIONS(1320), - [anon_sym_isize] = ACTIONS(1320), - [anon_sym_usize] = ACTIONS(1320), - [anon_sym_f32] = ACTIONS(1320), - [anon_sym_f64] = ACTIONS(1320), - [anon_sym_bool] = ACTIONS(1320), - [anon_sym_str] = ACTIONS(1320), - [anon_sym_char] = ACTIONS(1320), - [sym_line_comment] = ACTIONS(1172), - [sym__raw_identifier] = ACTIONS(1322), - [sym_self] = ACTIONS(1425), - [sym_super] = ACTIONS(1425), - [sym_crate] = ACTIONS(1425), - [sym_metavariable] = ACTIONS(1324), - [sym_grit_metavariable] = ACTIONS(1326), - [sym_raw_string_literal] = ACTIONS(1314), - [sym_float_literal] = ACTIONS(1314), + [sym__primitive_identifier] = ACTIONS(1302), + [anon_sym_LPAREN] = ACTIONS(1304), + [anon_sym_LBRACE] = ACTIONS(1306), + [anon_sym_RBRACE] = ACTIONS(1381), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_DOLLAR] = ACTIONS(1312), + [aux_sym__non_special_token_token1] = ACTIONS(1387), + [anon_sym_SQUOTE] = ACTIONS(1387), + [anon_sym_as] = ACTIONS(1387), + [anon_sym_async] = ACTIONS(1387), + [anon_sym_await] = ACTIONS(1387), + [anon_sym_break] = ACTIONS(1387), + [anon_sym_const] = ACTIONS(1387), + [anon_sym_continue] = ACTIONS(1387), + [anon_sym_default] = ACTIONS(1387), + [anon_sym_enum] = ACTIONS(1387), + [anon_sym_fn] = ACTIONS(1387), + [anon_sym_for] = ACTIONS(1387), + [anon_sym_if] = ACTIONS(1387), + [anon_sym_impl] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_loop] = ACTIONS(1387), + [anon_sym_match] = ACTIONS(1387), + [anon_sym_mod] = ACTIONS(1387), + [anon_sym_pub] = ACTIONS(1387), + [anon_sym_return] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1387), + [anon_sym_struct] = ACTIONS(1387), + [anon_sym_trait] = ACTIONS(1387), + [anon_sym_type] = ACTIONS(1387), + [anon_sym_union] = ACTIONS(1387), + [anon_sym_unsafe] = ACTIONS(1387), + [anon_sym_use] = ACTIONS(1387), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_while] = ACTIONS(1387), + [sym_mutable_specifier] = ACTIONS(1387), + [sym_integer_literal] = ACTIONS(1316), + [aux_sym_string_literal_token1] = ACTIONS(1318), + [sym_char_literal] = ACTIONS(1316), + [anon_sym_true] = ACTIONS(1320), + [anon_sym_false] = 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), + [sym_line_comment] = ACTIONS(1112), + [sym__raw_identifier] = ACTIONS(1324), + [sym_self] = ACTIONS(1387), + [sym_super] = ACTIONS(1387), + [sym_crate] = ACTIONS(1387), + [sym_metavariable] = ACTIONS(1326), + [sym_grit_metavariable] = ACTIONS(1328), + [sym_raw_string_literal] = ACTIONS(1316), + [sym_float_literal] = ACTIONS(1316), + [sym_block_comment] = ACTIONS(3), + }, + [268] = { + [sym__token_pattern] = STATE(270), + [sym_token_tree_pattern] = STATE(270), + [sym_token_binding_pattern] = STATE(270), + [sym_token_repetition_pattern] = STATE(270), + [sym__literal] = STATE(270), + [sym_string_literal] = STATE(652), + [sym_boolean_literal] = STATE(652), + [sym_primitive_type] = STATE(270), + [sym_identifier] = STATE(270), + [aux_sym_token_tree_pattern_repeat1] = STATE(270), + [sym__primitive_identifier] = ACTIONS(1302), + [anon_sym_LPAREN] = ACTIONS(1304), + [anon_sym_LBRACE] = ACTIONS(1306), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_RBRACK] = ACTIONS(1381), + [anon_sym_DOLLAR] = ACTIONS(1312), + [aux_sym__non_special_token_token1] = ACTIONS(1389), + [anon_sym_SQUOTE] = ACTIONS(1389), + [anon_sym_as] = ACTIONS(1389), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_await] = ACTIONS(1389), + [anon_sym_break] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_continue] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1389), + [anon_sym_enum] = ACTIONS(1389), + [anon_sym_fn] = ACTIONS(1389), + [anon_sym_for] = ACTIONS(1389), + [anon_sym_if] = ACTIONS(1389), + [anon_sym_impl] = ACTIONS(1389), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_loop] = ACTIONS(1389), + [anon_sym_match] = ACTIONS(1389), + [anon_sym_mod] = ACTIONS(1389), + [anon_sym_pub] = ACTIONS(1389), + [anon_sym_return] = ACTIONS(1389), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_struct] = ACTIONS(1389), + [anon_sym_trait] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_union] = ACTIONS(1389), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_use] = ACTIONS(1389), + [anon_sym_where] = ACTIONS(1389), + [anon_sym_while] = ACTIONS(1389), + [sym_mutable_specifier] = ACTIONS(1389), + [sym_integer_literal] = ACTIONS(1316), + [aux_sym_string_literal_token1] = ACTIONS(1318), + [sym_char_literal] = ACTIONS(1316), + [anon_sym_true] = ACTIONS(1320), + [anon_sym_false] = 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), + [sym_line_comment] = ACTIONS(1112), + [sym__raw_identifier] = ACTIONS(1324), + [sym_self] = ACTIONS(1389), + [sym_super] = ACTIONS(1389), + [sym_crate] = ACTIONS(1389), + [sym_metavariable] = ACTIONS(1326), + [sym_grit_metavariable] = ACTIONS(1328), + [sym_raw_string_literal] = ACTIONS(1316), + [sym_float_literal] = ACTIONS(1316), + [sym_block_comment] = ACTIONS(3), + }, + [269] = { + [sym__token_pattern] = STATE(231), + [sym_token_tree_pattern] = STATE(231), + [sym_token_binding_pattern] = STATE(231), + [sym_token_repetition_pattern] = STATE(231), + [sym__literal] = STATE(231), + [sym_string_literal] = STATE(652), + [sym_boolean_literal] = STATE(652), + [sym_primitive_type] = STATE(231), + [sym_identifier] = STATE(231), + [aux_sym_token_tree_pattern_repeat1] = STATE(231), + [sym__primitive_identifier] = ACTIONS(1302), + [anon_sym_LPAREN] = ACTIONS(1304), + [anon_sym_RPAREN] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(1306), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_DOLLAR] = ACTIONS(1312), + [aux_sym__non_special_token_token1] = ACTIONS(1314), + [anon_sym_SQUOTE] = ACTIONS(1314), + [anon_sym_as] = ACTIONS(1314), + [anon_sym_async] = ACTIONS(1314), + [anon_sym_await] = ACTIONS(1314), + [anon_sym_break] = ACTIONS(1314), + [anon_sym_const] = ACTIONS(1314), + [anon_sym_continue] = ACTIONS(1314), + [anon_sym_default] = ACTIONS(1314), + [anon_sym_enum] = ACTIONS(1314), + [anon_sym_fn] = ACTIONS(1314), + [anon_sym_for] = ACTIONS(1314), + [anon_sym_if] = ACTIONS(1314), + [anon_sym_impl] = ACTIONS(1314), + [anon_sym_let] = ACTIONS(1314), + [anon_sym_loop] = ACTIONS(1314), + [anon_sym_match] = ACTIONS(1314), + [anon_sym_mod] = ACTIONS(1314), + [anon_sym_pub] = ACTIONS(1314), + [anon_sym_return] = ACTIONS(1314), + [anon_sym_static] = ACTIONS(1314), + [anon_sym_struct] = ACTIONS(1314), + [anon_sym_trait] = ACTIONS(1314), + [anon_sym_type] = ACTIONS(1314), + [anon_sym_union] = ACTIONS(1314), + [anon_sym_unsafe] = ACTIONS(1314), + [anon_sym_use] = ACTIONS(1314), + [anon_sym_where] = ACTIONS(1314), + [anon_sym_while] = ACTIONS(1314), + [sym_mutable_specifier] = ACTIONS(1314), + [sym_integer_literal] = ACTIONS(1316), + [aux_sym_string_literal_token1] = ACTIONS(1318), + [sym_char_literal] = ACTIONS(1316), + [anon_sym_true] = ACTIONS(1320), + [anon_sym_false] = 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), + [sym_line_comment] = ACTIONS(1112), + [sym__raw_identifier] = ACTIONS(1324), + [sym_self] = ACTIONS(1314), + [sym_super] = ACTIONS(1314), + [sym_crate] = ACTIONS(1314), + [sym_metavariable] = ACTIONS(1326), + [sym_grit_metavariable] = ACTIONS(1328), + [sym_raw_string_literal] = ACTIONS(1316), + [sym_float_literal] = ACTIONS(1316), [sym_block_comment] = ACTIONS(3), }, [270] = { - [sym_attribute_item] = STATE(581), - [sym_bracketed_type] = STATE(2658), - [sym_generic_type] = STATE(2655), - [sym_generic_type_with_turbofish] = STATE(2638), - [sym_macro_invocation] = STATE(1616), - [sym_scoped_identifier] = STATE(1451), - [sym_scoped_type_identifier] = STATE(2231), - [sym_match_arm] = STATE(468), - [sym_last_match_arm] = STATE(2672), - [sym_match_pattern] = STATE(2637), - [sym_const_block] = STATE(1616), - [sym_pattern] = STATE(2278), - [sym_tuple_pattern] = STATE(1616), - [sym_slice_pattern] = STATE(1616), - [sym_tuple_struct_pattern] = STATE(1616), - [sym_struct_pattern] = STATE(1616), - [sym_remaining_field_pattern] = STATE(1616), - [sym_mut_pattern] = STATE(1616), - [sym_range_pattern] = STATE(1616), - [sym_ref_pattern] = STATE(1616), - [sym_captured_pattern] = STATE(1616), - [sym_reference_pattern] = STATE(1616), - [sym_or_pattern] = STATE(1616), - [sym__literal_pattern] = STATE(1496), - [sym_negative_literal] = STATE(1513), - [sym_string_literal] = STATE(1513), - [sym_boolean_literal] = STATE(1513), - [sym_primitive_type] = STATE(1471), - [sym_identifier] = STATE(1428), - [aux_sym_enum_variant_list_repeat1] = STATE(581), - [aux_sym_match_block_repeat1] = STATE(468), - [sym__primitive_identifier] = ACTIONS(842), - [sym_underscore] = ACTIONS(972), - [anon_sym_LPAREN] = ACTIONS(1272), - [anon_sym_LBRACK] = ACTIONS(1276), - [anon_sym_const] = ACTIONS(1278), - [anon_sym_default] = ACTIONS(1280), - [anon_sym_union] = ACTIONS(1280), - [anon_sym_POUND] = ACTIONS(533), - [anon_sym_ref] = ACTIONS(878), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1282), - [anon_sym_AMP] = ACTIONS(1284), - [sym_mutable_specifier] = ACTIONS(980), - [anon_sym_DOT_DOT] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(892), - [sym_integer_literal] = ACTIONS(894), - [aux_sym_string_literal_token1] = ACTIONS(896), - [sym_char_literal] = ACTIONS(894), - [anon_sym_true] = ACTIONS(898), - [anon_sym_false] = ACTIONS(898), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1286), - [sym_super] = ACTIONS(1286), - [sym_crate] = ACTIONS(1286), - [sym_metavariable] = ACTIONS(1288), - [sym_grit_metavariable] = ACTIONS(984), - [sym_raw_string_literal] = ACTIONS(894), - [sym_float_literal] = ACTIONS(894), + [sym__token_pattern] = STATE(231), + [sym_token_tree_pattern] = STATE(231), + [sym_token_binding_pattern] = STATE(231), + [sym_token_repetition_pattern] = STATE(231), + [sym__literal] = STATE(231), + [sym_string_literal] = STATE(652), + [sym_boolean_literal] = STATE(652), + [sym_primitive_type] = STATE(231), + [sym_identifier] = STATE(231), + [aux_sym_token_tree_pattern_repeat1] = STATE(231), + [sym__primitive_identifier] = ACTIONS(1302), + [anon_sym_LPAREN] = ACTIONS(1304), + [anon_sym_LBRACE] = ACTIONS(1306), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_RBRACK] = ACTIONS(1308), + [anon_sym_DOLLAR] = ACTIONS(1312), + [aux_sym__non_special_token_token1] = ACTIONS(1314), + [anon_sym_SQUOTE] = ACTIONS(1314), + [anon_sym_as] = ACTIONS(1314), + [anon_sym_async] = ACTIONS(1314), + [anon_sym_await] = ACTIONS(1314), + [anon_sym_break] = ACTIONS(1314), + [anon_sym_const] = ACTIONS(1314), + [anon_sym_continue] = ACTIONS(1314), + [anon_sym_default] = ACTIONS(1314), + [anon_sym_enum] = ACTIONS(1314), + [anon_sym_fn] = ACTIONS(1314), + [anon_sym_for] = ACTIONS(1314), + [anon_sym_if] = ACTIONS(1314), + [anon_sym_impl] = ACTIONS(1314), + [anon_sym_let] = ACTIONS(1314), + [anon_sym_loop] = ACTIONS(1314), + [anon_sym_match] = ACTIONS(1314), + [anon_sym_mod] = ACTIONS(1314), + [anon_sym_pub] = ACTIONS(1314), + [anon_sym_return] = ACTIONS(1314), + [anon_sym_static] = ACTIONS(1314), + [anon_sym_struct] = ACTIONS(1314), + [anon_sym_trait] = ACTIONS(1314), + [anon_sym_type] = ACTIONS(1314), + [anon_sym_union] = ACTIONS(1314), + [anon_sym_unsafe] = ACTIONS(1314), + [anon_sym_use] = ACTIONS(1314), + [anon_sym_where] = ACTIONS(1314), + [anon_sym_while] = ACTIONS(1314), + [sym_mutable_specifier] = ACTIONS(1314), + [sym_integer_literal] = ACTIONS(1316), + [aux_sym_string_literal_token1] = ACTIONS(1318), + [sym_char_literal] = ACTIONS(1316), + [anon_sym_true] = ACTIONS(1320), + [anon_sym_false] = 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), + [sym_line_comment] = ACTIONS(1112), + [sym__raw_identifier] = ACTIONS(1324), + [sym_self] = ACTIONS(1314), + [sym_super] = ACTIONS(1314), + [sym_crate] = ACTIONS(1314), + [sym_metavariable] = ACTIONS(1326), + [sym_grit_metavariable] = ACTIONS(1328), + [sym_raw_string_literal] = ACTIONS(1316), + [sym_float_literal] = ACTIONS(1316), [sym_block_comment] = ACTIONS(3), }, [271] = { - [sym__token_pattern] = STATE(260), - [sym_token_tree_pattern] = STATE(260), - [sym_token_binding_pattern] = STATE(260), - [sym_token_repetition_pattern] = STATE(260), - [sym__literal] = STATE(260), - [sym_string_literal] = STATE(656), - [sym_boolean_literal] = STATE(656), - [sym_primitive_type] = STATE(260), - [sym_identifier] = STATE(260), - [aux_sym_token_tree_pattern_repeat1] = STATE(260), - [sym__primitive_identifier] = ACTIONS(1300), - [anon_sym_LPAREN] = ACTIONS(1302), - [anon_sym_LBRACE] = ACTIONS(1304), - [anon_sym_RBRACE] = ACTIONS(1423), - [anon_sym_LBRACK] = ACTIONS(1308), - [anon_sym_DOLLAR] = ACTIONS(1310), - [aux_sym__non_special_token_token1] = ACTIONS(1427), - [anon_sym_SQUOTE] = ACTIONS(1427), - [anon_sym_as] = ACTIONS(1427), - [anon_sym_async] = ACTIONS(1427), - [anon_sym_await] = ACTIONS(1427), - [anon_sym_break] = ACTIONS(1427), - [anon_sym_const] = ACTIONS(1427), - [anon_sym_continue] = ACTIONS(1427), - [anon_sym_default] = ACTIONS(1427), - [anon_sym_enum] = ACTIONS(1427), - [anon_sym_fn] = ACTIONS(1427), - [anon_sym_for] = ACTIONS(1427), - [anon_sym_if] = ACTIONS(1427), - [anon_sym_impl] = ACTIONS(1427), - [anon_sym_let] = ACTIONS(1427), - [anon_sym_loop] = ACTIONS(1427), - [anon_sym_match] = ACTIONS(1427), - [anon_sym_mod] = ACTIONS(1427), - [anon_sym_pub] = ACTIONS(1427), - [anon_sym_return] = ACTIONS(1427), - [anon_sym_static] = ACTIONS(1427), - [anon_sym_struct] = ACTIONS(1427), - [anon_sym_trait] = ACTIONS(1427), - [anon_sym_type] = ACTIONS(1427), - [anon_sym_union] = ACTIONS(1427), - [anon_sym_unsafe] = ACTIONS(1427), - [anon_sym_use] = ACTIONS(1427), - [anon_sym_where] = ACTIONS(1427), - [anon_sym_while] = ACTIONS(1427), - [sym_mutable_specifier] = ACTIONS(1427), - [sym_integer_literal] = ACTIONS(1314), - [aux_sym_string_literal_token1] = ACTIONS(1316), - [sym_char_literal] = ACTIONS(1314), - [anon_sym_true] = ACTIONS(1318), - [anon_sym_false] = ACTIONS(1318), - [anon_sym_u8] = ACTIONS(1320), - [anon_sym_i8] = ACTIONS(1320), - [anon_sym_u16] = ACTIONS(1320), - [anon_sym_i16] = ACTIONS(1320), - [anon_sym_u32] = ACTIONS(1320), - [anon_sym_i32] = ACTIONS(1320), - [anon_sym_u64] = ACTIONS(1320), - [anon_sym_i64] = ACTIONS(1320), - [anon_sym_u128] = ACTIONS(1320), - [anon_sym_i128] = ACTIONS(1320), - [anon_sym_isize] = ACTIONS(1320), - [anon_sym_usize] = ACTIONS(1320), - [anon_sym_f32] = ACTIONS(1320), - [anon_sym_f64] = ACTIONS(1320), - [anon_sym_bool] = ACTIONS(1320), - [anon_sym_str] = ACTIONS(1320), - [anon_sym_char] = ACTIONS(1320), - [sym_line_comment] = ACTIONS(1172), - [sym__raw_identifier] = ACTIONS(1322), - [sym_self] = ACTIONS(1427), - [sym_super] = ACTIONS(1427), - [sym_crate] = ACTIONS(1427), - [sym_metavariable] = ACTIONS(1324), - [sym_grit_metavariable] = ACTIONS(1326), - [sym_raw_string_literal] = ACTIONS(1314), - [sym_float_literal] = ACTIONS(1314), + [sym_delim_token_tree] = STATE(271), + [sym__delim_tokens] = STATE(271), + [sym__non_delim_token] = STATE(271), + [sym__literal] = STATE(271), + [sym_string_literal] = STATE(682), + [sym_boolean_literal] = STATE(682), + [sym_primitive_type] = STATE(271), + [sym_identifier] = STATE(271), + [aux_sym_delim_token_tree_repeat1] = STATE(271), + [sym__primitive_identifier] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1394), + [anon_sym_RPAREN] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(1399), + [anon_sym_RBRACE] = ACTIONS(1397), + [anon_sym_LBRACK] = ACTIONS(1402), + [anon_sym_RBRACK] = ACTIONS(1397), + [anon_sym_DOLLAR] = ACTIONS(1405), + [aux_sym__non_special_token_token1] = ACTIONS(1408), + [anon_sym_SQUOTE] = ACTIONS(1408), + [anon_sym_as] = ACTIONS(1408), + [anon_sym_async] = ACTIONS(1408), + [anon_sym_await] = ACTIONS(1408), + [anon_sym_break] = ACTIONS(1408), + [anon_sym_const] = ACTIONS(1408), + [anon_sym_continue] = ACTIONS(1408), + [anon_sym_default] = ACTIONS(1408), + [anon_sym_enum] = ACTIONS(1408), + [anon_sym_fn] = ACTIONS(1408), + [anon_sym_for] = ACTIONS(1408), + [anon_sym_if] = ACTIONS(1408), + [anon_sym_impl] = ACTIONS(1408), + [anon_sym_let] = ACTIONS(1408), + [anon_sym_loop] = ACTIONS(1408), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_mod] = ACTIONS(1408), + [anon_sym_pub] = ACTIONS(1408), + [anon_sym_return] = ACTIONS(1408), + [anon_sym_static] = ACTIONS(1408), + [anon_sym_struct] = ACTIONS(1408), + [anon_sym_trait] = ACTIONS(1408), + [anon_sym_type] = ACTIONS(1408), + [anon_sym_union] = ACTIONS(1408), + [anon_sym_unsafe] = ACTIONS(1408), + [anon_sym_use] = ACTIONS(1408), + [anon_sym_where] = ACTIONS(1408), + [anon_sym_while] = ACTIONS(1408), + [sym_mutable_specifier] = ACTIONS(1408), + [sym_integer_literal] = ACTIONS(1411), + [aux_sym_string_literal_token1] = ACTIONS(1414), + [sym_char_literal] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1417), + [anon_sym_false] = ACTIONS(1417), + [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), + [sym_line_comment] = ACTIONS(1112), + [sym__raw_identifier] = ACTIONS(1423), + [sym_self] = ACTIONS(1408), + [sym_super] = ACTIONS(1408), + [sym_crate] = ACTIONS(1408), + [sym_grit_metavariable] = ACTIONS(1426), + [sym_raw_string_literal] = ACTIONS(1411), + [sym_float_literal] = ACTIONS(1411), [sym_block_comment] = ACTIONS(3), }, [272] = { - [sym__token_pattern] = STATE(256), - [sym_token_tree_pattern] = STATE(256), - [sym_token_binding_pattern] = STATE(256), - [sym_token_repetition_pattern] = STATE(256), - [sym__literal] = STATE(256), - [sym_string_literal] = STATE(656), - [sym_boolean_literal] = STATE(656), - [sym_primitive_type] = STATE(256), - [sym_identifier] = STATE(256), - [aux_sym_token_tree_pattern_repeat1] = STATE(256), - [sym__primitive_identifier] = ACTIONS(1300), - [anon_sym_LPAREN] = ACTIONS(1302), - [anon_sym_RPAREN] = ACTIONS(1423), - [anon_sym_LBRACE] = ACTIONS(1304), - [anon_sym_LBRACK] = ACTIONS(1308), - [anon_sym_DOLLAR] = ACTIONS(1310), - [aux_sym__non_special_token_token1] = ACTIONS(1429), - [anon_sym_SQUOTE] = ACTIONS(1429), - [anon_sym_as] = ACTIONS(1429), - [anon_sym_async] = ACTIONS(1429), - [anon_sym_await] = ACTIONS(1429), - [anon_sym_break] = ACTIONS(1429), - [anon_sym_const] = ACTIONS(1429), - [anon_sym_continue] = ACTIONS(1429), - [anon_sym_default] = ACTIONS(1429), - [anon_sym_enum] = ACTIONS(1429), - [anon_sym_fn] = ACTIONS(1429), - [anon_sym_for] = ACTIONS(1429), - [anon_sym_if] = ACTIONS(1429), - [anon_sym_impl] = ACTIONS(1429), - [anon_sym_let] = ACTIONS(1429), - [anon_sym_loop] = ACTIONS(1429), - [anon_sym_match] = ACTIONS(1429), - [anon_sym_mod] = ACTIONS(1429), - [anon_sym_pub] = ACTIONS(1429), - [anon_sym_return] = ACTIONS(1429), - [anon_sym_static] = ACTIONS(1429), - [anon_sym_struct] = ACTIONS(1429), - [anon_sym_trait] = ACTIONS(1429), - [anon_sym_type] = ACTIONS(1429), - [anon_sym_union] = ACTIONS(1429), - [anon_sym_unsafe] = ACTIONS(1429), - [anon_sym_use] = ACTIONS(1429), - [anon_sym_where] = ACTIONS(1429), - [anon_sym_while] = ACTIONS(1429), - [sym_mutable_specifier] = ACTIONS(1429), - [sym_integer_literal] = ACTIONS(1314), - [aux_sym_string_literal_token1] = ACTIONS(1316), - [sym_char_literal] = ACTIONS(1314), - [anon_sym_true] = ACTIONS(1318), - [anon_sym_false] = ACTIONS(1318), - [anon_sym_u8] = ACTIONS(1320), - [anon_sym_i8] = ACTIONS(1320), - [anon_sym_u16] = ACTIONS(1320), - [anon_sym_i16] = ACTIONS(1320), - [anon_sym_u32] = ACTIONS(1320), - [anon_sym_i32] = ACTIONS(1320), - [anon_sym_u64] = ACTIONS(1320), - [anon_sym_i64] = ACTIONS(1320), - [anon_sym_u128] = ACTIONS(1320), - [anon_sym_i128] = ACTIONS(1320), - [anon_sym_isize] = ACTIONS(1320), - [anon_sym_usize] = ACTIONS(1320), - [anon_sym_f32] = ACTIONS(1320), - [anon_sym_f64] = ACTIONS(1320), - [anon_sym_bool] = ACTIONS(1320), - [anon_sym_str] = ACTIONS(1320), - [anon_sym_char] = ACTIONS(1320), - [sym_line_comment] = ACTIONS(1172), - [sym__raw_identifier] = ACTIONS(1322), - [sym_self] = ACTIONS(1429), - [sym_super] = ACTIONS(1429), - [sym_crate] = ACTIONS(1429), - [sym_metavariable] = ACTIONS(1324), - [sym_grit_metavariable] = ACTIONS(1326), - [sym_raw_string_literal] = ACTIONS(1314), - [sym_float_literal] = ACTIONS(1314), + [sym__token_pattern] = STATE(266), + [sym_token_tree_pattern] = STATE(266), + [sym_token_binding_pattern] = STATE(266), + [sym_token_repetition_pattern] = STATE(266), + [sym__literal] = STATE(266), + [sym_string_literal] = STATE(652), + [sym_boolean_literal] = STATE(652), + [sym_primitive_type] = STATE(266), + [sym_identifier] = STATE(266), + [aux_sym_token_tree_pattern_repeat1] = STATE(266), + [sym__primitive_identifier] = ACTIONS(1302), + [anon_sym_LPAREN] = ACTIONS(1304), + [anon_sym_RPAREN] = ACTIONS(1429), + [anon_sym_LBRACE] = ACTIONS(1306), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_DOLLAR] = ACTIONS(1312), + [aux_sym__non_special_token_token1] = ACTIONS(1431), + [anon_sym_SQUOTE] = ACTIONS(1431), + [anon_sym_as] = ACTIONS(1431), + [anon_sym_async] = ACTIONS(1431), + [anon_sym_await] = ACTIONS(1431), + [anon_sym_break] = ACTIONS(1431), + [anon_sym_const] = ACTIONS(1431), + [anon_sym_continue] = ACTIONS(1431), + [anon_sym_default] = ACTIONS(1431), + [anon_sym_enum] = ACTIONS(1431), + [anon_sym_fn] = ACTIONS(1431), + [anon_sym_for] = ACTIONS(1431), + [anon_sym_if] = ACTIONS(1431), + [anon_sym_impl] = ACTIONS(1431), + [anon_sym_let] = ACTIONS(1431), + [anon_sym_loop] = ACTIONS(1431), + [anon_sym_match] = ACTIONS(1431), + [anon_sym_mod] = ACTIONS(1431), + [anon_sym_pub] = ACTIONS(1431), + [anon_sym_return] = ACTIONS(1431), + [anon_sym_static] = ACTIONS(1431), + [anon_sym_struct] = ACTIONS(1431), + [anon_sym_trait] = ACTIONS(1431), + [anon_sym_type] = ACTIONS(1431), + [anon_sym_union] = ACTIONS(1431), + [anon_sym_unsafe] = ACTIONS(1431), + [anon_sym_use] = ACTIONS(1431), + [anon_sym_where] = ACTIONS(1431), + [anon_sym_while] = ACTIONS(1431), + [sym_mutable_specifier] = ACTIONS(1431), + [sym_integer_literal] = ACTIONS(1316), + [aux_sym_string_literal_token1] = ACTIONS(1318), + [sym_char_literal] = ACTIONS(1316), + [anon_sym_true] = ACTIONS(1320), + [anon_sym_false] = 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), + [sym_line_comment] = ACTIONS(1112), + [sym__raw_identifier] = ACTIONS(1324), + [sym_self] = ACTIONS(1431), + [sym_super] = ACTIONS(1431), + [sym_crate] = ACTIONS(1431), + [sym_metavariable] = ACTIONS(1326), + [sym_grit_metavariable] = ACTIONS(1328), + [sym_raw_string_literal] = ACTIONS(1316), + [sym_float_literal] = ACTIONS(1316), [sym_block_comment] = ACTIONS(3), }, [273] = { - [ts_builtin_sym_end] = ACTIONS(1431), - [sym__primitive_identifier] = ACTIONS(1433), - [anon_sym_SEMI] = ACTIONS(1431), - [anon_sym_macro_rules_BANG] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(1431), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(1431), - [anon_sym_LBRACK] = ACTIONS(1431), - [anon_sym_STAR] = ACTIONS(1431), - [anon_sym_SQUOTE] = ACTIONS(1433), - [anon_sym_async] = ACTIONS(1433), - [anon_sym_break] = ACTIONS(1433), - [anon_sym_const] = ACTIONS(1433), - [anon_sym_continue] = ACTIONS(1433), - [anon_sym_default] = ACTIONS(1433), - [anon_sym_enum] = ACTIONS(1433), - [anon_sym_fn] = ACTIONS(1433), - [anon_sym_for] = ACTIONS(1433), - [anon_sym_if] = ACTIONS(1433), - [anon_sym_impl] = ACTIONS(1433), - [anon_sym_let] = ACTIONS(1433), - [anon_sym_loop] = ACTIONS(1433), - [anon_sym_match] = ACTIONS(1433), - [anon_sym_mod] = ACTIONS(1433), - [anon_sym_pub] = ACTIONS(1433), - [anon_sym_return] = ACTIONS(1433), - [anon_sym_static] = ACTIONS(1433), - [anon_sym_struct] = ACTIONS(1433), - [anon_sym_trait] = ACTIONS(1433), - [anon_sym_type] = ACTIONS(1433), - [anon_sym_union] = ACTIONS(1433), - [anon_sym_unsafe] = ACTIONS(1433), - [anon_sym_use] = ACTIONS(1433), - [anon_sym_while] = ACTIONS(1433), - [anon_sym_POUND] = ACTIONS(1431), - [anon_sym_BANG] = ACTIONS(1431), - [anon_sym_extern] = ACTIONS(1433), - [anon_sym_LT] = ACTIONS(1431), - [anon_sym_COLON_COLON] = ACTIONS(1431), - [anon_sym_AMP] = ACTIONS(1431), - [anon_sym_DOT_DOT] = ACTIONS(1431), - [anon_sym_DASH] = ACTIONS(1431), - [anon_sym_PIPE] = ACTIONS(1431), - [anon_sym_yield] = ACTIONS(1433), - [anon_sym_move] = ACTIONS(1433), - [sym_integer_literal] = ACTIONS(1431), - [aux_sym_string_literal_token1] = ACTIONS(1431), - [sym_char_literal] = ACTIONS(1431), - [anon_sym_true] = ACTIONS(1433), - [anon_sym_false] = ACTIONS(1433), - [anon_sym_u8] = ACTIONS(1433), - [anon_sym_i8] = ACTIONS(1433), - [anon_sym_u16] = ACTIONS(1433), - [anon_sym_i16] = ACTIONS(1433), - [anon_sym_u32] = ACTIONS(1433), - [anon_sym_i32] = ACTIONS(1433), - [anon_sym_u64] = ACTIONS(1433), - [anon_sym_i64] = ACTIONS(1433), - [anon_sym_u128] = ACTIONS(1433), - [anon_sym_i128] = ACTIONS(1433), - [anon_sym_isize] = ACTIONS(1433), - [anon_sym_usize] = ACTIONS(1433), - [anon_sym_f32] = ACTIONS(1433), - [anon_sym_f64] = ACTIONS(1433), - [anon_sym_bool] = ACTIONS(1433), - [anon_sym_str] = ACTIONS(1433), - [anon_sym_char] = ACTIONS(1433), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1431), - [sym_self] = ACTIONS(1433), - [sym_super] = ACTIONS(1433), - [sym_crate] = ACTIONS(1433), - [sym_metavariable] = ACTIONS(1431), - [sym_grit_metavariable] = ACTIONS(1431), - [sym_raw_string_literal] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1431), + [sym_attribute_item] = STATE(583), + [sym_bracketed_type] = STATE(2684), + [sym_generic_type] = STATE(2683), + [sym_generic_type_with_turbofish] = STATE(2682), + [sym_macro_invocation] = STATE(1615), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier] = STATE(2202), + [sym_match_arm] = STATE(383), + [sym_last_match_arm] = STATE(2661), + [sym_match_pattern] = STATE(2737), + [sym_const_block] = STATE(1615), + [sym_pattern] = STATE(2353), + [sym_tuple_pattern] = STATE(1615), + [sym_slice_pattern] = STATE(1615), + [sym_tuple_struct_pattern] = STATE(1615), + [sym_struct_pattern] = STATE(1615), + [sym_remaining_field_pattern] = STATE(1615), + [sym_mut_pattern] = STATE(1615), + [sym_range_pattern] = STATE(1615), + [sym_ref_pattern] = STATE(1615), + [sym_captured_pattern] = STATE(1615), + [sym_reference_pattern] = STATE(1615), + [sym_or_pattern] = STATE(1615), + [sym__literal_pattern] = STATE(1492), + [sym_negative_literal] = STATE(1521), + [sym_string_literal] = STATE(1521), + [sym_boolean_literal] = STATE(1521), + [sym_primitive_type] = STATE(1479), + [sym_identifier] = STATE(1432), + [aux_sym_enum_variant_list_repeat1] = STATE(583), + [aux_sym_match_block_repeat1] = STATE(383), + [sym__primitive_identifier] = ACTIONS(844), + [sym_underscore] = ACTIONS(974), + [anon_sym_LPAREN] = ACTIONS(1274), + [anon_sym_LBRACK] = ACTIONS(1278), + [anon_sym_const] = ACTIONS(1280), + [anon_sym_default] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1282), + [anon_sym_POUND] = ACTIONS(533), + [anon_sym_ref] = ACTIONS(880), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(1284), + [anon_sym_AMP] = ACTIONS(1286), + [sym_mutable_specifier] = ACTIONS(982), + [anon_sym_DOT_DOT] = ACTIONS(984), + [anon_sym_DASH] = ACTIONS(894), + [sym_integer_literal] = ACTIONS(896), + [aux_sym_string_literal_token1] = ACTIONS(898), + [sym_char_literal] = ACTIONS(896), + [anon_sym_true] = ACTIONS(900), + [anon_sym_false] = ACTIONS(900), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1288), + [sym_super] = ACTIONS(1288), + [sym_crate] = ACTIONS(1288), + [sym_metavariable] = ACTIONS(1290), + [sym_grit_metavariable] = ACTIONS(986), + [sym_raw_string_literal] = ACTIONS(896), + [sym_float_literal] = ACTIONS(896), [sym_block_comment] = ACTIONS(3), }, [274] = { - [ts_builtin_sym_end] = ACTIONS(1435), - [sym__primitive_identifier] = ACTIONS(1437), - [anon_sym_SEMI] = ACTIONS(1435), - [anon_sym_macro_rules_BANG] = ACTIONS(1435), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(1435), - [anon_sym_RBRACE] = ACTIONS(1435), - [anon_sym_LBRACK] = ACTIONS(1435), - [anon_sym_STAR] = ACTIONS(1435), - [anon_sym_SQUOTE] = ACTIONS(1437), - [anon_sym_async] = ACTIONS(1437), - [anon_sym_break] = ACTIONS(1437), - [anon_sym_const] = ACTIONS(1437), - [anon_sym_continue] = ACTIONS(1437), - [anon_sym_default] = ACTIONS(1437), - [anon_sym_enum] = ACTIONS(1437), - [anon_sym_fn] = ACTIONS(1437), - [anon_sym_for] = ACTIONS(1437), - [anon_sym_if] = ACTIONS(1437), - [anon_sym_impl] = ACTIONS(1437), - [anon_sym_let] = ACTIONS(1437), - [anon_sym_loop] = ACTIONS(1437), - [anon_sym_match] = ACTIONS(1437), - [anon_sym_mod] = ACTIONS(1437), - [anon_sym_pub] = ACTIONS(1437), - [anon_sym_return] = ACTIONS(1437), - [anon_sym_static] = ACTIONS(1437), - [anon_sym_struct] = ACTIONS(1437), - [anon_sym_trait] = ACTIONS(1437), - [anon_sym_type] = ACTIONS(1437), - [anon_sym_union] = ACTIONS(1437), - [anon_sym_unsafe] = ACTIONS(1437), - [anon_sym_use] = ACTIONS(1437), - [anon_sym_while] = ACTIONS(1437), - [anon_sym_POUND] = ACTIONS(1435), - [anon_sym_BANG] = ACTIONS(1435), - [anon_sym_extern] = ACTIONS(1437), - [anon_sym_LT] = ACTIONS(1435), - [anon_sym_COLON_COLON] = ACTIONS(1435), - [anon_sym_AMP] = ACTIONS(1435), - [anon_sym_DOT_DOT] = ACTIONS(1435), - [anon_sym_DASH] = ACTIONS(1435), - [anon_sym_PIPE] = ACTIONS(1435), - [anon_sym_yield] = ACTIONS(1437), - [anon_sym_move] = ACTIONS(1437), - [sym_integer_literal] = ACTIONS(1435), - [aux_sym_string_literal_token1] = ACTIONS(1435), - [sym_char_literal] = ACTIONS(1435), - [anon_sym_true] = ACTIONS(1437), - [anon_sym_false] = ACTIONS(1437), - [anon_sym_u8] = ACTIONS(1437), - [anon_sym_i8] = ACTIONS(1437), - [anon_sym_u16] = ACTIONS(1437), - [anon_sym_i16] = ACTIONS(1437), - [anon_sym_u32] = ACTIONS(1437), - [anon_sym_i32] = ACTIONS(1437), - [anon_sym_u64] = ACTIONS(1437), - [anon_sym_i64] = ACTIONS(1437), - [anon_sym_u128] = ACTIONS(1437), - [anon_sym_i128] = ACTIONS(1437), - [anon_sym_isize] = ACTIONS(1437), - [anon_sym_usize] = ACTIONS(1437), - [anon_sym_f32] = ACTIONS(1437), - [anon_sym_f64] = ACTIONS(1437), - [anon_sym_bool] = ACTIONS(1437), - [anon_sym_str] = ACTIONS(1437), - [anon_sym_char] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1435), - [sym_self] = ACTIONS(1437), - [sym_super] = ACTIONS(1437), - [sym_crate] = ACTIONS(1437), - [sym_metavariable] = ACTIONS(1435), - [sym_grit_metavariable] = ACTIONS(1435), - [sym_raw_string_literal] = ACTIONS(1435), - [sym_float_literal] = ACTIONS(1435), + [ts_builtin_sym_end] = ACTIONS(1433), + [sym__primitive_identifier] = ACTIONS(1435), + [anon_sym_SEMI] = ACTIONS(1433), + [anon_sym_macro_rules_BANG] = ACTIONS(1433), + [anon_sym_LPAREN] = ACTIONS(1433), + [anon_sym_LBRACE] = ACTIONS(1433), + [anon_sym_RBRACE] = ACTIONS(1433), + [anon_sym_LBRACK] = ACTIONS(1433), + [anon_sym_STAR] = ACTIONS(1433), + [anon_sym_SQUOTE] = ACTIONS(1435), + [anon_sym_async] = ACTIONS(1435), + [anon_sym_break] = ACTIONS(1435), + [anon_sym_const] = ACTIONS(1435), + [anon_sym_continue] = ACTIONS(1435), + [anon_sym_default] = ACTIONS(1435), + [anon_sym_enum] = ACTIONS(1435), + [anon_sym_fn] = ACTIONS(1435), + [anon_sym_for] = ACTIONS(1435), + [anon_sym_if] = ACTIONS(1435), + [anon_sym_impl] = ACTIONS(1435), + [anon_sym_let] = ACTIONS(1435), + [anon_sym_loop] = ACTIONS(1435), + [anon_sym_match] = ACTIONS(1435), + [anon_sym_mod] = ACTIONS(1435), + [anon_sym_pub] = ACTIONS(1435), + [anon_sym_return] = ACTIONS(1435), + [anon_sym_static] = ACTIONS(1435), + [anon_sym_struct] = ACTIONS(1435), + [anon_sym_trait] = ACTIONS(1435), + [anon_sym_type] = ACTIONS(1435), + [anon_sym_union] = ACTIONS(1435), + [anon_sym_unsafe] = ACTIONS(1435), + [anon_sym_use] = ACTIONS(1435), + [anon_sym_while] = ACTIONS(1435), + [anon_sym_POUND] = ACTIONS(1433), + [anon_sym_BANG] = ACTIONS(1433), + [anon_sym_extern] = ACTIONS(1435), + [anon_sym_LT] = ACTIONS(1433), + [anon_sym_COLON_COLON] = ACTIONS(1433), + [anon_sym_AMP] = ACTIONS(1433), + [anon_sym_DOT_DOT] = ACTIONS(1433), + [anon_sym_DASH] = ACTIONS(1433), + [anon_sym_PIPE] = ACTIONS(1433), + [anon_sym_yield] = ACTIONS(1435), + [anon_sym_move] = ACTIONS(1435), + [sym_integer_literal] = ACTIONS(1433), + [aux_sym_string_literal_token1] = ACTIONS(1433), + [sym_char_literal] = ACTIONS(1433), + [anon_sym_true] = ACTIONS(1435), + [anon_sym_false] = ACTIONS(1435), + [anon_sym_u8] = ACTIONS(1435), + [anon_sym_i8] = ACTIONS(1435), + [anon_sym_u16] = ACTIONS(1435), + [anon_sym_i16] = ACTIONS(1435), + [anon_sym_u32] = ACTIONS(1435), + [anon_sym_i32] = ACTIONS(1435), + [anon_sym_u64] = ACTIONS(1435), + [anon_sym_i64] = ACTIONS(1435), + [anon_sym_u128] = ACTIONS(1435), + [anon_sym_i128] = ACTIONS(1435), + [anon_sym_isize] = ACTIONS(1435), + [anon_sym_usize] = ACTIONS(1435), + [anon_sym_f32] = ACTIONS(1435), + [anon_sym_f64] = ACTIONS(1435), + [anon_sym_bool] = ACTIONS(1435), + [anon_sym_str] = ACTIONS(1435), + [anon_sym_char] = ACTIONS(1435), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(1433), + [sym_self] = ACTIONS(1435), + [sym_super] = ACTIONS(1435), + [sym_crate] = ACTIONS(1435), + [sym_metavariable] = ACTIONS(1433), + [sym_grit_metavariable] = ACTIONS(1433), + [sym_raw_string_literal] = ACTIONS(1433), + [sym_float_literal] = ACTIONS(1433), [sym_block_comment] = ACTIONS(3), }, [275] = { - [ts_builtin_sym_end] = ACTIONS(1439), - [sym__primitive_identifier] = ACTIONS(1441), - [anon_sym_SEMI] = ACTIONS(1439), - [anon_sym_macro_rules_BANG] = ACTIONS(1439), - [anon_sym_LPAREN] = ACTIONS(1439), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_RBRACE] = ACTIONS(1439), - [anon_sym_LBRACK] = ACTIONS(1439), - [anon_sym_STAR] = ACTIONS(1439), - [anon_sym_SQUOTE] = ACTIONS(1441), - [anon_sym_async] = ACTIONS(1441), - [anon_sym_break] = ACTIONS(1441), - [anon_sym_const] = ACTIONS(1441), - [anon_sym_continue] = ACTIONS(1441), - [anon_sym_default] = ACTIONS(1441), - [anon_sym_enum] = ACTIONS(1441), - [anon_sym_fn] = ACTIONS(1441), - [anon_sym_for] = ACTIONS(1441), - [anon_sym_if] = ACTIONS(1441), - [anon_sym_impl] = ACTIONS(1441), - [anon_sym_let] = ACTIONS(1441), - [anon_sym_loop] = ACTIONS(1441), - [anon_sym_match] = ACTIONS(1441), - [anon_sym_mod] = ACTIONS(1441), - [anon_sym_pub] = ACTIONS(1441), - [anon_sym_return] = ACTIONS(1441), - [anon_sym_static] = ACTIONS(1441), - [anon_sym_struct] = ACTIONS(1441), - [anon_sym_trait] = ACTIONS(1441), - [anon_sym_type] = ACTIONS(1441), - [anon_sym_union] = ACTIONS(1441), - [anon_sym_unsafe] = ACTIONS(1441), - [anon_sym_use] = ACTIONS(1441), - [anon_sym_while] = ACTIONS(1441), - [anon_sym_POUND] = ACTIONS(1439), - [anon_sym_BANG] = ACTIONS(1439), - [anon_sym_extern] = ACTIONS(1441), - [anon_sym_LT] = ACTIONS(1439), - [anon_sym_COLON_COLON] = ACTIONS(1439), - [anon_sym_AMP] = ACTIONS(1439), - [anon_sym_DOT_DOT] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(1439), - [anon_sym_PIPE] = ACTIONS(1439), - [anon_sym_yield] = ACTIONS(1441), - [anon_sym_move] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(1439), - [aux_sym_string_literal_token1] = ACTIONS(1439), - [sym_char_literal] = ACTIONS(1439), - [anon_sym_true] = ACTIONS(1441), - [anon_sym_false] = ACTIONS(1441), - [anon_sym_u8] = ACTIONS(1441), - [anon_sym_i8] = ACTIONS(1441), - [anon_sym_u16] = ACTIONS(1441), - [anon_sym_i16] = ACTIONS(1441), - [anon_sym_u32] = ACTIONS(1441), - [anon_sym_i32] = ACTIONS(1441), - [anon_sym_u64] = ACTIONS(1441), - [anon_sym_i64] = ACTIONS(1441), - [anon_sym_u128] = ACTIONS(1441), - [anon_sym_i128] = ACTIONS(1441), - [anon_sym_isize] = ACTIONS(1441), - [anon_sym_usize] = ACTIONS(1441), - [anon_sym_f32] = ACTIONS(1441), - [anon_sym_f64] = ACTIONS(1441), - [anon_sym_bool] = ACTIONS(1441), - [anon_sym_str] = ACTIONS(1441), - [anon_sym_char] = ACTIONS(1441), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1439), - [sym_self] = ACTIONS(1441), - [sym_super] = ACTIONS(1441), - [sym_crate] = ACTIONS(1441), - [sym_metavariable] = ACTIONS(1439), - [sym_grit_metavariable] = ACTIONS(1439), - [sym_raw_string_literal] = ACTIONS(1439), - [sym_float_literal] = ACTIONS(1439), + [ts_builtin_sym_end] = ACTIONS(1437), + [sym__primitive_identifier] = ACTIONS(1439), + [anon_sym_SEMI] = ACTIONS(1437), + [anon_sym_macro_rules_BANG] = ACTIONS(1437), + [anon_sym_LPAREN] = ACTIONS(1437), + [anon_sym_LBRACE] = ACTIONS(1437), + [anon_sym_RBRACE] = ACTIONS(1437), + [anon_sym_LBRACK] = ACTIONS(1437), + [anon_sym_STAR] = ACTIONS(1437), + [anon_sym_SQUOTE] = ACTIONS(1439), + [anon_sym_async] = ACTIONS(1439), + [anon_sym_break] = ACTIONS(1439), + [anon_sym_const] = ACTIONS(1439), + [anon_sym_continue] = ACTIONS(1439), + [anon_sym_default] = ACTIONS(1439), + [anon_sym_enum] = ACTIONS(1439), + [anon_sym_fn] = ACTIONS(1439), + [anon_sym_for] = ACTIONS(1439), + [anon_sym_if] = ACTIONS(1439), + [anon_sym_impl] = ACTIONS(1439), + [anon_sym_let] = ACTIONS(1439), + [anon_sym_loop] = ACTIONS(1439), + [anon_sym_match] = ACTIONS(1439), + [anon_sym_mod] = ACTIONS(1439), + [anon_sym_pub] = ACTIONS(1439), + [anon_sym_return] = ACTIONS(1439), + [anon_sym_static] = ACTIONS(1439), + [anon_sym_struct] = ACTIONS(1439), + [anon_sym_trait] = ACTIONS(1439), + [anon_sym_type] = ACTIONS(1439), + [anon_sym_union] = ACTIONS(1439), + [anon_sym_unsafe] = ACTIONS(1439), + [anon_sym_use] = ACTIONS(1439), + [anon_sym_while] = ACTIONS(1439), + [anon_sym_POUND] = ACTIONS(1437), + [anon_sym_BANG] = ACTIONS(1437), + [anon_sym_extern] = ACTIONS(1439), + [anon_sym_LT] = ACTIONS(1437), + [anon_sym_COLON_COLON] = ACTIONS(1437), + [anon_sym_AMP] = ACTIONS(1437), + [anon_sym_DOT_DOT] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_PIPE] = ACTIONS(1437), + [anon_sym_yield] = ACTIONS(1439), + [anon_sym_move] = ACTIONS(1439), + [sym_integer_literal] = ACTIONS(1437), + [aux_sym_string_literal_token1] = ACTIONS(1437), + [sym_char_literal] = ACTIONS(1437), + [anon_sym_true] = ACTIONS(1439), + [anon_sym_false] = ACTIONS(1439), + [anon_sym_u8] = ACTIONS(1439), + [anon_sym_i8] = ACTIONS(1439), + [anon_sym_u16] = ACTIONS(1439), + [anon_sym_i16] = ACTIONS(1439), + [anon_sym_u32] = ACTIONS(1439), + [anon_sym_i32] = ACTIONS(1439), + [anon_sym_u64] = ACTIONS(1439), + [anon_sym_i64] = ACTIONS(1439), + [anon_sym_u128] = ACTIONS(1439), + [anon_sym_i128] = ACTIONS(1439), + [anon_sym_isize] = ACTIONS(1439), + [anon_sym_usize] = ACTIONS(1439), + [anon_sym_f32] = ACTIONS(1439), + [anon_sym_f64] = ACTIONS(1439), + [anon_sym_bool] = ACTIONS(1439), + [anon_sym_str] = ACTIONS(1439), + [anon_sym_char] = ACTIONS(1439), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(1437), + [sym_self] = ACTIONS(1439), + [sym_super] = ACTIONS(1439), + [sym_crate] = ACTIONS(1439), + [sym_metavariable] = ACTIONS(1437), + [sym_grit_metavariable] = ACTIONS(1437), + [sym_raw_string_literal] = ACTIONS(1437), + [sym_float_literal] = ACTIONS(1437), [sym_block_comment] = ACTIONS(3), }, [276] = { - [ts_builtin_sym_end] = ACTIONS(1443), - [sym__primitive_identifier] = ACTIONS(1445), - [anon_sym_SEMI] = ACTIONS(1443), - [anon_sym_macro_rules_BANG] = ACTIONS(1443), - [anon_sym_LPAREN] = ACTIONS(1443), - [anon_sym_LBRACE] = ACTIONS(1443), - [anon_sym_RBRACE] = ACTIONS(1443), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_STAR] = ACTIONS(1443), - [anon_sym_SQUOTE] = ACTIONS(1445), - [anon_sym_async] = ACTIONS(1445), - [anon_sym_break] = ACTIONS(1445), - [anon_sym_const] = ACTIONS(1445), - [anon_sym_continue] = ACTIONS(1445), - [anon_sym_default] = ACTIONS(1445), - [anon_sym_enum] = ACTIONS(1445), - [anon_sym_fn] = ACTIONS(1445), - [anon_sym_for] = ACTIONS(1445), - [anon_sym_if] = ACTIONS(1445), - [anon_sym_impl] = ACTIONS(1445), - [anon_sym_let] = ACTIONS(1445), - [anon_sym_loop] = ACTIONS(1445), - [anon_sym_match] = ACTIONS(1445), - [anon_sym_mod] = ACTIONS(1445), - [anon_sym_pub] = ACTIONS(1445), - [anon_sym_return] = ACTIONS(1445), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_struct] = ACTIONS(1445), - [anon_sym_trait] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_union] = ACTIONS(1445), - [anon_sym_unsafe] = ACTIONS(1445), - [anon_sym_use] = ACTIONS(1445), - [anon_sym_while] = ACTIONS(1445), - [anon_sym_POUND] = ACTIONS(1443), - [anon_sym_BANG] = ACTIONS(1443), - [anon_sym_extern] = ACTIONS(1445), - [anon_sym_LT] = ACTIONS(1443), - [anon_sym_COLON_COLON] = ACTIONS(1443), - [anon_sym_AMP] = ACTIONS(1443), - [anon_sym_DOT_DOT] = ACTIONS(1443), - [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_PIPE] = ACTIONS(1443), - [anon_sym_yield] = ACTIONS(1445), - [anon_sym_move] = ACTIONS(1445), - [sym_integer_literal] = ACTIONS(1443), - [aux_sym_string_literal_token1] = ACTIONS(1443), - [sym_char_literal] = ACTIONS(1443), - [anon_sym_true] = ACTIONS(1445), - [anon_sym_false] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u128] = ACTIONS(1445), - [anon_sym_i128] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_str] = ACTIONS(1445), - [anon_sym_char] = ACTIONS(1445), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1443), - [sym_self] = ACTIONS(1445), - [sym_super] = ACTIONS(1445), - [sym_crate] = ACTIONS(1445), - [sym_metavariable] = ACTIONS(1443), - [sym_grit_metavariable] = ACTIONS(1443), - [sym_raw_string_literal] = ACTIONS(1443), - [sym_float_literal] = ACTIONS(1443), + [ts_builtin_sym_end] = ACTIONS(1441), + [sym__primitive_identifier] = ACTIONS(1443), + [anon_sym_SEMI] = ACTIONS(1441), + [anon_sym_macro_rules_BANG] = ACTIONS(1441), + [anon_sym_LPAREN] = ACTIONS(1441), + [anon_sym_LBRACE] = ACTIONS(1441), + [anon_sym_RBRACE] = ACTIONS(1441), + [anon_sym_LBRACK] = ACTIONS(1441), + [anon_sym_STAR] = ACTIONS(1441), + [anon_sym_SQUOTE] = ACTIONS(1443), + [anon_sym_async] = ACTIONS(1443), + [anon_sym_break] = ACTIONS(1443), + [anon_sym_const] = ACTIONS(1443), + [anon_sym_continue] = ACTIONS(1443), + [anon_sym_default] = ACTIONS(1443), + [anon_sym_enum] = ACTIONS(1443), + [anon_sym_fn] = ACTIONS(1443), + [anon_sym_for] = ACTIONS(1443), + [anon_sym_if] = ACTIONS(1443), + [anon_sym_impl] = ACTIONS(1443), + [anon_sym_let] = ACTIONS(1443), + [anon_sym_loop] = ACTIONS(1443), + [anon_sym_match] = ACTIONS(1443), + [anon_sym_mod] = ACTIONS(1443), + [anon_sym_pub] = ACTIONS(1443), + [anon_sym_return] = ACTIONS(1443), + [anon_sym_static] = ACTIONS(1443), + [anon_sym_struct] = ACTIONS(1443), + [anon_sym_trait] = ACTIONS(1443), + [anon_sym_type] = ACTIONS(1443), + [anon_sym_union] = ACTIONS(1443), + [anon_sym_unsafe] = ACTIONS(1443), + [anon_sym_use] = ACTIONS(1443), + [anon_sym_while] = ACTIONS(1443), + [anon_sym_POUND] = ACTIONS(1441), + [anon_sym_BANG] = ACTIONS(1441), + [anon_sym_extern] = ACTIONS(1443), + [anon_sym_LT] = ACTIONS(1441), + [anon_sym_COLON_COLON] = ACTIONS(1441), + [anon_sym_AMP] = ACTIONS(1441), + [anon_sym_DOT_DOT] = ACTIONS(1441), + [anon_sym_DASH] = ACTIONS(1441), + [anon_sym_PIPE] = ACTIONS(1441), + [anon_sym_yield] = ACTIONS(1443), + [anon_sym_move] = ACTIONS(1443), + [sym_integer_literal] = ACTIONS(1441), + [aux_sym_string_literal_token1] = ACTIONS(1441), + [sym_char_literal] = ACTIONS(1441), + [anon_sym_true] = ACTIONS(1443), + [anon_sym_false] = ACTIONS(1443), + [anon_sym_u8] = ACTIONS(1443), + [anon_sym_i8] = ACTIONS(1443), + [anon_sym_u16] = ACTIONS(1443), + [anon_sym_i16] = ACTIONS(1443), + [anon_sym_u32] = ACTIONS(1443), + [anon_sym_i32] = ACTIONS(1443), + [anon_sym_u64] = ACTIONS(1443), + [anon_sym_i64] = ACTIONS(1443), + [anon_sym_u128] = ACTIONS(1443), + [anon_sym_i128] = ACTIONS(1443), + [anon_sym_isize] = ACTIONS(1443), + [anon_sym_usize] = ACTIONS(1443), + [anon_sym_f32] = ACTIONS(1443), + [anon_sym_f64] = ACTIONS(1443), + [anon_sym_bool] = ACTIONS(1443), + [anon_sym_str] = ACTIONS(1443), + [anon_sym_char] = ACTIONS(1443), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(1441), + [sym_self] = ACTIONS(1443), + [sym_super] = ACTIONS(1443), + [sym_crate] = ACTIONS(1443), + [sym_metavariable] = ACTIONS(1441), + [sym_grit_metavariable] = ACTIONS(1441), + [sym_raw_string_literal] = ACTIONS(1441), + [sym_float_literal] = ACTIONS(1441), [sym_block_comment] = ACTIONS(3), }, [277] = { - [ts_builtin_sym_end] = ACTIONS(1447), - [sym__primitive_identifier] = ACTIONS(1449), - [anon_sym_SEMI] = ACTIONS(1447), - [anon_sym_macro_rules_BANG] = ACTIONS(1447), - [anon_sym_LPAREN] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1447), - [anon_sym_RBRACE] = ACTIONS(1447), - [anon_sym_LBRACK] = ACTIONS(1447), - [anon_sym_STAR] = ACTIONS(1447), - [anon_sym_SQUOTE] = ACTIONS(1449), - [anon_sym_async] = ACTIONS(1449), - [anon_sym_break] = ACTIONS(1449), - [anon_sym_const] = ACTIONS(1449), - [anon_sym_continue] = ACTIONS(1449), - [anon_sym_default] = ACTIONS(1449), - [anon_sym_enum] = ACTIONS(1449), - [anon_sym_fn] = ACTIONS(1449), - [anon_sym_for] = ACTIONS(1449), - [anon_sym_if] = ACTIONS(1449), - [anon_sym_impl] = ACTIONS(1449), - [anon_sym_let] = ACTIONS(1449), - [anon_sym_loop] = ACTIONS(1449), - [anon_sym_match] = ACTIONS(1449), - [anon_sym_mod] = ACTIONS(1449), - [anon_sym_pub] = ACTIONS(1449), - [anon_sym_return] = ACTIONS(1449), - [anon_sym_static] = ACTIONS(1449), - [anon_sym_struct] = ACTIONS(1449), - [anon_sym_trait] = ACTIONS(1449), - [anon_sym_type] = ACTIONS(1449), - [anon_sym_union] = ACTIONS(1449), - [anon_sym_unsafe] = ACTIONS(1449), - [anon_sym_use] = ACTIONS(1449), - [anon_sym_while] = ACTIONS(1449), - [anon_sym_POUND] = ACTIONS(1447), - [anon_sym_BANG] = ACTIONS(1447), - [anon_sym_extern] = ACTIONS(1449), - [anon_sym_LT] = ACTIONS(1447), - [anon_sym_COLON_COLON] = ACTIONS(1447), - [anon_sym_AMP] = ACTIONS(1447), - [anon_sym_DOT_DOT] = ACTIONS(1447), - [anon_sym_DASH] = ACTIONS(1447), - [anon_sym_PIPE] = ACTIONS(1447), - [anon_sym_yield] = ACTIONS(1449), - [anon_sym_move] = ACTIONS(1449), - [sym_integer_literal] = ACTIONS(1447), - [aux_sym_string_literal_token1] = ACTIONS(1447), - [sym_char_literal] = ACTIONS(1447), - [anon_sym_true] = ACTIONS(1449), - [anon_sym_false] = ACTIONS(1449), - [anon_sym_u8] = ACTIONS(1449), - [anon_sym_i8] = ACTIONS(1449), - [anon_sym_u16] = ACTIONS(1449), - [anon_sym_i16] = ACTIONS(1449), - [anon_sym_u32] = ACTIONS(1449), - [anon_sym_i32] = ACTIONS(1449), - [anon_sym_u64] = ACTIONS(1449), - [anon_sym_i64] = ACTIONS(1449), - [anon_sym_u128] = ACTIONS(1449), - [anon_sym_i128] = ACTIONS(1449), - [anon_sym_isize] = ACTIONS(1449), - [anon_sym_usize] = ACTIONS(1449), - [anon_sym_f32] = ACTIONS(1449), - [anon_sym_f64] = ACTIONS(1449), - [anon_sym_bool] = ACTIONS(1449), - [anon_sym_str] = ACTIONS(1449), - [anon_sym_char] = ACTIONS(1449), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1447), - [sym_self] = ACTIONS(1449), - [sym_super] = ACTIONS(1449), - [sym_crate] = ACTIONS(1449), - [sym_metavariable] = ACTIONS(1447), - [sym_grit_metavariable] = ACTIONS(1447), - [sym_raw_string_literal] = ACTIONS(1447), - [sym_float_literal] = ACTIONS(1447), + [ts_builtin_sym_end] = ACTIONS(1445), + [sym__primitive_identifier] = ACTIONS(1447), + [anon_sym_SEMI] = ACTIONS(1445), + [anon_sym_macro_rules_BANG] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1445), + [anon_sym_LBRACE] = ACTIONS(1445), + [anon_sym_RBRACE] = ACTIONS(1445), + [anon_sym_LBRACK] = ACTIONS(1445), + [anon_sym_STAR] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1447), + [anon_sym_async] = ACTIONS(1447), + [anon_sym_break] = ACTIONS(1447), + [anon_sym_const] = ACTIONS(1447), + [anon_sym_continue] = ACTIONS(1447), + [anon_sym_default] = ACTIONS(1447), + [anon_sym_enum] = ACTIONS(1447), + [anon_sym_fn] = ACTIONS(1447), + [anon_sym_for] = ACTIONS(1447), + [anon_sym_if] = ACTIONS(1447), + [anon_sym_impl] = ACTIONS(1447), + [anon_sym_let] = ACTIONS(1447), + [anon_sym_loop] = ACTIONS(1447), + [anon_sym_match] = ACTIONS(1447), + [anon_sym_mod] = ACTIONS(1447), + [anon_sym_pub] = ACTIONS(1447), + [anon_sym_return] = ACTIONS(1447), + [anon_sym_static] = ACTIONS(1447), + [anon_sym_struct] = ACTIONS(1447), + [anon_sym_trait] = ACTIONS(1447), + [anon_sym_type] = ACTIONS(1447), + [anon_sym_union] = ACTIONS(1447), + [anon_sym_unsafe] = ACTIONS(1447), + [anon_sym_use] = ACTIONS(1447), + [anon_sym_while] = ACTIONS(1447), + [anon_sym_POUND] = ACTIONS(1445), + [anon_sym_BANG] = ACTIONS(1445), + [anon_sym_extern] = ACTIONS(1447), + [anon_sym_LT] = ACTIONS(1445), + [anon_sym_COLON_COLON] = ACTIONS(1445), + [anon_sym_AMP] = ACTIONS(1445), + [anon_sym_DOT_DOT] = ACTIONS(1445), + [anon_sym_DASH] = ACTIONS(1445), + [anon_sym_PIPE] = ACTIONS(1445), + [anon_sym_yield] = ACTIONS(1447), + [anon_sym_move] = ACTIONS(1447), + [sym_integer_literal] = ACTIONS(1445), + [aux_sym_string_literal_token1] = ACTIONS(1445), + [sym_char_literal] = ACTIONS(1445), + [anon_sym_true] = ACTIONS(1447), + [anon_sym_false] = ACTIONS(1447), + [anon_sym_u8] = ACTIONS(1447), + [anon_sym_i8] = ACTIONS(1447), + [anon_sym_u16] = ACTIONS(1447), + [anon_sym_i16] = ACTIONS(1447), + [anon_sym_u32] = ACTIONS(1447), + [anon_sym_i32] = ACTIONS(1447), + [anon_sym_u64] = ACTIONS(1447), + [anon_sym_i64] = ACTIONS(1447), + [anon_sym_u128] = ACTIONS(1447), + [anon_sym_i128] = ACTIONS(1447), + [anon_sym_isize] = ACTIONS(1447), + [anon_sym_usize] = ACTIONS(1447), + [anon_sym_f32] = ACTIONS(1447), + [anon_sym_f64] = ACTIONS(1447), + [anon_sym_bool] = ACTIONS(1447), + [anon_sym_str] = ACTIONS(1447), + [anon_sym_char] = ACTIONS(1447), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(1445), + [sym_self] = ACTIONS(1447), + [sym_super] = ACTIONS(1447), + [sym_crate] = ACTIONS(1447), + [sym_metavariable] = ACTIONS(1445), + [sym_grit_metavariable] = ACTIONS(1445), + [sym_raw_string_literal] = ACTIONS(1445), + [sym_float_literal] = ACTIONS(1445), [sym_block_comment] = ACTIONS(3), }, [278] = { - [ts_builtin_sym_end] = ACTIONS(1451), - [sym__primitive_identifier] = ACTIONS(1453), - [anon_sym_SEMI] = ACTIONS(1451), - [anon_sym_macro_rules_BANG] = ACTIONS(1451), - [anon_sym_LPAREN] = ACTIONS(1451), - [anon_sym_LBRACE] = ACTIONS(1451), - [anon_sym_RBRACE] = ACTIONS(1451), - [anon_sym_LBRACK] = ACTIONS(1451), - [anon_sym_STAR] = ACTIONS(1451), - [anon_sym_SQUOTE] = ACTIONS(1453), - [anon_sym_async] = ACTIONS(1453), - [anon_sym_break] = ACTIONS(1453), - [anon_sym_const] = ACTIONS(1453), - [anon_sym_continue] = ACTIONS(1453), - [anon_sym_default] = ACTIONS(1453), - [anon_sym_enum] = ACTIONS(1453), - [anon_sym_fn] = ACTIONS(1453), - [anon_sym_for] = ACTIONS(1453), - [anon_sym_if] = ACTIONS(1453), - [anon_sym_impl] = ACTIONS(1453), - [anon_sym_let] = ACTIONS(1453), - [anon_sym_loop] = ACTIONS(1453), - [anon_sym_match] = ACTIONS(1453), - [anon_sym_mod] = ACTIONS(1453), - [anon_sym_pub] = ACTIONS(1453), - [anon_sym_return] = ACTIONS(1453), - [anon_sym_static] = ACTIONS(1453), - [anon_sym_struct] = ACTIONS(1453), - [anon_sym_trait] = ACTIONS(1453), - [anon_sym_type] = ACTIONS(1453), - [anon_sym_union] = ACTIONS(1453), - [anon_sym_unsafe] = ACTIONS(1453), - [anon_sym_use] = ACTIONS(1453), - [anon_sym_while] = ACTIONS(1453), - [anon_sym_POUND] = ACTIONS(1451), - [anon_sym_BANG] = ACTIONS(1451), - [anon_sym_extern] = ACTIONS(1453), - [anon_sym_LT] = ACTIONS(1451), - [anon_sym_COLON_COLON] = ACTIONS(1451), - [anon_sym_AMP] = ACTIONS(1451), - [anon_sym_DOT_DOT] = ACTIONS(1451), - [anon_sym_DASH] = ACTIONS(1451), - [anon_sym_PIPE] = ACTIONS(1451), - [anon_sym_yield] = ACTIONS(1453), - [anon_sym_move] = ACTIONS(1453), - [sym_integer_literal] = ACTIONS(1451), - [aux_sym_string_literal_token1] = ACTIONS(1451), - [sym_char_literal] = ACTIONS(1451), - [anon_sym_true] = ACTIONS(1453), - [anon_sym_false] = ACTIONS(1453), - [anon_sym_u8] = ACTIONS(1453), - [anon_sym_i8] = ACTIONS(1453), - [anon_sym_u16] = ACTIONS(1453), - [anon_sym_i16] = ACTIONS(1453), - [anon_sym_u32] = ACTIONS(1453), - [anon_sym_i32] = ACTIONS(1453), - [anon_sym_u64] = ACTIONS(1453), - [anon_sym_i64] = ACTIONS(1453), - [anon_sym_u128] = ACTIONS(1453), - [anon_sym_i128] = ACTIONS(1453), - [anon_sym_isize] = ACTIONS(1453), - [anon_sym_usize] = ACTIONS(1453), - [anon_sym_f32] = ACTIONS(1453), - [anon_sym_f64] = ACTIONS(1453), - [anon_sym_bool] = ACTIONS(1453), - [anon_sym_str] = ACTIONS(1453), - [anon_sym_char] = ACTIONS(1453), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1451), - [sym_self] = ACTIONS(1453), - [sym_super] = ACTIONS(1453), - [sym_crate] = ACTIONS(1453), - [sym_metavariable] = ACTIONS(1451), - [sym_grit_metavariable] = ACTIONS(1451), - [sym_raw_string_literal] = ACTIONS(1451), - [sym_float_literal] = ACTIONS(1451), + [ts_builtin_sym_end] = ACTIONS(1449), + [sym__primitive_identifier] = ACTIONS(1451), + [anon_sym_SEMI] = ACTIONS(1449), + [anon_sym_macro_rules_BANG] = ACTIONS(1449), + [anon_sym_LPAREN] = ACTIONS(1449), + [anon_sym_LBRACE] = ACTIONS(1449), + [anon_sym_RBRACE] = ACTIONS(1449), + [anon_sym_LBRACK] = ACTIONS(1449), + [anon_sym_STAR] = ACTIONS(1449), + [anon_sym_SQUOTE] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_break] = ACTIONS(1451), + [anon_sym_const] = ACTIONS(1451), + [anon_sym_continue] = ACTIONS(1451), + [anon_sym_default] = ACTIONS(1451), + [anon_sym_enum] = ACTIONS(1451), + [anon_sym_fn] = ACTIONS(1451), + [anon_sym_for] = ACTIONS(1451), + [anon_sym_if] = ACTIONS(1451), + [anon_sym_impl] = ACTIONS(1451), + [anon_sym_let] = ACTIONS(1451), + [anon_sym_loop] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_mod] = ACTIONS(1451), + [anon_sym_pub] = ACTIONS(1451), + [anon_sym_return] = ACTIONS(1451), + [anon_sym_static] = ACTIONS(1451), + [anon_sym_struct] = ACTIONS(1451), + [anon_sym_trait] = ACTIONS(1451), + [anon_sym_type] = ACTIONS(1451), + [anon_sym_union] = ACTIONS(1451), + [anon_sym_unsafe] = ACTIONS(1451), + [anon_sym_use] = ACTIONS(1451), + [anon_sym_while] = ACTIONS(1451), + [anon_sym_POUND] = ACTIONS(1449), + [anon_sym_BANG] = ACTIONS(1449), + [anon_sym_extern] = ACTIONS(1451), + [anon_sym_LT] = ACTIONS(1449), + [anon_sym_COLON_COLON] = ACTIONS(1449), + [anon_sym_AMP] = ACTIONS(1449), + [anon_sym_DOT_DOT] = ACTIONS(1449), + [anon_sym_DASH] = ACTIONS(1449), + [anon_sym_PIPE] = ACTIONS(1449), + [anon_sym_yield] = ACTIONS(1451), + [anon_sym_move] = ACTIONS(1451), + [sym_integer_literal] = ACTIONS(1449), + [aux_sym_string_literal_token1] = ACTIONS(1449), + [sym_char_literal] = ACTIONS(1449), + [anon_sym_true] = ACTIONS(1451), + [anon_sym_false] = ACTIONS(1451), + [anon_sym_u8] = ACTIONS(1451), + [anon_sym_i8] = ACTIONS(1451), + [anon_sym_u16] = ACTIONS(1451), + [anon_sym_i16] = ACTIONS(1451), + [anon_sym_u32] = ACTIONS(1451), + [anon_sym_i32] = ACTIONS(1451), + [anon_sym_u64] = ACTIONS(1451), + [anon_sym_i64] = ACTIONS(1451), + [anon_sym_u128] = ACTIONS(1451), + [anon_sym_i128] = ACTIONS(1451), + [anon_sym_isize] = ACTIONS(1451), + [anon_sym_usize] = ACTIONS(1451), + [anon_sym_f32] = ACTIONS(1451), + [anon_sym_f64] = ACTIONS(1451), + [anon_sym_bool] = ACTIONS(1451), + [anon_sym_str] = ACTIONS(1451), + [anon_sym_char] = ACTIONS(1451), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(1449), + [sym_self] = ACTIONS(1451), + [sym_super] = ACTIONS(1451), + [sym_crate] = ACTIONS(1451), + [sym_metavariable] = ACTIONS(1449), + [sym_grit_metavariable] = ACTIONS(1449), + [sym_raw_string_literal] = ACTIONS(1449), + [sym_float_literal] = ACTIONS(1449), [sym_block_comment] = ACTIONS(3), }, [279] = { - [ts_builtin_sym_end] = ACTIONS(1455), - [sym__primitive_identifier] = ACTIONS(1457), - [anon_sym_SEMI] = ACTIONS(1455), - [anon_sym_macro_rules_BANG] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(1455), - [anon_sym_LBRACE] = ACTIONS(1455), - [anon_sym_RBRACE] = ACTIONS(1455), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_STAR] = ACTIONS(1455), - [anon_sym_SQUOTE] = ACTIONS(1457), - [anon_sym_async] = ACTIONS(1457), - [anon_sym_break] = ACTIONS(1457), - [anon_sym_const] = ACTIONS(1457), - [anon_sym_continue] = ACTIONS(1457), - [anon_sym_default] = ACTIONS(1457), - [anon_sym_enum] = ACTIONS(1457), - [anon_sym_fn] = ACTIONS(1457), - [anon_sym_for] = ACTIONS(1457), - [anon_sym_if] = ACTIONS(1457), - [anon_sym_impl] = ACTIONS(1457), - [anon_sym_let] = ACTIONS(1457), - [anon_sym_loop] = ACTIONS(1457), - [anon_sym_match] = ACTIONS(1457), - [anon_sym_mod] = ACTIONS(1457), - [anon_sym_pub] = ACTIONS(1457), - [anon_sym_return] = ACTIONS(1457), - [anon_sym_static] = ACTIONS(1457), - [anon_sym_struct] = ACTIONS(1457), - [anon_sym_trait] = ACTIONS(1457), - [anon_sym_type] = ACTIONS(1457), - [anon_sym_union] = ACTIONS(1457), - [anon_sym_unsafe] = ACTIONS(1457), - [anon_sym_use] = ACTIONS(1457), - [anon_sym_while] = ACTIONS(1457), - [anon_sym_POUND] = ACTIONS(1455), - [anon_sym_BANG] = ACTIONS(1455), - [anon_sym_extern] = ACTIONS(1457), - [anon_sym_LT] = ACTIONS(1455), - [anon_sym_COLON_COLON] = ACTIONS(1455), - [anon_sym_AMP] = ACTIONS(1455), - [anon_sym_DOT_DOT] = ACTIONS(1455), - [anon_sym_DASH] = ACTIONS(1455), - [anon_sym_PIPE] = ACTIONS(1455), - [anon_sym_yield] = ACTIONS(1457), - [anon_sym_move] = ACTIONS(1457), - [sym_integer_literal] = ACTIONS(1455), - [aux_sym_string_literal_token1] = ACTIONS(1455), - [sym_char_literal] = ACTIONS(1455), - [anon_sym_true] = ACTIONS(1457), - [anon_sym_false] = ACTIONS(1457), - [anon_sym_u8] = ACTIONS(1457), - [anon_sym_i8] = ACTIONS(1457), - [anon_sym_u16] = ACTIONS(1457), - [anon_sym_i16] = ACTIONS(1457), - [anon_sym_u32] = ACTIONS(1457), - [anon_sym_i32] = ACTIONS(1457), - [anon_sym_u64] = ACTIONS(1457), - [anon_sym_i64] = ACTIONS(1457), - [anon_sym_u128] = ACTIONS(1457), - [anon_sym_i128] = ACTIONS(1457), - [anon_sym_isize] = ACTIONS(1457), - [anon_sym_usize] = ACTIONS(1457), - [anon_sym_f32] = ACTIONS(1457), - [anon_sym_f64] = ACTIONS(1457), - [anon_sym_bool] = ACTIONS(1457), - [anon_sym_str] = ACTIONS(1457), - [anon_sym_char] = ACTIONS(1457), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1455), - [sym_self] = ACTIONS(1457), - [sym_super] = ACTIONS(1457), - [sym_crate] = ACTIONS(1457), - [sym_metavariable] = ACTIONS(1455), - [sym_grit_metavariable] = ACTIONS(1455), - [sym_raw_string_literal] = ACTIONS(1455), - [sym_float_literal] = ACTIONS(1455), + [ts_builtin_sym_end] = ACTIONS(1453), + [sym__primitive_identifier] = ACTIONS(1455), + [anon_sym_SEMI] = ACTIONS(1453), + [anon_sym_macro_rules_BANG] = ACTIONS(1453), + [anon_sym_LPAREN] = ACTIONS(1453), + [anon_sym_LBRACE] = ACTIONS(1453), + [anon_sym_RBRACE] = ACTIONS(1453), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_STAR] = ACTIONS(1453), + [anon_sym_SQUOTE] = ACTIONS(1455), + [anon_sym_async] = ACTIONS(1455), + [anon_sym_break] = ACTIONS(1455), + [anon_sym_const] = ACTIONS(1455), + [anon_sym_continue] = ACTIONS(1455), + [anon_sym_default] = ACTIONS(1455), + [anon_sym_enum] = ACTIONS(1455), + [anon_sym_fn] = ACTIONS(1455), + [anon_sym_for] = ACTIONS(1455), + [anon_sym_if] = ACTIONS(1455), + [anon_sym_impl] = ACTIONS(1455), + [anon_sym_let] = ACTIONS(1455), + [anon_sym_loop] = ACTIONS(1455), + [anon_sym_match] = ACTIONS(1455), + [anon_sym_mod] = ACTIONS(1455), + [anon_sym_pub] = ACTIONS(1455), + [anon_sym_return] = ACTIONS(1455), + [anon_sym_static] = ACTIONS(1455), + [anon_sym_struct] = ACTIONS(1455), + [anon_sym_trait] = ACTIONS(1455), + [anon_sym_type] = ACTIONS(1455), + [anon_sym_union] = ACTIONS(1455), + [anon_sym_unsafe] = ACTIONS(1455), + [anon_sym_use] = ACTIONS(1455), + [anon_sym_while] = ACTIONS(1455), + [anon_sym_POUND] = ACTIONS(1453), + [anon_sym_BANG] = ACTIONS(1453), + [anon_sym_extern] = ACTIONS(1455), + [anon_sym_LT] = ACTIONS(1453), + [anon_sym_COLON_COLON] = ACTIONS(1453), + [anon_sym_AMP] = ACTIONS(1453), + [anon_sym_DOT_DOT] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1453), + [anon_sym_PIPE] = ACTIONS(1453), + [anon_sym_yield] = ACTIONS(1455), + [anon_sym_move] = ACTIONS(1455), + [sym_integer_literal] = ACTIONS(1453), + [aux_sym_string_literal_token1] = ACTIONS(1453), + [sym_char_literal] = ACTIONS(1453), + [anon_sym_true] = ACTIONS(1455), + [anon_sym_false] = ACTIONS(1455), + [anon_sym_u8] = ACTIONS(1455), + [anon_sym_i8] = ACTIONS(1455), + [anon_sym_u16] = ACTIONS(1455), + [anon_sym_i16] = ACTIONS(1455), + [anon_sym_u32] = ACTIONS(1455), + [anon_sym_i32] = ACTIONS(1455), + [anon_sym_u64] = ACTIONS(1455), + [anon_sym_i64] = ACTIONS(1455), + [anon_sym_u128] = ACTIONS(1455), + [anon_sym_i128] = ACTIONS(1455), + [anon_sym_isize] = ACTIONS(1455), + [anon_sym_usize] = ACTIONS(1455), + [anon_sym_f32] = ACTIONS(1455), + [anon_sym_f64] = ACTIONS(1455), + [anon_sym_bool] = ACTIONS(1455), + [anon_sym_str] = ACTIONS(1455), + [anon_sym_char] = ACTIONS(1455), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(1453), + [sym_self] = ACTIONS(1455), + [sym_super] = ACTIONS(1455), + [sym_crate] = ACTIONS(1455), + [sym_metavariable] = ACTIONS(1453), + [sym_grit_metavariable] = ACTIONS(1453), + [sym_raw_string_literal] = ACTIONS(1453), + [sym_float_literal] = ACTIONS(1453), [sym_block_comment] = ACTIONS(3), }, [280] = { - [ts_builtin_sym_end] = ACTIONS(1459), - [sym__primitive_identifier] = ACTIONS(1461), - [anon_sym_SEMI] = ACTIONS(1459), - [anon_sym_macro_rules_BANG] = ACTIONS(1459), - [anon_sym_LPAREN] = ACTIONS(1459), - [anon_sym_LBRACE] = ACTIONS(1459), - [anon_sym_RBRACE] = ACTIONS(1459), - [anon_sym_LBRACK] = ACTIONS(1459), - [anon_sym_STAR] = ACTIONS(1459), - [anon_sym_SQUOTE] = ACTIONS(1461), - [anon_sym_async] = ACTIONS(1461), - [anon_sym_break] = ACTIONS(1461), - [anon_sym_const] = ACTIONS(1461), - [anon_sym_continue] = ACTIONS(1461), - [anon_sym_default] = ACTIONS(1461), - [anon_sym_enum] = ACTIONS(1461), - [anon_sym_fn] = ACTIONS(1461), - [anon_sym_for] = ACTIONS(1461), - [anon_sym_if] = ACTIONS(1461), - [anon_sym_impl] = ACTIONS(1461), - [anon_sym_let] = ACTIONS(1461), - [anon_sym_loop] = ACTIONS(1461), - [anon_sym_match] = ACTIONS(1461), - [anon_sym_mod] = ACTIONS(1461), - [anon_sym_pub] = ACTIONS(1461), - [anon_sym_return] = ACTIONS(1461), - [anon_sym_static] = ACTIONS(1461), - [anon_sym_struct] = ACTIONS(1461), - [anon_sym_trait] = ACTIONS(1461), - [anon_sym_type] = ACTIONS(1461), - [anon_sym_union] = ACTIONS(1461), - [anon_sym_unsafe] = ACTIONS(1461), - [anon_sym_use] = ACTIONS(1461), - [anon_sym_while] = ACTIONS(1461), - [anon_sym_POUND] = ACTIONS(1459), - [anon_sym_BANG] = ACTIONS(1459), - [anon_sym_extern] = ACTIONS(1461), - [anon_sym_LT] = ACTIONS(1459), - [anon_sym_COLON_COLON] = ACTIONS(1459), - [anon_sym_AMP] = ACTIONS(1459), - [anon_sym_DOT_DOT] = ACTIONS(1459), - [anon_sym_DASH] = ACTIONS(1459), - [anon_sym_PIPE] = ACTIONS(1459), - [anon_sym_yield] = ACTIONS(1461), - [anon_sym_move] = ACTIONS(1461), - [sym_integer_literal] = ACTIONS(1459), - [aux_sym_string_literal_token1] = ACTIONS(1459), - [sym_char_literal] = ACTIONS(1459), - [anon_sym_true] = ACTIONS(1461), - [anon_sym_false] = ACTIONS(1461), - [anon_sym_u8] = ACTIONS(1461), - [anon_sym_i8] = ACTIONS(1461), - [anon_sym_u16] = ACTIONS(1461), - [anon_sym_i16] = ACTIONS(1461), - [anon_sym_u32] = ACTIONS(1461), - [anon_sym_i32] = ACTIONS(1461), - [anon_sym_u64] = ACTIONS(1461), - [anon_sym_i64] = ACTIONS(1461), - [anon_sym_u128] = ACTIONS(1461), - [anon_sym_i128] = ACTIONS(1461), - [anon_sym_isize] = ACTIONS(1461), - [anon_sym_usize] = ACTIONS(1461), - [anon_sym_f32] = ACTIONS(1461), - [anon_sym_f64] = ACTIONS(1461), - [anon_sym_bool] = ACTIONS(1461), - [anon_sym_str] = ACTIONS(1461), - [anon_sym_char] = ACTIONS(1461), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1459), - [sym_self] = ACTIONS(1461), - [sym_super] = ACTIONS(1461), - [sym_crate] = ACTIONS(1461), - [sym_metavariable] = ACTIONS(1459), - [sym_grit_metavariable] = ACTIONS(1459), - [sym_raw_string_literal] = ACTIONS(1459), - [sym_float_literal] = ACTIONS(1459), + [ts_builtin_sym_end] = ACTIONS(1457), + [sym__primitive_identifier] = ACTIONS(1459), + [anon_sym_SEMI] = ACTIONS(1457), + [anon_sym_macro_rules_BANG] = ACTIONS(1457), + [anon_sym_LPAREN] = ACTIONS(1457), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_RBRACE] = ACTIONS(1457), + [anon_sym_LBRACK] = ACTIONS(1457), + [anon_sym_STAR] = ACTIONS(1457), + [anon_sym_SQUOTE] = ACTIONS(1459), + [anon_sym_async] = ACTIONS(1459), + [anon_sym_break] = ACTIONS(1459), + [anon_sym_const] = ACTIONS(1459), + [anon_sym_continue] = ACTIONS(1459), + [anon_sym_default] = ACTIONS(1459), + [anon_sym_enum] = ACTIONS(1459), + [anon_sym_fn] = ACTIONS(1459), + [anon_sym_for] = ACTIONS(1459), + [anon_sym_if] = ACTIONS(1459), + [anon_sym_impl] = ACTIONS(1459), + [anon_sym_let] = ACTIONS(1459), + [anon_sym_loop] = ACTIONS(1459), + [anon_sym_match] = ACTIONS(1459), + [anon_sym_mod] = ACTIONS(1459), + [anon_sym_pub] = ACTIONS(1459), + [anon_sym_return] = ACTIONS(1459), + [anon_sym_static] = ACTIONS(1459), + [anon_sym_struct] = ACTIONS(1459), + [anon_sym_trait] = ACTIONS(1459), + [anon_sym_type] = ACTIONS(1459), + [anon_sym_union] = ACTIONS(1459), + [anon_sym_unsafe] = ACTIONS(1459), + [anon_sym_use] = ACTIONS(1459), + [anon_sym_while] = ACTIONS(1459), + [anon_sym_POUND] = ACTIONS(1457), + [anon_sym_BANG] = ACTIONS(1457), + [anon_sym_extern] = ACTIONS(1459), + [anon_sym_LT] = ACTIONS(1457), + [anon_sym_COLON_COLON] = ACTIONS(1457), + [anon_sym_AMP] = ACTIONS(1457), + [anon_sym_DOT_DOT] = ACTIONS(1457), + [anon_sym_DASH] = ACTIONS(1457), + [anon_sym_PIPE] = ACTIONS(1457), + [anon_sym_yield] = ACTIONS(1459), + [anon_sym_move] = ACTIONS(1459), + [sym_integer_literal] = ACTIONS(1457), + [aux_sym_string_literal_token1] = ACTIONS(1457), + [sym_char_literal] = ACTIONS(1457), + [anon_sym_true] = ACTIONS(1459), + [anon_sym_false] = ACTIONS(1459), + [anon_sym_u8] = ACTIONS(1459), + [anon_sym_i8] = ACTIONS(1459), + [anon_sym_u16] = ACTIONS(1459), + [anon_sym_i16] = ACTIONS(1459), + [anon_sym_u32] = ACTIONS(1459), + [anon_sym_i32] = ACTIONS(1459), + [anon_sym_u64] = ACTIONS(1459), + [anon_sym_i64] = ACTIONS(1459), + [anon_sym_u128] = ACTIONS(1459), + [anon_sym_i128] = ACTIONS(1459), + [anon_sym_isize] = ACTIONS(1459), + [anon_sym_usize] = ACTIONS(1459), + [anon_sym_f32] = ACTIONS(1459), + [anon_sym_f64] = ACTIONS(1459), + [anon_sym_bool] = ACTIONS(1459), + [anon_sym_str] = ACTIONS(1459), + [anon_sym_char] = ACTIONS(1459), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(1457), + [sym_self] = ACTIONS(1459), + [sym_super] = ACTIONS(1459), + [sym_crate] = ACTIONS(1459), + [sym_metavariable] = ACTIONS(1457), + [sym_grit_metavariable] = ACTIONS(1457), + [sym_raw_string_literal] = ACTIONS(1457), + [sym_float_literal] = ACTIONS(1457), [sym_block_comment] = ACTIONS(3), }, [281] = { - [ts_builtin_sym_end] = ACTIONS(1463), - [sym__primitive_identifier] = ACTIONS(1465), - [anon_sym_SEMI] = ACTIONS(1463), - [anon_sym_macro_rules_BANG] = ACTIONS(1463), - [anon_sym_LPAREN] = ACTIONS(1463), - [anon_sym_LBRACE] = ACTIONS(1463), - [anon_sym_RBRACE] = ACTIONS(1463), - [anon_sym_LBRACK] = ACTIONS(1463), - [anon_sym_STAR] = ACTIONS(1463), - [anon_sym_SQUOTE] = ACTIONS(1465), - [anon_sym_async] = ACTIONS(1465), - [anon_sym_break] = ACTIONS(1465), - [anon_sym_const] = ACTIONS(1465), - [anon_sym_continue] = ACTIONS(1465), - [anon_sym_default] = ACTIONS(1465), - [anon_sym_enum] = ACTIONS(1465), - [anon_sym_fn] = ACTIONS(1465), - [anon_sym_for] = ACTIONS(1465), - [anon_sym_if] = ACTIONS(1465), - [anon_sym_impl] = ACTIONS(1465), - [anon_sym_let] = ACTIONS(1465), - [anon_sym_loop] = ACTIONS(1465), - [anon_sym_match] = ACTIONS(1465), - [anon_sym_mod] = ACTIONS(1465), - [anon_sym_pub] = ACTIONS(1465), - [anon_sym_return] = ACTIONS(1465), - [anon_sym_static] = ACTIONS(1465), - [anon_sym_struct] = ACTIONS(1465), - [anon_sym_trait] = ACTIONS(1465), - [anon_sym_type] = ACTIONS(1465), - [anon_sym_union] = ACTIONS(1465), - [anon_sym_unsafe] = ACTIONS(1465), - [anon_sym_use] = ACTIONS(1465), - [anon_sym_while] = ACTIONS(1465), - [anon_sym_POUND] = ACTIONS(1463), - [anon_sym_BANG] = ACTIONS(1463), - [anon_sym_extern] = ACTIONS(1465), - [anon_sym_LT] = ACTIONS(1463), - [anon_sym_COLON_COLON] = ACTIONS(1463), - [anon_sym_AMP] = ACTIONS(1463), - [anon_sym_DOT_DOT] = ACTIONS(1463), - [anon_sym_DASH] = ACTIONS(1463), - [anon_sym_PIPE] = ACTIONS(1463), - [anon_sym_yield] = ACTIONS(1465), - [anon_sym_move] = ACTIONS(1465), - [sym_integer_literal] = ACTIONS(1463), - [aux_sym_string_literal_token1] = ACTIONS(1463), - [sym_char_literal] = ACTIONS(1463), - [anon_sym_true] = ACTIONS(1465), - [anon_sym_false] = ACTIONS(1465), - [anon_sym_u8] = ACTIONS(1465), - [anon_sym_i8] = ACTIONS(1465), - [anon_sym_u16] = ACTIONS(1465), - [anon_sym_i16] = ACTIONS(1465), - [anon_sym_u32] = ACTIONS(1465), - [anon_sym_i32] = ACTIONS(1465), - [anon_sym_u64] = ACTIONS(1465), - [anon_sym_i64] = ACTIONS(1465), - [anon_sym_u128] = ACTIONS(1465), - [anon_sym_i128] = ACTIONS(1465), - [anon_sym_isize] = ACTIONS(1465), - [anon_sym_usize] = ACTIONS(1465), - [anon_sym_f32] = ACTIONS(1465), - [anon_sym_f64] = ACTIONS(1465), - [anon_sym_bool] = ACTIONS(1465), - [anon_sym_str] = ACTIONS(1465), - [anon_sym_char] = ACTIONS(1465), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1463), - [sym_self] = ACTIONS(1465), - [sym_super] = ACTIONS(1465), - [sym_crate] = ACTIONS(1465), - [sym_metavariable] = ACTIONS(1463), - [sym_grit_metavariable] = ACTIONS(1463), - [sym_raw_string_literal] = ACTIONS(1463), - [sym_float_literal] = ACTIONS(1463), + [ts_builtin_sym_end] = ACTIONS(1461), + [sym__primitive_identifier] = ACTIONS(1463), + [anon_sym_SEMI] = ACTIONS(1461), + [anon_sym_macro_rules_BANG] = ACTIONS(1461), + [anon_sym_LPAREN] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_RBRACE] = ACTIONS(1461), + [anon_sym_LBRACK] = ACTIONS(1461), + [anon_sym_STAR] = ACTIONS(1461), + [anon_sym_SQUOTE] = ACTIONS(1463), + [anon_sym_async] = ACTIONS(1463), + [anon_sym_break] = ACTIONS(1463), + [anon_sym_const] = ACTIONS(1463), + [anon_sym_continue] = ACTIONS(1463), + [anon_sym_default] = ACTIONS(1463), + [anon_sym_enum] = ACTIONS(1463), + [anon_sym_fn] = ACTIONS(1463), + [anon_sym_for] = ACTIONS(1463), + [anon_sym_if] = ACTIONS(1463), + [anon_sym_impl] = ACTIONS(1463), + [anon_sym_let] = ACTIONS(1463), + [anon_sym_loop] = ACTIONS(1463), + [anon_sym_match] = ACTIONS(1463), + [anon_sym_mod] = ACTIONS(1463), + [anon_sym_pub] = ACTIONS(1463), + [anon_sym_return] = ACTIONS(1463), + [anon_sym_static] = ACTIONS(1463), + [anon_sym_struct] = ACTIONS(1463), + [anon_sym_trait] = ACTIONS(1463), + [anon_sym_type] = ACTIONS(1463), + [anon_sym_union] = ACTIONS(1463), + [anon_sym_unsafe] = ACTIONS(1463), + [anon_sym_use] = ACTIONS(1463), + [anon_sym_while] = ACTIONS(1463), + [anon_sym_POUND] = ACTIONS(1461), + [anon_sym_BANG] = ACTIONS(1461), + [anon_sym_extern] = ACTIONS(1463), + [anon_sym_LT] = ACTIONS(1461), + [anon_sym_COLON_COLON] = ACTIONS(1461), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_DOT_DOT] = ACTIONS(1461), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_PIPE] = ACTIONS(1461), + [anon_sym_yield] = ACTIONS(1463), + [anon_sym_move] = ACTIONS(1463), + [sym_integer_literal] = ACTIONS(1461), + [aux_sym_string_literal_token1] = ACTIONS(1461), + [sym_char_literal] = ACTIONS(1461), + [anon_sym_true] = ACTIONS(1463), + [anon_sym_false] = ACTIONS(1463), + [anon_sym_u8] = ACTIONS(1463), + [anon_sym_i8] = ACTIONS(1463), + [anon_sym_u16] = ACTIONS(1463), + [anon_sym_i16] = ACTIONS(1463), + [anon_sym_u32] = ACTIONS(1463), + [anon_sym_i32] = ACTIONS(1463), + [anon_sym_u64] = ACTIONS(1463), + [anon_sym_i64] = ACTIONS(1463), + [anon_sym_u128] = ACTIONS(1463), + [anon_sym_i128] = ACTIONS(1463), + [anon_sym_isize] = ACTIONS(1463), + [anon_sym_usize] = ACTIONS(1463), + [anon_sym_f32] = ACTIONS(1463), + [anon_sym_f64] = ACTIONS(1463), + [anon_sym_bool] = ACTIONS(1463), + [anon_sym_str] = ACTIONS(1463), + [anon_sym_char] = ACTIONS(1463), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(1461), + [sym_self] = ACTIONS(1463), + [sym_super] = ACTIONS(1463), + [sym_crate] = ACTIONS(1463), + [sym_metavariable] = ACTIONS(1461), + [sym_grit_metavariable] = ACTIONS(1461), + [sym_raw_string_literal] = ACTIONS(1461), + [sym_float_literal] = ACTIONS(1461), [sym_block_comment] = ACTIONS(3), }, [282] = { - [ts_builtin_sym_end] = ACTIONS(1467), - [sym__primitive_identifier] = ACTIONS(1469), - [anon_sym_SEMI] = ACTIONS(1467), - [anon_sym_macro_rules_BANG] = ACTIONS(1467), - [anon_sym_LPAREN] = ACTIONS(1467), - [anon_sym_LBRACE] = ACTIONS(1467), - [anon_sym_RBRACE] = ACTIONS(1467), - [anon_sym_LBRACK] = ACTIONS(1467), - [anon_sym_STAR] = ACTIONS(1467), - [anon_sym_SQUOTE] = ACTIONS(1469), - [anon_sym_async] = ACTIONS(1469), - [anon_sym_break] = ACTIONS(1469), - [anon_sym_const] = ACTIONS(1469), - [anon_sym_continue] = ACTIONS(1469), - [anon_sym_default] = ACTIONS(1469), - [anon_sym_enum] = ACTIONS(1469), - [anon_sym_fn] = ACTIONS(1469), - [anon_sym_for] = ACTIONS(1469), - [anon_sym_if] = ACTIONS(1469), - [anon_sym_impl] = ACTIONS(1469), - [anon_sym_let] = ACTIONS(1469), - [anon_sym_loop] = ACTIONS(1469), - [anon_sym_match] = ACTIONS(1469), - [anon_sym_mod] = ACTIONS(1469), - [anon_sym_pub] = ACTIONS(1469), - [anon_sym_return] = ACTIONS(1469), - [anon_sym_static] = ACTIONS(1469), - [anon_sym_struct] = ACTIONS(1469), - [anon_sym_trait] = ACTIONS(1469), - [anon_sym_type] = ACTIONS(1469), - [anon_sym_union] = ACTIONS(1469), - [anon_sym_unsafe] = ACTIONS(1469), - [anon_sym_use] = ACTIONS(1469), - [anon_sym_while] = ACTIONS(1469), - [anon_sym_POUND] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(1467), - [anon_sym_extern] = ACTIONS(1469), - [anon_sym_LT] = ACTIONS(1467), - [anon_sym_COLON_COLON] = ACTIONS(1467), - [anon_sym_AMP] = ACTIONS(1467), - [anon_sym_DOT_DOT] = ACTIONS(1467), - [anon_sym_DASH] = ACTIONS(1467), - [anon_sym_PIPE] = ACTIONS(1467), - [anon_sym_yield] = ACTIONS(1469), - [anon_sym_move] = ACTIONS(1469), - [sym_integer_literal] = ACTIONS(1467), - [aux_sym_string_literal_token1] = ACTIONS(1467), - [sym_char_literal] = ACTIONS(1467), - [anon_sym_true] = ACTIONS(1469), - [anon_sym_false] = ACTIONS(1469), - [anon_sym_u8] = ACTIONS(1469), - [anon_sym_i8] = ACTIONS(1469), - [anon_sym_u16] = ACTIONS(1469), - [anon_sym_i16] = ACTIONS(1469), - [anon_sym_u32] = ACTIONS(1469), - [anon_sym_i32] = ACTIONS(1469), - [anon_sym_u64] = ACTIONS(1469), - [anon_sym_i64] = ACTIONS(1469), - [anon_sym_u128] = ACTIONS(1469), - [anon_sym_i128] = ACTIONS(1469), - [anon_sym_isize] = ACTIONS(1469), - [anon_sym_usize] = ACTIONS(1469), - [anon_sym_f32] = ACTIONS(1469), - [anon_sym_f64] = ACTIONS(1469), - [anon_sym_bool] = ACTIONS(1469), - [anon_sym_str] = ACTIONS(1469), - [anon_sym_char] = ACTIONS(1469), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1467), - [sym_self] = ACTIONS(1469), - [sym_super] = ACTIONS(1469), - [sym_crate] = ACTIONS(1469), - [sym_metavariable] = ACTIONS(1467), - [sym_grit_metavariable] = ACTIONS(1467), - [sym_raw_string_literal] = ACTIONS(1467), - [sym_float_literal] = ACTIONS(1467), + [ts_builtin_sym_end] = ACTIONS(1465), + [sym__primitive_identifier] = ACTIONS(1467), + [anon_sym_SEMI] = ACTIONS(1465), + [anon_sym_macro_rules_BANG] = ACTIONS(1465), + [anon_sym_LPAREN] = ACTIONS(1465), + [anon_sym_LBRACE] = ACTIONS(1465), + [anon_sym_RBRACE] = ACTIONS(1465), + [anon_sym_LBRACK] = ACTIONS(1465), + [anon_sym_STAR] = ACTIONS(1465), + [anon_sym_SQUOTE] = ACTIONS(1467), + [anon_sym_async] = ACTIONS(1467), + [anon_sym_break] = ACTIONS(1467), + [anon_sym_const] = ACTIONS(1467), + [anon_sym_continue] = ACTIONS(1467), + [anon_sym_default] = ACTIONS(1467), + [anon_sym_enum] = ACTIONS(1467), + [anon_sym_fn] = ACTIONS(1467), + [anon_sym_for] = ACTIONS(1467), + [anon_sym_if] = ACTIONS(1467), + [anon_sym_impl] = ACTIONS(1467), + [anon_sym_let] = ACTIONS(1467), + [anon_sym_loop] = ACTIONS(1467), + [anon_sym_match] = ACTIONS(1467), + [anon_sym_mod] = ACTIONS(1467), + [anon_sym_pub] = ACTIONS(1467), + [anon_sym_return] = ACTIONS(1467), + [anon_sym_static] = ACTIONS(1467), + [anon_sym_struct] = ACTIONS(1467), + [anon_sym_trait] = ACTIONS(1467), + [anon_sym_type] = ACTIONS(1467), + [anon_sym_union] = ACTIONS(1467), + [anon_sym_unsafe] = ACTIONS(1467), + [anon_sym_use] = ACTIONS(1467), + [anon_sym_while] = ACTIONS(1467), + [anon_sym_POUND] = ACTIONS(1465), + [anon_sym_BANG] = ACTIONS(1465), + [anon_sym_extern] = ACTIONS(1467), + [anon_sym_LT] = ACTIONS(1465), + [anon_sym_COLON_COLON] = ACTIONS(1465), + [anon_sym_AMP] = ACTIONS(1465), + [anon_sym_DOT_DOT] = ACTIONS(1465), + [anon_sym_DASH] = ACTIONS(1465), + [anon_sym_PIPE] = ACTIONS(1465), + [anon_sym_yield] = ACTIONS(1467), + [anon_sym_move] = ACTIONS(1467), + [sym_integer_literal] = ACTIONS(1465), + [aux_sym_string_literal_token1] = ACTIONS(1465), + [sym_char_literal] = ACTIONS(1465), + [anon_sym_true] = ACTIONS(1467), + [anon_sym_false] = ACTIONS(1467), + [anon_sym_u8] = ACTIONS(1467), + [anon_sym_i8] = ACTIONS(1467), + [anon_sym_u16] = ACTIONS(1467), + [anon_sym_i16] = ACTIONS(1467), + [anon_sym_u32] = ACTIONS(1467), + [anon_sym_i32] = ACTIONS(1467), + [anon_sym_u64] = ACTIONS(1467), + [anon_sym_i64] = ACTIONS(1467), + [anon_sym_u128] = ACTIONS(1467), + [anon_sym_i128] = ACTIONS(1467), + [anon_sym_isize] = ACTIONS(1467), + [anon_sym_usize] = ACTIONS(1467), + [anon_sym_f32] = ACTIONS(1467), + [anon_sym_f64] = ACTIONS(1467), + [anon_sym_bool] = ACTIONS(1467), + [anon_sym_str] = ACTIONS(1467), + [anon_sym_char] = ACTIONS(1467), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(1465), + [sym_self] = ACTIONS(1467), + [sym_super] = ACTIONS(1467), + [sym_crate] = ACTIONS(1467), + [sym_metavariable] = ACTIONS(1465), + [sym_grit_metavariable] = ACTIONS(1465), + [sym_raw_string_literal] = ACTIONS(1465), + [sym_float_literal] = ACTIONS(1465), [sym_block_comment] = ACTIONS(3), }, [283] = { - [ts_builtin_sym_end] = ACTIONS(1471), - [sym__primitive_identifier] = ACTIONS(1473), - [anon_sym_SEMI] = ACTIONS(1471), - [anon_sym_macro_rules_BANG] = ACTIONS(1471), - [anon_sym_LPAREN] = ACTIONS(1471), - [anon_sym_LBRACE] = ACTIONS(1471), - [anon_sym_RBRACE] = ACTIONS(1471), - [anon_sym_LBRACK] = ACTIONS(1471), - [anon_sym_STAR] = ACTIONS(1471), - [anon_sym_SQUOTE] = ACTIONS(1473), - [anon_sym_async] = ACTIONS(1473), - [anon_sym_break] = ACTIONS(1473), - [anon_sym_const] = ACTIONS(1473), - [anon_sym_continue] = ACTIONS(1473), - [anon_sym_default] = ACTIONS(1473), - [anon_sym_enum] = ACTIONS(1473), - [anon_sym_fn] = ACTIONS(1473), - [anon_sym_for] = ACTIONS(1473), - [anon_sym_if] = ACTIONS(1473), - [anon_sym_impl] = ACTIONS(1473), - [anon_sym_let] = ACTIONS(1473), - [anon_sym_loop] = ACTIONS(1473), - [anon_sym_match] = ACTIONS(1473), - [anon_sym_mod] = ACTIONS(1473), - [anon_sym_pub] = ACTIONS(1473), - [anon_sym_return] = ACTIONS(1473), - [anon_sym_static] = ACTIONS(1473), - [anon_sym_struct] = ACTIONS(1473), - [anon_sym_trait] = ACTIONS(1473), - [anon_sym_type] = ACTIONS(1473), - [anon_sym_union] = ACTIONS(1473), - [anon_sym_unsafe] = ACTIONS(1473), - [anon_sym_use] = ACTIONS(1473), - [anon_sym_while] = ACTIONS(1473), - [anon_sym_POUND] = ACTIONS(1471), - [anon_sym_BANG] = ACTIONS(1471), - [anon_sym_extern] = ACTIONS(1473), - [anon_sym_LT] = ACTIONS(1471), - [anon_sym_COLON_COLON] = ACTIONS(1471), - [anon_sym_AMP] = ACTIONS(1471), - [anon_sym_DOT_DOT] = ACTIONS(1471), - [anon_sym_DASH] = ACTIONS(1471), - [anon_sym_PIPE] = ACTIONS(1471), - [anon_sym_yield] = ACTIONS(1473), - [anon_sym_move] = ACTIONS(1473), - [sym_integer_literal] = ACTIONS(1471), - [aux_sym_string_literal_token1] = ACTIONS(1471), - [sym_char_literal] = ACTIONS(1471), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_u8] = ACTIONS(1473), - [anon_sym_i8] = ACTIONS(1473), - [anon_sym_u16] = ACTIONS(1473), - [anon_sym_i16] = ACTIONS(1473), - [anon_sym_u32] = ACTIONS(1473), - [anon_sym_i32] = ACTIONS(1473), - [anon_sym_u64] = ACTIONS(1473), - [anon_sym_i64] = ACTIONS(1473), - [anon_sym_u128] = ACTIONS(1473), - [anon_sym_i128] = ACTIONS(1473), - [anon_sym_isize] = ACTIONS(1473), - [anon_sym_usize] = ACTIONS(1473), - [anon_sym_f32] = ACTIONS(1473), - [anon_sym_f64] = ACTIONS(1473), - [anon_sym_bool] = ACTIONS(1473), - [anon_sym_str] = ACTIONS(1473), - [anon_sym_char] = ACTIONS(1473), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1471), - [sym_self] = ACTIONS(1473), - [sym_super] = ACTIONS(1473), - [sym_crate] = ACTIONS(1473), - [sym_metavariable] = ACTIONS(1471), - [sym_grit_metavariable] = ACTIONS(1471), - [sym_raw_string_literal] = ACTIONS(1471), - [sym_float_literal] = ACTIONS(1471), + [ts_builtin_sym_end] = ACTIONS(1469), + [sym__primitive_identifier] = ACTIONS(1471), + [anon_sym_SEMI] = ACTIONS(1469), + [anon_sym_macro_rules_BANG] = ACTIONS(1469), + [anon_sym_LPAREN] = ACTIONS(1469), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_RBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1469), + [anon_sym_STAR] = ACTIONS(1469), + [anon_sym_SQUOTE] = ACTIONS(1471), + [anon_sym_async] = ACTIONS(1471), + [anon_sym_break] = ACTIONS(1471), + [anon_sym_const] = ACTIONS(1471), + [anon_sym_continue] = ACTIONS(1471), + [anon_sym_default] = ACTIONS(1471), + [anon_sym_enum] = ACTIONS(1471), + [anon_sym_fn] = ACTIONS(1471), + [anon_sym_for] = ACTIONS(1471), + [anon_sym_if] = ACTIONS(1471), + [anon_sym_impl] = ACTIONS(1471), + [anon_sym_let] = ACTIONS(1471), + [anon_sym_loop] = ACTIONS(1471), + [anon_sym_match] = ACTIONS(1471), + [anon_sym_mod] = ACTIONS(1471), + [anon_sym_pub] = ACTIONS(1471), + [anon_sym_return] = ACTIONS(1471), + [anon_sym_static] = ACTIONS(1471), + [anon_sym_struct] = ACTIONS(1471), + [anon_sym_trait] = ACTIONS(1471), + [anon_sym_type] = ACTIONS(1471), + [anon_sym_union] = ACTIONS(1471), + [anon_sym_unsafe] = ACTIONS(1471), + [anon_sym_use] = ACTIONS(1471), + [anon_sym_while] = ACTIONS(1471), + [anon_sym_POUND] = ACTIONS(1469), + [anon_sym_BANG] = ACTIONS(1469), + [anon_sym_extern] = ACTIONS(1471), + [anon_sym_LT] = ACTIONS(1469), + [anon_sym_COLON_COLON] = ACTIONS(1469), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_DOT_DOT] = ACTIONS(1469), + [anon_sym_DASH] = ACTIONS(1469), + [anon_sym_PIPE] = ACTIONS(1469), + [anon_sym_yield] = ACTIONS(1471), + [anon_sym_move] = ACTIONS(1471), + [sym_integer_literal] = ACTIONS(1469), + [aux_sym_string_literal_token1] = ACTIONS(1469), + [sym_char_literal] = ACTIONS(1469), + [anon_sym_true] = ACTIONS(1471), + [anon_sym_false] = ACTIONS(1471), + [anon_sym_u8] = ACTIONS(1471), + [anon_sym_i8] = ACTIONS(1471), + [anon_sym_u16] = ACTIONS(1471), + [anon_sym_i16] = ACTIONS(1471), + [anon_sym_u32] = ACTIONS(1471), + [anon_sym_i32] = ACTIONS(1471), + [anon_sym_u64] = ACTIONS(1471), + [anon_sym_i64] = ACTIONS(1471), + [anon_sym_u128] = ACTIONS(1471), + [anon_sym_i128] = ACTIONS(1471), + [anon_sym_isize] = ACTIONS(1471), + [anon_sym_usize] = ACTIONS(1471), + [anon_sym_f32] = ACTIONS(1471), + [anon_sym_f64] = ACTIONS(1471), + [anon_sym_bool] = ACTIONS(1471), + [anon_sym_str] = ACTIONS(1471), + [anon_sym_char] = ACTIONS(1471), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(1469), + [sym_self] = ACTIONS(1471), + [sym_super] = ACTIONS(1471), + [sym_crate] = ACTIONS(1471), + [sym_metavariable] = ACTIONS(1469), + [sym_grit_metavariable] = ACTIONS(1469), + [sym_raw_string_literal] = ACTIONS(1469), + [sym_float_literal] = ACTIONS(1469), [sym_block_comment] = ACTIONS(3), }, [284] = { - [ts_builtin_sym_end] = ACTIONS(1475), - [sym__primitive_identifier] = ACTIONS(1477), - [anon_sym_SEMI] = ACTIONS(1475), - [anon_sym_macro_rules_BANG] = ACTIONS(1475), - [anon_sym_LPAREN] = ACTIONS(1475), - [anon_sym_LBRACE] = ACTIONS(1475), - [anon_sym_RBRACE] = ACTIONS(1475), - [anon_sym_LBRACK] = ACTIONS(1475), - [anon_sym_STAR] = ACTIONS(1475), - [anon_sym_SQUOTE] = ACTIONS(1477), - [anon_sym_async] = ACTIONS(1477), - [anon_sym_break] = ACTIONS(1477), - [anon_sym_const] = ACTIONS(1477), - [anon_sym_continue] = ACTIONS(1477), - [anon_sym_default] = ACTIONS(1477), - [anon_sym_enum] = ACTIONS(1477), - [anon_sym_fn] = ACTIONS(1477), - [anon_sym_for] = ACTIONS(1477), - [anon_sym_if] = ACTIONS(1477), - [anon_sym_impl] = ACTIONS(1477), - [anon_sym_let] = ACTIONS(1477), - [anon_sym_loop] = ACTIONS(1477), - [anon_sym_match] = ACTIONS(1477), - [anon_sym_mod] = ACTIONS(1477), - [anon_sym_pub] = ACTIONS(1477), - [anon_sym_return] = ACTIONS(1477), - [anon_sym_static] = ACTIONS(1477), - [anon_sym_struct] = ACTIONS(1477), - [anon_sym_trait] = ACTIONS(1477), - [anon_sym_type] = ACTIONS(1477), - [anon_sym_union] = ACTIONS(1477), - [anon_sym_unsafe] = ACTIONS(1477), - [anon_sym_use] = ACTIONS(1477), - [anon_sym_while] = ACTIONS(1477), - [anon_sym_POUND] = ACTIONS(1475), - [anon_sym_BANG] = ACTIONS(1475), - [anon_sym_extern] = ACTIONS(1477), - [anon_sym_LT] = ACTIONS(1475), - [anon_sym_COLON_COLON] = ACTIONS(1475), - [anon_sym_AMP] = ACTIONS(1475), - [anon_sym_DOT_DOT] = ACTIONS(1475), - [anon_sym_DASH] = ACTIONS(1475), - [anon_sym_PIPE] = ACTIONS(1475), - [anon_sym_yield] = ACTIONS(1477), - [anon_sym_move] = ACTIONS(1477), - [sym_integer_literal] = ACTIONS(1475), - [aux_sym_string_literal_token1] = ACTIONS(1475), - [sym_char_literal] = ACTIONS(1475), - [anon_sym_true] = ACTIONS(1477), - [anon_sym_false] = ACTIONS(1477), - [anon_sym_u8] = ACTIONS(1477), - [anon_sym_i8] = ACTIONS(1477), - [anon_sym_u16] = ACTIONS(1477), - [anon_sym_i16] = ACTIONS(1477), - [anon_sym_u32] = ACTIONS(1477), - [anon_sym_i32] = ACTIONS(1477), - [anon_sym_u64] = ACTIONS(1477), - [anon_sym_i64] = ACTIONS(1477), - [anon_sym_u128] = ACTIONS(1477), - [anon_sym_i128] = ACTIONS(1477), - [anon_sym_isize] = ACTIONS(1477), - [anon_sym_usize] = ACTIONS(1477), - [anon_sym_f32] = ACTIONS(1477), - [anon_sym_f64] = ACTIONS(1477), - [anon_sym_bool] = ACTIONS(1477), - [anon_sym_str] = ACTIONS(1477), - [anon_sym_char] = ACTIONS(1477), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1475), - [sym_self] = ACTIONS(1477), - [sym_super] = ACTIONS(1477), - [sym_crate] = ACTIONS(1477), - [sym_metavariable] = ACTIONS(1475), - [sym_grit_metavariable] = ACTIONS(1475), - [sym_raw_string_literal] = ACTIONS(1475), - [sym_float_literal] = ACTIONS(1475), + [ts_builtin_sym_end] = ACTIONS(1473), + [sym__primitive_identifier] = ACTIONS(1475), + [anon_sym_SEMI] = ACTIONS(1473), + [anon_sym_macro_rules_BANG] = ACTIONS(1473), + [anon_sym_LPAREN] = ACTIONS(1473), + [anon_sym_LBRACE] = ACTIONS(1473), + [anon_sym_RBRACE] = ACTIONS(1473), + [anon_sym_LBRACK] = ACTIONS(1473), + [anon_sym_STAR] = ACTIONS(1473), + [anon_sym_SQUOTE] = ACTIONS(1475), + [anon_sym_async] = ACTIONS(1475), + [anon_sym_break] = ACTIONS(1475), + [anon_sym_const] = ACTIONS(1475), + [anon_sym_continue] = ACTIONS(1475), + [anon_sym_default] = ACTIONS(1475), + [anon_sym_enum] = ACTIONS(1475), + [anon_sym_fn] = ACTIONS(1475), + [anon_sym_for] = ACTIONS(1475), + [anon_sym_if] = ACTIONS(1475), + [anon_sym_impl] = ACTIONS(1475), + [anon_sym_let] = ACTIONS(1475), + [anon_sym_loop] = ACTIONS(1475), + [anon_sym_match] = ACTIONS(1475), + [anon_sym_mod] = ACTIONS(1475), + [anon_sym_pub] = ACTIONS(1475), + [anon_sym_return] = ACTIONS(1475), + [anon_sym_static] = ACTIONS(1475), + [anon_sym_struct] = ACTIONS(1475), + [anon_sym_trait] = ACTIONS(1475), + [anon_sym_type] = ACTIONS(1475), + [anon_sym_union] = ACTIONS(1475), + [anon_sym_unsafe] = ACTIONS(1475), + [anon_sym_use] = ACTIONS(1475), + [anon_sym_while] = ACTIONS(1475), + [anon_sym_POUND] = ACTIONS(1473), + [anon_sym_BANG] = ACTIONS(1473), + [anon_sym_extern] = ACTIONS(1475), + [anon_sym_LT] = ACTIONS(1473), + [anon_sym_COLON_COLON] = ACTIONS(1473), + [anon_sym_AMP] = ACTIONS(1473), + [anon_sym_DOT_DOT] = ACTIONS(1473), + [anon_sym_DASH] = ACTIONS(1473), + [anon_sym_PIPE] = ACTIONS(1473), + [anon_sym_yield] = ACTIONS(1475), + [anon_sym_move] = ACTIONS(1475), + [sym_integer_literal] = ACTIONS(1473), + [aux_sym_string_literal_token1] = ACTIONS(1473), + [sym_char_literal] = ACTIONS(1473), + [anon_sym_true] = ACTIONS(1475), + [anon_sym_false] = ACTIONS(1475), + [anon_sym_u8] = ACTIONS(1475), + [anon_sym_i8] = ACTIONS(1475), + [anon_sym_u16] = ACTIONS(1475), + [anon_sym_i16] = ACTIONS(1475), + [anon_sym_u32] = ACTIONS(1475), + [anon_sym_i32] = ACTIONS(1475), + [anon_sym_u64] = ACTIONS(1475), + [anon_sym_i64] = ACTIONS(1475), + [anon_sym_u128] = ACTIONS(1475), + [anon_sym_i128] = ACTIONS(1475), + [anon_sym_isize] = ACTIONS(1475), + [anon_sym_usize] = ACTIONS(1475), + [anon_sym_f32] = ACTIONS(1475), + [anon_sym_f64] = ACTIONS(1475), + [anon_sym_bool] = ACTIONS(1475), + [anon_sym_str] = ACTIONS(1475), + [anon_sym_char] = ACTIONS(1475), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(1473), + [sym_self] = ACTIONS(1475), + [sym_super] = ACTIONS(1475), + [sym_crate] = ACTIONS(1475), + [sym_metavariable] = ACTIONS(1473), + [sym_grit_metavariable] = ACTIONS(1473), + [sym_raw_string_literal] = ACTIONS(1473), + [sym_float_literal] = ACTIONS(1473), [sym_block_comment] = ACTIONS(3), }, [285] = { - [ts_builtin_sym_end] = ACTIONS(1479), - [sym__primitive_identifier] = ACTIONS(1481), - [anon_sym_SEMI] = ACTIONS(1479), - [anon_sym_macro_rules_BANG] = ACTIONS(1479), - [anon_sym_LPAREN] = ACTIONS(1479), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_RBRACE] = ACTIONS(1479), - [anon_sym_LBRACK] = ACTIONS(1479), - [anon_sym_STAR] = ACTIONS(1479), - [anon_sym_SQUOTE] = ACTIONS(1481), - [anon_sym_async] = ACTIONS(1481), - [anon_sym_break] = ACTIONS(1481), - [anon_sym_const] = ACTIONS(1481), - [anon_sym_continue] = ACTIONS(1481), - [anon_sym_default] = ACTIONS(1481), - [anon_sym_enum] = ACTIONS(1481), - [anon_sym_fn] = ACTIONS(1481), - [anon_sym_for] = ACTIONS(1481), - [anon_sym_if] = ACTIONS(1481), - [anon_sym_impl] = ACTIONS(1481), - [anon_sym_let] = ACTIONS(1481), - [anon_sym_loop] = ACTIONS(1481), - [anon_sym_match] = ACTIONS(1481), - [anon_sym_mod] = ACTIONS(1481), - [anon_sym_pub] = ACTIONS(1481), - [anon_sym_return] = ACTIONS(1481), - [anon_sym_static] = ACTIONS(1481), - [anon_sym_struct] = ACTIONS(1481), - [anon_sym_trait] = ACTIONS(1481), - [anon_sym_type] = ACTIONS(1481), - [anon_sym_union] = ACTIONS(1481), - [anon_sym_unsafe] = ACTIONS(1481), - [anon_sym_use] = ACTIONS(1481), - [anon_sym_while] = ACTIONS(1481), - [anon_sym_POUND] = ACTIONS(1479), - [anon_sym_BANG] = ACTIONS(1479), - [anon_sym_extern] = ACTIONS(1481), - [anon_sym_LT] = ACTIONS(1479), - [anon_sym_COLON_COLON] = ACTIONS(1479), - [anon_sym_AMP] = ACTIONS(1479), - [anon_sym_DOT_DOT] = ACTIONS(1479), - [anon_sym_DASH] = ACTIONS(1479), - [anon_sym_PIPE] = ACTIONS(1479), - [anon_sym_yield] = ACTIONS(1481), - [anon_sym_move] = ACTIONS(1481), - [sym_integer_literal] = ACTIONS(1479), - [aux_sym_string_literal_token1] = ACTIONS(1479), - [sym_char_literal] = ACTIONS(1479), - [anon_sym_true] = ACTIONS(1481), - [anon_sym_false] = ACTIONS(1481), - [anon_sym_u8] = ACTIONS(1481), - [anon_sym_i8] = ACTIONS(1481), - [anon_sym_u16] = ACTIONS(1481), - [anon_sym_i16] = ACTIONS(1481), - [anon_sym_u32] = ACTIONS(1481), - [anon_sym_i32] = ACTIONS(1481), - [anon_sym_u64] = ACTIONS(1481), - [anon_sym_i64] = ACTIONS(1481), - [anon_sym_u128] = ACTIONS(1481), - [anon_sym_i128] = ACTIONS(1481), - [anon_sym_isize] = ACTIONS(1481), - [anon_sym_usize] = ACTIONS(1481), - [anon_sym_f32] = ACTIONS(1481), - [anon_sym_f64] = ACTIONS(1481), - [anon_sym_bool] = ACTIONS(1481), - [anon_sym_str] = ACTIONS(1481), - [anon_sym_char] = ACTIONS(1481), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1479), - [sym_self] = ACTIONS(1481), - [sym_super] = ACTIONS(1481), - [sym_crate] = ACTIONS(1481), - [sym_metavariable] = ACTIONS(1479), - [sym_grit_metavariable] = ACTIONS(1479), - [sym_raw_string_literal] = ACTIONS(1479), - [sym_float_literal] = ACTIONS(1479), + [ts_builtin_sym_end] = ACTIONS(1477), + [sym__primitive_identifier] = ACTIONS(1479), + [anon_sym_SEMI] = ACTIONS(1477), + [anon_sym_macro_rules_BANG] = ACTIONS(1477), + [anon_sym_LPAREN] = ACTIONS(1477), + [anon_sym_LBRACE] = ACTIONS(1477), + [anon_sym_RBRACE] = ACTIONS(1477), + [anon_sym_LBRACK] = ACTIONS(1477), + [anon_sym_STAR] = ACTIONS(1477), + [anon_sym_SQUOTE] = ACTIONS(1479), + [anon_sym_async] = ACTIONS(1479), + [anon_sym_break] = ACTIONS(1479), + [anon_sym_const] = ACTIONS(1479), + [anon_sym_continue] = ACTIONS(1479), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_enum] = ACTIONS(1479), + [anon_sym_fn] = ACTIONS(1479), + [anon_sym_for] = ACTIONS(1479), + [anon_sym_if] = ACTIONS(1479), + [anon_sym_impl] = ACTIONS(1479), + [anon_sym_let] = ACTIONS(1479), + [anon_sym_loop] = ACTIONS(1479), + [anon_sym_match] = ACTIONS(1479), + [anon_sym_mod] = ACTIONS(1479), + [anon_sym_pub] = ACTIONS(1479), + [anon_sym_return] = ACTIONS(1479), + [anon_sym_static] = ACTIONS(1479), + [anon_sym_struct] = ACTIONS(1479), + [anon_sym_trait] = ACTIONS(1479), + [anon_sym_type] = ACTIONS(1479), + [anon_sym_union] = ACTIONS(1479), + [anon_sym_unsafe] = ACTIONS(1479), + [anon_sym_use] = ACTIONS(1479), + [anon_sym_while] = ACTIONS(1479), + [anon_sym_POUND] = ACTIONS(1477), + [anon_sym_BANG] = ACTIONS(1477), + [anon_sym_extern] = ACTIONS(1479), + [anon_sym_LT] = ACTIONS(1477), + [anon_sym_COLON_COLON] = ACTIONS(1477), + [anon_sym_AMP] = ACTIONS(1477), + [anon_sym_DOT_DOT] = ACTIONS(1477), + [anon_sym_DASH] = ACTIONS(1477), + [anon_sym_PIPE] = ACTIONS(1477), + [anon_sym_yield] = ACTIONS(1479), + [anon_sym_move] = ACTIONS(1479), + [sym_integer_literal] = ACTIONS(1477), + [aux_sym_string_literal_token1] = ACTIONS(1477), + [sym_char_literal] = ACTIONS(1477), + [anon_sym_true] = ACTIONS(1479), + [anon_sym_false] = ACTIONS(1479), + [anon_sym_u8] = ACTIONS(1479), + [anon_sym_i8] = ACTIONS(1479), + [anon_sym_u16] = ACTIONS(1479), + [anon_sym_i16] = ACTIONS(1479), + [anon_sym_u32] = ACTIONS(1479), + [anon_sym_i32] = ACTIONS(1479), + [anon_sym_u64] = ACTIONS(1479), + [anon_sym_i64] = ACTIONS(1479), + [anon_sym_u128] = ACTIONS(1479), + [anon_sym_i128] = ACTIONS(1479), + [anon_sym_isize] = ACTIONS(1479), + [anon_sym_usize] = ACTIONS(1479), + [anon_sym_f32] = ACTIONS(1479), + [anon_sym_f64] = ACTIONS(1479), + [anon_sym_bool] = ACTIONS(1479), + [anon_sym_str] = ACTIONS(1479), + [anon_sym_char] = ACTIONS(1479), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(1477), + [sym_self] = ACTIONS(1479), + [sym_super] = ACTIONS(1479), + [sym_crate] = ACTIONS(1479), + [sym_metavariable] = ACTIONS(1477), + [sym_grit_metavariable] = ACTIONS(1477), + [sym_raw_string_literal] = ACTIONS(1477), + [sym_float_literal] = ACTIONS(1477), [sym_block_comment] = ACTIONS(3), }, [286] = { - [ts_builtin_sym_end] = ACTIONS(1483), - [sym__primitive_identifier] = ACTIONS(1485), - [anon_sym_SEMI] = ACTIONS(1483), - [anon_sym_macro_rules_BANG] = ACTIONS(1483), - [anon_sym_LPAREN] = ACTIONS(1483), - [anon_sym_LBRACE] = ACTIONS(1483), - [anon_sym_RBRACE] = ACTIONS(1483), - [anon_sym_LBRACK] = ACTIONS(1483), - [anon_sym_STAR] = ACTIONS(1483), - [anon_sym_SQUOTE] = ACTIONS(1485), - [anon_sym_async] = ACTIONS(1485), - [anon_sym_break] = ACTIONS(1485), - [anon_sym_const] = ACTIONS(1485), - [anon_sym_continue] = ACTIONS(1485), - [anon_sym_default] = ACTIONS(1485), - [anon_sym_enum] = ACTIONS(1485), - [anon_sym_fn] = ACTIONS(1485), - [anon_sym_for] = ACTIONS(1485), - [anon_sym_if] = ACTIONS(1485), - [anon_sym_impl] = ACTIONS(1485), - [anon_sym_let] = ACTIONS(1485), - [anon_sym_loop] = ACTIONS(1485), - [anon_sym_match] = ACTIONS(1485), - [anon_sym_mod] = ACTIONS(1485), - [anon_sym_pub] = ACTIONS(1485), - [anon_sym_return] = ACTIONS(1485), - [anon_sym_static] = ACTIONS(1485), - [anon_sym_struct] = ACTIONS(1485), - [anon_sym_trait] = ACTIONS(1485), - [anon_sym_type] = ACTIONS(1485), - [anon_sym_union] = ACTIONS(1485), - [anon_sym_unsafe] = ACTIONS(1485), - [anon_sym_use] = ACTIONS(1485), - [anon_sym_while] = ACTIONS(1485), - [anon_sym_POUND] = ACTIONS(1483), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_extern] = ACTIONS(1485), - [anon_sym_LT] = ACTIONS(1483), - [anon_sym_COLON_COLON] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_DOT_DOT] = ACTIONS(1483), - [anon_sym_DASH] = ACTIONS(1483), - [anon_sym_PIPE] = ACTIONS(1483), - [anon_sym_yield] = ACTIONS(1485), - [anon_sym_move] = ACTIONS(1485), - [sym_integer_literal] = ACTIONS(1483), - [aux_sym_string_literal_token1] = ACTIONS(1483), - [sym_char_literal] = ACTIONS(1483), - [anon_sym_true] = ACTIONS(1485), - [anon_sym_false] = ACTIONS(1485), - [anon_sym_u8] = ACTIONS(1485), - [anon_sym_i8] = ACTIONS(1485), - [anon_sym_u16] = ACTIONS(1485), - [anon_sym_i16] = ACTIONS(1485), - [anon_sym_u32] = ACTIONS(1485), - [anon_sym_i32] = ACTIONS(1485), - [anon_sym_u64] = ACTIONS(1485), - [anon_sym_i64] = ACTIONS(1485), - [anon_sym_u128] = ACTIONS(1485), - [anon_sym_i128] = ACTIONS(1485), - [anon_sym_isize] = ACTIONS(1485), - [anon_sym_usize] = ACTIONS(1485), - [anon_sym_f32] = ACTIONS(1485), - [anon_sym_f64] = ACTIONS(1485), - [anon_sym_bool] = ACTIONS(1485), - [anon_sym_str] = ACTIONS(1485), - [anon_sym_char] = ACTIONS(1485), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1483), - [sym_self] = ACTIONS(1485), - [sym_super] = ACTIONS(1485), - [sym_crate] = ACTIONS(1485), - [sym_metavariable] = ACTIONS(1483), - [sym_grit_metavariable] = ACTIONS(1483), - [sym_raw_string_literal] = ACTIONS(1483), - [sym_float_literal] = ACTIONS(1483), + [ts_builtin_sym_end] = ACTIONS(1481), + [sym__primitive_identifier] = ACTIONS(1483), + [anon_sym_SEMI] = ACTIONS(1481), + [anon_sym_macro_rules_BANG] = ACTIONS(1481), + [anon_sym_LPAREN] = ACTIONS(1481), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_RBRACE] = ACTIONS(1481), + [anon_sym_LBRACK] = ACTIONS(1481), + [anon_sym_STAR] = ACTIONS(1481), + [anon_sym_SQUOTE] = ACTIONS(1483), + [anon_sym_async] = ACTIONS(1483), + [anon_sym_break] = ACTIONS(1483), + [anon_sym_const] = ACTIONS(1483), + [anon_sym_continue] = ACTIONS(1483), + [anon_sym_default] = ACTIONS(1483), + [anon_sym_enum] = ACTIONS(1483), + [anon_sym_fn] = ACTIONS(1483), + [anon_sym_for] = ACTIONS(1483), + [anon_sym_if] = ACTIONS(1483), + [anon_sym_impl] = ACTIONS(1483), + [anon_sym_let] = ACTIONS(1483), + [anon_sym_loop] = ACTIONS(1483), + [anon_sym_match] = ACTIONS(1483), + [anon_sym_mod] = ACTIONS(1483), + [anon_sym_pub] = ACTIONS(1483), + [anon_sym_return] = ACTIONS(1483), + [anon_sym_static] = ACTIONS(1483), + [anon_sym_struct] = ACTIONS(1483), + [anon_sym_trait] = ACTIONS(1483), + [anon_sym_type] = ACTIONS(1483), + [anon_sym_union] = ACTIONS(1483), + [anon_sym_unsafe] = ACTIONS(1483), + [anon_sym_use] = ACTIONS(1483), + [anon_sym_while] = ACTIONS(1483), + [anon_sym_POUND] = ACTIONS(1481), + [anon_sym_BANG] = ACTIONS(1481), + [anon_sym_extern] = ACTIONS(1483), + [anon_sym_LT] = ACTIONS(1481), + [anon_sym_COLON_COLON] = ACTIONS(1481), + [anon_sym_AMP] = ACTIONS(1481), + [anon_sym_DOT_DOT] = ACTIONS(1481), + [anon_sym_DASH] = ACTIONS(1481), + [anon_sym_PIPE] = ACTIONS(1481), + [anon_sym_yield] = ACTIONS(1483), + [anon_sym_move] = ACTIONS(1483), + [sym_integer_literal] = ACTIONS(1481), + [aux_sym_string_literal_token1] = ACTIONS(1481), + [sym_char_literal] = ACTIONS(1481), + [anon_sym_true] = ACTIONS(1483), + [anon_sym_false] = ACTIONS(1483), + [anon_sym_u8] = ACTIONS(1483), + [anon_sym_i8] = ACTIONS(1483), + [anon_sym_u16] = ACTIONS(1483), + [anon_sym_i16] = ACTIONS(1483), + [anon_sym_u32] = ACTIONS(1483), + [anon_sym_i32] = ACTIONS(1483), + [anon_sym_u64] = ACTIONS(1483), + [anon_sym_i64] = ACTIONS(1483), + [anon_sym_u128] = ACTIONS(1483), + [anon_sym_i128] = ACTIONS(1483), + [anon_sym_isize] = ACTIONS(1483), + [anon_sym_usize] = ACTIONS(1483), + [anon_sym_f32] = ACTIONS(1483), + [anon_sym_f64] = ACTIONS(1483), + [anon_sym_bool] = ACTIONS(1483), + [anon_sym_str] = ACTIONS(1483), + [anon_sym_char] = ACTIONS(1483), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(1481), + [sym_self] = ACTIONS(1483), + [sym_super] = ACTIONS(1483), + [sym_crate] = ACTIONS(1483), + [sym_metavariable] = ACTIONS(1481), + [sym_grit_metavariable] = ACTIONS(1481), + [sym_raw_string_literal] = ACTIONS(1481), + [sym_float_literal] = ACTIONS(1481), [sym_block_comment] = ACTIONS(3), }, [287] = { - [ts_builtin_sym_end] = ACTIONS(1487), - [sym__primitive_identifier] = ACTIONS(1489), - [anon_sym_SEMI] = ACTIONS(1487), - [anon_sym_macro_rules_BANG] = ACTIONS(1487), - [anon_sym_LPAREN] = ACTIONS(1487), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_RBRACE] = ACTIONS(1487), - [anon_sym_LBRACK] = ACTIONS(1487), - [anon_sym_STAR] = ACTIONS(1487), - [anon_sym_SQUOTE] = ACTIONS(1489), - [anon_sym_async] = ACTIONS(1489), - [anon_sym_break] = ACTIONS(1489), - [anon_sym_const] = ACTIONS(1489), - [anon_sym_continue] = ACTIONS(1489), - [anon_sym_default] = ACTIONS(1489), - [anon_sym_enum] = ACTIONS(1489), - [anon_sym_fn] = ACTIONS(1489), - [anon_sym_for] = ACTIONS(1489), - [anon_sym_if] = ACTIONS(1489), - [anon_sym_impl] = ACTIONS(1489), - [anon_sym_let] = ACTIONS(1489), - [anon_sym_loop] = ACTIONS(1489), - [anon_sym_match] = ACTIONS(1489), - [anon_sym_mod] = ACTIONS(1489), - [anon_sym_pub] = ACTIONS(1489), - [anon_sym_return] = ACTIONS(1489), - [anon_sym_static] = ACTIONS(1489), - [anon_sym_struct] = ACTIONS(1489), - [anon_sym_trait] = ACTIONS(1489), - [anon_sym_type] = ACTIONS(1489), - [anon_sym_union] = ACTIONS(1489), - [anon_sym_unsafe] = ACTIONS(1489), - [anon_sym_use] = ACTIONS(1489), - [anon_sym_while] = ACTIONS(1489), - [anon_sym_POUND] = ACTIONS(1487), - [anon_sym_BANG] = ACTIONS(1487), - [anon_sym_extern] = ACTIONS(1489), - [anon_sym_LT] = ACTIONS(1487), - [anon_sym_COLON_COLON] = ACTIONS(1487), - [anon_sym_AMP] = ACTIONS(1487), - [anon_sym_DOT_DOT] = ACTIONS(1487), - [anon_sym_DASH] = ACTIONS(1487), - [anon_sym_PIPE] = ACTIONS(1487), - [anon_sym_yield] = ACTIONS(1489), - [anon_sym_move] = ACTIONS(1489), - [sym_integer_literal] = ACTIONS(1487), - [aux_sym_string_literal_token1] = ACTIONS(1487), - [sym_char_literal] = ACTIONS(1487), - [anon_sym_true] = ACTIONS(1489), - [anon_sym_false] = ACTIONS(1489), - [anon_sym_u8] = ACTIONS(1489), - [anon_sym_i8] = ACTIONS(1489), - [anon_sym_u16] = ACTIONS(1489), - [anon_sym_i16] = ACTIONS(1489), - [anon_sym_u32] = ACTIONS(1489), - [anon_sym_i32] = ACTIONS(1489), - [anon_sym_u64] = ACTIONS(1489), - [anon_sym_i64] = ACTIONS(1489), - [anon_sym_u128] = ACTIONS(1489), - [anon_sym_i128] = ACTIONS(1489), - [anon_sym_isize] = ACTIONS(1489), - [anon_sym_usize] = ACTIONS(1489), - [anon_sym_f32] = ACTIONS(1489), - [anon_sym_f64] = ACTIONS(1489), - [anon_sym_bool] = ACTIONS(1489), - [anon_sym_str] = ACTIONS(1489), - [anon_sym_char] = ACTIONS(1489), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1487), - [sym_self] = ACTIONS(1489), - [sym_super] = ACTIONS(1489), - [sym_crate] = ACTIONS(1489), - [sym_metavariable] = ACTIONS(1487), - [sym_grit_metavariable] = ACTIONS(1487), - [sym_raw_string_literal] = ACTIONS(1487), - [sym_float_literal] = ACTIONS(1487), + [ts_builtin_sym_end] = ACTIONS(1485), + [sym__primitive_identifier] = ACTIONS(1487), + [anon_sym_SEMI] = ACTIONS(1485), + [anon_sym_macro_rules_BANG] = ACTIONS(1485), + [anon_sym_LPAREN] = ACTIONS(1485), + [anon_sym_LBRACE] = ACTIONS(1485), + [anon_sym_RBRACE] = ACTIONS(1485), + [anon_sym_LBRACK] = ACTIONS(1485), + [anon_sym_STAR] = ACTIONS(1485), + [anon_sym_SQUOTE] = ACTIONS(1487), + [anon_sym_async] = ACTIONS(1487), + [anon_sym_break] = ACTIONS(1487), + [anon_sym_const] = ACTIONS(1487), + [anon_sym_continue] = ACTIONS(1487), + [anon_sym_default] = ACTIONS(1487), + [anon_sym_enum] = ACTIONS(1487), + [anon_sym_fn] = ACTIONS(1487), + [anon_sym_for] = ACTIONS(1487), + [anon_sym_if] = ACTIONS(1487), + [anon_sym_impl] = ACTIONS(1487), + [anon_sym_let] = ACTIONS(1487), + [anon_sym_loop] = ACTIONS(1487), + [anon_sym_match] = ACTIONS(1487), + [anon_sym_mod] = ACTIONS(1487), + [anon_sym_pub] = ACTIONS(1487), + [anon_sym_return] = ACTIONS(1487), + [anon_sym_static] = ACTIONS(1487), + [anon_sym_struct] = ACTIONS(1487), + [anon_sym_trait] = ACTIONS(1487), + [anon_sym_type] = ACTIONS(1487), + [anon_sym_union] = ACTIONS(1487), + [anon_sym_unsafe] = ACTIONS(1487), + [anon_sym_use] = ACTIONS(1487), + [anon_sym_while] = ACTIONS(1487), + [anon_sym_POUND] = ACTIONS(1485), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_extern] = ACTIONS(1487), + [anon_sym_LT] = ACTIONS(1485), + [anon_sym_COLON_COLON] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_DOT_DOT] = ACTIONS(1485), + [anon_sym_DASH] = ACTIONS(1485), + [anon_sym_PIPE] = ACTIONS(1485), + [anon_sym_yield] = ACTIONS(1487), + [anon_sym_move] = ACTIONS(1487), + [sym_integer_literal] = ACTIONS(1485), + [aux_sym_string_literal_token1] = ACTIONS(1485), + [sym_char_literal] = ACTIONS(1485), + [anon_sym_true] = ACTIONS(1487), + [anon_sym_false] = ACTIONS(1487), + [anon_sym_u8] = ACTIONS(1487), + [anon_sym_i8] = ACTIONS(1487), + [anon_sym_u16] = ACTIONS(1487), + [anon_sym_i16] = ACTIONS(1487), + [anon_sym_u32] = ACTIONS(1487), + [anon_sym_i32] = ACTIONS(1487), + [anon_sym_u64] = ACTIONS(1487), + [anon_sym_i64] = ACTIONS(1487), + [anon_sym_u128] = ACTIONS(1487), + [anon_sym_i128] = ACTIONS(1487), + [anon_sym_isize] = ACTIONS(1487), + [anon_sym_usize] = ACTIONS(1487), + [anon_sym_f32] = ACTIONS(1487), + [anon_sym_f64] = ACTIONS(1487), + [anon_sym_bool] = ACTIONS(1487), + [anon_sym_str] = ACTIONS(1487), + [anon_sym_char] = ACTIONS(1487), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(1485), + [sym_self] = ACTIONS(1487), + [sym_super] = ACTIONS(1487), + [sym_crate] = ACTIONS(1487), + [sym_metavariable] = ACTIONS(1485), + [sym_grit_metavariable] = ACTIONS(1485), + [sym_raw_string_literal] = ACTIONS(1485), + [sym_float_literal] = ACTIONS(1485), [sym_block_comment] = ACTIONS(3), }, [288] = { - [ts_builtin_sym_end] = ACTIONS(1491), - [sym__primitive_identifier] = ACTIONS(1493), - [anon_sym_SEMI] = ACTIONS(1491), - [anon_sym_macro_rules_BANG] = ACTIONS(1491), - [anon_sym_LPAREN] = ACTIONS(1491), - [anon_sym_LBRACE] = ACTIONS(1491), - [anon_sym_RBRACE] = ACTIONS(1491), - [anon_sym_LBRACK] = ACTIONS(1491), - [anon_sym_STAR] = ACTIONS(1491), - [anon_sym_SQUOTE] = ACTIONS(1493), - [anon_sym_async] = ACTIONS(1493), - [anon_sym_break] = ACTIONS(1493), - [anon_sym_const] = ACTIONS(1493), - [anon_sym_continue] = ACTIONS(1493), - [anon_sym_default] = ACTIONS(1493), - [anon_sym_enum] = ACTIONS(1493), - [anon_sym_fn] = ACTIONS(1493), - [anon_sym_for] = ACTIONS(1493), - [anon_sym_if] = ACTIONS(1493), - [anon_sym_impl] = ACTIONS(1493), - [anon_sym_let] = ACTIONS(1493), - [anon_sym_loop] = ACTIONS(1493), - [anon_sym_match] = ACTIONS(1493), - [anon_sym_mod] = ACTIONS(1493), - [anon_sym_pub] = ACTIONS(1493), - [anon_sym_return] = ACTIONS(1493), - [anon_sym_static] = ACTIONS(1493), - [anon_sym_struct] = ACTIONS(1493), - [anon_sym_trait] = ACTIONS(1493), - [anon_sym_type] = ACTIONS(1493), - [anon_sym_union] = ACTIONS(1493), - [anon_sym_unsafe] = ACTIONS(1493), - [anon_sym_use] = ACTIONS(1493), - [anon_sym_while] = ACTIONS(1493), - [anon_sym_POUND] = ACTIONS(1491), - [anon_sym_BANG] = ACTIONS(1491), - [anon_sym_extern] = ACTIONS(1493), - [anon_sym_LT] = ACTIONS(1491), - [anon_sym_COLON_COLON] = ACTIONS(1491), - [anon_sym_AMP] = ACTIONS(1491), - [anon_sym_DOT_DOT] = ACTIONS(1491), - [anon_sym_DASH] = ACTIONS(1491), - [anon_sym_PIPE] = ACTIONS(1491), - [anon_sym_yield] = ACTIONS(1493), - [anon_sym_move] = ACTIONS(1493), - [sym_integer_literal] = ACTIONS(1491), - [aux_sym_string_literal_token1] = ACTIONS(1491), - [sym_char_literal] = ACTIONS(1491), - [anon_sym_true] = ACTIONS(1493), - [anon_sym_false] = ACTIONS(1493), - [anon_sym_u8] = ACTIONS(1493), - [anon_sym_i8] = ACTIONS(1493), - [anon_sym_u16] = ACTIONS(1493), - [anon_sym_i16] = ACTIONS(1493), - [anon_sym_u32] = ACTIONS(1493), - [anon_sym_i32] = ACTIONS(1493), - [anon_sym_u64] = ACTIONS(1493), - [anon_sym_i64] = ACTIONS(1493), - [anon_sym_u128] = ACTIONS(1493), - [anon_sym_i128] = ACTIONS(1493), - [anon_sym_isize] = ACTIONS(1493), - [anon_sym_usize] = ACTIONS(1493), - [anon_sym_f32] = ACTIONS(1493), - [anon_sym_f64] = ACTIONS(1493), - [anon_sym_bool] = ACTIONS(1493), - [anon_sym_str] = ACTIONS(1493), - [anon_sym_char] = ACTIONS(1493), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1491), - [sym_self] = ACTIONS(1493), - [sym_super] = ACTIONS(1493), - [sym_crate] = ACTIONS(1493), - [sym_metavariable] = ACTIONS(1491), - [sym_grit_metavariable] = ACTIONS(1491), - [sym_raw_string_literal] = ACTIONS(1491), - [sym_float_literal] = ACTIONS(1491), + [ts_builtin_sym_end] = ACTIONS(1489), + [sym__primitive_identifier] = ACTIONS(1491), + [anon_sym_SEMI] = ACTIONS(1489), + [anon_sym_macro_rules_BANG] = ACTIONS(1489), + [anon_sym_LPAREN] = ACTIONS(1489), + [anon_sym_LBRACE] = ACTIONS(1489), + [anon_sym_RBRACE] = ACTIONS(1489), + [anon_sym_LBRACK] = ACTIONS(1489), + [anon_sym_STAR] = ACTIONS(1489), + [anon_sym_SQUOTE] = ACTIONS(1491), + [anon_sym_async] = ACTIONS(1491), + [anon_sym_break] = ACTIONS(1491), + [anon_sym_const] = ACTIONS(1491), + [anon_sym_continue] = ACTIONS(1491), + [anon_sym_default] = ACTIONS(1491), + [anon_sym_enum] = ACTIONS(1491), + [anon_sym_fn] = ACTIONS(1491), + [anon_sym_for] = ACTIONS(1491), + [anon_sym_if] = ACTIONS(1491), + [anon_sym_impl] = ACTIONS(1491), + [anon_sym_let] = ACTIONS(1491), + [anon_sym_loop] = ACTIONS(1491), + [anon_sym_match] = ACTIONS(1491), + [anon_sym_mod] = ACTIONS(1491), + [anon_sym_pub] = ACTIONS(1491), + [anon_sym_return] = ACTIONS(1491), + [anon_sym_static] = ACTIONS(1491), + [anon_sym_struct] = ACTIONS(1491), + [anon_sym_trait] = ACTIONS(1491), + [anon_sym_type] = ACTIONS(1491), + [anon_sym_union] = ACTIONS(1491), + [anon_sym_unsafe] = ACTIONS(1491), + [anon_sym_use] = ACTIONS(1491), + [anon_sym_while] = ACTIONS(1491), + [anon_sym_POUND] = ACTIONS(1489), + [anon_sym_BANG] = ACTIONS(1489), + [anon_sym_extern] = ACTIONS(1491), + [anon_sym_LT] = ACTIONS(1489), + [anon_sym_COLON_COLON] = ACTIONS(1489), + [anon_sym_AMP] = ACTIONS(1489), + [anon_sym_DOT_DOT] = ACTIONS(1489), + [anon_sym_DASH] = ACTIONS(1489), + [anon_sym_PIPE] = ACTIONS(1489), + [anon_sym_yield] = ACTIONS(1491), + [anon_sym_move] = ACTIONS(1491), + [sym_integer_literal] = ACTIONS(1489), + [aux_sym_string_literal_token1] = ACTIONS(1489), + [sym_char_literal] = ACTIONS(1489), + [anon_sym_true] = ACTIONS(1491), + [anon_sym_false] = ACTIONS(1491), + [anon_sym_u8] = ACTIONS(1491), + [anon_sym_i8] = ACTIONS(1491), + [anon_sym_u16] = ACTIONS(1491), + [anon_sym_i16] = ACTIONS(1491), + [anon_sym_u32] = ACTIONS(1491), + [anon_sym_i32] = ACTIONS(1491), + [anon_sym_u64] = ACTIONS(1491), + [anon_sym_i64] = ACTIONS(1491), + [anon_sym_u128] = ACTIONS(1491), + [anon_sym_i128] = ACTIONS(1491), + [anon_sym_isize] = ACTIONS(1491), + [anon_sym_usize] = ACTIONS(1491), + [anon_sym_f32] = ACTIONS(1491), + [anon_sym_f64] = ACTIONS(1491), + [anon_sym_bool] = ACTIONS(1491), + [anon_sym_str] = ACTIONS(1491), + [anon_sym_char] = ACTIONS(1491), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(1489), + [sym_self] = ACTIONS(1491), + [sym_super] = ACTIONS(1491), + [sym_crate] = ACTIONS(1491), + [sym_metavariable] = ACTIONS(1489), + [sym_grit_metavariable] = ACTIONS(1489), + [sym_raw_string_literal] = ACTIONS(1489), + [sym_float_literal] = ACTIONS(1489), [sym_block_comment] = ACTIONS(3), }, [289] = { - [ts_builtin_sym_end] = ACTIONS(1495), - [sym__primitive_identifier] = ACTIONS(1497), - [anon_sym_SEMI] = ACTIONS(1495), - [anon_sym_macro_rules_BANG] = ACTIONS(1495), - [anon_sym_LPAREN] = ACTIONS(1495), - [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_RBRACE] = ACTIONS(1495), - [anon_sym_LBRACK] = ACTIONS(1495), - [anon_sym_STAR] = ACTIONS(1495), - [anon_sym_SQUOTE] = ACTIONS(1497), - [anon_sym_async] = ACTIONS(1497), - [anon_sym_break] = ACTIONS(1497), - [anon_sym_const] = ACTIONS(1497), - [anon_sym_continue] = ACTIONS(1497), - [anon_sym_default] = ACTIONS(1497), - [anon_sym_enum] = ACTIONS(1497), - [anon_sym_fn] = ACTIONS(1497), - [anon_sym_for] = ACTIONS(1497), - [anon_sym_if] = ACTIONS(1497), - [anon_sym_impl] = ACTIONS(1497), - [anon_sym_let] = ACTIONS(1497), - [anon_sym_loop] = ACTIONS(1497), - [anon_sym_match] = ACTIONS(1497), - [anon_sym_mod] = ACTIONS(1497), - [anon_sym_pub] = ACTIONS(1497), - [anon_sym_return] = ACTIONS(1497), - [anon_sym_static] = ACTIONS(1497), - [anon_sym_struct] = ACTIONS(1497), - [anon_sym_trait] = ACTIONS(1497), - [anon_sym_type] = ACTIONS(1497), - [anon_sym_union] = ACTIONS(1497), - [anon_sym_unsafe] = ACTIONS(1497), - [anon_sym_use] = ACTIONS(1497), - [anon_sym_while] = ACTIONS(1497), - [anon_sym_POUND] = ACTIONS(1495), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_extern] = ACTIONS(1497), - [anon_sym_LT] = ACTIONS(1495), - [anon_sym_COLON_COLON] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_DOT_DOT] = ACTIONS(1495), - [anon_sym_DASH] = ACTIONS(1495), - [anon_sym_PIPE] = ACTIONS(1495), - [anon_sym_yield] = ACTIONS(1497), - [anon_sym_move] = ACTIONS(1497), - [sym_integer_literal] = ACTIONS(1495), - [aux_sym_string_literal_token1] = ACTIONS(1495), - [sym_char_literal] = ACTIONS(1495), - [anon_sym_true] = ACTIONS(1497), - [anon_sym_false] = ACTIONS(1497), - [anon_sym_u8] = ACTIONS(1497), - [anon_sym_i8] = ACTIONS(1497), - [anon_sym_u16] = ACTIONS(1497), - [anon_sym_i16] = ACTIONS(1497), - [anon_sym_u32] = ACTIONS(1497), - [anon_sym_i32] = ACTIONS(1497), - [anon_sym_u64] = ACTIONS(1497), - [anon_sym_i64] = ACTIONS(1497), - [anon_sym_u128] = ACTIONS(1497), - [anon_sym_i128] = ACTIONS(1497), - [anon_sym_isize] = ACTIONS(1497), - [anon_sym_usize] = ACTIONS(1497), - [anon_sym_f32] = ACTIONS(1497), - [anon_sym_f64] = ACTIONS(1497), - [anon_sym_bool] = ACTIONS(1497), - [anon_sym_str] = ACTIONS(1497), - [anon_sym_char] = ACTIONS(1497), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1495), - [sym_self] = ACTIONS(1497), - [sym_super] = ACTIONS(1497), - [sym_crate] = ACTIONS(1497), - [sym_metavariable] = ACTIONS(1495), - [sym_grit_metavariable] = ACTIONS(1495), - [sym_raw_string_literal] = ACTIONS(1495), - [sym_float_literal] = ACTIONS(1495), + [ts_builtin_sym_end] = ACTIONS(1493), + [sym__primitive_identifier] = ACTIONS(1495), + [anon_sym_SEMI] = ACTIONS(1493), + [anon_sym_macro_rules_BANG] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1493), + [anon_sym_LBRACE] = ACTIONS(1493), + [anon_sym_RBRACE] = ACTIONS(1493), + [anon_sym_LBRACK] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(1493), + [anon_sym_SQUOTE] = ACTIONS(1495), + [anon_sym_async] = ACTIONS(1495), + [anon_sym_break] = ACTIONS(1495), + [anon_sym_const] = ACTIONS(1495), + [anon_sym_continue] = ACTIONS(1495), + [anon_sym_default] = ACTIONS(1495), + [anon_sym_enum] = ACTIONS(1495), + [anon_sym_fn] = ACTIONS(1495), + [anon_sym_for] = ACTIONS(1495), + [anon_sym_if] = ACTIONS(1495), + [anon_sym_impl] = ACTIONS(1495), + [anon_sym_let] = ACTIONS(1495), + [anon_sym_loop] = ACTIONS(1495), + [anon_sym_match] = ACTIONS(1495), + [anon_sym_mod] = ACTIONS(1495), + [anon_sym_pub] = ACTIONS(1495), + [anon_sym_return] = ACTIONS(1495), + [anon_sym_static] = ACTIONS(1495), + [anon_sym_struct] = ACTIONS(1495), + [anon_sym_trait] = ACTIONS(1495), + [anon_sym_type] = ACTIONS(1495), + [anon_sym_union] = ACTIONS(1495), + [anon_sym_unsafe] = ACTIONS(1495), + [anon_sym_use] = ACTIONS(1495), + [anon_sym_while] = ACTIONS(1495), + [anon_sym_POUND] = ACTIONS(1493), + [anon_sym_BANG] = ACTIONS(1493), + [anon_sym_extern] = ACTIONS(1495), + [anon_sym_LT] = ACTIONS(1493), + [anon_sym_COLON_COLON] = ACTIONS(1493), + [anon_sym_AMP] = ACTIONS(1493), + [anon_sym_DOT_DOT] = ACTIONS(1493), + [anon_sym_DASH] = ACTIONS(1493), + [anon_sym_PIPE] = ACTIONS(1493), + [anon_sym_yield] = ACTIONS(1495), + [anon_sym_move] = ACTIONS(1495), + [sym_integer_literal] = ACTIONS(1493), + [aux_sym_string_literal_token1] = ACTIONS(1493), + [sym_char_literal] = ACTIONS(1493), + [anon_sym_true] = ACTIONS(1495), + [anon_sym_false] = ACTIONS(1495), + [anon_sym_u8] = ACTIONS(1495), + [anon_sym_i8] = ACTIONS(1495), + [anon_sym_u16] = ACTIONS(1495), + [anon_sym_i16] = ACTIONS(1495), + [anon_sym_u32] = ACTIONS(1495), + [anon_sym_i32] = ACTIONS(1495), + [anon_sym_u64] = ACTIONS(1495), + [anon_sym_i64] = ACTIONS(1495), + [anon_sym_u128] = ACTIONS(1495), + [anon_sym_i128] = ACTIONS(1495), + [anon_sym_isize] = ACTIONS(1495), + [anon_sym_usize] = ACTIONS(1495), + [anon_sym_f32] = ACTIONS(1495), + [anon_sym_f64] = ACTIONS(1495), + [anon_sym_bool] = ACTIONS(1495), + [anon_sym_str] = ACTIONS(1495), + [anon_sym_char] = ACTIONS(1495), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(1493), + [sym_self] = ACTIONS(1495), + [sym_super] = ACTIONS(1495), + [sym_crate] = ACTIONS(1495), + [sym_metavariable] = ACTIONS(1493), + [sym_grit_metavariable] = ACTIONS(1493), + [sym_raw_string_literal] = ACTIONS(1493), + [sym_float_literal] = ACTIONS(1493), [sym_block_comment] = ACTIONS(3), }, [290] = { - [ts_builtin_sym_end] = ACTIONS(1499), - [sym__primitive_identifier] = ACTIONS(1501), - [anon_sym_SEMI] = ACTIONS(1499), - [anon_sym_macro_rules_BANG] = ACTIONS(1499), - [anon_sym_LPAREN] = ACTIONS(1499), - [anon_sym_LBRACE] = ACTIONS(1499), - [anon_sym_RBRACE] = ACTIONS(1499), - [anon_sym_LBRACK] = ACTIONS(1499), - [anon_sym_STAR] = ACTIONS(1499), - [anon_sym_SQUOTE] = ACTIONS(1501), - [anon_sym_async] = ACTIONS(1501), - [anon_sym_break] = ACTIONS(1501), - [anon_sym_const] = ACTIONS(1501), - [anon_sym_continue] = ACTIONS(1501), - [anon_sym_default] = ACTIONS(1501), - [anon_sym_enum] = ACTIONS(1501), - [anon_sym_fn] = ACTIONS(1501), - [anon_sym_for] = ACTIONS(1501), - [anon_sym_if] = ACTIONS(1501), - [anon_sym_impl] = ACTIONS(1501), - [anon_sym_let] = ACTIONS(1501), - [anon_sym_loop] = ACTIONS(1501), - [anon_sym_match] = ACTIONS(1501), - [anon_sym_mod] = ACTIONS(1501), - [anon_sym_pub] = ACTIONS(1501), - [anon_sym_return] = ACTIONS(1501), - [anon_sym_static] = ACTIONS(1501), - [anon_sym_struct] = ACTIONS(1501), - [anon_sym_trait] = ACTIONS(1501), - [anon_sym_type] = ACTIONS(1501), - [anon_sym_union] = ACTIONS(1501), - [anon_sym_unsafe] = ACTIONS(1501), - [anon_sym_use] = ACTIONS(1501), - [anon_sym_while] = ACTIONS(1501), - [anon_sym_POUND] = ACTIONS(1499), - [anon_sym_BANG] = ACTIONS(1499), - [anon_sym_extern] = ACTIONS(1501), - [anon_sym_LT] = ACTIONS(1499), - [anon_sym_COLON_COLON] = ACTIONS(1499), - [anon_sym_AMP] = ACTIONS(1499), - [anon_sym_DOT_DOT] = ACTIONS(1499), - [anon_sym_DASH] = ACTIONS(1499), - [anon_sym_PIPE] = ACTIONS(1499), - [anon_sym_yield] = ACTIONS(1501), - [anon_sym_move] = ACTIONS(1501), - [sym_integer_literal] = ACTIONS(1499), - [aux_sym_string_literal_token1] = ACTIONS(1499), - [sym_char_literal] = ACTIONS(1499), - [anon_sym_true] = ACTIONS(1501), - [anon_sym_false] = ACTIONS(1501), - [anon_sym_u8] = ACTIONS(1501), - [anon_sym_i8] = ACTIONS(1501), - [anon_sym_u16] = ACTIONS(1501), - [anon_sym_i16] = ACTIONS(1501), - [anon_sym_u32] = ACTIONS(1501), - [anon_sym_i32] = ACTIONS(1501), - [anon_sym_u64] = ACTIONS(1501), - [anon_sym_i64] = ACTIONS(1501), - [anon_sym_u128] = ACTIONS(1501), - [anon_sym_i128] = ACTIONS(1501), - [anon_sym_isize] = ACTIONS(1501), - [anon_sym_usize] = ACTIONS(1501), - [anon_sym_f32] = ACTIONS(1501), - [anon_sym_f64] = ACTIONS(1501), - [anon_sym_bool] = ACTIONS(1501), - [anon_sym_str] = ACTIONS(1501), - [anon_sym_char] = ACTIONS(1501), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1499), - [sym_self] = ACTIONS(1501), - [sym_super] = ACTIONS(1501), - [sym_crate] = ACTIONS(1501), - [sym_metavariable] = ACTIONS(1499), - [sym_grit_metavariable] = ACTIONS(1499), - [sym_raw_string_literal] = ACTIONS(1499), - [sym_float_literal] = ACTIONS(1499), + [ts_builtin_sym_end] = ACTIONS(1497), + [sym__primitive_identifier] = ACTIONS(1499), + [anon_sym_SEMI] = ACTIONS(1497), + [anon_sym_macro_rules_BANG] = ACTIONS(1497), + [anon_sym_LPAREN] = ACTIONS(1497), + [anon_sym_LBRACE] = ACTIONS(1497), + [anon_sym_RBRACE] = ACTIONS(1497), + [anon_sym_LBRACK] = ACTIONS(1497), + [anon_sym_STAR] = ACTIONS(1497), + [anon_sym_SQUOTE] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_break] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(1499), + [anon_sym_continue] = ACTIONS(1499), + [anon_sym_default] = ACTIONS(1499), + [anon_sym_enum] = ACTIONS(1499), + [anon_sym_fn] = ACTIONS(1499), + [anon_sym_for] = ACTIONS(1499), + [anon_sym_if] = ACTIONS(1499), + [anon_sym_impl] = ACTIONS(1499), + [anon_sym_let] = ACTIONS(1499), + [anon_sym_loop] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_mod] = ACTIONS(1499), + [anon_sym_pub] = ACTIONS(1499), + [anon_sym_return] = ACTIONS(1499), + [anon_sym_static] = ACTIONS(1499), + [anon_sym_struct] = ACTIONS(1499), + [anon_sym_trait] = ACTIONS(1499), + [anon_sym_type] = ACTIONS(1499), + [anon_sym_union] = ACTIONS(1499), + [anon_sym_unsafe] = ACTIONS(1499), + [anon_sym_use] = ACTIONS(1499), + [anon_sym_while] = ACTIONS(1499), + [anon_sym_POUND] = ACTIONS(1497), + [anon_sym_BANG] = ACTIONS(1497), + [anon_sym_extern] = ACTIONS(1499), + [anon_sym_LT] = ACTIONS(1497), + [anon_sym_COLON_COLON] = ACTIONS(1497), + [anon_sym_AMP] = ACTIONS(1497), + [anon_sym_DOT_DOT] = ACTIONS(1497), + [anon_sym_DASH] = ACTIONS(1497), + [anon_sym_PIPE] = ACTIONS(1497), + [anon_sym_yield] = ACTIONS(1499), + [anon_sym_move] = ACTIONS(1499), + [sym_integer_literal] = ACTIONS(1497), + [aux_sym_string_literal_token1] = ACTIONS(1497), + [sym_char_literal] = ACTIONS(1497), + [anon_sym_true] = ACTIONS(1499), + [anon_sym_false] = ACTIONS(1499), + [anon_sym_u8] = ACTIONS(1499), + [anon_sym_i8] = ACTIONS(1499), + [anon_sym_u16] = ACTIONS(1499), + [anon_sym_i16] = ACTIONS(1499), + [anon_sym_u32] = ACTIONS(1499), + [anon_sym_i32] = ACTIONS(1499), + [anon_sym_u64] = ACTIONS(1499), + [anon_sym_i64] = ACTIONS(1499), + [anon_sym_u128] = ACTIONS(1499), + [anon_sym_i128] = ACTIONS(1499), + [anon_sym_isize] = ACTIONS(1499), + [anon_sym_usize] = ACTIONS(1499), + [anon_sym_f32] = ACTIONS(1499), + [anon_sym_f64] = ACTIONS(1499), + [anon_sym_bool] = ACTIONS(1499), + [anon_sym_str] = ACTIONS(1499), + [anon_sym_char] = ACTIONS(1499), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(1497), + [sym_self] = ACTIONS(1499), + [sym_super] = ACTIONS(1499), + [sym_crate] = ACTIONS(1499), + [sym_metavariable] = ACTIONS(1497), + [sym_grit_metavariable] = ACTIONS(1497), + [sym_raw_string_literal] = ACTIONS(1497), + [sym_float_literal] = ACTIONS(1497), [sym_block_comment] = ACTIONS(3), }, [291] = { - [ts_builtin_sym_end] = ACTIONS(1503), - [sym__primitive_identifier] = ACTIONS(1505), - [anon_sym_SEMI] = ACTIONS(1503), - [anon_sym_macro_rules_BANG] = ACTIONS(1503), - [anon_sym_LPAREN] = ACTIONS(1503), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_RBRACE] = ACTIONS(1503), - [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_STAR] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [anon_sym_async] = ACTIONS(1505), - [anon_sym_break] = ACTIONS(1505), - [anon_sym_const] = ACTIONS(1505), - [anon_sym_continue] = ACTIONS(1505), - [anon_sym_default] = ACTIONS(1505), - [anon_sym_enum] = ACTIONS(1505), - [anon_sym_fn] = ACTIONS(1505), - [anon_sym_for] = ACTIONS(1505), - [anon_sym_if] = ACTIONS(1505), - [anon_sym_impl] = ACTIONS(1505), - [anon_sym_let] = ACTIONS(1505), - [anon_sym_loop] = ACTIONS(1505), - [anon_sym_match] = ACTIONS(1505), - [anon_sym_mod] = ACTIONS(1505), - [anon_sym_pub] = ACTIONS(1505), - [anon_sym_return] = ACTIONS(1505), - [anon_sym_static] = ACTIONS(1505), - [anon_sym_struct] = ACTIONS(1505), - [anon_sym_trait] = ACTIONS(1505), - [anon_sym_type] = ACTIONS(1505), - [anon_sym_union] = ACTIONS(1505), - [anon_sym_unsafe] = ACTIONS(1505), - [anon_sym_use] = ACTIONS(1505), - [anon_sym_while] = ACTIONS(1505), - [anon_sym_POUND] = ACTIONS(1503), - [anon_sym_BANG] = ACTIONS(1503), - [anon_sym_extern] = ACTIONS(1505), - [anon_sym_LT] = ACTIONS(1503), - [anon_sym_COLON_COLON] = ACTIONS(1503), - [anon_sym_AMP] = ACTIONS(1503), - [anon_sym_DOT_DOT] = ACTIONS(1503), - [anon_sym_DASH] = ACTIONS(1503), - [anon_sym_PIPE] = ACTIONS(1503), - [anon_sym_yield] = ACTIONS(1505), - [anon_sym_move] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [aux_sym_string_literal_token1] = ACTIONS(1503), - [sym_char_literal] = ACTIONS(1503), - [anon_sym_true] = ACTIONS(1505), - [anon_sym_false] = ACTIONS(1505), - [anon_sym_u8] = ACTIONS(1505), - [anon_sym_i8] = ACTIONS(1505), - [anon_sym_u16] = ACTIONS(1505), - [anon_sym_i16] = ACTIONS(1505), - [anon_sym_u32] = ACTIONS(1505), - [anon_sym_i32] = ACTIONS(1505), - [anon_sym_u64] = ACTIONS(1505), - [anon_sym_i64] = ACTIONS(1505), - [anon_sym_u128] = ACTIONS(1505), - [anon_sym_i128] = ACTIONS(1505), - [anon_sym_isize] = ACTIONS(1505), - [anon_sym_usize] = ACTIONS(1505), - [anon_sym_f32] = ACTIONS(1505), - [anon_sym_f64] = ACTIONS(1505), - [anon_sym_bool] = ACTIONS(1505), - [anon_sym_str] = ACTIONS(1505), - [anon_sym_char] = ACTIONS(1505), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1503), - [sym_self] = ACTIONS(1505), - [sym_super] = ACTIONS(1505), - [sym_crate] = ACTIONS(1505), - [sym_metavariable] = ACTIONS(1503), - [sym_grit_metavariable] = ACTIONS(1503), - [sym_raw_string_literal] = ACTIONS(1503), - [sym_float_literal] = ACTIONS(1503), + [ts_builtin_sym_end] = ACTIONS(1501), + [sym__primitive_identifier] = ACTIONS(1503), + [anon_sym_SEMI] = ACTIONS(1501), + [anon_sym_macro_rules_BANG] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACE] = ACTIONS(1501), + [anon_sym_RBRACE] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_STAR] = ACTIONS(1501), + [anon_sym_SQUOTE] = ACTIONS(1503), + [anon_sym_async] = ACTIONS(1503), + [anon_sym_break] = ACTIONS(1503), + [anon_sym_const] = ACTIONS(1503), + [anon_sym_continue] = ACTIONS(1503), + [anon_sym_default] = ACTIONS(1503), + [anon_sym_enum] = ACTIONS(1503), + [anon_sym_fn] = ACTIONS(1503), + [anon_sym_for] = ACTIONS(1503), + [anon_sym_if] = ACTIONS(1503), + [anon_sym_impl] = ACTIONS(1503), + [anon_sym_let] = ACTIONS(1503), + [anon_sym_loop] = ACTIONS(1503), + [anon_sym_match] = ACTIONS(1503), + [anon_sym_mod] = ACTIONS(1503), + [anon_sym_pub] = ACTIONS(1503), + [anon_sym_return] = ACTIONS(1503), + [anon_sym_static] = ACTIONS(1503), + [anon_sym_struct] = ACTIONS(1503), + [anon_sym_trait] = ACTIONS(1503), + [anon_sym_type] = ACTIONS(1503), + [anon_sym_union] = ACTIONS(1503), + [anon_sym_unsafe] = ACTIONS(1503), + [anon_sym_use] = ACTIONS(1503), + [anon_sym_while] = ACTIONS(1503), + [anon_sym_POUND] = ACTIONS(1501), + [anon_sym_BANG] = ACTIONS(1501), + [anon_sym_extern] = ACTIONS(1503), + [anon_sym_LT] = ACTIONS(1501), + [anon_sym_COLON_COLON] = ACTIONS(1501), + [anon_sym_AMP] = ACTIONS(1501), + [anon_sym_DOT_DOT] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1501), + [anon_sym_PIPE] = ACTIONS(1501), + [anon_sym_yield] = ACTIONS(1503), + [anon_sym_move] = ACTIONS(1503), + [sym_integer_literal] = ACTIONS(1501), + [aux_sym_string_literal_token1] = ACTIONS(1501), + [sym_char_literal] = ACTIONS(1501), + [anon_sym_true] = ACTIONS(1503), + [anon_sym_false] = ACTIONS(1503), + [anon_sym_u8] = ACTIONS(1503), + [anon_sym_i8] = ACTIONS(1503), + [anon_sym_u16] = ACTIONS(1503), + [anon_sym_i16] = ACTIONS(1503), + [anon_sym_u32] = ACTIONS(1503), + [anon_sym_i32] = ACTIONS(1503), + [anon_sym_u64] = ACTIONS(1503), + [anon_sym_i64] = ACTIONS(1503), + [anon_sym_u128] = ACTIONS(1503), + [anon_sym_i128] = ACTIONS(1503), + [anon_sym_isize] = ACTIONS(1503), + [anon_sym_usize] = ACTIONS(1503), + [anon_sym_f32] = ACTIONS(1503), + [anon_sym_f64] = ACTIONS(1503), + [anon_sym_bool] = ACTIONS(1503), + [anon_sym_str] = ACTIONS(1503), + [anon_sym_char] = ACTIONS(1503), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(1501), + [sym_self] = ACTIONS(1503), + [sym_super] = ACTIONS(1503), + [sym_crate] = ACTIONS(1503), + [sym_metavariable] = ACTIONS(1501), + [sym_grit_metavariable] = ACTIONS(1501), + [sym_raw_string_literal] = ACTIONS(1501), + [sym_float_literal] = ACTIONS(1501), [sym_block_comment] = ACTIONS(3), }, [292] = { - [ts_builtin_sym_end] = ACTIONS(1507), - [sym__primitive_identifier] = ACTIONS(1509), - [anon_sym_SEMI] = ACTIONS(1507), - [anon_sym_macro_rules_BANG] = ACTIONS(1507), - [anon_sym_LPAREN] = ACTIONS(1507), - [anon_sym_LBRACE] = ACTIONS(1507), - [anon_sym_RBRACE] = ACTIONS(1507), - [anon_sym_LBRACK] = ACTIONS(1507), - [anon_sym_STAR] = ACTIONS(1507), - [anon_sym_SQUOTE] = ACTIONS(1509), - [anon_sym_async] = ACTIONS(1509), - [anon_sym_break] = ACTIONS(1509), - [anon_sym_const] = ACTIONS(1509), - [anon_sym_continue] = ACTIONS(1509), - [anon_sym_default] = ACTIONS(1509), - [anon_sym_enum] = ACTIONS(1509), - [anon_sym_fn] = ACTIONS(1509), - [anon_sym_for] = ACTIONS(1509), - [anon_sym_if] = ACTIONS(1509), - [anon_sym_impl] = ACTIONS(1509), - [anon_sym_let] = ACTIONS(1509), - [anon_sym_loop] = ACTIONS(1509), - [anon_sym_match] = ACTIONS(1509), - [anon_sym_mod] = ACTIONS(1509), - [anon_sym_pub] = ACTIONS(1509), - [anon_sym_return] = ACTIONS(1509), - [anon_sym_static] = ACTIONS(1509), - [anon_sym_struct] = ACTIONS(1509), - [anon_sym_trait] = ACTIONS(1509), - [anon_sym_type] = ACTIONS(1509), - [anon_sym_union] = ACTIONS(1509), - [anon_sym_unsafe] = ACTIONS(1509), - [anon_sym_use] = ACTIONS(1509), - [anon_sym_while] = ACTIONS(1509), - [anon_sym_POUND] = ACTIONS(1507), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_extern] = ACTIONS(1509), - [anon_sym_LT] = ACTIONS(1507), - [anon_sym_COLON_COLON] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_DOT_DOT] = ACTIONS(1507), - [anon_sym_DASH] = ACTIONS(1507), - [anon_sym_PIPE] = ACTIONS(1507), - [anon_sym_yield] = ACTIONS(1509), - [anon_sym_move] = ACTIONS(1509), - [sym_integer_literal] = ACTIONS(1507), - [aux_sym_string_literal_token1] = ACTIONS(1507), - [sym_char_literal] = ACTIONS(1507), - [anon_sym_true] = ACTIONS(1509), - [anon_sym_false] = ACTIONS(1509), - [anon_sym_u8] = ACTIONS(1509), - [anon_sym_i8] = ACTIONS(1509), - [anon_sym_u16] = ACTIONS(1509), - [anon_sym_i16] = ACTIONS(1509), - [anon_sym_u32] = ACTIONS(1509), - [anon_sym_i32] = ACTIONS(1509), - [anon_sym_u64] = ACTIONS(1509), - [anon_sym_i64] = ACTIONS(1509), - [anon_sym_u128] = ACTIONS(1509), - [anon_sym_i128] = ACTIONS(1509), - [anon_sym_isize] = ACTIONS(1509), - [anon_sym_usize] = ACTIONS(1509), - [anon_sym_f32] = ACTIONS(1509), - [anon_sym_f64] = ACTIONS(1509), - [anon_sym_bool] = ACTIONS(1509), - [anon_sym_str] = ACTIONS(1509), - [anon_sym_char] = ACTIONS(1509), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1507), - [sym_self] = ACTIONS(1509), - [sym_super] = ACTIONS(1509), - [sym_crate] = ACTIONS(1509), - [sym_metavariable] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1507), - [sym_raw_string_literal] = ACTIONS(1507), - [sym_float_literal] = ACTIONS(1507), + [ts_builtin_sym_end] = ACTIONS(1505), + [sym__primitive_identifier] = ACTIONS(1507), + [anon_sym_SEMI] = ACTIONS(1505), + [anon_sym_macro_rules_BANG] = ACTIONS(1505), + [anon_sym_LPAREN] = ACTIONS(1505), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_RBRACE] = ACTIONS(1505), + [anon_sym_LBRACK] = ACTIONS(1505), + [anon_sym_STAR] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_async] = ACTIONS(1507), + [anon_sym_break] = ACTIONS(1507), + [anon_sym_const] = ACTIONS(1507), + [anon_sym_continue] = ACTIONS(1507), + [anon_sym_default] = ACTIONS(1507), + [anon_sym_enum] = ACTIONS(1507), + [anon_sym_fn] = ACTIONS(1507), + [anon_sym_for] = ACTIONS(1507), + [anon_sym_if] = ACTIONS(1507), + [anon_sym_impl] = ACTIONS(1507), + [anon_sym_let] = ACTIONS(1507), + [anon_sym_loop] = ACTIONS(1507), + [anon_sym_match] = ACTIONS(1507), + [anon_sym_mod] = ACTIONS(1507), + [anon_sym_pub] = ACTIONS(1507), + [anon_sym_return] = ACTIONS(1507), + [anon_sym_static] = ACTIONS(1507), + [anon_sym_struct] = ACTIONS(1507), + [anon_sym_trait] = ACTIONS(1507), + [anon_sym_type] = ACTIONS(1507), + [anon_sym_union] = ACTIONS(1507), + [anon_sym_unsafe] = ACTIONS(1507), + [anon_sym_use] = ACTIONS(1507), + [anon_sym_while] = ACTIONS(1507), + [anon_sym_POUND] = ACTIONS(1505), + [anon_sym_BANG] = ACTIONS(1505), + [anon_sym_extern] = ACTIONS(1507), + [anon_sym_LT] = ACTIONS(1505), + [anon_sym_COLON_COLON] = ACTIONS(1505), + [anon_sym_AMP] = ACTIONS(1505), + [anon_sym_DOT_DOT] = ACTIONS(1505), + [anon_sym_DASH] = ACTIONS(1505), + [anon_sym_PIPE] = ACTIONS(1505), + [anon_sym_yield] = ACTIONS(1507), + [anon_sym_move] = ACTIONS(1507), + [sym_integer_literal] = ACTIONS(1505), + [aux_sym_string_literal_token1] = ACTIONS(1505), + [sym_char_literal] = ACTIONS(1505), + [anon_sym_true] = ACTIONS(1507), + [anon_sym_false] = ACTIONS(1507), + [anon_sym_u8] = ACTIONS(1507), + [anon_sym_i8] = ACTIONS(1507), + [anon_sym_u16] = ACTIONS(1507), + [anon_sym_i16] = ACTIONS(1507), + [anon_sym_u32] = ACTIONS(1507), + [anon_sym_i32] = ACTIONS(1507), + [anon_sym_u64] = ACTIONS(1507), + [anon_sym_i64] = ACTIONS(1507), + [anon_sym_u128] = ACTIONS(1507), + [anon_sym_i128] = ACTIONS(1507), + [anon_sym_isize] = ACTIONS(1507), + [anon_sym_usize] = ACTIONS(1507), + [anon_sym_f32] = ACTIONS(1507), + [anon_sym_f64] = ACTIONS(1507), + [anon_sym_bool] = ACTIONS(1507), + [anon_sym_str] = ACTIONS(1507), + [anon_sym_char] = ACTIONS(1507), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(1505), + [sym_self] = ACTIONS(1507), + [sym_super] = ACTIONS(1507), + [sym_crate] = ACTIONS(1507), + [sym_metavariable] = ACTIONS(1505), + [sym_grit_metavariable] = ACTIONS(1505), + [sym_raw_string_literal] = ACTIONS(1505), + [sym_float_literal] = ACTIONS(1505), [sym_block_comment] = ACTIONS(3), }, [293] = { - [ts_builtin_sym_end] = ACTIONS(1511), - [sym__primitive_identifier] = ACTIONS(1513), - [anon_sym_SEMI] = ACTIONS(1511), - [anon_sym_macro_rules_BANG] = ACTIONS(1511), - [anon_sym_LPAREN] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(1511), - [anon_sym_RBRACE] = ACTIONS(1511), - [anon_sym_LBRACK] = ACTIONS(1511), - [anon_sym_STAR] = ACTIONS(1511), - [anon_sym_SQUOTE] = ACTIONS(1513), - [anon_sym_async] = ACTIONS(1513), - [anon_sym_break] = ACTIONS(1513), - [anon_sym_const] = ACTIONS(1513), - [anon_sym_continue] = ACTIONS(1513), - [anon_sym_default] = ACTIONS(1513), - [anon_sym_enum] = ACTIONS(1513), - [anon_sym_fn] = ACTIONS(1513), - [anon_sym_for] = ACTIONS(1513), - [anon_sym_if] = ACTIONS(1513), - [anon_sym_impl] = ACTIONS(1513), - [anon_sym_let] = ACTIONS(1513), - [anon_sym_loop] = ACTIONS(1513), - [anon_sym_match] = ACTIONS(1513), - [anon_sym_mod] = ACTIONS(1513), - [anon_sym_pub] = ACTIONS(1513), - [anon_sym_return] = ACTIONS(1513), - [anon_sym_static] = ACTIONS(1513), - [anon_sym_struct] = ACTIONS(1513), - [anon_sym_trait] = ACTIONS(1513), - [anon_sym_type] = ACTIONS(1513), - [anon_sym_union] = ACTIONS(1513), - [anon_sym_unsafe] = ACTIONS(1513), - [anon_sym_use] = ACTIONS(1513), - [anon_sym_while] = ACTIONS(1513), - [anon_sym_POUND] = ACTIONS(1511), - [anon_sym_BANG] = ACTIONS(1511), - [anon_sym_extern] = ACTIONS(1513), - [anon_sym_LT] = ACTIONS(1511), - [anon_sym_COLON_COLON] = ACTIONS(1511), - [anon_sym_AMP] = ACTIONS(1511), - [anon_sym_DOT_DOT] = ACTIONS(1511), - [anon_sym_DASH] = ACTIONS(1511), - [anon_sym_PIPE] = ACTIONS(1511), - [anon_sym_yield] = ACTIONS(1513), - [anon_sym_move] = ACTIONS(1513), - [sym_integer_literal] = ACTIONS(1511), - [aux_sym_string_literal_token1] = ACTIONS(1511), - [sym_char_literal] = ACTIONS(1511), - [anon_sym_true] = ACTIONS(1513), - [anon_sym_false] = ACTIONS(1513), - [anon_sym_u8] = ACTIONS(1513), - [anon_sym_i8] = ACTIONS(1513), - [anon_sym_u16] = ACTIONS(1513), - [anon_sym_i16] = ACTIONS(1513), - [anon_sym_u32] = ACTIONS(1513), - [anon_sym_i32] = ACTIONS(1513), - [anon_sym_u64] = ACTIONS(1513), - [anon_sym_i64] = ACTIONS(1513), - [anon_sym_u128] = ACTIONS(1513), - [anon_sym_i128] = ACTIONS(1513), - [anon_sym_isize] = ACTIONS(1513), - [anon_sym_usize] = ACTIONS(1513), - [anon_sym_f32] = ACTIONS(1513), - [anon_sym_f64] = ACTIONS(1513), - [anon_sym_bool] = ACTIONS(1513), - [anon_sym_str] = ACTIONS(1513), - [anon_sym_char] = ACTIONS(1513), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1511), - [sym_self] = ACTIONS(1513), - [sym_super] = ACTIONS(1513), - [sym_crate] = ACTIONS(1513), - [sym_metavariable] = ACTIONS(1511), - [sym_grit_metavariable] = ACTIONS(1511), - [sym_raw_string_literal] = ACTIONS(1511), - [sym_float_literal] = ACTIONS(1511), + [ts_builtin_sym_end] = ACTIONS(1509), + [sym__primitive_identifier] = ACTIONS(1511), + [anon_sym_SEMI] = ACTIONS(1509), + [anon_sym_macro_rules_BANG] = ACTIONS(1509), + [anon_sym_LPAREN] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1509), + [anon_sym_RBRACE] = ACTIONS(1509), + [anon_sym_LBRACK] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(1509), + [anon_sym_SQUOTE] = ACTIONS(1511), + [anon_sym_async] = ACTIONS(1511), + [anon_sym_break] = ACTIONS(1511), + [anon_sym_const] = ACTIONS(1511), + [anon_sym_continue] = ACTIONS(1511), + [anon_sym_default] = ACTIONS(1511), + [anon_sym_enum] = ACTIONS(1511), + [anon_sym_fn] = ACTIONS(1511), + [anon_sym_for] = ACTIONS(1511), + [anon_sym_if] = ACTIONS(1511), + [anon_sym_impl] = ACTIONS(1511), + [anon_sym_let] = ACTIONS(1511), + [anon_sym_loop] = ACTIONS(1511), + [anon_sym_match] = ACTIONS(1511), + [anon_sym_mod] = ACTIONS(1511), + [anon_sym_pub] = ACTIONS(1511), + [anon_sym_return] = ACTIONS(1511), + [anon_sym_static] = ACTIONS(1511), + [anon_sym_struct] = ACTIONS(1511), + [anon_sym_trait] = ACTIONS(1511), + [anon_sym_type] = ACTIONS(1511), + [anon_sym_union] = ACTIONS(1511), + [anon_sym_unsafe] = ACTIONS(1511), + [anon_sym_use] = ACTIONS(1511), + [anon_sym_while] = ACTIONS(1511), + [anon_sym_POUND] = ACTIONS(1509), + [anon_sym_BANG] = ACTIONS(1509), + [anon_sym_extern] = ACTIONS(1511), + [anon_sym_LT] = ACTIONS(1509), + [anon_sym_COLON_COLON] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_DOT_DOT] = ACTIONS(1509), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_PIPE] = ACTIONS(1509), + [anon_sym_yield] = ACTIONS(1511), + [anon_sym_move] = ACTIONS(1511), + [sym_integer_literal] = ACTIONS(1509), + [aux_sym_string_literal_token1] = ACTIONS(1509), + [sym_char_literal] = ACTIONS(1509), + [anon_sym_true] = ACTIONS(1511), + [anon_sym_false] = ACTIONS(1511), + [anon_sym_u8] = ACTIONS(1511), + [anon_sym_i8] = ACTIONS(1511), + [anon_sym_u16] = ACTIONS(1511), + [anon_sym_i16] = ACTIONS(1511), + [anon_sym_u32] = ACTIONS(1511), + [anon_sym_i32] = ACTIONS(1511), + [anon_sym_u64] = ACTIONS(1511), + [anon_sym_i64] = ACTIONS(1511), + [anon_sym_u128] = ACTIONS(1511), + [anon_sym_i128] = ACTIONS(1511), + [anon_sym_isize] = ACTIONS(1511), + [anon_sym_usize] = ACTIONS(1511), + [anon_sym_f32] = ACTIONS(1511), + [anon_sym_f64] = ACTIONS(1511), + [anon_sym_bool] = ACTIONS(1511), + [anon_sym_str] = ACTIONS(1511), + [anon_sym_char] = ACTIONS(1511), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(1509), + [sym_self] = ACTIONS(1511), + [sym_super] = ACTIONS(1511), + [sym_crate] = ACTIONS(1511), + [sym_metavariable] = ACTIONS(1509), + [sym_grit_metavariable] = ACTIONS(1509), + [sym_raw_string_literal] = ACTIONS(1509), + [sym_float_literal] = ACTIONS(1509), [sym_block_comment] = ACTIONS(3), }, [294] = { - [ts_builtin_sym_end] = ACTIONS(1515), - [sym__primitive_identifier] = ACTIONS(1517), - [anon_sym_SEMI] = ACTIONS(1515), - [anon_sym_macro_rules_BANG] = ACTIONS(1515), - [anon_sym_LPAREN] = ACTIONS(1515), - [anon_sym_LBRACE] = ACTIONS(1515), - [anon_sym_RBRACE] = ACTIONS(1515), - [anon_sym_LBRACK] = ACTIONS(1515), - [anon_sym_STAR] = ACTIONS(1515), - [anon_sym_SQUOTE] = ACTIONS(1517), - [anon_sym_async] = ACTIONS(1517), - [anon_sym_break] = ACTIONS(1517), - [anon_sym_const] = ACTIONS(1517), - [anon_sym_continue] = ACTIONS(1517), - [anon_sym_default] = ACTIONS(1517), - [anon_sym_enum] = ACTIONS(1517), - [anon_sym_fn] = ACTIONS(1517), - [anon_sym_for] = ACTIONS(1517), - [anon_sym_if] = ACTIONS(1517), - [anon_sym_impl] = ACTIONS(1517), - [anon_sym_let] = ACTIONS(1517), - [anon_sym_loop] = ACTIONS(1517), - [anon_sym_match] = ACTIONS(1517), - [anon_sym_mod] = ACTIONS(1517), - [anon_sym_pub] = ACTIONS(1517), - [anon_sym_return] = ACTIONS(1517), - [anon_sym_static] = ACTIONS(1517), - [anon_sym_struct] = ACTIONS(1517), - [anon_sym_trait] = ACTIONS(1517), - [anon_sym_type] = ACTIONS(1517), - [anon_sym_union] = ACTIONS(1517), - [anon_sym_unsafe] = ACTIONS(1517), - [anon_sym_use] = ACTIONS(1517), - [anon_sym_while] = ACTIONS(1517), - [anon_sym_POUND] = ACTIONS(1515), - [anon_sym_BANG] = ACTIONS(1515), - [anon_sym_extern] = ACTIONS(1517), - [anon_sym_LT] = ACTIONS(1515), - [anon_sym_COLON_COLON] = ACTIONS(1515), - [anon_sym_AMP] = ACTIONS(1515), - [anon_sym_DOT_DOT] = ACTIONS(1515), - [anon_sym_DASH] = ACTIONS(1515), - [anon_sym_PIPE] = ACTIONS(1515), - [anon_sym_yield] = ACTIONS(1517), - [anon_sym_move] = ACTIONS(1517), - [sym_integer_literal] = ACTIONS(1515), - [aux_sym_string_literal_token1] = ACTIONS(1515), - [sym_char_literal] = ACTIONS(1515), - [anon_sym_true] = ACTIONS(1517), - [anon_sym_false] = ACTIONS(1517), - [anon_sym_u8] = ACTIONS(1517), - [anon_sym_i8] = ACTIONS(1517), - [anon_sym_u16] = ACTIONS(1517), - [anon_sym_i16] = ACTIONS(1517), - [anon_sym_u32] = ACTIONS(1517), - [anon_sym_i32] = ACTIONS(1517), - [anon_sym_u64] = ACTIONS(1517), - [anon_sym_i64] = ACTIONS(1517), - [anon_sym_u128] = ACTIONS(1517), - [anon_sym_i128] = ACTIONS(1517), - [anon_sym_isize] = ACTIONS(1517), - [anon_sym_usize] = ACTIONS(1517), - [anon_sym_f32] = ACTIONS(1517), - [anon_sym_f64] = ACTIONS(1517), - [anon_sym_bool] = ACTIONS(1517), - [anon_sym_str] = ACTIONS(1517), - [anon_sym_char] = ACTIONS(1517), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1515), - [sym_self] = ACTIONS(1517), - [sym_super] = ACTIONS(1517), - [sym_crate] = ACTIONS(1517), - [sym_metavariable] = ACTIONS(1515), - [sym_grit_metavariable] = ACTIONS(1515), - [sym_raw_string_literal] = ACTIONS(1515), - [sym_float_literal] = ACTIONS(1515), + [ts_builtin_sym_end] = ACTIONS(1513), + [sym__primitive_identifier] = ACTIONS(1515), + [anon_sym_SEMI] = ACTIONS(1513), + [anon_sym_macro_rules_BANG] = ACTIONS(1513), + [anon_sym_LPAREN] = ACTIONS(1513), + [anon_sym_LBRACE] = ACTIONS(1513), + [anon_sym_RBRACE] = ACTIONS(1513), + [anon_sym_LBRACK] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(1513), + [anon_sym_SQUOTE] = ACTIONS(1515), + [anon_sym_async] = ACTIONS(1515), + [anon_sym_break] = ACTIONS(1515), + [anon_sym_const] = ACTIONS(1515), + [anon_sym_continue] = ACTIONS(1515), + [anon_sym_default] = ACTIONS(1515), + [anon_sym_enum] = ACTIONS(1515), + [anon_sym_fn] = ACTIONS(1515), + [anon_sym_for] = ACTIONS(1515), + [anon_sym_if] = ACTIONS(1515), + [anon_sym_impl] = ACTIONS(1515), + [anon_sym_let] = ACTIONS(1515), + [anon_sym_loop] = ACTIONS(1515), + [anon_sym_match] = ACTIONS(1515), + [anon_sym_mod] = ACTIONS(1515), + [anon_sym_pub] = ACTIONS(1515), + [anon_sym_return] = ACTIONS(1515), + [anon_sym_static] = ACTIONS(1515), + [anon_sym_struct] = ACTIONS(1515), + [anon_sym_trait] = ACTIONS(1515), + [anon_sym_type] = ACTIONS(1515), + [anon_sym_union] = ACTIONS(1515), + [anon_sym_unsafe] = ACTIONS(1515), + [anon_sym_use] = ACTIONS(1515), + [anon_sym_while] = ACTIONS(1515), + [anon_sym_POUND] = ACTIONS(1513), + [anon_sym_BANG] = ACTIONS(1513), + [anon_sym_extern] = ACTIONS(1515), + [anon_sym_LT] = ACTIONS(1513), + [anon_sym_COLON_COLON] = ACTIONS(1513), + [anon_sym_AMP] = ACTIONS(1513), + [anon_sym_DOT_DOT] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_PIPE] = ACTIONS(1513), + [anon_sym_yield] = ACTIONS(1515), + [anon_sym_move] = ACTIONS(1515), + [sym_integer_literal] = ACTIONS(1513), + [aux_sym_string_literal_token1] = ACTIONS(1513), + [sym_char_literal] = ACTIONS(1513), + [anon_sym_true] = ACTIONS(1515), + [anon_sym_false] = ACTIONS(1515), + [anon_sym_u8] = ACTIONS(1515), + [anon_sym_i8] = ACTIONS(1515), + [anon_sym_u16] = ACTIONS(1515), + [anon_sym_i16] = ACTIONS(1515), + [anon_sym_u32] = ACTIONS(1515), + [anon_sym_i32] = ACTIONS(1515), + [anon_sym_u64] = ACTIONS(1515), + [anon_sym_i64] = ACTIONS(1515), + [anon_sym_u128] = ACTIONS(1515), + [anon_sym_i128] = ACTIONS(1515), + [anon_sym_isize] = ACTIONS(1515), + [anon_sym_usize] = ACTIONS(1515), + [anon_sym_f32] = ACTIONS(1515), + [anon_sym_f64] = ACTIONS(1515), + [anon_sym_bool] = ACTIONS(1515), + [anon_sym_str] = ACTIONS(1515), + [anon_sym_char] = ACTIONS(1515), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(1513), + [sym_self] = ACTIONS(1515), + [sym_super] = ACTIONS(1515), + [sym_crate] = ACTIONS(1515), + [sym_metavariable] = ACTIONS(1513), + [sym_grit_metavariable] = ACTIONS(1513), + [sym_raw_string_literal] = ACTIONS(1513), + [sym_float_literal] = ACTIONS(1513), [sym_block_comment] = ACTIONS(3), }, [295] = { - [ts_builtin_sym_end] = ACTIONS(1519), - [sym__primitive_identifier] = ACTIONS(1521), - [anon_sym_SEMI] = ACTIONS(1519), - [anon_sym_macro_rules_BANG] = ACTIONS(1519), - [anon_sym_LPAREN] = ACTIONS(1519), - [anon_sym_LBRACE] = ACTIONS(1519), - [anon_sym_RBRACE] = ACTIONS(1519), - [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_STAR] = ACTIONS(1519), - [anon_sym_SQUOTE] = ACTIONS(1521), - [anon_sym_async] = ACTIONS(1521), - [anon_sym_break] = ACTIONS(1521), - [anon_sym_const] = ACTIONS(1521), - [anon_sym_continue] = ACTIONS(1521), - [anon_sym_default] = ACTIONS(1521), - [anon_sym_enum] = ACTIONS(1521), - [anon_sym_fn] = ACTIONS(1521), - [anon_sym_for] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(1521), - [anon_sym_impl] = ACTIONS(1521), - [anon_sym_let] = ACTIONS(1521), - [anon_sym_loop] = ACTIONS(1521), - [anon_sym_match] = ACTIONS(1521), - [anon_sym_mod] = ACTIONS(1521), - [anon_sym_pub] = ACTIONS(1521), - [anon_sym_return] = ACTIONS(1521), - [anon_sym_static] = ACTIONS(1521), - [anon_sym_struct] = ACTIONS(1521), - [anon_sym_trait] = ACTIONS(1521), - [anon_sym_type] = ACTIONS(1521), - [anon_sym_union] = ACTIONS(1521), - [anon_sym_unsafe] = ACTIONS(1521), - [anon_sym_use] = ACTIONS(1521), - [anon_sym_while] = ACTIONS(1521), - [anon_sym_POUND] = ACTIONS(1519), - [anon_sym_BANG] = ACTIONS(1519), - [anon_sym_extern] = ACTIONS(1521), - [anon_sym_LT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(1519), - [anon_sym_AMP] = ACTIONS(1519), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_DASH] = ACTIONS(1519), - [anon_sym_PIPE] = ACTIONS(1519), - [anon_sym_yield] = ACTIONS(1521), - [anon_sym_move] = ACTIONS(1521), - [sym_integer_literal] = ACTIONS(1519), - [aux_sym_string_literal_token1] = ACTIONS(1519), - [sym_char_literal] = ACTIONS(1519), - [anon_sym_true] = ACTIONS(1521), - [anon_sym_false] = ACTIONS(1521), - [anon_sym_u8] = ACTIONS(1521), - [anon_sym_i8] = ACTIONS(1521), - [anon_sym_u16] = ACTIONS(1521), - [anon_sym_i16] = ACTIONS(1521), - [anon_sym_u32] = ACTIONS(1521), - [anon_sym_i32] = ACTIONS(1521), - [anon_sym_u64] = ACTIONS(1521), - [anon_sym_i64] = ACTIONS(1521), - [anon_sym_u128] = ACTIONS(1521), - [anon_sym_i128] = ACTIONS(1521), - [anon_sym_isize] = ACTIONS(1521), - [anon_sym_usize] = ACTIONS(1521), - [anon_sym_f32] = ACTIONS(1521), - [anon_sym_f64] = ACTIONS(1521), - [anon_sym_bool] = ACTIONS(1521), - [anon_sym_str] = ACTIONS(1521), - [anon_sym_char] = ACTIONS(1521), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1519), - [sym_self] = ACTIONS(1521), - [sym_super] = ACTIONS(1521), - [sym_crate] = ACTIONS(1521), - [sym_metavariable] = ACTIONS(1519), - [sym_grit_metavariable] = ACTIONS(1519), - [sym_raw_string_literal] = ACTIONS(1519), - [sym_float_literal] = ACTIONS(1519), + [ts_builtin_sym_end] = ACTIONS(1517), + [sym__primitive_identifier] = ACTIONS(1519), + [anon_sym_SEMI] = ACTIONS(1517), + [anon_sym_macro_rules_BANG] = ACTIONS(1517), + [anon_sym_LPAREN] = ACTIONS(1517), + [anon_sym_LBRACE] = ACTIONS(1517), + [anon_sym_RBRACE] = ACTIONS(1517), + [anon_sym_LBRACK] = ACTIONS(1517), + [anon_sym_STAR] = ACTIONS(1517), + [anon_sym_SQUOTE] = ACTIONS(1519), + [anon_sym_async] = ACTIONS(1519), + [anon_sym_break] = ACTIONS(1519), + [anon_sym_const] = ACTIONS(1519), + [anon_sym_continue] = ACTIONS(1519), + [anon_sym_default] = ACTIONS(1519), + [anon_sym_enum] = ACTIONS(1519), + [anon_sym_fn] = ACTIONS(1519), + [anon_sym_for] = ACTIONS(1519), + [anon_sym_if] = ACTIONS(1519), + [anon_sym_impl] = ACTIONS(1519), + [anon_sym_let] = ACTIONS(1519), + [anon_sym_loop] = ACTIONS(1519), + [anon_sym_match] = ACTIONS(1519), + [anon_sym_mod] = ACTIONS(1519), + [anon_sym_pub] = ACTIONS(1519), + [anon_sym_return] = ACTIONS(1519), + [anon_sym_static] = ACTIONS(1519), + [anon_sym_struct] = ACTIONS(1519), + [anon_sym_trait] = ACTIONS(1519), + [anon_sym_type] = ACTIONS(1519), + [anon_sym_union] = ACTIONS(1519), + [anon_sym_unsafe] = ACTIONS(1519), + [anon_sym_use] = ACTIONS(1519), + [anon_sym_while] = ACTIONS(1519), + [anon_sym_POUND] = ACTIONS(1517), + [anon_sym_BANG] = ACTIONS(1517), + [anon_sym_extern] = ACTIONS(1519), + [anon_sym_LT] = ACTIONS(1517), + [anon_sym_COLON_COLON] = ACTIONS(1517), + [anon_sym_AMP] = ACTIONS(1517), + [anon_sym_DOT_DOT] = ACTIONS(1517), + [anon_sym_DASH] = ACTIONS(1517), + [anon_sym_PIPE] = ACTIONS(1517), + [anon_sym_yield] = ACTIONS(1519), + [anon_sym_move] = ACTIONS(1519), + [sym_integer_literal] = ACTIONS(1517), + [aux_sym_string_literal_token1] = ACTIONS(1517), + [sym_char_literal] = ACTIONS(1517), + [anon_sym_true] = ACTIONS(1519), + [anon_sym_false] = ACTIONS(1519), + [anon_sym_u8] = ACTIONS(1519), + [anon_sym_i8] = ACTIONS(1519), + [anon_sym_u16] = ACTIONS(1519), + [anon_sym_i16] = ACTIONS(1519), + [anon_sym_u32] = ACTIONS(1519), + [anon_sym_i32] = ACTIONS(1519), + [anon_sym_u64] = ACTIONS(1519), + [anon_sym_i64] = ACTIONS(1519), + [anon_sym_u128] = ACTIONS(1519), + [anon_sym_i128] = ACTIONS(1519), + [anon_sym_isize] = ACTIONS(1519), + [anon_sym_usize] = ACTIONS(1519), + [anon_sym_f32] = ACTIONS(1519), + [anon_sym_f64] = ACTIONS(1519), + [anon_sym_bool] = ACTIONS(1519), + [anon_sym_str] = ACTIONS(1519), + [anon_sym_char] = ACTIONS(1519), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(1517), + [sym_self] = ACTIONS(1519), + [sym_super] = ACTIONS(1519), + [sym_crate] = ACTIONS(1519), + [sym_metavariable] = ACTIONS(1517), + [sym_grit_metavariable] = ACTIONS(1517), + [sym_raw_string_literal] = ACTIONS(1517), + [sym_float_literal] = ACTIONS(1517), [sym_block_comment] = ACTIONS(3), }, [296] = { - [ts_builtin_sym_end] = ACTIONS(1523), - [sym__primitive_identifier] = ACTIONS(1525), - [anon_sym_SEMI] = ACTIONS(1523), - [anon_sym_macro_rules_BANG] = ACTIONS(1523), - [anon_sym_LPAREN] = ACTIONS(1523), - [anon_sym_LBRACE] = ACTIONS(1523), - [anon_sym_RBRACE] = ACTIONS(1523), - [anon_sym_LBRACK] = ACTIONS(1523), - [anon_sym_STAR] = ACTIONS(1523), - [anon_sym_SQUOTE] = ACTIONS(1525), - [anon_sym_async] = ACTIONS(1525), - [anon_sym_break] = ACTIONS(1525), - [anon_sym_const] = ACTIONS(1525), - [anon_sym_continue] = ACTIONS(1525), - [anon_sym_default] = ACTIONS(1525), - [anon_sym_enum] = ACTIONS(1525), - [anon_sym_fn] = ACTIONS(1525), - [anon_sym_for] = ACTIONS(1525), - [anon_sym_if] = ACTIONS(1525), - [anon_sym_impl] = ACTIONS(1525), - [anon_sym_let] = ACTIONS(1525), - [anon_sym_loop] = ACTIONS(1525), - [anon_sym_match] = ACTIONS(1525), - [anon_sym_mod] = ACTIONS(1525), - [anon_sym_pub] = ACTIONS(1525), - [anon_sym_return] = ACTIONS(1525), - [anon_sym_static] = ACTIONS(1525), - [anon_sym_struct] = ACTIONS(1525), - [anon_sym_trait] = ACTIONS(1525), - [anon_sym_type] = ACTIONS(1525), - [anon_sym_union] = ACTIONS(1525), - [anon_sym_unsafe] = ACTIONS(1525), - [anon_sym_use] = ACTIONS(1525), - [anon_sym_while] = ACTIONS(1525), - [anon_sym_POUND] = ACTIONS(1523), - [anon_sym_BANG] = ACTIONS(1523), - [anon_sym_extern] = ACTIONS(1525), - [anon_sym_LT] = ACTIONS(1523), - [anon_sym_COLON_COLON] = ACTIONS(1523), - [anon_sym_AMP] = ACTIONS(1523), - [anon_sym_DOT_DOT] = ACTIONS(1523), - [anon_sym_DASH] = ACTIONS(1523), - [anon_sym_PIPE] = ACTIONS(1523), - [anon_sym_yield] = ACTIONS(1525), - [anon_sym_move] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1523), - [aux_sym_string_literal_token1] = ACTIONS(1523), - [sym_char_literal] = ACTIONS(1523), - [anon_sym_true] = ACTIONS(1525), - [anon_sym_false] = ACTIONS(1525), - [anon_sym_u8] = ACTIONS(1525), - [anon_sym_i8] = ACTIONS(1525), - [anon_sym_u16] = ACTIONS(1525), - [anon_sym_i16] = ACTIONS(1525), - [anon_sym_u32] = ACTIONS(1525), - [anon_sym_i32] = ACTIONS(1525), - [anon_sym_u64] = ACTIONS(1525), - [anon_sym_i64] = ACTIONS(1525), - [anon_sym_u128] = ACTIONS(1525), - [anon_sym_i128] = ACTIONS(1525), - [anon_sym_isize] = ACTIONS(1525), - [anon_sym_usize] = ACTIONS(1525), - [anon_sym_f32] = ACTIONS(1525), - [anon_sym_f64] = ACTIONS(1525), - [anon_sym_bool] = ACTIONS(1525), - [anon_sym_str] = ACTIONS(1525), - [anon_sym_char] = ACTIONS(1525), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1523), - [sym_self] = ACTIONS(1525), - [sym_super] = ACTIONS(1525), - [sym_crate] = ACTIONS(1525), - [sym_metavariable] = ACTIONS(1523), - [sym_grit_metavariable] = ACTIONS(1523), - [sym_raw_string_literal] = ACTIONS(1523), - [sym_float_literal] = ACTIONS(1523), + [ts_builtin_sym_end] = ACTIONS(1521), + [sym__primitive_identifier] = ACTIONS(1523), + [anon_sym_SEMI] = ACTIONS(1521), + [anon_sym_macro_rules_BANG] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1521), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_RBRACE] = ACTIONS(1521), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1521), + [anon_sym_SQUOTE] = ACTIONS(1523), + [anon_sym_async] = ACTIONS(1523), + [anon_sym_break] = ACTIONS(1523), + [anon_sym_const] = ACTIONS(1523), + [anon_sym_continue] = ACTIONS(1523), + [anon_sym_default] = ACTIONS(1523), + [anon_sym_enum] = ACTIONS(1523), + [anon_sym_fn] = ACTIONS(1523), + [anon_sym_for] = ACTIONS(1523), + [anon_sym_if] = ACTIONS(1523), + [anon_sym_impl] = ACTIONS(1523), + [anon_sym_let] = ACTIONS(1523), + [anon_sym_loop] = ACTIONS(1523), + [anon_sym_match] = ACTIONS(1523), + [anon_sym_mod] = ACTIONS(1523), + [anon_sym_pub] = ACTIONS(1523), + [anon_sym_return] = ACTIONS(1523), + [anon_sym_static] = ACTIONS(1523), + [anon_sym_struct] = ACTIONS(1523), + [anon_sym_trait] = ACTIONS(1523), + [anon_sym_type] = ACTIONS(1523), + [anon_sym_union] = ACTIONS(1523), + [anon_sym_unsafe] = ACTIONS(1523), + [anon_sym_use] = ACTIONS(1523), + [anon_sym_while] = ACTIONS(1523), + [anon_sym_POUND] = ACTIONS(1521), + [anon_sym_BANG] = ACTIONS(1521), + [anon_sym_extern] = ACTIONS(1523), + [anon_sym_LT] = ACTIONS(1521), + [anon_sym_COLON_COLON] = ACTIONS(1521), + [anon_sym_AMP] = ACTIONS(1521), + [anon_sym_DOT_DOT] = ACTIONS(1521), + [anon_sym_DASH] = ACTIONS(1521), + [anon_sym_PIPE] = ACTIONS(1521), + [anon_sym_yield] = ACTIONS(1523), + [anon_sym_move] = ACTIONS(1523), + [sym_integer_literal] = ACTIONS(1521), + [aux_sym_string_literal_token1] = ACTIONS(1521), + [sym_char_literal] = ACTIONS(1521), + [anon_sym_true] = ACTIONS(1523), + [anon_sym_false] = ACTIONS(1523), + [anon_sym_u8] = ACTIONS(1523), + [anon_sym_i8] = ACTIONS(1523), + [anon_sym_u16] = ACTIONS(1523), + [anon_sym_i16] = ACTIONS(1523), + [anon_sym_u32] = ACTIONS(1523), + [anon_sym_i32] = ACTIONS(1523), + [anon_sym_u64] = ACTIONS(1523), + [anon_sym_i64] = ACTIONS(1523), + [anon_sym_u128] = ACTIONS(1523), + [anon_sym_i128] = ACTIONS(1523), + [anon_sym_isize] = ACTIONS(1523), + [anon_sym_usize] = ACTIONS(1523), + [anon_sym_f32] = ACTIONS(1523), + [anon_sym_f64] = ACTIONS(1523), + [anon_sym_bool] = ACTIONS(1523), + [anon_sym_str] = ACTIONS(1523), + [anon_sym_char] = ACTIONS(1523), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(1521), + [sym_self] = ACTIONS(1523), + [sym_super] = ACTIONS(1523), + [sym_crate] = ACTIONS(1523), + [sym_metavariable] = ACTIONS(1521), + [sym_grit_metavariable] = ACTIONS(1521), + [sym_raw_string_literal] = ACTIONS(1521), + [sym_float_literal] = ACTIONS(1521), [sym_block_comment] = ACTIONS(3), }, [297] = { - [ts_builtin_sym_end] = ACTIONS(1527), - [sym__primitive_identifier] = ACTIONS(1529), - [anon_sym_SEMI] = ACTIONS(1527), - [anon_sym_macro_rules_BANG] = ACTIONS(1527), - [anon_sym_LPAREN] = ACTIONS(1527), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_RBRACE] = ACTIONS(1527), - [anon_sym_LBRACK] = ACTIONS(1527), - [anon_sym_STAR] = ACTIONS(1527), - [anon_sym_SQUOTE] = ACTIONS(1529), - [anon_sym_async] = ACTIONS(1529), - [anon_sym_break] = ACTIONS(1529), - [anon_sym_const] = ACTIONS(1529), - [anon_sym_continue] = ACTIONS(1529), - [anon_sym_default] = ACTIONS(1529), - [anon_sym_enum] = ACTIONS(1529), - [anon_sym_fn] = ACTIONS(1529), - [anon_sym_for] = ACTIONS(1529), - [anon_sym_if] = ACTIONS(1529), - [anon_sym_impl] = ACTIONS(1529), - [anon_sym_let] = ACTIONS(1529), - [anon_sym_loop] = ACTIONS(1529), - [anon_sym_match] = ACTIONS(1529), - [anon_sym_mod] = ACTIONS(1529), - [anon_sym_pub] = ACTIONS(1529), - [anon_sym_return] = ACTIONS(1529), - [anon_sym_static] = ACTIONS(1529), - [anon_sym_struct] = ACTIONS(1529), - [anon_sym_trait] = ACTIONS(1529), - [anon_sym_type] = ACTIONS(1529), - [anon_sym_union] = ACTIONS(1529), - [anon_sym_unsafe] = ACTIONS(1529), - [anon_sym_use] = ACTIONS(1529), - [anon_sym_while] = ACTIONS(1529), - [anon_sym_POUND] = ACTIONS(1527), - [anon_sym_BANG] = ACTIONS(1527), - [anon_sym_extern] = ACTIONS(1529), - [anon_sym_LT] = ACTIONS(1527), - [anon_sym_COLON_COLON] = ACTIONS(1527), - [anon_sym_AMP] = ACTIONS(1527), - [anon_sym_DOT_DOT] = ACTIONS(1527), - [anon_sym_DASH] = ACTIONS(1527), - [anon_sym_PIPE] = ACTIONS(1527), - [anon_sym_yield] = ACTIONS(1529), - [anon_sym_move] = ACTIONS(1529), - [sym_integer_literal] = ACTIONS(1527), - [aux_sym_string_literal_token1] = ACTIONS(1527), - [sym_char_literal] = ACTIONS(1527), - [anon_sym_true] = ACTIONS(1529), - [anon_sym_false] = ACTIONS(1529), - [anon_sym_u8] = ACTIONS(1529), - [anon_sym_i8] = ACTIONS(1529), - [anon_sym_u16] = ACTIONS(1529), - [anon_sym_i16] = ACTIONS(1529), - [anon_sym_u32] = ACTIONS(1529), - [anon_sym_i32] = ACTIONS(1529), - [anon_sym_u64] = ACTIONS(1529), - [anon_sym_i64] = ACTIONS(1529), - [anon_sym_u128] = ACTIONS(1529), - [anon_sym_i128] = ACTIONS(1529), - [anon_sym_isize] = ACTIONS(1529), - [anon_sym_usize] = ACTIONS(1529), - [anon_sym_f32] = ACTIONS(1529), - [anon_sym_f64] = ACTIONS(1529), - [anon_sym_bool] = ACTIONS(1529), - [anon_sym_str] = ACTIONS(1529), - [anon_sym_char] = ACTIONS(1529), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1527), - [sym_self] = ACTIONS(1529), - [sym_super] = ACTIONS(1529), - [sym_crate] = ACTIONS(1529), - [sym_metavariable] = ACTIONS(1527), - [sym_grit_metavariable] = ACTIONS(1527), - [sym_raw_string_literal] = ACTIONS(1527), - [sym_float_literal] = ACTIONS(1527), + [ts_builtin_sym_end] = ACTIONS(1525), + [sym__primitive_identifier] = ACTIONS(1527), + [anon_sym_SEMI] = ACTIONS(1525), + [anon_sym_macro_rules_BANG] = ACTIONS(1525), + [anon_sym_LPAREN] = ACTIONS(1525), + [anon_sym_LBRACE] = ACTIONS(1525), + [anon_sym_RBRACE] = ACTIONS(1525), + [anon_sym_LBRACK] = ACTIONS(1525), + [anon_sym_STAR] = ACTIONS(1525), + [anon_sym_SQUOTE] = ACTIONS(1527), + [anon_sym_async] = ACTIONS(1527), + [anon_sym_break] = ACTIONS(1527), + [anon_sym_const] = ACTIONS(1527), + [anon_sym_continue] = ACTIONS(1527), + [anon_sym_default] = ACTIONS(1527), + [anon_sym_enum] = ACTIONS(1527), + [anon_sym_fn] = ACTIONS(1527), + [anon_sym_for] = ACTIONS(1527), + [anon_sym_if] = ACTIONS(1527), + [anon_sym_impl] = ACTIONS(1527), + [anon_sym_let] = ACTIONS(1527), + [anon_sym_loop] = ACTIONS(1527), + [anon_sym_match] = ACTIONS(1527), + [anon_sym_mod] = ACTIONS(1527), + [anon_sym_pub] = ACTIONS(1527), + [anon_sym_return] = ACTIONS(1527), + [anon_sym_static] = ACTIONS(1527), + [anon_sym_struct] = ACTIONS(1527), + [anon_sym_trait] = ACTIONS(1527), + [anon_sym_type] = ACTIONS(1527), + [anon_sym_union] = ACTIONS(1527), + [anon_sym_unsafe] = ACTIONS(1527), + [anon_sym_use] = ACTIONS(1527), + [anon_sym_while] = ACTIONS(1527), + [anon_sym_POUND] = ACTIONS(1525), + [anon_sym_BANG] = ACTIONS(1525), + [anon_sym_extern] = ACTIONS(1527), + [anon_sym_LT] = ACTIONS(1525), + [anon_sym_COLON_COLON] = ACTIONS(1525), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_DOT_DOT] = ACTIONS(1525), + [anon_sym_DASH] = ACTIONS(1525), + [anon_sym_PIPE] = ACTIONS(1525), + [anon_sym_yield] = ACTIONS(1527), + [anon_sym_move] = ACTIONS(1527), + [sym_integer_literal] = ACTIONS(1525), + [aux_sym_string_literal_token1] = ACTIONS(1525), + [sym_char_literal] = ACTIONS(1525), + [anon_sym_true] = ACTIONS(1527), + [anon_sym_false] = ACTIONS(1527), + [anon_sym_u8] = ACTIONS(1527), + [anon_sym_i8] = ACTIONS(1527), + [anon_sym_u16] = ACTIONS(1527), + [anon_sym_i16] = ACTIONS(1527), + [anon_sym_u32] = ACTIONS(1527), + [anon_sym_i32] = ACTIONS(1527), + [anon_sym_u64] = ACTIONS(1527), + [anon_sym_i64] = ACTIONS(1527), + [anon_sym_u128] = ACTIONS(1527), + [anon_sym_i128] = ACTIONS(1527), + [anon_sym_isize] = ACTIONS(1527), + [anon_sym_usize] = ACTIONS(1527), + [anon_sym_f32] = ACTIONS(1527), + [anon_sym_f64] = ACTIONS(1527), + [anon_sym_bool] = ACTIONS(1527), + [anon_sym_str] = ACTIONS(1527), + [anon_sym_char] = ACTIONS(1527), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(1525), + [sym_self] = ACTIONS(1527), + [sym_super] = ACTIONS(1527), + [sym_crate] = ACTIONS(1527), + [sym_metavariable] = ACTIONS(1525), + [sym_grit_metavariable] = ACTIONS(1525), + [sym_raw_string_literal] = ACTIONS(1525), + [sym_float_literal] = ACTIONS(1525), [sym_block_comment] = ACTIONS(3), }, [298] = { - [ts_builtin_sym_end] = ACTIONS(1531), - [sym__primitive_identifier] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1531), - [anon_sym_macro_rules_BANG] = ACTIONS(1531), - [anon_sym_LPAREN] = ACTIONS(1531), - [anon_sym_LBRACE] = ACTIONS(1531), - [anon_sym_RBRACE] = ACTIONS(1531), - [anon_sym_LBRACK] = ACTIONS(1531), - [anon_sym_STAR] = ACTIONS(1531), - [anon_sym_SQUOTE] = ACTIONS(1533), - [anon_sym_async] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_fn] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_impl] = ACTIONS(1533), - [anon_sym_let] = ACTIONS(1533), - [anon_sym_loop] = ACTIONS(1533), - [anon_sym_match] = ACTIONS(1533), - [anon_sym_mod] = ACTIONS(1533), - [anon_sym_pub] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_trait] = ACTIONS(1533), - [anon_sym_type] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_unsafe] = ACTIONS(1533), - [anon_sym_use] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_POUND] = ACTIONS(1531), - [anon_sym_BANG] = ACTIONS(1531), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym_LT] = ACTIONS(1531), - [anon_sym_COLON_COLON] = ACTIONS(1531), - [anon_sym_AMP] = ACTIONS(1531), - [anon_sym_DOT_DOT] = ACTIONS(1531), - [anon_sym_DASH] = ACTIONS(1531), - [anon_sym_PIPE] = ACTIONS(1531), - [anon_sym_yield] = ACTIONS(1533), - [anon_sym_move] = ACTIONS(1533), - [sym_integer_literal] = ACTIONS(1531), - [aux_sym_string_literal_token1] = ACTIONS(1531), - [sym_char_literal] = ACTIONS(1531), - [anon_sym_true] = ACTIONS(1533), - [anon_sym_false] = ACTIONS(1533), - [anon_sym_u8] = ACTIONS(1533), - [anon_sym_i8] = ACTIONS(1533), - [anon_sym_u16] = ACTIONS(1533), - [anon_sym_i16] = ACTIONS(1533), - [anon_sym_u32] = ACTIONS(1533), - [anon_sym_i32] = ACTIONS(1533), - [anon_sym_u64] = ACTIONS(1533), - [anon_sym_i64] = ACTIONS(1533), - [anon_sym_u128] = ACTIONS(1533), - [anon_sym_i128] = ACTIONS(1533), - [anon_sym_isize] = ACTIONS(1533), - [anon_sym_usize] = ACTIONS(1533), - [anon_sym_f32] = ACTIONS(1533), - [anon_sym_f64] = ACTIONS(1533), - [anon_sym_bool] = ACTIONS(1533), - [anon_sym_str] = ACTIONS(1533), - [anon_sym_char] = ACTIONS(1533), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1531), - [sym_self] = ACTIONS(1533), - [sym_super] = ACTIONS(1533), - [sym_crate] = ACTIONS(1533), - [sym_metavariable] = ACTIONS(1531), - [sym_grit_metavariable] = ACTIONS(1531), - [sym_raw_string_literal] = ACTIONS(1531), - [sym_float_literal] = ACTIONS(1531), + [ts_builtin_sym_end] = ACTIONS(1529), + [sym__primitive_identifier] = ACTIONS(1531), + [anon_sym_SEMI] = ACTIONS(1529), + [anon_sym_macro_rules_BANG] = ACTIONS(1529), + [anon_sym_LPAREN] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1529), + [anon_sym_RBRACE] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1529), + [anon_sym_STAR] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(1531), + [anon_sym_async] = ACTIONS(1531), + [anon_sym_break] = ACTIONS(1531), + [anon_sym_const] = ACTIONS(1531), + [anon_sym_continue] = ACTIONS(1531), + [anon_sym_default] = ACTIONS(1531), + [anon_sym_enum] = ACTIONS(1531), + [anon_sym_fn] = ACTIONS(1531), + [anon_sym_for] = ACTIONS(1531), + [anon_sym_if] = ACTIONS(1531), + [anon_sym_impl] = ACTIONS(1531), + [anon_sym_let] = ACTIONS(1531), + [anon_sym_loop] = ACTIONS(1531), + [anon_sym_match] = ACTIONS(1531), + [anon_sym_mod] = ACTIONS(1531), + [anon_sym_pub] = ACTIONS(1531), + [anon_sym_return] = ACTIONS(1531), + [anon_sym_static] = ACTIONS(1531), + [anon_sym_struct] = ACTIONS(1531), + [anon_sym_trait] = ACTIONS(1531), + [anon_sym_type] = ACTIONS(1531), + [anon_sym_union] = ACTIONS(1531), + [anon_sym_unsafe] = ACTIONS(1531), + [anon_sym_use] = ACTIONS(1531), + [anon_sym_while] = ACTIONS(1531), + [anon_sym_POUND] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1529), + [anon_sym_extern] = ACTIONS(1531), + [anon_sym_LT] = ACTIONS(1529), + [anon_sym_COLON_COLON] = ACTIONS(1529), + [anon_sym_AMP] = ACTIONS(1529), + [anon_sym_DOT_DOT] = ACTIONS(1529), + [anon_sym_DASH] = ACTIONS(1529), + [anon_sym_PIPE] = ACTIONS(1529), + [anon_sym_yield] = ACTIONS(1531), + [anon_sym_move] = ACTIONS(1531), + [sym_integer_literal] = ACTIONS(1529), + [aux_sym_string_literal_token1] = ACTIONS(1529), + [sym_char_literal] = ACTIONS(1529), + [anon_sym_true] = ACTIONS(1531), + [anon_sym_false] = ACTIONS(1531), + [anon_sym_u8] = ACTIONS(1531), + [anon_sym_i8] = ACTIONS(1531), + [anon_sym_u16] = ACTIONS(1531), + [anon_sym_i16] = ACTIONS(1531), + [anon_sym_u32] = ACTIONS(1531), + [anon_sym_i32] = ACTIONS(1531), + [anon_sym_u64] = ACTIONS(1531), + [anon_sym_i64] = ACTIONS(1531), + [anon_sym_u128] = ACTIONS(1531), + [anon_sym_i128] = ACTIONS(1531), + [anon_sym_isize] = ACTIONS(1531), + [anon_sym_usize] = ACTIONS(1531), + [anon_sym_f32] = ACTIONS(1531), + [anon_sym_f64] = ACTIONS(1531), + [anon_sym_bool] = ACTIONS(1531), + [anon_sym_str] = ACTIONS(1531), + [anon_sym_char] = ACTIONS(1531), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(1529), + [sym_self] = ACTIONS(1531), + [sym_super] = ACTIONS(1531), + [sym_crate] = ACTIONS(1531), + [sym_metavariable] = ACTIONS(1529), + [sym_grit_metavariable] = ACTIONS(1529), + [sym_raw_string_literal] = ACTIONS(1529), + [sym_float_literal] = ACTIONS(1529), [sym_block_comment] = ACTIONS(3), }, [299] = { - [ts_builtin_sym_end] = ACTIONS(1535), - [sym__primitive_identifier] = ACTIONS(1537), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_macro_rules_BANG] = ACTIONS(1535), - [anon_sym_LPAREN] = ACTIONS(1535), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_RBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1535), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1537), - [anon_sym_async] = ACTIONS(1537), - [anon_sym_break] = ACTIONS(1537), - [anon_sym_const] = ACTIONS(1537), - [anon_sym_continue] = ACTIONS(1537), - [anon_sym_default] = ACTIONS(1537), - [anon_sym_enum] = ACTIONS(1537), - [anon_sym_fn] = ACTIONS(1537), - [anon_sym_for] = ACTIONS(1537), - [anon_sym_if] = ACTIONS(1537), - [anon_sym_impl] = ACTIONS(1537), - [anon_sym_let] = ACTIONS(1537), - [anon_sym_loop] = ACTIONS(1537), - [anon_sym_match] = ACTIONS(1537), - [anon_sym_mod] = ACTIONS(1537), - [anon_sym_pub] = ACTIONS(1537), - [anon_sym_return] = ACTIONS(1537), - [anon_sym_static] = ACTIONS(1537), - [anon_sym_struct] = ACTIONS(1537), - [anon_sym_trait] = ACTIONS(1537), - [anon_sym_type] = ACTIONS(1537), - [anon_sym_union] = ACTIONS(1537), - [anon_sym_unsafe] = ACTIONS(1537), - [anon_sym_use] = ACTIONS(1537), - [anon_sym_while] = ACTIONS(1537), - [anon_sym_POUND] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_extern] = ACTIONS(1537), - [anon_sym_LT] = ACTIONS(1535), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1535), - [anon_sym_DOT_DOT] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1535), - [anon_sym_PIPE] = ACTIONS(1535), - [anon_sym_yield] = ACTIONS(1537), - [anon_sym_move] = ACTIONS(1537), - [sym_integer_literal] = ACTIONS(1535), - [aux_sym_string_literal_token1] = ACTIONS(1535), - [sym_char_literal] = ACTIONS(1535), - [anon_sym_true] = ACTIONS(1537), - [anon_sym_false] = ACTIONS(1537), - [anon_sym_u8] = ACTIONS(1537), - [anon_sym_i8] = ACTIONS(1537), - [anon_sym_u16] = ACTIONS(1537), - [anon_sym_i16] = ACTIONS(1537), - [anon_sym_u32] = ACTIONS(1537), - [anon_sym_i32] = ACTIONS(1537), - [anon_sym_u64] = ACTIONS(1537), - [anon_sym_i64] = ACTIONS(1537), - [anon_sym_u128] = ACTIONS(1537), - [anon_sym_i128] = ACTIONS(1537), - [anon_sym_isize] = ACTIONS(1537), - [anon_sym_usize] = ACTIONS(1537), - [anon_sym_f32] = ACTIONS(1537), - [anon_sym_f64] = ACTIONS(1537), - [anon_sym_bool] = ACTIONS(1537), - [anon_sym_str] = ACTIONS(1537), - [anon_sym_char] = ACTIONS(1537), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1535), - [sym_self] = ACTIONS(1537), - [sym_super] = ACTIONS(1537), - [sym_crate] = ACTIONS(1537), - [sym_metavariable] = ACTIONS(1535), - [sym_grit_metavariable] = ACTIONS(1535), - [sym_raw_string_literal] = ACTIONS(1535), - [sym_float_literal] = ACTIONS(1535), + [ts_builtin_sym_end] = ACTIONS(1533), + [sym__primitive_identifier] = ACTIONS(1535), + [anon_sym_SEMI] = ACTIONS(1533), + [anon_sym_macro_rules_BANG] = ACTIONS(1533), + [anon_sym_LPAREN] = ACTIONS(1533), + [anon_sym_LBRACE] = ACTIONS(1533), + [anon_sym_RBRACE] = ACTIONS(1533), + [anon_sym_LBRACK] = ACTIONS(1533), + [anon_sym_STAR] = ACTIONS(1533), + [anon_sym_SQUOTE] = ACTIONS(1535), + [anon_sym_async] = ACTIONS(1535), + [anon_sym_break] = ACTIONS(1535), + [anon_sym_const] = ACTIONS(1535), + [anon_sym_continue] = ACTIONS(1535), + [anon_sym_default] = ACTIONS(1535), + [anon_sym_enum] = ACTIONS(1535), + [anon_sym_fn] = ACTIONS(1535), + [anon_sym_for] = ACTIONS(1535), + [anon_sym_if] = ACTIONS(1535), + [anon_sym_impl] = ACTIONS(1535), + [anon_sym_let] = ACTIONS(1535), + [anon_sym_loop] = ACTIONS(1535), + [anon_sym_match] = ACTIONS(1535), + [anon_sym_mod] = ACTIONS(1535), + [anon_sym_pub] = ACTIONS(1535), + [anon_sym_return] = ACTIONS(1535), + [anon_sym_static] = ACTIONS(1535), + [anon_sym_struct] = ACTIONS(1535), + [anon_sym_trait] = ACTIONS(1535), + [anon_sym_type] = ACTIONS(1535), + [anon_sym_union] = ACTIONS(1535), + [anon_sym_unsafe] = ACTIONS(1535), + [anon_sym_use] = ACTIONS(1535), + [anon_sym_while] = ACTIONS(1535), + [anon_sym_POUND] = ACTIONS(1533), + [anon_sym_BANG] = ACTIONS(1533), + [anon_sym_extern] = ACTIONS(1535), + [anon_sym_LT] = ACTIONS(1533), + [anon_sym_COLON_COLON] = ACTIONS(1533), + [anon_sym_AMP] = ACTIONS(1533), + [anon_sym_DOT_DOT] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_PIPE] = ACTIONS(1533), + [anon_sym_yield] = ACTIONS(1535), + [anon_sym_move] = ACTIONS(1535), + [sym_integer_literal] = ACTIONS(1533), + [aux_sym_string_literal_token1] = ACTIONS(1533), + [sym_char_literal] = ACTIONS(1533), + [anon_sym_true] = ACTIONS(1535), + [anon_sym_false] = ACTIONS(1535), + [anon_sym_u8] = ACTIONS(1535), + [anon_sym_i8] = ACTIONS(1535), + [anon_sym_u16] = ACTIONS(1535), + [anon_sym_i16] = ACTIONS(1535), + [anon_sym_u32] = ACTIONS(1535), + [anon_sym_i32] = ACTIONS(1535), + [anon_sym_u64] = ACTIONS(1535), + [anon_sym_i64] = ACTIONS(1535), + [anon_sym_u128] = ACTIONS(1535), + [anon_sym_i128] = ACTIONS(1535), + [anon_sym_isize] = ACTIONS(1535), + [anon_sym_usize] = ACTIONS(1535), + [anon_sym_f32] = ACTIONS(1535), + [anon_sym_f64] = ACTIONS(1535), + [anon_sym_bool] = ACTIONS(1535), + [anon_sym_str] = ACTIONS(1535), + [anon_sym_char] = ACTIONS(1535), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(1533), + [sym_self] = ACTIONS(1535), + [sym_super] = ACTIONS(1535), + [sym_crate] = ACTIONS(1535), + [sym_metavariable] = ACTIONS(1533), + [sym_grit_metavariable] = ACTIONS(1533), + [sym_raw_string_literal] = ACTIONS(1533), + [sym_float_literal] = ACTIONS(1533), [sym_block_comment] = ACTIONS(3), }, [300] = { - [ts_builtin_sym_end] = ACTIONS(1539), - [sym__primitive_identifier] = ACTIONS(1541), - [anon_sym_SEMI] = ACTIONS(1539), - [anon_sym_macro_rules_BANG] = ACTIONS(1539), - [anon_sym_LPAREN] = ACTIONS(1539), - [anon_sym_LBRACE] = ACTIONS(1539), - [anon_sym_RBRACE] = ACTIONS(1539), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(1539), - [anon_sym_SQUOTE] = ACTIONS(1541), - [anon_sym_async] = ACTIONS(1541), - [anon_sym_break] = ACTIONS(1541), - [anon_sym_const] = ACTIONS(1541), - [anon_sym_continue] = ACTIONS(1541), - [anon_sym_default] = ACTIONS(1541), - [anon_sym_enum] = ACTIONS(1541), - [anon_sym_fn] = ACTIONS(1541), - [anon_sym_for] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(1541), - [anon_sym_impl] = ACTIONS(1541), - [anon_sym_let] = ACTIONS(1541), - [anon_sym_loop] = ACTIONS(1541), - [anon_sym_match] = ACTIONS(1541), - [anon_sym_mod] = ACTIONS(1541), - [anon_sym_pub] = ACTIONS(1541), - [anon_sym_return] = ACTIONS(1541), - [anon_sym_static] = ACTIONS(1541), - [anon_sym_struct] = ACTIONS(1541), - [anon_sym_trait] = ACTIONS(1541), - [anon_sym_type] = ACTIONS(1541), - [anon_sym_union] = ACTIONS(1541), - [anon_sym_unsafe] = ACTIONS(1541), - [anon_sym_use] = ACTIONS(1541), - [anon_sym_while] = ACTIONS(1541), - [anon_sym_POUND] = ACTIONS(1539), - [anon_sym_BANG] = ACTIONS(1539), - [anon_sym_extern] = ACTIONS(1541), - [anon_sym_LT] = ACTIONS(1539), - [anon_sym_COLON_COLON] = ACTIONS(1539), - [anon_sym_AMP] = ACTIONS(1539), - [anon_sym_DOT_DOT] = ACTIONS(1539), - [anon_sym_DASH] = ACTIONS(1539), - [anon_sym_PIPE] = ACTIONS(1539), - [anon_sym_yield] = ACTIONS(1541), - [anon_sym_move] = ACTIONS(1541), - [sym_integer_literal] = ACTIONS(1539), - [aux_sym_string_literal_token1] = ACTIONS(1539), - [sym_char_literal] = ACTIONS(1539), - [anon_sym_true] = ACTIONS(1541), - [anon_sym_false] = ACTIONS(1541), - [anon_sym_u8] = ACTIONS(1541), - [anon_sym_i8] = ACTIONS(1541), - [anon_sym_u16] = ACTIONS(1541), - [anon_sym_i16] = ACTIONS(1541), - [anon_sym_u32] = ACTIONS(1541), - [anon_sym_i32] = ACTIONS(1541), - [anon_sym_u64] = ACTIONS(1541), - [anon_sym_i64] = ACTIONS(1541), - [anon_sym_u128] = ACTIONS(1541), - [anon_sym_i128] = ACTIONS(1541), - [anon_sym_isize] = ACTIONS(1541), - [anon_sym_usize] = ACTIONS(1541), - [anon_sym_f32] = ACTIONS(1541), - [anon_sym_f64] = ACTIONS(1541), - [anon_sym_bool] = ACTIONS(1541), - [anon_sym_str] = ACTIONS(1541), - [anon_sym_char] = ACTIONS(1541), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1539), - [sym_self] = ACTIONS(1541), - [sym_super] = ACTIONS(1541), - [sym_crate] = ACTIONS(1541), - [sym_metavariable] = ACTIONS(1539), - [sym_grit_metavariable] = ACTIONS(1539), - [sym_raw_string_literal] = ACTIONS(1539), - [sym_float_literal] = ACTIONS(1539), + [ts_builtin_sym_end] = ACTIONS(1537), + [sym__primitive_identifier] = ACTIONS(1539), + [anon_sym_SEMI] = ACTIONS(1537), + [anon_sym_macro_rules_BANG] = ACTIONS(1537), + [anon_sym_LPAREN] = ACTIONS(1537), + [anon_sym_LBRACE] = ACTIONS(1537), + [anon_sym_RBRACE] = ACTIONS(1537), + [anon_sym_LBRACK] = ACTIONS(1537), + [anon_sym_STAR] = ACTIONS(1537), + [anon_sym_SQUOTE] = ACTIONS(1539), + [anon_sym_async] = ACTIONS(1539), + [anon_sym_break] = ACTIONS(1539), + [anon_sym_const] = ACTIONS(1539), + [anon_sym_continue] = ACTIONS(1539), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_enum] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1539), + [anon_sym_for] = ACTIONS(1539), + [anon_sym_if] = ACTIONS(1539), + [anon_sym_impl] = ACTIONS(1539), + [anon_sym_let] = ACTIONS(1539), + [anon_sym_loop] = ACTIONS(1539), + [anon_sym_match] = ACTIONS(1539), + [anon_sym_mod] = ACTIONS(1539), + [anon_sym_pub] = ACTIONS(1539), + [anon_sym_return] = ACTIONS(1539), + [anon_sym_static] = ACTIONS(1539), + [anon_sym_struct] = ACTIONS(1539), + [anon_sym_trait] = ACTIONS(1539), + [anon_sym_type] = ACTIONS(1539), + [anon_sym_union] = ACTIONS(1539), + [anon_sym_unsafe] = ACTIONS(1539), + [anon_sym_use] = ACTIONS(1539), + [anon_sym_while] = ACTIONS(1539), + [anon_sym_POUND] = ACTIONS(1537), + [anon_sym_BANG] = ACTIONS(1537), + [anon_sym_extern] = ACTIONS(1539), + [anon_sym_LT] = ACTIONS(1537), + [anon_sym_COLON_COLON] = ACTIONS(1537), + [anon_sym_AMP] = ACTIONS(1537), + [anon_sym_DOT_DOT] = ACTIONS(1537), + [anon_sym_DASH] = ACTIONS(1537), + [anon_sym_PIPE] = ACTIONS(1537), + [anon_sym_yield] = ACTIONS(1539), + [anon_sym_move] = ACTIONS(1539), + [sym_integer_literal] = ACTIONS(1537), + [aux_sym_string_literal_token1] = ACTIONS(1537), + [sym_char_literal] = ACTIONS(1537), + [anon_sym_true] = ACTIONS(1539), + [anon_sym_false] = ACTIONS(1539), + [anon_sym_u8] = ACTIONS(1539), + [anon_sym_i8] = ACTIONS(1539), + [anon_sym_u16] = ACTIONS(1539), + [anon_sym_i16] = ACTIONS(1539), + [anon_sym_u32] = ACTIONS(1539), + [anon_sym_i32] = ACTIONS(1539), + [anon_sym_u64] = ACTIONS(1539), + [anon_sym_i64] = ACTIONS(1539), + [anon_sym_u128] = ACTIONS(1539), + [anon_sym_i128] = ACTIONS(1539), + [anon_sym_isize] = ACTIONS(1539), + [anon_sym_usize] = ACTIONS(1539), + [anon_sym_f32] = ACTIONS(1539), + [anon_sym_f64] = ACTIONS(1539), + [anon_sym_bool] = ACTIONS(1539), + [anon_sym_str] = ACTIONS(1539), + [anon_sym_char] = ACTIONS(1539), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(1537), + [sym_self] = ACTIONS(1539), + [sym_super] = ACTIONS(1539), + [sym_crate] = ACTIONS(1539), + [sym_metavariable] = ACTIONS(1537), + [sym_grit_metavariable] = ACTIONS(1537), + [sym_raw_string_literal] = ACTIONS(1537), + [sym_float_literal] = ACTIONS(1537), [sym_block_comment] = ACTIONS(3), }, [301] = { - [ts_builtin_sym_end] = ACTIONS(1543), - [sym__primitive_identifier] = ACTIONS(1545), - [anon_sym_SEMI] = ACTIONS(1543), - [anon_sym_macro_rules_BANG] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1543), - [anon_sym_LBRACE] = ACTIONS(1543), - [anon_sym_RBRACE] = ACTIONS(1543), - [anon_sym_LBRACK] = ACTIONS(1543), - [anon_sym_STAR] = ACTIONS(1543), - [anon_sym_SQUOTE] = ACTIONS(1545), - [anon_sym_async] = ACTIONS(1545), - [anon_sym_break] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(1545), - [anon_sym_continue] = ACTIONS(1545), - [anon_sym_default] = ACTIONS(1545), - [anon_sym_enum] = ACTIONS(1545), - [anon_sym_fn] = ACTIONS(1545), - [anon_sym_for] = ACTIONS(1545), - [anon_sym_if] = ACTIONS(1545), - [anon_sym_impl] = ACTIONS(1545), - [anon_sym_let] = ACTIONS(1545), - [anon_sym_loop] = ACTIONS(1545), - [anon_sym_match] = ACTIONS(1545), - [anon_sym_mod] = ACTIONS(1545), - [anon_sym_pub] = ACTIONS(1545), - [anon_sym_return] = ACTIONS(1545), - [anon_sym_static] = ACTIONS(1545), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_trait] = ACTIONS(1545), - [anon_sym_type] = ACTIONS(1545), - [anon_sym_union] = ACTIONS(1545), - [anon_sym_unsafe] = ACTIONS(1545), - [anon_sym_use] = ACTIONS(1545), - [anon_sym_while] = ACTIONS(1545), - [anon_sym_POUND] = ACTIONS(1543), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_extern] = ACTIONS(1545), - [anon_sym_LT] = ACTIONS(1543), - [anon_sym_COLON_COLON] = ACTIONS(1543), - [anon_sym_AMP] = ACTIONS(1543), - [anon_sym_DOT_DOT] = ACTIONS(1543), - [anon_sym_DASH] = ACTIONS(1543), - [anon_sym_PIPE] = ACTIONS(1543), - [anon_sym_yield] = ACTIONS(1545), - [anon_sym_move] = ACTIONS(1545), - [sym_integer_literal] = ACTIONS(1543), - [aux_sym_string_literal_token1] = ACTIONS(1543), - [sym_char_literal] = ACTIONS(1543), - [anon_sym_true] = ACTIONS(1545), - [anon_sym_false] = ACTIONS(1545), - [anon_sym_u8] = ACTIONS(1545), - [anon_sym_i8] = ACTIONS(1545), - [anon_sym_u16] = ACTIONS(1545), - [anon_sym_i16] = ACTIONS(1545), - [anon_sym_u32] = ACTIONS(1545), - [anon_sym_i32] = ACTIONS(1545), - [anon_sym_u64] = ACTIONS(1545), - [anon_sym_i64] = ACTIONS(1545), - [anon_sym_u128] = ACTIONS(1545), - [anon_sym_i128] = ACTIONS(1545), - [anon_sym_isize] = ACTIONS(1545), - [anon_sym_usize] = ACTIONS(1545), - [anon_sym_f32] = ACTIONS(1545), - [anon_sym_f64] = ACTIONS(1545), - [anon_sym_bool] = ACTIONS(1545), - [anon_sym_str] = ACTIONS(1545), - [anon_sym_char] = ACTIONS(1545), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1543), - [sym_self] = ACTIONS(1545), - [sym_super] = ACTIONS(1545), - [sym_crate] = ACTIONS(1545), - [sym_metavariable] = ACTIONS(1543), - [sym_grit_metavariable] = ACTIONS(1543), - [sym_raw_string_literal] = ACTIONS(1543), - [sym_float_literal] = ACTIONS(1543), + [ts_builtin_sym_end] = ACTIONS(1541), + [sym__primitive_identifier] = ACTIONS(1543), + [anon_sym_SEMI] = ACTIONS(1541), + [anon_sym_macro_rules_BANG] = ACTIONS(1541), + [anon_sym_LPAREN] = ACTIONS(1541), + [anon_sym_LBRACE] = ACTIONS(1541), + [anon_sym_RBRACE] = ACTIONS(1541), + [anon_sym_LBRACK] = ACTIONS(1541), + [anon_sym_STAR] = ACTIONS(1541), + [anon_sym_SQUOTE] = ACTIONS(1543), + [anon_sym_async] = ACTIONS(1543), + [anon_sym_break] = ACTIONS(1543), + [anon_sym_const] = ACTIONS(1543), + [anon_sym_continue] = ACTIONS(1543), + [anon_sym_default] = ACTIONS(1543), + [anon_sym_enum] = ACTIONS(1543), + [anon_sym_fn] = ACTIONS(1543), + [anon_sym_for] = ACTIONS(1543), + [anon_sym_if] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1543), + [anon_sym_let] = ACTIONS(1543), + [anon_sym_loop] = ACTIONS(1543), + [anon_sym_match] = ACTIONS(1543), + [anon_sym_mod] = ACTIONS(1543), + [anon_sym_pub] = ACTIONS(1543), + [anon_sym_return] = ACTIONS(1543), + [anon_sym_static] = ACTIONS(1543), + [anon_sym_struct] = ACTIONS(1543), + [anon_sym_trait] = ACTIONS(1543), + [anon_sym_type] = ACTIONS(1543), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1543), + [anon_sym_use] = ACTIONS(1543), + [anon_sym_while] = ACTIONS(1543), + [anon_sym_POUND] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1541), + [anon_sym_extern] = ACTIONS(1543), + [anon_sym_LT] = ACTIONS(1541), + [anon_sym_COLON_COLON] = ACTIONS(1541), + [anon_sym_AMP] = ACTIONS(1541), + [anon_sym_DOT_DOT] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(1541), + [anon_sym_PIPE] = ACTIONS(1541), + [anon_sym_yield] = ACTIONS(1543), + [anon_sym_move] = ACTIONS(1543), + [sym_integer_literal] = ACTIONS(1541), + [aux_sym_string_literal_token1] = ACTIONS(1541), + [sym_char_literal] = ACTIONS(1541), + [anon_sym_true] = ACTIONS(1543), + [anon_sym_false] = ACTIONS(1543), + [anon_sym_u8] = ACTIONS(1543), + [anon_sym_i8] = ACTIONS(1543), + [anon_sym_u16] = ACTIONS(1543), + [anon_sym_i16] = ACTIONS(1543), + [anon_sym_u32] = ACTIONS(1543), + [anon_sym_i32] = ACTIONS(1543), + [anon_sym_u64] = ACTIONS(1543), + [anon_sym_i64] = ACTIONS(1543), + [anon_sym_u128] = ACTIONS(1543), + [anon_sym_i128] = ACTIONS(1543), + [anon_sym_isize] = ACTIONS(1543), + [anon_sym_usize] = ACTIONS(1543), + [anon_sym_f32] = ACTIONS(1543), + [anon_sym_f64] = ACTIONS(1543), + [anon_sym_bool] = ACTIONS(1543), + [anon_sym_str] = ACTIONS(1543), + [anon_sym_char] = ACTIONS(1543), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(1541), + [sym_self] = ACTIONS(1543), + [sym_super] = ACTIONS(1543), + [sym_crate] = ACTIONS(1543), + [sym_metavariable] = ACTIONS(1541), + [sym_grit_metavariable] = ACTIONS(1541), + [sym_raw_string_literal] = ACTIONS(1541), + [sym_float_literal] = ACTIONS(1541), [sym_block_comment] = ACTIONS(3), }, [302] = { - [ts_builtin_sym_end] = ACTIONS(1547), - [sym__primitive_identifier] = ACTIONS(1549), - [anon_sym_SEMI] = ACTIONS(1547), - [anon_sym_macro_rules_BANG] = ACTIONS(1547), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACE] = ACTIONS(1547), - [anon_sym_RBRACE] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1547), - [anon_sym_STAR] = ACTIONS(1547), - [anon_sym_SQUOTE] = ACTIONS(1549), - [anon_sym_async] = ACTIONS(1549), - [anon_sym_break] = ACTIONS(1549), - [anon_sym_const] = ACTIONS(1549), - [anon_sym_continue] = ACTIONS(1549), - [anon_sym_default] = ACTIONS(1549), - [anon_sym_enum] = ACTIONS(1549), - [anon_sym_fn] = ACTIONS(1549), - [anon_sym_for] = ACTIONS(1549), - [anon_sym_if] = ACTIONS(1549), - [anon_sym_impl] = ACTIONS(1549), - [anon_sym_let] = ACTIONS(1549), - [anon_sym_loop] = ACTIONS(1549), - [anon_sym_match] = ACTIONS(1549), - [anon_sym_mod] = ACTIONS(1549), - [anon_sym_pub] = ACTIONS(1549), - [anon_sym_return] = ACTIONS(1549), - [anon_sym_static] = ACTIONS(1549), - [anon_sym_struct] = ACTIONS(1549), - [anon_sym_trait] = ACTIONS(1549), - [anon_sym_type] = ACTIONS(1549), - [anon_sym_union] = ACTIONS(1549), - [anon_sym_unsafe] = ACTIONS(1549), - [anon_sym_use] = ACTIONS(1549), - [anon_sym_while] = ACTIONS(1549), - [anon_sym_POUND] = ACTIONS(1547), - [anon_sym_BANG] = ACTIONS(1547), - [anon_sym_extern] = ACTIONS(1549), - [anon_sym_LT] = ACTIONS(1547), - [anon_sym_COLON_COLON] = ACTIONS(1547), - [anon_sym_AMP] = ACTIONS(1547), - [anon_sym_DOT_DOT] = ACTIONS(1547), - [anon_sym_DASH] = ACTIONS(1547), - [anon_sym_PIPE] = ACTIONS(1547), - [anon_sym_yield] = ACTIONS(1549), - [anon_sym_move] = ACTIONS(1549), - [sym_integer_literal] = ACTIONS(1547), - [aux_sym_string_literal_token1] = ACTIONS(1547), - [sym_char_literal] = ACTIONS(1547), - [anon_sym_true] = ACTIONS(1549), - [anon_sym_false] = ACTIONS(1549), - [anon_sym_u8] = ACTIONS(1549), - [anon_sym_i8] = ACTIONS(1549), - [anon_sym_u16] = ACTIONS(1549), - [anon_sym_i16] = ACTIONS(1549), - [anon_sym_u32] = ACTIONS(1549), - [anon_sym_i32] = ACTIONS(1549), - [anon_sym_u64] = ACTIONS(1549), - [anon_sym_i64] = ACTIONS(1549), - [anon_sym_u128] = ACTIONS(1549), - [anon_sym_i128] = ACTIONS(1549), - [anon_sym_isize] = ACTIONS(1549), - [anon_sym_usize] = ACTIONS(1549), - [anon_sym_f32] = ACTIONS(1549), - [anon_sym_f64] = ACTIONS(1549), - [anon_sym_bool] = ACTIONS(1549), - [anon_sym_str] = ACTIONS(1549), - [anon_sym_char] = ACTIONS(1549), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1547), - [sym_self] = ACTIONS(1549), - [sym_super] = ACTIONS(1549), - [sym_crate] = ACTIONS(1549), - [sym_metavariable] = ACTIONS(1547), - [sym_grit_metavariable] = ACTIONS(1547), - [sym_raw_string_literal] = ACTIONS(1547), - [sym_float_literal] = ACTIONS(1547), + [ts_builtin_sym_end] = ACTIONS(1545), + [sym__primitive_identifier] = ACTIONS(1547), + [anon_sym_SEMI] = ACTIONS(1545), + [anon_sym_macro_rules_BANG] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1545), + [anon_sym_LBRACE] = ACTIONS(1545), + [anon_sym_RBRACE] = ACTIONS(1545), + [anon_sym_LBRACK] = ACTIONS(1545), + [anon_sym_STAR] = ACTIONS(1545), + [anon_sym_SQUOTE] = ACTIONS(1547), + [anon_sym_async] = ACTIONS(1547), + [anon_sym_break] = ACTIONS(1547), + [anon_sym_const] = ACTIONS(1547), + [anon_sym_continue] = ACTIONS(1547), + [anon_sym_default] = ACTIONS(1547), + [anon_sym_enum] = ACTIONS(1547), + [anon_sym_fn] = ACTIONS(1547), + [anon_sym_for] = ACTIONS(1547), + [anon_sym_if] = ACTIONS(1547), + [anon_sym_impl] = ACTIONS(1547), + [anon_sym_let] = ACTIONS(1547), + [anon_sym_loop] = ACTIONS(1547), + [anon_sym_match] = ACTIONS(1547), + [anon_sym_mod] = ACTIONS(1547), + [anon_sym_pub] = ACTIONS(1547), + [anon_sym_return] = ACTIONS(1547), + [anon_sym_static] = ACTIONS(1547), + [anon_sym_struct] = ACTIONS(1547), + [anon_sym_trait] = ACTIONS(1547), + [anon_sym_type] = ACTIONS(1547), + [anon_sym_union] = ACTIONS(1547), + [anon_sym_unsafe] = ACTIONS(1547), + [anon_sym_use] = ACTIONS(1547), + [anon_sym_while] = ACTIONS(1547), + [anon_sym_POUND] = ACTIONS(1545), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_extern] = ACTIONS(1547), + [anon_sym_LT] = ACTIONS(1545), + [anon_sym_COLON_COLON] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1545), + [anon_sym_DOT_DOT] = ACTIONS(1545), + [anon_sym_DASH] = ACTIONS(1545), + [anon_sym_PIPE] = ACTIONS(1545), + [anon_sym_yield] = ACTIONS(1547), + [anon_sym_move] = ACTIONS(1547), + [sym_integer_literal] = ACTIONS(1545), + [aux_sym_string_literal_token1] = ACTIONS(1545), + [sym_char_literal] = ACTIONS(1545), + [anon_sym_true] = ACTIONS(1547), + [anon_sym_false] = ACTIONS(1547), + [anon_sym_u8] = ACTIONS(1547), + [anon_sym_i8] = ACTIONS(1547), + [anon_sym_u16] = ACTIONS(1547), + [anon_sym_i16] = ACTIONS(1547), + [anon_sym_u32] = ACTIONS(1547), + [anon_sym_i32] = ACTIONS(1547), + [anon_sym_u64] = ACTIONS(1547), + [anon_sym_i64] = ACTIONS(1547), + [anon_sym_u128] = ACTIONS(1547), + [anon_sym_i128] = ACTIONS(1547), + [anon_sym_isize] = ACTIONS(1547), + [anon_sym_usize] = ACTIONS(1547), + [anon_sym_f32] = ACTIONS(1547), + [anon_sym_f64] = ACTIONS(1547), + [anon_sym_bool] = ACTIONS(1547), + [anon_sym_str] = ACTIONS(1547), + [anon_sym_char] = ACTIONS(1547), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(1545), + [sym_self] = ACTIONS(1547), + [sym_super] = ACTIONS(1547), + [sym_crate] = ACTIONS(1547), + [sym_metavariable] = ACTIONS(1545), + [sym_grit_metavariable] = ACTIONS(1545), + [sym_raw_string_literal] = ACTIONS(1545), + [sym_float_literal] = ACTIONS(1545), [sym_block_comment] = ACTIONS(3), }, [303] = { - [ts_builtin_sym_end] = ACTIONS(1551), - [sym__primitive_identifier] = ACTIONS(1553), - [anon_sym_SEMI] = ACTIONS(1551), - [anon_sym_macro_rules_BANG] = ACTIONS(1551), - [anon_sym_LPAREN] = ACTIONS(1551), - [anon_sym_LBRACE] = ACTIONS(1551), - [anon_sym_RBRACE] = ACTIONS(1551), - [anon_sym_LBRACK] = ACTIONS(1551), - [anon_sym_STAR] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_async] = ACTIONS(1553), - [anon_sym_break] = ACTIONS(1553), - [anon_sym_const] = ACTIONS(1553), - [anon_sym_continue] = ACTIONS(1553), - [anon_sym_default] = ACTIONS(1553), - [anon_sym_enum] = ACTIONS(1553), - [anon_sym_fn] = ACTIONS(1553), - [anon_sym_for] = ACTIONS(1553), - [anon_sym_if] = ACTIONS(1553), - [anon_sym_impl] = ACTIONS(1553), - [anon_sym_let] = ACTIONS(1553), - [anon_sym_loop] = ACTIONS(1553), - [anon_sym_match] = ACTIONS(1553), - [anon_sym_mod] = ACTIONS(1553), - [anon_sym_pub] = ACTIONS(1553), - [anon_sym_return] = ACTIONS(1553), - [anon_sym_static] = ACTIONS(1553), - [anon_sym_struct] = ACTIONS(1553), - [anon_sym_trait] = ACTIONS(1553), - [anon_sym_type] = ACTIONS(1553), - [anon_sym_union] = ACTIONS(1553), - [anon_sym_unsafe] = ACTIONS(1553), - [anon_sym_use] = ACTIONS(1553), - [anon_sym_while] = ACTIONS(1553), - [anon_sym_POUND] = ACTIONS(1551), - [anon_sym_BANG] = ACTIONS(1551), - [anon_sym_extern] = ACTIONS(1553), - [anon_sym_LT] = ACTIONS(1551), - [anon_sym_COLON_COLON] = ACTIONS(1551), - [anon_sym_AMP] = ACTIONS(1551), - [anon_sym_DOT_DOT] = ACTIONS(1551), - [anon_sym_DASH] = ACTIONS(1551), - [anon_sym_PIPE] = ACTIONS(1551), - [anon_sym_yield] = ACTIONS(1553), - [anon_sym_move] = ACTIONS(1553), - [sym_integer_literal] = ACTIONS(1551), - [aux_sym_string_literal_token1] = ACTIONS(1551), - [sym_char_literal] = ACTIONS(1551), - [anon_sym_true] = ACTIONS(1553), - [anon_sym_false] = ACTIONS(1553), - [anon_sym_u8] = ACTIONS(1553), - [anon_sym_i8] = ACTIONS(1553), - [anon_sym_u16] = ACTIONS(1553), - [anon_sym_i16] = ACTIONS(1553), - [anon_sym_u32] = ACTIONS(1553), - [anon_sym_i32] = ACTIONS(1553), - [anon_sym_u64] = ACTIONS(1553), - [anon_sym_i64] = ACTIONS(1553), - [anon_sym_u128] = ACTIONS(1553), - [anon_sym_i128] = ACTIONS(1553), - [anon_sym_isize] = ACTIONS(1553), - [anon_sym_usize] = ACTIONS(1553), - [anon_sym_f32] = ACTIONS(1553), - [anon_sym_f64] = ACTIONS(1553), - [anon_sym_bool] = ACTIONS(1553), - [anon_sym_str] = ACTIONS(1553), - [anon_sym_char] = ACTIONS(1553), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1551), - [sym_self] = ACTIONS(1553), - [sym_super] = ACTIONS(1553), - [sym_crate] = ACTIONS(1553), - [sym_metavariable] = ACTIONS(1551), - [sym_grit_metavariable] = ACTIONS(1551), - [sym_raw_string_literal] = ACTIONS(1551), - [sym_float_literal] = ACTIONS(1551), + [ts_builtin_sym_end] = ACTIONS(1549), + [sym__primitive_identifier] = ACTIONS(1551), + [anon_sym_SEMI] = ACTIONS(1549), + [anon_sym_macro_rules_BANG] = ACTIONS(1549), + [anon_sym_LPAREN] = ACTIONS(1549), + [anon_sym_LBRACE] = ACTIONS(1549), + [anon_sym_RBRACE] = ACTIONS(1549), + [anon_sym_LBRACK] = ACTIONS(1549), + [anon_sym_STAR] = ACTIONS(1549), + [anon_sym_SQUOTE] = ACTIONS(1551), + [anon_sym_async] = ACTIONS(1551), + [anon_sym_break] = ACTIONS(1551), + [anon_sym_const] = ACTIONS(1551), + [anon_sym_continue] = ACTIONS(1551), + [anon_sym_default] = ACTIONS(1551), + [anon_sym_enum] = ACTIONS(1551), + [anon_sym_fn] = ACTIONS(1551), + [anon_sym_for] = ACTIONS(1551), + [anon_sym_if] = ACTIONS(1551), + [anon_sym_impl] = ACTIONS(1551), + [anon_sym_let] = ACTIONS(1551), + [anon_sym_loop] = ACTIONS(1551), + [anon_sym_match] = ACTIONS(1551), + [anon_sym_mod] = ACTIONS(1551), + [anon_sym_pub] = ACTIONS(1551), + [anon_sym_return] = ACTIONS(1551), + [anon_sym_static] = ACTIONS(1551), + [anon_sym_struct] = ACTIONS(1551), + [anon_sym_trait] = ACTIONS(1551), + [anon_sym_type] = ACTIONS(1551), + [anon_sym_union] = ACTIONS(1551), + [anon_sym_unsafe] = ACTIONS(1551), + [anon_sym_use] = ACTIONS(1551), + [anon_sym_while] = ACTIONS(1551), + [anon_sym_POUND] = ACTIONS(1549), + [anon_sym_BANG] = ACTIONS(1549), + [anon_sym_extern] = ACTIONS(1551), + [anon_sym_LT] = ACTIONS(1549), + [anon_sym_COLON_COLON] = ACTIONS(1549), + [anon_sym_AMP] = ACTIONS(1549), + [anon_sym_DOT_DOT] = ACTIONS(1549), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_PIPE] = ACTIONS(1549), + [anon_sym_yield] = ACTIONS(1551), + [anon_sym_move] = ACTIONS(1551), + [sym_integer_literal] = ACTIONS(1549), + [aux_sym_string_literal_token1] = ACTIONS(1549), + [sym_char_literal] = ACTIONS(1549), + [anon_sym_true] = ACTIONS(1551), + [anon_sym_false] = ACTIONS(1551), + [anon_sym_u8] = ACTIONS(1551), + [anon_sym_i8] = ACTIONS(1551), + [anon_sym_u16] = ACTIONS(1551), + [anon_sym_i16] = ACTIONS(1551), + [anon_sym_u32] = ACTIONS(1551), + [anon_sym_i32] = ACTIONS(1551), + [anon_sym_u64] = ACTIONS(1551), + [anon_sym_i64] = ACTIONS(1551), + [anon_sym_u128] = ACTIONS(1551), + [anon_sym_i128] = ACTIONS(1551), + [anon_sym_isize] = ACTIONS(1551), + [anon_sym_usize] = ACTIONS(1551), + [anon_sym_f32] = ACTIONS(1551), + [anon_sym_f64] = ACTIONS(1551), + [anon_sym_bool] = ACTIONS(1551), + [anon_sym_str] = ACTIONS(1551), + [anon_sym_char] = ACTIONS(1551), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(1549), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1549), + [sym_grit_metavariable] = ACTIONS(1549), + [sym_raw_string_literal] = ACTIONS(1549), + [sym_float_literal] = ACTIONS(1549), [sym_block_comment] = ACTIONS(3), }, [304] = { - [ts_builtin_sym_end] = ACTIONS(1555), - [sym__primitive_identifier] = ACTIONS(1557), - [anon_sym_SEMI] = ACTIONS(1555), - [anon_sym_macro_rules_BANG] = ACTIONS(1555), - [anon_sym_LPAREN] = ACTIONS(1555), - [anon_sym_LBRACE] = ACTIONS(1555), - [anon_sym_RBRACE] = ACTIONS(1555), - [anon_sym_LBRACK] = ACTIONS(1555), - [anon_sym_STAR] = ACTIONS(1555), - [anon_sym_SQUOTE] = ACTIONS(1557), - [anon_sym_async] = ACTIONS(1557), - [anon_sym_break] = ACTIONS(1557), - [anon_sym_const] = ACTIONS(1557), - [anon_sym_continue] = ACTIONS(1557), - [anon_sym_default] = ACTIONS(1557), - [anon_sym_enum] = ACTIONS(1557), - [anon_sym_fn] = ACTIONS(1557), - [anon_sym_for] = ACTIONS(1557), - [anon_sym_if] = ACTIONS(1557), - [anon_sym_impl] = ACTIONS(1557), - [anon_sym_let] = ACTIONS(1557), - [anon_sym_loop] = ACTIONS(1557), - [anon_sym_match] = ACTIONS(1557), - [anon_sym_mod] = ACTIONS(1557), - [anon_sym_pub] = ACTIONS(1557), - [anon_sym_return] = ACTIONS(1557), - [anon_sym_static] = ACTIONS(1557), - [anon_sym_struct] = ACTIONS(1557), - [anon_sym_trait] = ACTIONS(1557), - [anon_sym_type] = ACTIONS(1557), - [anon_sym_union] = ACTIONS(1557), - [anon_sym_unsafe] = ACTIONS(1557), - [anon_sym_use] = ACTIONS(1557), - [anon_sym_while] = ACTIONS(1557), - [anon_sym_POUND] = ACTIONS(1555), - [anon_sym_BANG] = ACTIONS(1555), - [anon_sym_extern] = ACTIONS(1557), - [anon_sym_LT] = ACTIONS(1555), - [anon_sym_COLON_COLON] = ACTIONS(1555), - [anon_sym_AMP] = ACTIONS(1555), - [anon_sym_DOT_DOT] = ACTIONS(1555), - [anon_sym_DASH] = ACTIONS(1555), - [anon_sym_PIPE] = ACTIONS(1555), - [anon_sym_yield] = ACTIONS(1557), - [anon_sym_move] = ACTIONS(1557), - [sym_integer_literal] = ACTIONS(1555), - [aux_sym_string_literal_token1] = ACTIONS(1555), - [sym_char_literal] = ACTIONS(1555), - [anon_sym_true] = ACTIONS(1557), - [anon_sym_false] = ACTIONS(1557), - [anon_sym_u8] = ACTIONS(1557), - [anon_sym_i8] = ACTIONS(1557), - [anon_sym_u16] = ACTIONS(1557), - [anon_sym_i16] = ACTIONS(1557), - [anon_sym_u32] = ACTIONS(1557), - [anon_sym_i32] = ACTIONS(1557), - [anon_sym_u64] = ACTIONS(1557), - [anon_sym_i64] = ACTIONS(1557), - [anon_sym_u128] = ACTIONS(1557), - [anon_sym_i128] = ACTIONS(1557), - [anon_sym_isize] = ACTIONS(1557), - [anon_sym_usize] = ACTIONS(1557), - [anon_sym_f32] = ACTIONS(1557), - [anon_sym_f64] = ACTIONS(1557), - [anon_sym_bool] = ACTIONS(1557), - [anon_sym_str] = ACTIONS(1557), - [anon_sym_char] = ACTIONS(1557), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1555), - [sym_self] = ACTIONS(1557), - [sym_super] = ACTIONS(1557), - [sym_crate] = ACTIONS(1557), - [sym_metavariable] = ACTIONS(1555), - [sym_grit_metavariable] = ACTIONS(1555), - [sym_raw_string_literal] = ACTIONS(1555), - [sym_float_literal] = ACTIONS(1555), + [ts_builtin_sym_end] = ACTIONS(1553), + [sym__primitive_identifier] = ACTIONS(1555), + [anon_sym_SEMI] = ACTIONS(1553), + [anon_sym_macro_rules_BANG] = ACTIONS(1553), + [anon_sym_LPAREN] = ACTIONS(1553), + [anon_sym_LBRACE] = ACTIONS(1553), + [anon_sym_RBRACE] = ACTIONS(1553), + [anon_sym_LBRACK] = ACTIONS(1553), + [anon_sym_STAR] = ACTIONS(1553), + [anon_sym_SQUOTE] = ACTIONS(1555), + [anon_sym_async] = ACTIONS(1555), + [anon_sym_break] = ACTIONS(1555), + [anon_sym_const] = ACTIONS(1555), + [anon_sym_continue] = ACTIONS(1555), + [anon_sym_default] = ACTIONS(1555), + [anon_sym_enum] = ACTIONS(1555), + [anon_sym_fn] = ACTIONS(1555), + [anon_sym_for] = ACTIONS(1555), + [anon_sym_if] = ACTIONS(1555), + [anon_sym_impl] = ACTIONS(1555), + [anon_sym_let] = ACTIONS(1555), + [anon_sym_loop] = ACTIONS(1555), + [anon_sym_match] = ACTIONS(1555), + [anon_sym_mod] = ACTIONS(1555), + [anon_sym_pub] = ACTIONS(1555), + [anon_sym_return] = ACTIONS(1555), + [anon_sym_static] = ACTIONS(1555), + [anon_sym_struct] = ACTIONS(1555), + [anon_sym_trait] = ACTIONS(1555), + [anon_sym_type] = ACTIONS(1555), + [anon_sym_union] = ACTIONS(1555), + [anon_sym_unsafe] = ACTIONS(1555), + [anon_sym_use] = ACTIONS(1555), + [anon_sym_while] = ACTIONS(1555), + [anon_sym_POUND] = ACTIONS(1553), + [anon_sym_BANG] = ACTIONS(1553), + [anon_sym_extern] = ACTIONS(1555), + [anon_sym_LT] = ACTIONS(1553), + [anon_sym_COLON_COLON] = ACTIONS(1553), + [anon_sym_AMP] = ACTIONS(1553), + [anon_sym_DOT_DOT] = ACTIONS(1553), + [anon_sym_DASH] = ACTIONS(1553), + [anon_sym_PIPE] = ACTIONS(1553), + [anon_sym_yield] = ACTIONS(1555), + [anon_sym_move] = ACTIONS(1555), + [sym_integer_literal] = ACTIONS(1553), + [aux_sym_string_literal_token1] = ACTIONS(1553), + [sym_char_literal] = ACTIONS(1553), + [anon_sym_true] = ACTIONS(1555), + [anon_sym_false] = ACTIONS(1555), + [anon_sym_u8] = ACTIONS(1555), + [anon_sym_i8] = ACTIONS(1555), + [anon_sym_u16] = ACTIONS(1555), + [anon_sym_i16] = ACTIONS(1555), + [anon_sym_u32] = ACTIONS(1555), + [anon_sym_i32] = ACTIONS(1555), + [anon_sym_u64] = ACTIONS(1555), + [anon_sym_i64] = ACTIONS(1555), + [anon_sym_u128] = ACTIONS(1555), + [anon_sym_i128] = ACTIONS(1555), + [anon_sym_isize] = ACTIONS(1555), + [anon_sym_usize] = ACTIONS(1555), + [anon_sym_f32] = ACTIONS(1555), + [anon_sym_f64] = ACTIONS(1555), + [anon_sym_bool] = ACTIONS(1555), + [anon_sym_str] = ACTIONS(1555), + [anon_sym_char] = ACTIONS(1555), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(1553), + [sym_self] = ACTIONS(1555), + [sym_super] = ACTIONS(1555), + [sym_crate] = ACTIONS(1555), + [sym_metavariable] = ACTIONS(1553), + [sym_grit_metavariable] = ACTIONS(1553), + [sym_raw_string_literal] = ACTIONS(1553), + [sym_float_literal] = ACTIONS(1553), [sym_block_comment] = ACTIONS(3), }, [305] = { - [ts_builtin_sym_end] = ACTIONS(1559), - [sym__primitive_identifier] = ACTIONS(1561), - [anon_sym_SEMI] = ACTIONS(1559), - [anon_sym_macro_rules_BANG] = ACTIONS(1559), - [anon_sym_LPAREN] = ACTIONS(1559), - [anon_sym_LBRACE] = ACTIONS(1559), - [anon_sym_RBRACE] = ACTIONS(1559), - [anon_sym_LBRACK] = ACTIONS(1559), - [anon_sym_STAR] = ACTIONS(1559), - [anon_sym_SQUOTE] = ACTIONS(1561), - [anon_sym_async] = ACTIONS(1561), - [anon_sym_break] = ACTIONS(1561), - [anon_sym_const] = ACTIONS(1561), - [anon_sym_continue] = ACTIONS(1561), - [anon_sym_default] = ACTIONS(1561), - [anon_sym_enum] = ACTIONS(1561), - [anon_sym_fn] = ACTIONS(1561), - [anon_sym_for] = ACTIONS(1561), - [anon_sym_if] = ACTIONS(1561), - [anon_sym_impl] = ACTIONS(1561), - [anon_sym_let] = ACTIONS(1561), - [anon_sym_loop] = ACTIONS(1561), - [anon_sym_match] = ACTIONS(1561), - [anon_sym_mod] = ACTIONS(1561), - [anon_sym_pub] = ACTIONS(1561), - [anon_sym_return] = ACTIONS(1561), - [anon_sym_static] = ACTIONS(1561), - [anon_sym_struct] = ACTIONS(1561), - [anon_sym_trait] = ACTIONS(1561), - [anon_sym_type] = ACTIONS(1561), - [anon_sym_union] = ACTIONS(1561), - [anon_sym_unsafe] = ACTIONS(1561), - [anon_sym_use] = ACTIONS(1561), - [anon_sym_while] = ACTIONS(1561), - [anon_sym_POUND] = ACTIONS(1559), - [anon_sym_BANG] = ACTIONS(1559), - [anon_sym_extern] = ACTIONS(1561), - [anon_sym_LT] = ACTIONS(1559), - [anon_sym_COLON_COLON] = ACTIONS(1559), - [anon_sym_AMP] = ACTIONS(1559), - [anon_sym_DOT_DOT] = ACTIONS(1559), - [anon_sym_DASH] = ACTIONS(1559), - [anon_sym_PIPE] = ACTIONS(1559), - [anon_sym_yield] = ACTIONS(1561), - [anon_sym_move] = ACTIONS(1561), - [sym_integer_literal] = ACTIONS(1559), - [aux_sym_string_literal_token1] = ACTIONS(1559), - [sym_char_literal] = ACTIONS(1559), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [anon_sym_u8] = ACTIONS(1561), - [anon_sym_i8] = ACTIONS(1561), - [anon_sym_u16] = ACTIONS(1561), - [anon_sym_i16] = ACTIONS(1561), - [anon_sym_u32] = ACTIONS(1561), - [anon_sym_i32] = ACTIONS(1561), - [anon_sym_u64] = ACTIONS(1561), - [anon_sym_i64] = ACTIONS(1561), - [anon_sym_u128] = ACTIONS(1561), - [anon_sym_i128] = ACTIONS(1561), - [anon_sym_isize] = ACTIONS(1561), - [anon_sym_usize] = ACTIONS(1561), - [anon_sym_f32] = ACTIONS(1561), - [anon_sym_f64] = ACTIONS(1561), - [anon_sym_bool] = ACTIONS(1561), - [anon_sym_str] = ACTIONS(1561), - [anon_sym_char] = ACTIONS(1561), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1559), - [sym_self] = ACTIONS(1561), - [sym_super] = ACTIONS(1561), - [sym_crate] = ACTIONS(1561), - [sym_metavariable] = ACTIONS(1559), - [sym_grit_metavariable] = ACTIONS(1559), - [sym_raw_string_literal] = ACTIONS(1559), - [sym_float_literal] = ACTIONS(1559), + [ts_builtin_sym_end] = ACTIONS(1557), + [sym__primitive_identifier] = ACTIONS(1559), + [anon_sym_SEMI] = ACTIONS(1557), + [anon_sym_macro_rules_BANG] = ACTIONS(1557), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1557), + [anon_sym_RBRACE] = ACTIONS(1557), + [anon_sym_LBRACK] = ACTIONS(1557), + [anon_sym_STAR] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), + [anon_sym_async] = ACTIONS(1559), + [anon_sym_break] = ACTIONS(1559), + [anon_sym_const] = ACTIONS(1559), + [anon_sym_continue] = ACTIONS(1559), + [anon_sym_default] = ACTIONS(1559), + [anon_sym_enum] = ACTIONS(1559), + [anon_sym_fn] = ACTIONS(1559), + [anon_sym_for] = ACTIONS(1559), + [anon_sym_if] = ACTIONS(1559), + [anon_sym_impl] = ACTIONS(1559), + [anon_sym_let] = ACTIONS(1559), + [anon_sym_loop] = ACTIONS(1559), + [anon_sym_match] = ACTIONS(1559), + [anon_sym_mod] = ACTIONS(1559), + [anon_sym_pub] = ACTIONS(1559), + [anon_sym_return] = ACTIONS(1559), + [anon_sym_static] = ACTIONS(1559), + [anon_sym_struct] = ACTIONS(1559), + [anon_sym_trait] = ACTIONS(1559), + [anon_sym_type] = ACTIONS(1559), + [anon_sym_union] = ACTIONS(1559), + [anon_sym_unsafe] = ACTIONS(1559), + [anon_sym_use] = ACTIONS(1559), + [anon_sym_while] = ACTIONS(1559), + [anon_sym_POUND] = ACTIONS(1557), + [anon_sym_BANG] = ACTIONS(1557), + [anon_sym_extern] = ACTIONS(1559), + [anon_sym_LT] = ACTIONS(1557), + [anon_sym_COLON_COLON] = ACTIONS(1557), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_DOT_DOT] = ACTIONS(1557), + [anon_sym_DASH] = ACTIONS(1557), + [anon_sym_PIPE] = ACTIONS(1557), + [anon_sym_yield] = ACTIONS(1559), + [anon_sym_move] = ACTIONS(1559), + [sym_integer_literal] = ACTIONS(1557), + [aux_sym_string_literal_token1] = ACTIONS(1557), + [sym_char_literal] = ACTIONS(1557), + [anon_sym_true] = ACTIONS(1559), + [anon_sym_false] = ACTIONS(1559), + [anon_sym_u8] = ACTIONS(1559), + [anon_sym_i8] = ACTIONS(1559), + [anon_sym_u16] = ACTIONS(1559), + [anon_sym_i16] = ACTIONS(1559), + [anon_sym_u32] = ACTIONS(1559), + [anon_sym_i32] = ACTIONS(1559), + [anon_sym_u64] = ACTIONS(1559), + [anon_sym_i64] = ACTIONS(1559), + [anon_sym_u128] = ACTIONS(1559), + [anon_sym_i128] = ACTIONS(1559), + [anon_sym_isize] = ACTIONS(1559), + [anon_sym_usize] = ACTIONS(1559), + [anon_sym_f32] = ACTIONS(1559), + [anon_sym_f64] = ACTIONS(1559), + [anon_sym_bool] = ACTIONS(1559), + [anon_sym_str] = ACTIONS(1559), + [anon_sym_char] = ACTIONS(1559), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(1557), + [sym_self] = ACTIONS(1559), + [sym_super] = ACTIONS(1559), + [sym_crate] = ACTIONS(1559), + [sym_metavariable] = ACTIONS(1557), + [sym_grit_metavariable] = ACTIONS(1557), + [sym_raw_string_literal] = ACTIONS(1557), + [sym_float_literal] = ACTIONS(1557), [sym_block_comment] = ACTIONS(3), }, [306] = { - [ts_builtin_sym_end] = ACTIONS(1563), - [sym__primitive_identifier] = ACTIONS(1565), - [anon_sym_SEMI] = ACTIONS(1563), - [anon_sym_macro_rules_BANG] = ACTIONS(1563), - [anon_sym_LPAREN] = ACTIONS(1563), - [anon_sym_LBRACE] = ACTIONS(1563), - [anon_sym_RBRACE] = ACTIONS(1563), - [anon_sym_LBRACK] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(1563), - [anon_sym_SQUOTE] = ACTIONS(1565), - [anon_sym_async] = ACTIONS(1565), - [anon_sym_break] = ACTIONS(1565), - [anon_sym_const] = ACTIONS(1565), - [anon_sym_continue] = ACTIONS(1565), - [anon_sym_default] = ACTIONS(1565), - [anon_sym_enum] = ACTIONS(1565), - [anon_sym_fn] = ACTIONS(1565), - [anon_sym_for] = ACTIONS(1565), - [anon_sym_if] = ACTIONS(1565), - [anon_sym_impl] = ACTIONS(1565), - [anon_sym_let] = ACTIONS(1565), - [anon_sym_loop] = ACTIONS(1565), - [anon_sym_match] = ACTIONS(1565), - [anon_sym_mod] = ACTIONS(1565), - [anon_sym_pub] = ACTIONS(1565), - [anon_sym_return] = ACTIONS(1565), - [anon_sym_static] = ACTIONS(1565), - [anon_sym_struct] = ACTIONS(1565), - [anon_sym_trait] = ACTIONS(1565), - [anon_sym_type] = ACTIONS(1565), - [anon_sym_union] = ACTIONS(1565), - [anon_sym_unsafe] = ACTIONS(1565), - [anon_sym_use] = ACTIONS(1565), - [anon_sym_while] = ACTIONS(1565), - [anon_sym_POUND] = ACTIONS(1563), - [anon_sym_BANG] = ACTIONS(1563), - [anon_sym_extern] = ACTIONS(1565), - [anon_sym_LT] = ACTIONS(1563), - [anon_sym_COLON_COLON] = ACTIONS(1563), - [anon_sym_AMP] = ACTIONS(1563), - [anon_sym_DOT_DOT] = ACTIONS(1563), - [anon_sym_DASH] = ACTIONS(1563), - [anon_sym_PIPE] = ACTIONS(1563), - [anon_sym_yield] = ACTIONS(1565), - [anon_sym_move] = ACTIONS(1565), - [sym_integer_literal] = ACTIONS(1563), - [aux_sym_string_literal_token1] = ACTIONS(1563), - [sym_char_literal] = ACTIONS(1563), - [anon_sym_true] = ACTIONS(1565), - [anon_sym_false] = ACTIONS(1565), - [anon_sym_u8] = ACTIONS(1565), - [anon_sym_i8] = ACTIONS(1565), - [anon_sym_u16] = ACTIONS(1565), - [anon_sym_i16] = ACTIONS(1565), - [anon_sym_u32] = ACTIONS(1565), - [anon_sym_i32] = ACTIONS(1565), - [anon_sym_u64] = ACTIONS(1565), - [anon_sym_i64] = ACTIONS(1565), - [anon_sym_u128] = ACTIONS(1565), - [anon_sym_i128] = ACTIONS(1565), - [anon_sym_isize] = ACTIONS(1565), - [anon_sym_usize] = ACTIONS(1565), - [anon_sym_f32] = ACTIONS(1565), - [anon_sym_f64] = ACTIONS(1565), - [anon_sym_bool] = ACTIONS(1565), - [anon_sym_str] = ACTIONS(1565), - [anon_sym_char] = ACTIONS(1565), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1563), - [sym_self] = ACTIONS(1565), - [sym_super] = ACTIONS(1565), - [sym_crate] = ACTIONS(1565), - [sym_metavariable] = ACTIONS(1563), - [sym_grit_metavariable] = ACTIONS(1563), - [sym_raw_string_literal] = ACTIONS(1563), - [sym_float_literal] = ACTIONS(1563), + [ts_builtin_sym_end] = ACTIONS(1561), + [sym__primitive_identifier] = ACTIONS(1563), + [anon_sym_SEMI] = ACTIONS(1561), + [anon_sym_macro_rules_BANG] = ACTIONS(1561), + [anon_sym_LPAREN] = ACTIONS(1561), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_RBRACE] = ACTIONS(1561), + [anon_sym_LBRACK] = ACTIONS(1561), + [anon_sym_STAR] = ACTIONS(1561), + [anon_sym_SQUOTE] = ACTIONS(1563), + [anon_sym_async] = ACTIONS(1563), + [anon_sym_break] = ACTIONS(1563), + [anon_sym_const] = ACTIONS(1563), + [anon_sym_continue] = ACTIONS(1563), + [anon_sym_default] = ACTIONS(1563), + [anon_sym_enum] = ACTIONS(1563), + [anon_sym_fn] = ACTIONS(1563), + [anon_sym_for] = ACTIONS(1563), + [anon_sym_if] = ACTIONS(1563), + [anon_sym_impl] = ACTIONS(1563), + [anon_sym_let] = ACTIONS(1563), + [anon_sym_loop] = ACTIONS(1563), + [anon_sym_match] = ACTIONS(1563), + [anon_sym_mod] = ACTIONS(1563), + [anon_sym_pub] = ACTIONS(1563), + [anon_sym_return] = ACTIONS(1563), + [anon_sym_static] = ACTIONS(1563), + [anon_sym_struct] = ACTIONS(1563), + [anon_sym_trait] = ACTIONS(1563), + [anon_sym_type] = ACTIONS(1563), + [anon_sym_union] = ACTIONS(1563), + [anon_sym_unsafe] = ACTIONS(1563), + [anon_sym_use] = ACTIONS(1563), + [anon_sym_while] = ACTIONS(1563), + [anon_sym_POUND] = ACTIONS(1561), + [anon_sym_BANG] = ACTIONS(1561), + [anon_sym_extern] = ACTIONS(1563), + [anon_sym_LT] = ACTIONS(1561), + [anon_sym_COLON_COLON] = ACTIONS(1561), + [anon_sym_AMP] = ACTIONS(1561), + [anon_sym_DOT_DOT] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1561), + [anon_sym_PIPE] = ACTIONS(1561), + [anon_sym_yield] = ACTIONS(1563), + [anon_sym_move] = ACTIONS(1563), + [sym_integer_literal] = ACTIONS(1561), + [aux_sym_string_literal_token1] = ACTIONS(1561), + [sym_char_literal] = ACTIONS(1561), + [anon_sym_true] = ACTIONS(1563), + [anon_sym_false] = ACTIONS(1563), + [anon_sym_u8] = ACTIONS(1563), + [anon_sym_i8] = ACTIONS(1563), + [anon_sym_u16] = ACTIONS(1563), + [anon_sym_i16] = ACTIONS(1563), + [anon_sym_u32] = ACTIONS(1563), + [anon_sym_i32] = ACTIONS(1563), + [anon_sym_u64] = ACTIONS(1563), + [anon_sym_i64] = ACTIONS(1563), + [anon_sym_u128] = ACTIONS(1563), + [anon_sym_i128] = ACTIONS(1563), + [anon_sym_isize] = ACTIONS(1563), + [anon_sym_usize] = ACTIONS(1563), + [anon_sym_f32] = ACTIONS(1563), + [anon_sym_f64] = ACTIONS(1563), + [anon_sym_bool] = ACTIONS(1563), + [anon_sym_str] = ACTIONS(1563), + [anon_sym_char] = ACTIONS(1563), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(1561), + [sym_self] = ACTIONS(1563), + [sym_super] = ACTIONS(1563), + [sym_crate] = ACTIONS(1563), + [sym_metavariable] = ACTIONS(1561), + [sym_grit_metavariable] = ACTIONS(1561), + [sym_raw_string_literal] = ACTIONS(1561), + [sym_float_literal] = ACTIONS(1561), [sym_block_comment] = ACTIONS(3), }, [307] = { - [ts_builtin_sym_end] = ACTIONS(1567), - [sym__primitive_identifier] = ACTIONS(1569), - [anon_sym_SEMI] = ACTIONS(1567), - [anon_sym_macro_rules_BANG] = ACTIONS(1567), - [anon_sym_LPAREN] = ACTIONS(1567), - [anon_sym_LBRACE] = ACTIONS(1567), - [anon_sym_RBRACE] = ACTIONS(1567), - [anon_sym_LBRACK] = ACTIONS(1567), - [anon_sym_STAR] = ACTIONS(1567), - [anon_sym_SQUOTE] = ACTIONS(1569), - [anon_sym_async] = ACTIONS(1569), - [anon_sym_break] = ACTIONS(1569), - [anon_sym_const] = ACTIONS(1569), - [anon_sym_continue] = ACTIONS(1569), - [anon_sym_default] = ACTIONS(1569), - [anon_sym_enum] = ACTIONS(1569), - [anon_sym_fn] = ACTIONS(1569), - [anon_sym_for] = ACTIONS(1569), - [anon_sym_if] = ACTIONS(1569), - [anon_sym_impl] = ACTIONS(1569), - [anon_sym_let] = ACTIONS(1569), - [anon_sym_loop] = ACTIONS(1569), - [anon_sym_match] = ACTIONS(1569), - [anon_sym_mod] = ACTIONS(1569), - [anon_sym_pub] = ACTIONS(1569), - [anon_sym_return] = ACTIONS(1569), - [anon_sym_static] = ACTIONS(1569), - [anon_sym_struct] = ACTIONS(1569), - [anon_sym_trait] = ACTIONS(1569), - [anon_sym_type] = ACTIONS(1569), - [anon_sym_union] = ACTIONS(1569), - [anon_sym_unsafe] = ACTIONS(1569), - [anon_sym_use] = ACTIONS(1569), - [anon_sym_while] = ACTIONS(1569), - [anon_sym_POUND] = ACTIONS(1567), - [anon_sym_BANG] = ACTIONS(1567), - [anon_sym_extern] = ACTIONS(1569), - [anon_sym_LT] = ACTIONS(1567), - [anon_sym_COLON_COLON] = ACTIONS(1567), - [anon_sym_AMP] = ACTIONS(1567), - [anon_sym_DOT_DOT] = ACTIONS(1567), - [anon_sym_DASH] = ACTIONS(1567), - [anon_sym_PIPE] = ACTIONS(1567), - [anon_sym_yield] = ACTIONS(1569), - [anon_sym_move] = ACTIONS(1569), - [sym_integer_literal] = ACTIONS(1567), - [aux_sym_string_literal_token1] = ACTIONS(1567), - [sym_char_literal] = ACTIONS(1567), - [anon_sym_true] = ACTIONS(1569), - [anon_sym_false] = ACTIONS(1569), - [anon_sym_u8] = ACTIONS(1569), - [anon_sym_i8] = ACTIONS(1569), - [anon_sym_u16] = ACTIONS(1569), - [anon_sym_i16] = ACTIONS(1569), - [anon_sym_u32] = ACTIONS(1569), - [anon_sym_i32] = ACTIONS(1569), - [anon_sym_u64] = ACTIONS(1569), - [anon_sym_i64] = ACTIONS(1569), - [anon_sym_u128] = ACTIONS(1569), - [anon_sym_i128] = ACTIONS(1569), - [anon_sym_isize] = ACTIONS(1569), - [anon_sym_usize] = ACTIONS(1569), - [anon_sym_f32] = ACTIONS(1569), - [anon_sym_f64] = ACTIONS(1569), - [anon_sym_bool] = ACTIONS(1569), - [anon_sym_str] = ACTIONS(1569), - [anon_sym_char] = ACTIONS(1569), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1567), - [sym_self] = ACTIONS(1569), - [sym_super] = ACTIONS(1569), - [sym_crate] = ACTIONS(1569), - [sym_metavariable] = ACTIONS(1567), - [sym_grit_metavariable] = ACTIONS(1567), - [sym_raw_string_literal] = ACTIONS(1567), - [sym_float_literal] = ACTIONS(1567), + [ts_builtin_sym_end] = ACTIONS(1565), + [sym__primitive_identifier] = ACTIONS(1567), + [anon_sym_SEMI] = ACTIONS(1565), + [anon_sym_macro_rules_BANG] = ACTIONS(1565), + [anon_sym_LPAREN] = ACTIONS(1565), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_RBRACE] = ACTIONS(1565), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_STAR] = ACTIONS(1565), + [anon_sym_SQUOTE] = ACTIONS(1567), + [anon_sym_async] = ACTIONS(1567), + [anon_sym_break] = ACTIONS(1567), + [anon_sym_const] = ACTIONS(1567), + [anon_sym_continue] = ACTIONS(1567), + [anon_sym_default] = ACTIONS(1567), + [anon_sym_enum] = ACTIONS(1567), + [anon_sym_fn] = ACTIONS(1567), + [anon_sym_for] = ACTIONS(1567), + [anon_sym_if] = ACTIONS(1567), + [anon_sym_impl] = ACTIONS(1567), + [anon_sym_let] = ACTIONS(1567), + [anon_sym_loop] = ACTIONS(1567), + [anon_sym_match] = ACTIONS(1567), + [anon_sym_mod] = ACTIONS(1567), + [anon_sym_pub] = ACTIONS(1567), + [anon_sym_return] = ACTIONS(1567), + [anon_sym_static] = ACTIONS(1567), + [anon_sym_struct] = ACTIONS(1567), + [anon_sym_trait] = ACTIONS(1567), + [anon_sym_type] = ACTIONS(1567), + [anon_sym_union] = ACTIONS(1567), + [anon_sym_unsafe] = ACTIONS(1567), + [anon_sym_use] = ACTIONS(1567), + [anon_sym_while] = ACTIONS(1567), + [anon_sym_POUND] = ACTIONS(1565), + [anon_sym_BANG] = ACTIONS(1565), + [anon_sym_extern] = ACTIONS(1567), + [anon_sym_LT] = ACTIONS(1565), + [anon_sym_COLON_COLON] = ACTIONS(1565), + [anon_sym_AMP] = ACTIONS(1565), + [anon_sym_DOT_DOT] = ACTIONS(1565), + [anon_sym_DASH] = ACTIONS(1565), + [anon_sym_PIPE] = ACTIONS(1565), + [anon_sym_yield] = ACTIONS(1567), + [anon_sym_move] = ACTIONS(1567), + [sym_integer_literal] = ACTIONS(1565), + [aux_sym_string_literal_token1] = ACTIONS(1565), + [sym_char_literal] = ACTIONS(1565), + [anon_sym_true] = ACTIONS(1567), + [anon_sym_false] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u128] = ACTIONS(1567), + [anon_sym_i128] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_str] = ACTIONS(1567), + [anon_sym_char] = ACTIONS(1567), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(1565), + [sym_self] = ACTIONS(1567), + [sym_super] = ACTIONS(1567), + [sym_crate] = ACTIONS(1567), + [sym_metavariable] = ACTIONS(1565), + [sym_grit_metavariable] = ACTIONS(1565), + [sym_raw_string_literal] = ACTIONS(1565), + [sym_float_literal] = ACTIONS(1565), [sym_block_comment] = ACTIONS(3), }, [308] = { - [ts_builtin_sym_end] = ACTIONS(1571), - [sym__primitive_identifier] = ACTIONS(1573), - [anon_sym_SEMI] = ACTIONS(1571), - [anon_sym_macro_rules_BANG] = ACTIONS(1571), - [anon_sym_LPAREN] = ACTIONS(1571), - [anon_sym_LBRACE] = ACTIONS(1571), - [anon_sym_RBRACE] = ACTIONS(1571), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_STAR] = ACTIONS(1571), - [anon_sym_SQUOTE] = ACTIONS(1573), - [anon_sym_async] = ACTIONS(1573), - [anon_sym_break] = ACTIONS(1573), - [anon_sym_const] = ACTIONS(1573), - [anon_sym_continue] = ACTIONS(1573), - [anon_sym_default] = ACTIONS(1573), - [anon_sym_enum] = ACTIONS(1573), - [anon_sym_fn] = ACTIONS(1573), - [anon_sym_for] = ACTIONS(1573), - [anon_sym_if] = ACTIONS(1573), - [anon_sym_impl] = ACTIONS(1573), - [anon_sym_let] = ACTIONS(1573), - [anon_sym_loop] = ACTIONS(1573), - [anon_sym_match] = ACTIONS(1573), - [anon_sym_mod] = ACTIONS(1573), - [anon_sym_pub] = ACTIONS(1573), - [anon_sym_return] = ACTIONS(1573), - [anon_sym_static] = ACTIONS(1573), - [anon_sym_struct] = ACTIONS(1573), - [anon_sym_trait] = ACTIONS(1573), - [anon_sym_type] = ACTIONS(1573), - [anon_sym_union] = ACTIONS(1573), - [anon_sym_unsafe] = ACTIONS(1573), - [anon_sym_use] = ACTIONS(1573), - [anon_sym_while] = ACTIONS(1573), - [anon_sym_POUND] = ACTIONS(1571), - [anon_sym_BANG] = ACTIONS(1571), - [anon_sym_extern] = ACTIONS(1573), - [anon_sym_LT] = ACTIONS(1571), - [anon_sym_COLON_COLON] = ACTIONS(1571), - [anon_sym_AMP] = ACTIONS(1571), - [anon_sym_DOT_DOT] = ACTIONS(1571), - [anon_sym_DASH] = ACTIONS(1571), - [anon_sym_PIPE] = ACTIONS(1571), - [anon_sym_yield] = ACTIONS(1573), - [anon_sym_move] = ACTIONS(1573), - [sym_integer_literal] = ACTIONS(1571), - [aux_sym_string_literal_token1] = ACTIONS(1571), - [sym_char_literal] = ACTIONS(1571), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [anon_sym_u8] = ACTIONS(1573), - [anon_sym_i8] = ACTIONS(1573), - [anon_sym_u16] = ACTIONS(1573), - [anon_sym_i16] = ACTIONS(1573), - [anon_sym_u32] = ACTIONS(1573), - [anon_sym_i32] = ACTIONS(1573), - [anon_sym_u64] = ACTIONS(1573), - [anon_sym_i64] = ACTIONS(1573), - [anon_sym_u128] = ACTIONS(1573), - [anon_sym_i128] = ACTIONS(1573), - [anon_sym_isize] = ACTIONS(1573), - [anon_sym_usize] = ACTIONS(1573), - [anon_sym_f32] = ACTIONS(1573), - [anon_sym_f64] = ACTIONS(1573), - [anon_sym_bool] = ACTIONS(1573), - [anon_sym_str] = ACTIONS(1573), - [anon_sym_char] = ACTIONS(1573), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1571), - [sym_self] = ACTIONS(1573), - [sym_super] = ACTIONS(1573), - [sym_crate] = ACTIONS(1573), - [sym_metavariable] = ACTIONS(1571), - [sym_grit_metavariable] = ACTIONS(1571), - [sym_raw_string_literal] = ACTIONS(1571), - [sym_float_literal] = ACTIONS(1571), + [ts_builtin_sym_end] = ACTIONS(1569), + [sym__primitive_identifier] = ACTIONS(1571), + [anon_sym_SEMI] = ACTIONS(1569), + [anon_sym_macro_rules_BANG] = ACTIONS(1569), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACE] = ACTIONS(1569), + [anon_sym_RBRACE] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1569), + [anon_sym_STAR] = ACTIONS(1569), + [anon_sym_SQUOTE] = ACTIONS(1571), + [anon_sym_async] = ACTIONS(1571), + [anon_sym_break] = ACTIONS(1571), + [anon_sym_const] = ACTIONS(1571), + [anon_sym_continue] = ACTIONS(1571), + [anon_sym_default] = ACTIONS(1571), + [anon_sym_enum] = ACTIONS(1571), + [anon_sym_fn] = ACTIONS(1571), + [anon_sym_for] = ACTIONS(1571), + [anon_sym_if] = ACTIONS(1571), + [anon_sym_impl] = ACTIONS(1571), + [anon_sym_let] = ACTIONS(1571), + [anon_sym_loop] = ACTIONS(1571), + [anon_sym_match] = ACTIONS(1571), + [anon_sym_mod] = ACTIONS(1571), + [anon_sym_pub] = ACTIONS(1571), + [anon_sym_return] = ACTIONS(1571), + [anon_sym_static] = ACTIONS(1571), + [anon_sym_struct] = ACTIONS(1571), + [anon_sym_trait] = ACTIONS(1571), + [anon_sym_type] = ACTIONS(1571), + [anon_sym_union] = ACTIONS(1571), + [anon_sym_unsafe] = ACTIONS(1571), + [anon_sym_use] = ACTIONS(1571), + [anon_sym_while] = ACTIONS(1571), + [anon_sym_POUND] = ACTIONS(1569), + [anon_sym_BANG] = ACTIONS(1569), + [anon_sym_extern] = ACTIONS(1571), + [anon_sym_LT] = ACTIONS(1569), + [anon_sym_COLON_COLON] = ACTIONS(1569), + [anon_sym_AMP] = ACTIONS(1569), + [anon_sym_DOT_DOT] = ACTIONS(1569), + [anon_sym_DASH] = ACTIONS(1569), + [anon_sym_PIPE] = ACTIONS(1569), + [anon_sym_yield] = ACTIONS(1571), + [anon_sym_move] = ACTIONS(1571), + [sym_integer_literal] = ACTIONS(1569), + [aux_sym_string_literal_token1] = ACTIONS(1569), + [sym_char_literal] = ACTIONS(1569), + [anon_sym_true] = ACTIONS(1571), + [anon_sym_false] = ACTIONS(1571), + [anon_sym_u8] = ACTIONS(1571), + [anon_sym_i8] = ACTIONS(1571), + [anon_sym_u16] = ACTIONS(1571), + [anon_sym_i16] = ACTIONS(1571), + [anon_sym_u32] = ACTIONS(1571), + [anon_sym_i32] = ACTIONS(1571), + [anon_sym_u64] = ACTIONS(1571), + [anon_sym_i64] = ACTIONS(1571), + [anon_sym_u128] = ACTIONS(1571), + [anon_sym_i128] = ACTIONS(1571), + [anon_sym_isize] = ACTIONS(1571), + [anon_sym_usize] = ACTIONS(1571), + [anon_sym_f32] = ACTIONS(1571), + [anon_sym_f64] = ACTIONS(1571), + [anon_sym_bool] = ACTIONS(1571), + [anon_sym_str] = ACTIONS(1571), + [anon_sym_char] = ACTIONS(1571), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(1569), + [sym_self] = ACTIONS(1571), + [sym_super] = ACTIONS(1571), + [sym_crate] = ACTIONS(1571), + [sym_metavariable] = ACTIONS(1569), + [sym_grit_metavariable] = ACTIONS(1569), + [sym_raw_string_literal] = ACTIONS(1569), + [sym_float_literal] = ACTIONS(1569), [sym_block_comment] = ACTIONS(3), }, [309] = { - [ts_builtin_sym_end] = ACTIONS(1575), - [sym__primitive_identifier] = ACTIONS(1577), - [anon_sym_SEMI] = ACTIONS(1575), - [anon_sym_macro_rules_BANG] = ACTIONS(1575), - [anon_sym_LPAREN] = ACTIONS(1575), - [anon_sym_LBRACE] = ACTIONS(1575), - [anon_sym_RBRACE] = ACTIONS(1575), - [anon_sym_LBRACK] = ACTIONS(1575), - [anon_sym_STAR] = ACTIONS(1575), - [anon_sym_SQUOTE] = ACTIONS(1577), - [anon_sym_async] = ACTIONS(1577), - [anon_sym_break] = ACTIONS(1577), - [anon_sym_const] = ACTIONS(1577), - [anon_sym_continue] = ACTIONS(1577), - [anon_sym_default] = ACTIONS(1577), - [anon_sym_enum] = ACTIONS(1577), - [anon_sym_fn] = ACTIONS(1577), - [anon_sym_for] = ACTIONS(1577), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_impl] = ACTIONS(1577), - [anon_sym_let] = ACTIONS(1577), - [anon_sym_loop] = ACTIONS(1577), - [anon_sym_match] = ACTIONS(1577), - [anon_sym_mod] = ACTIONS(1577), - [anon_sym_pub] = ACTIONS(1577), - [anon_sym_return] = ACTIONS(1577), - [anon_sym_static] = ACTIONS(1577), - [anon_sym_struct] = ACTIONS(1577), - [anon_sym_trait] = ACTIONS(1577), - [anon_sym_type] = ACTIONS(1577), - [anon_sym_union] = ACTIONS(1577), - [anon_sym_unsafe] = ACTIONS(1577), - [anon_sym_use] = ACTIONS(1577), - [anon_sym_while] = ACTIONS(1577), - [anon_sym_POUND] = ACTIONS(1575), - [anon_sym_BANG] = ACTIONS(1575), - [anon_sym_extern] = ACTIONS(1577), - [anon_sym_LT] = ACTIONS(1575), - [anon_sym_COLON_COLON] = ACTIONS(1575), - [anon_sym_AMP] = ACTIONS(1575), - [anon_sym_DOT_DOT] = ACTIONS(1575), - [anon_sym_DASH] = ACTIONS(1575), - [anon_sym_PIPE] = ACTIONS(1575), - [anon_sym_yield] = ACTIONS(1577), - [anon_sym_move] = ACTIONS(1577), - [sym_integer_literal] = ACTIONS(1575), - [aux_sym_string_literal_token1] = ACTIONS(1575), - [sym_char_literal] = ACTIONS(1575), - [anon_sym_true] = ACTIONS(1577), - [anon_sym_false] = ACTIONS(1577), - [anon_sym_u8] = ACTIONS(1577), - [anon_sym_i8] = ACTIONS(1577), - [anon_sym_u16] = ACTIONS(1577), - [anon_sym_i16] = ACTIONS(1577), - [anon_sym_u32] = ACTIONS(1577), - [anon_sym_i32] = ACTIONS(1577), - [anon_sym_u64] = ACTIONS(1577), - [anon_sym_i64] = ACTIONS(1577), - [anon_sym_u128] = ACTIONS(1577), - [anon_sym_i128] = ACTIONS(1577), - [anon_sym_isize] = ACTIONS(1577), - [anon_sym_usize] = ACTIONS(1577), - [anon_sym_f32] = ACTIONS(1577), - [anon_sym_f64] = ACTIONS(1577), - [anon_sym_bool] = ACTIONS(1577), - [anon_sym_str] = ACTIONS(1577), - [anon_sym_char] = ACTIONS(1577), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1575), - [sym_self] = ACTIONS(1577), - [sym_super] = ACTIONS(1577), - [sym_crate] = ACTIONS(1577), - [sym_metavariable] = ACTIONS(1575), - [sym_grit_metavariable] = ACTIONS(1575), - [sym_raw_string_literal] = ACTIONS(1575), - [sym_float_literal] = ACTIONS(1575), + [ts_builtin_sym_end] = ACTIONS(1573), + [sym__primitive_identifier] = ACTIONS(1575), + [anon_sym_SEMI] = ACTIONS(1573), + [anon_sym_macro_rules_BANG] = ACTIONS(1573), + [anon_sym_LPAREN] = ACTIONS(1573), + [anon_sym_LBRACE] = ACTIONS(1573), + [anon_sym_RBRACE] = ACTIONS(1573), + [anon_sym_LBRACK] = ACTIONS(1573), + [anon_sym_STAR] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_break] = ACTIONS(1575), + [anon_sym_const] = ACTIONS(1575), + [anon_sym_continue] = ACTIONS(1575), + [anon_sym_default] = ACTIONS(1575), + [anon_sym_enum] = ACTIONS(1575), + [anon_sym_fn] = ACTIONS(1575), + [anon_sym_for] = ACTIONS(1575), + [anon_sym_if] = ACTIONS(1575), + [anon_sym_impl] = ACTIONS(1575), + [anon_sym_let] = ACTIONS(1575), + [anon_sym_loop] = ACTIONS(1575), + [anon_sym_match] = ACTIONS(1575), + [anon_sym_mod] = ACTIONS(1575), + [anon_sym_pub] = ACTIONS(1575), + [anon_sym_return] = ACTIONS(1575), + [anon_sym_static] = ACTIONS(1575), + [anon_sym_struct] = ACTIONS(1575), + [anon_sym_trait] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(1575), + [anon_sym_union] = ACTIONS(1575), + [anon_sym_unsafe] = ACTIONS(1575), + [anon_sym_use] = ACTIONS(1575), + [anon_sym_while] = ACTIONS(1575), + [anon_sym_POUND] = ACTIONS(1573), + [anon_sym_BANG] = ACTIONS(1573), + [anon_sym_extern] = ACTIONS(1575), + [anon_sym_LT] = ACTIONS(1573), + [anon_sym_COLON_COLON] = ACTIONS(1573), + [anon_sym_AMP] = ACTIONS(1573), + [anon_sym_DOT_DOT] = ACTIONS(1573), + [anon_sym_DASH] = ACTIONS(1573), + [anon_sym_PIPE] = ACTIONS(1573), + [anon_sym_yield] = ACTIONS(1575), + [anon_sym_move] = ACTIONS(1575), + [sym_integer_literal] = ACTIONS(1573), + [aux_sym_string_literal_token1] = ACTIONS(1573), + [sym_char_literal] = ACTIONS(1573), + [anon_sym_true] = ACTIONS(1575), + [anon_sym_false] = ACTIONS(1575), + [anon_sym_u8] = ACTIONS(1575), + [anon_sym_i8] = ACTIONS(1575), + [anon_sym_u16] = ACTIONS(1575), + [anon_sym_i16] = ACTIONS(1575), + [anon_sym_u32] = ACTIONS(1575), + [anon_sym_i32] = ACTIONS(1575), + [anon_sym_u64] = ACTIONS(1575), + [anon_sym_i64] = ACTIONS(1575), + [anon_sym_u128] = ACTIONS(1575), + [anon_sym_i128] = ACTIONS(1575), + [anon_sym_isize] = ACTIONS(1575), + [anon_sym_usize] = ACTIONS(1575), + [anon_sym_f32] = ACTIONS(1575), + [anon_sym_f64] = ACTIONS(1575), + [anon_sym_bool] = ACTIONS(1575), + [anon_sym_str] = ACTIONS(1575), + [anon_sym_char] = ACTIONS(1575), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(1573), + [sym_self] = ACTIONS(1575), + [sym_super] = ACTIONS(1575), + [sym_crate] = ACTIONS(1575), + [sym_metavariable] = ACTIONS(1573), + [sym_grit_metavariable] = ACTIONS(1573), + [sym_raw_string_literal] = ACTIONS(1573), + [sym_float_literal] = ACTIONS(1573), [sym_block_comment] = ACTIONS(3), }, [310] = { - [ts_builtin_sym_end] = ACTIONS(1579), - [sym__primitive_identifier] = ACTIONS(1581), - [anon_sym_SEMI] = ACTIONS(1579), - [anon_sym_macro_rules_BANG] = ACTIONS(1579), - [anon_sym_LPAREN] = ACTIONS(1579), - [anon_sym_LBRACE] = ACTIONS(1579), - [anon_sym_RBRACE] = ACTIONS(1579), - [anon_sym_LBRACK] = ACTIONS(1579), - [anon_sym_STAR] = ACTIONS(1579), - [anon_sym_SQUOTE] = ACTIONS(1581), - [anon_sym_async] = ACTIONS(1581), - [anon_sym_break] = ACTIONS(1581), - [anon_sym_const] = ACTIONS(1581), - [anon_sym_continue] = ACTIONS(1581), - [anon_sym_default] = ACTIONS(1581), - [anon_sym_enum] = ACTIONS(1581), - [anon_sym_fn] = ACTIONS(1581), - [anon_sym_for] = ACTIONS(1581), - [anon_sym_if] = ACTIONS(1581), - [anon_sym_impl] = ACTIONS(1581), - [anon_sym_let] = ACTIONS(1581), - [anon_sym_loop] = ACTIONS(1581), - [anon_sym_match] = ACTIONS(1581), - [anon_sym_mod] = ACTIONS(1581), - [anon_sym_pub] = ACTIONS(1581), - [anon_sym_return] = ACTIONS(1581), - [anon_sym_static] = ACTIONS(1581), - [anon_sym_struct] = ACTIONS(1581), - [anon_sym_trait] = ACTIONS(1581), - [anon_sym_type] = ACTIONS(1581), - [anon_sym_union] = ACTIONS(1581), - [anon_sym_unsafe] = ACTIONS(1581), - [anon_sym_use] = ACTIONS(1581), - [anon_sym_while] = ACTIONS(1581), - [anon_sym_POUND] = ACTIONS(1579), - [anon_sym_BANG] = ACTIONS(1579), - [anon_sym_extern] = ACTIONS(1581), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_COLON_COLON] = ACTIONS(1579), - [anon_sym_AMP] = ACTIONS(1579), - [anon_sym_DOT_DOT] = ACTIONS(1579), - [anon_sym_DASH] = ACTIONS(1579), - [anon_sym_PIPE] = ACTIONS(1579), - [anon_sym_yield] = ACTIONS(1581), - [anon_sym_move] = ACTIONS(1581), - [sym_integer_literal] = ACTIONS(1579), - [aux_sym_string_literal_token1] = ACTIONS(1579), - [sym_char_literal] = ACTIONS(1579), - [anon_sym_true] = ACTIONS(1581), - [anon_sym_false] = ACTIONS(1581), - [anon_sym_u8] = ACTIONS(1581), - [anon_sym_i8] = ACTIONS(1581), - [anon_sym_u16] = ACTIONS(1581), - [anon_sym_i16] = ACTIONS(1581), - [anon_sym_u32] = ACTIONS(1581), - [anon_sym_i32] = ACTIONS(1581), - [anon_sym_u64] = ACTIONS(1581), - [anon_sym_i64] = ACTIONS(1581), - [anon_sym_u128] = ACTIONS(1581), - [anon_sym_i128] = ACTIONS(1581), - [anon_sym_isize] = ACTIONS(1581), - [anon_sym_usize] = ACTIONS(1581), - [anon_sym_f32] = ACTIONS(1581), - [anon_sym_f64] = ACTIONS(1581), - [anon_sym_bool] = ACTIONS(1581), - [anon_sym_str] = ACTIONS(1581), - [anon_sym_char] = ACTIONS(1581), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1579), - [sym_self] = ACTIONS(1581), - [sym_super] = ACTIONS(1581), - [sym_crate] = ACTIONS(1581), - [sym_metavariable] = ACTIONS(1579), - [sym_grit_metavariable] = ACTIONS(1579), - [sym_raw_string_literal] = ACTIONS(1579), - [sym_float_literal] = ACTIONS(1579), + [ts_builtin_sym_end] = ACTIONS(1577), + [sym__primitive_identifier] = ACTIONS(1579), + [anon_sym_SEMI] = ACTIONS(1577), + [anon_sym_macro_rules_BANG] = ACTIONS(1577), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACE] = ACTIONS(1577), + [anon_sym_RBRACE] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1577), + [anon_sym_STAR] = ACTIONS(1577), + [anon_sym_SQUOTE] = ACTIONS(1579), + [anon_sym_async] = ACTIONS(1579), + [anon_sym_break] = ACTIONS(1579), + [anon_sym_const] = ACTIONS(1579), + [anon_sym_continue] = ACTIONS(1579), + [anon_sym_default] = ACTIONS(1579), + [anon_sym_enum] = ACTIONS(1579), + [anon_sym_fn] = ACTIONS(1579), + [anon_sym_for] = ACTIONS(1579), + [anon_sym_if] = ACTIONS(1579), + [anon_sym_impl] = ACTIONS(1579), + [anon_sym_let] = ACTIONS(1579), + [anon_sym_loop] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1579), + [anon_sym_mod] = ACTIONS(1579), + [anon_sym_pub] = ACTIONS(1579), + [anon_sym_return] = ACTIONS(1579), + [anon_sym_static] = ACTIONS(1579), + [anon_sym_struct] = ACTIONS(1579), + [anon_sym_trait] = ACTIONS(1579), + [anon_sym_type] = ACTIONS(1579), + [anon_sym_union] = ACTIONS(1579), + [anon_sym_unsafe] = ACTIONS(1579), + [anon_sym_use] = ACTIONS(1579), + [anon_sym_while] = ACTIONS(1579), + [anon_sym_POUND] = ACTIONS(1577), + [anon_sym_BANG] = ACTIONS(1577), + [anon_sym_extern] = ACTIONS(1579), + [anon_sym_LT] = ACTIONS(1577), + [anon_sym_COLON_COLON] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(1577), + [anon_sym_DOT_DOT] = ACTIONS(1577), + [anon_sym_DASH] = ACTIONS(1577), + [anon_sym_PIPE] = ACTIONS(1577), + [anon_sym_yield] = ACTIONS(1579), + [anon_sym_move] = ACTIONS(1579), + [sym_integer_literal] = ACTIONS(1577), + [aux_sym_string_literal_token1] = ACTIONS(1577), + [sym_char_literal] = ACTIONS(1577), + [anon_sym_true] = ACTIONS(1579), + [anon_sym_false] = ACTIONS(1579), + [anon_sym_u8] = ACTIONS(1579), + [anon_sym_i8] = ACTIONS(1579), + [anon_sym_u16] = ACTIONS(1579), + [anon_sym_i16] = ACTIONS(1579), + [anon_sym_u32] = ACTIONS(1579), + [anon_sym_i32] = ACTIONS(1579), + [anon_sym_u64] = ACTIONS(1579), + [anon_sym_i64] = ACTIONS(1579), + [anon_sym_u128] = ACTIONS(1579), + [anon_sym_i128] = ACTIONS(1579), + [anon_sym_isize] = ACTIONS(1579), + [anon_sym_usize] = ACTIONS(1579), + [anon_sym_f32] = ACTIONS(1579), + [anon_sym_f64] = ACTIONS(1579), + [anon_sym_bool] = ACTIONS(1579), + [anon_sym_str] = ACTIONS(1579), + [anon_sym_char] = ACTIONS(1579), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(1577), + [sym_self] = ACTIONS(1579), + [sym_super] = ACTIONS(1579), + [sym_crate] = ACTIONS(1579), + [sym_metavariable] = ACTIONS(1577), + [sym_grit_metavariable] = ACTIONS(1577), + [sym_raw_string_literal] = ACTIONS(1577), + [sym_float_literal] = ACTIONS(1577), [sym_block_comment] = ACTIONS(3), }, [311] = { - [ts_builtin_sym_end] = ACTIONS(1583), - [sym__primitive_identifier] = ACTIONS(1585), - [anon_sym_SEMI] = ACTIONS(1583), - [anon_sym_macro_rules_BANG] = ACTIONS(1583), - [anon_sym_LPAREN] = ACTIONS(1583), - [anon_sym_LBRACE] = ACTIONS(1583), - [anon_sym_RBRACE] = ACTIONS(1583), - [anon_sym_LBRACK] = ACTIONS(1583), - [anon_sym_STAR] = ACTIONS(1583), - [anon_sym_SQUOTE] = ACTIONS(1585), - [anon_sym_async] = ACTIONS(1585), - [anon_sym_break] = ACTIONS(1585), - [anon_sym_const] = ACTIONS(1585), - [anon_sym_continue] = ACTIONS(1585), - [anon_sym_default] = ACTIONS(1585), - [anon_sym_enum] = ACTIONS(1585), - [anon_sym_fn] = ACTIONS(1585), - [anon_sym_for] = ACTIONS(1585), - [anon_sym_if] = ACTIONS(1585), - [anon_sym_impl] = ACTIONS(1585), - [anon_sym_let] = ACTIONS(1585), - [anon_sym_loop] = ACTIONS(1585), - [anon_sym_match] = ACTIONS(1585), - [anon_sym_mod] = ACTIONS(1585), - [anon_sym_pub] = ACTIONS(1585), - [anon_sym_return] = ACTIONS(1585), - [anon_sym_static] = ACTIONS(1585), - [anon_sym_struct] = ACTIONS(1585), - [anon_sym_trait] = ACTIONS(1585), - [anon_sym_type] = ACTIONS(1585), - [anon_sym_union] = ACTIONS(1585), - [anon_sym_unsafe] = ACTIONS(1585), - [anon_sym_use] = ACTIONS(1585), - [anon_sym_while] = ACTIONS(1585), - [anon_sym_POUND] = ACTIONS(1583), - [anon_sym_BANG] = ACTIONS(1583), - [anon_sym_extern] = ACTIONS(1585), - [anon_sym_LT] = ACTIONS(1583), - [anon_sym_COLON_COLON] = ACTIONS(1583), - [anon_sym_AMP] = ACTIONS(1583), - [anon_sym_DOT_DOT] = ACTIONS(1583), - [anon_sym_DASH] = ACTIONS(1583), - [anon_sym_PIPE] = ACTIONS(1583), - [anon_sym_yield] = ACTIONS(1585), - [anon_sym_move] = ACTIONS(1585), - [sym_integer_literal] = ACTIONS(1583), - [aux_sym_string_literal_token1] = ACTIONS(1583), - [sym_char_literal] = ACTIONS(1583), - [anon_sym_true] = ACTIONS(1585), - [anon_sym_false] = ACTIONS(1585), - [anon_sym_u8] = ACTIONS(1585), - [anon_sym_i8] = ACTIONS(1585), - [anon_sym_u16] = ACTIONS(1585), - [anon_sym_i16] = ACTIONS(1585), - [anon_sym_u32] = ACTIONS(1585), - [anon_sym_i32] = ACTIONS(1585), - [anon_sym_u64] = ACTIONS(1585), - [anon_sym_i64] = ACTIONS(1585), - [anon_sym_u128] = ACTIONS(1585), - [anon_sym_i128] = ACTIONS(1585), - [anon_sym_isize] = ACTIONS(1585), - [anon_sym_usize] = ACTIONS(1585), - [anon_sym_f32] = ACTIONS(1585), - [anon_sym_f64] = ACTIONS(1585), - [anon_sym_bool] = ACTIONS(1585), - [anon_sym_str] = ACTIONS(1585), - [anon_sym_char] = ACTIONS(1585), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1583), - [sym_self] = ACTIONS(1585), - [sym_super] = ACTIONS(1585), - [sym_crate] = ACTIONS(1585), - [sym_metavariable] = ACTIONS(1583), - [sym_grit_metavariable] = ACTIONS(1583), - [sym_raw_string_literal] = ACTIONS(1583), - [sym_float_literal] = ACTIONS(1583), + [ts_builtin_sym_end] = ACTIONS(1581), + [sym__primitive_identifier] = ACTIONS(1583), + [anon_sym_SEMI] = ACTIONS(1581), + [anon_sym_macro_rules_BANG] = ACTIONS(1581), + [anon_sym_LPAREN] = ACTIONS(1581), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_RBRACE] = ACTIONS(1581), + [anon_sym_LBRACK] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(1581), + [anon_sym_SQUOTE] = ACTIONS(1583), + [anon_sym_async] = ACTIONS(1583), + [anon_sym_break] = ACTIONS(1583), + [anon_sym_const] = ACTIONS(1583), + [anon_sym_continue] = ACTIONS(1583), + [anon_sym_default] = ACTIONS(1583), + [anon_sym_enum] = ACTIONS(1583), + [anon_sym_fn] = ACTIONS(1583), + [anon_sym_for] = ACTIONS(1583), + [anon_sym_if] = ACTIONS(1583), + [anon_sym_impl] = ACTIONS(1583), + [anon_sym_let] = ACTIONS(1583), + [anon_sym_loop] = ACTIONS(1583), + [anon_sym_match] = ACTIONS(1583), + [anon_sym_mod] = ACTIONS(1583), + [anon_sym_pub] = ACTIONS(1583), + [anon_sym_return] = ACTIONS(1583), + [anon_sym_static] = ACTIONS(1583), + [anon_sym_struct] = ACTIONS(1583), + [anon_sym_trait] = ACTIONS(1583), + [anon_sym_type] = ACTIONS(1583), + [anon_sym_union] = ACTIONS(1583), + [anon_sym_unsafe] = ACTIONS(1583), + [anon_sym_use] = ACTIONS(1583), + [anon_sym_while] = ACTIONS(1583), + [anon_sym_POUND] = ACTIONS(1581), + [anon_sym_BANG] = ACTIONS(1581), + [anon_sym_extern] = ACTIONS(1583), + [anon_sym_LT] = ACTIONS(1581), + [anon_sym_COLON_COLON] = ACTIONS(1581), + [anon_sym_AMP] = ACTIONS(1581), + [anon_sym_DOT_DOT] = ACTIONS(1581), + [anon_sym_DASH] = ACTIONS(1581), + [anon_sym_PIPE] = ACTIONS(1581), + [anon_sym_yield] = ACTIONS(1583), + [anon_sym_move] = ACTIONS(1583), + [sym_integer_literal] = ACTIONS(1581), + [aux_sym_string_literal_token1] = ACTIONS(1581), + [sym_char_literal] = ACTIONS(1581), + [anon_sym_true] = ACTIONS(1583), + [anon_sym_false] = ACTIONS(1583), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(1581), + [sym_self] = ACTIONS(1583), + [sym_super] = ACTIONS(1583), + [sym_crate] = ACTIONS(1583), + [sym_metavariable] = ACTIONS(1581), + [sym_grit_metavariable] = ACTIONS(1581), + [sym_raw_string_literal] = ACTIONS(1581), + [sym_float_literal] = ACTIONS(1581), [sym_block_comment] = ACTIONS(3), }, [312] = { - [ts_builtin_sym_end] = ACTIONS(1587), - [sym__primitive_identifier] = ACTIONS(1589), - [anon_sym_SEMI] = ACTIONS(1587), - [anon_sym_macro_rules_BANG] = ACTIONS(1587), - [anon_sym_LPAREN] = ACTIONS(1587), - [anon_sym_LBRACE] = ACTIONS(1587), - [anon_sym_RBRACE] = ACTIONS(1587), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1587), - [anon_sym_SQUOTE] = ACTIONS(1589), - [anon_sym_async] = ACTIONS(1589), - [anon_sym_break] = ACTIONS(1589), - [anon_sym_const] = ACTIONS(1589), - [anon_sym_continue] = ACTIONS(1589), - [anon_sym_default] = ACTIONS(1589), - [anon_sym_enum] = ACTIONS(1589), - [anon_sym_fn] = ACTIONS(1589), - [anon_sym_for] = ACTIONS(1589), - [anon_sym_if] = ACTIONS(1589), - [anon_sym_impl] = ACTIONS(1589), - [anon_sym_let] = ACTIONS(1589), - [anon_sym_loop] = ACTIONS(1589), - [anon_sym_match] = ACTIONS(1589), - [anon_sym_mod] = ACTIONS(1589), - [anon_sym_pub] = ACTIONS(1589), - [anon_sym_return] = ACTIONS(1589), - [anon_sym_static] = ACTIONS(1589), - [anon_sym_struct] = ACTIONS(1589), - [anon_sym_trait] = ACTIONS(1589), - [anon_sym_type] = ACTIONS(1589), - [anon_sym_union] = ACTIONS(1589), - [anon_sym_unsafe] = ACTIONS(1589), - [anon_sym_use] = ACTIONS(1589), - [anon_sym_while] = ACTIONS(1589), - [anon_sym_POUND] = ACTIONS(1587), - [anon_sym_BANG] = ACTIONS(1587), - [anon_sym_extern] = ACTIONS(1589), - [anon_sym_LT] = ACTIONS(1587), - [anon_sym_COLON_COLON] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(1587), - [anon_sym_DOT_DOT] = ACTIONS(1587), - [anon_sym_DASH] = ACTIONS(1587), - [anon_sym_PIPE] = ACTIONS(1587), - [anon_sym_yield] = ACTIONS(1589), - [anon_sym_move] = ACTIONS(1589), - [sym_integer_literal] = ACTIONS(1587), - [aux_sym_string_literal_token1] = ACTIONS(1587), - [sym_char_literal] = ACTIONS(1587), - [anon_sym_true] = ACTIONS(1589), - [anon_sym_false] = ACTIONS(1589), - [anon_sym_u8] = ACTIONS(1589), - [anon_sym_i8] = ACTIONS(1589), - [anon_sym_u16] = ACTIONS(1589), - [anon_sym_i16] = ACTIONS(1589), - [anon_sym_u32] = ACTIONS(1589), - [anon_sym_i32] = ACTIONS(1589), - [anon_sym_u64] = ACTIONS(1589), - [anon_sym_i64] = ACTIONS(1589), - [anon_sym_u128] = ACTIONS(1589), - [anon_sym_i128] = ACTIONS(1589), - [anon_sym_isize] = ACTIONS(1589), - [anon_sym_usize] = ACTIONS(1589), - [anon_sym_f32] = ACTIONS(1589), - [anon_sym_f64] = ACTIONS(1589), - [anon_sym_bool] = ACTIONS(1589), - [anon_sym_str] = ACTIONS(1589), - [anon_sym_char] = ACTIONS(1589), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1587), - [sym_self] = ACTIONS(1589), - [sym_super] = ACTIONS(1589), - [sym_crate] = ACTIONS(1589), - [sym_metavariable] = ACTIONS(1587), - [sym_grit_metavariable] = ACTIONS(1587), - [sym_raw_string_literal] = ACTIONS(1587), - [sym_float_literal] = ACTIONS(1587), + [ts_builtin_sym_end] = ACTIONS(1585), + [sym__primitive_identifier] = ACTIONS(1587), + [anon_sym_SEMI] = ACTIONS(1585), + [anon_sym_macro_rules_BANG] = ACTIONS(1585), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_RBRACE] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1585), + [anon_sym_STAR] = ACTIONS(1585), + [anon_sym_SQUOTE] = ACTIONS(1587), + [anon_sym_async] = ACTIONS(1587), + [anon_sym_break] = ACTIONS(1587), + [anon_sym_const] = ACTIONS(1587), + [anon_sym_continue] = ACTIONS(1587), + [anon_sym_default] = ACTIONS(1587), + [anon_sym_enum] = ACTIONS(1587), + [anon_sym_fn] = ACTIONS(1587), + [anon_sym_for] = ACTIONS(1587), + [anon_sym_if] = ACTIONS(1587), + [anon_sym_impl] = ACTIONS(1587), + [anon_sym_let] = ACTIONS(1587), + [anon_sym_loop] = ACTIONS(1587), + [anon_sym_match] = ACTIONS(1587), + [anon_sym_mod] = ACTIONS(1587), + [anon_sym_pub] = ACTIONS(1587), + [anon_sym_return] = ACTIONS(1587), + [anon_sym_static] = ACTIONS(1587), + [anon_sym_struct] = ACTIONS(1587), + [anon_sym_trait] = ACTIONS(1587), + [anon_sym_type] = ACTIONS(1587), + [anon_sym_union] = ACTIONS(1587), + [anon_sym_unsafe] = ACTIONS(1587), + [anon_sym_use] = ACTIONS(1587), + [anon_sym_while] = ACTIONS(1587), + [anon_sym_POUND] = ACTIONS(1585), + [anon_sym_BANG] = ACTIONS(1585), + [anon_sym_extern] = ACTIONS(1587), + [anon_sym_LT] = ACTIONS(1585), + [anon_sym_COLON_COLON] = ACTIONS(1585), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_DOT_DOT] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1585), + [anon_sym_PIPE] = ACTIONS(1585), + [anon_sym_yield] = ACTIONS(1587), + [anon_sym_move] = ACTIONS(1587), + [sym_integer_literal] = ACTIONS(1585), + [aux_sym_string_literal_token1] = ACTIONS(1585), + [sym_char_literal] = ACTIONS(1585), + [anon_sym_true] = ACTIONS(1587), + [anon_sym_false] = ACTIONS(1587), + [anon_sym_u8] = ACTIONS(1587), + [anon_sym_i8] = ACTIONS(1587), + [anon_sym_u16] = ACTIONS(1587), + [anon_sym_i16] = ACTIONS(1587), + [anon_sym_u32] = ACTIONS(1587), + [anon_sym_i32] = ACTIONS(1587), + [anon_sym_u64] = ACTIONS(1587), + [anon_sym_i64] = ACTIONS(1587), + [anon_sym_u128] = ACTIONS(1587), + [anon_sym_i128] = ACTIONS(1587), + [anon_sym_isize] = ACTIONS(1587), + [anon_sym_usize] = ACTIONS(1587), + [anon_sym_f32] = ACTIONS(1587), + [anon_sym_f64] = ACTIONS(1587), + [anon_sym_bool] = ACTIONS(1587), + [anon_sym_str] = ACTIONS(1587), + [anon_sym_char] = ACTIONS(1587), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(1585), + [sym_self] = ACTIONS(1587), + [sym_super] = ACTIONS(1587), + [sym_crate] = ACTIONS(1587), + [sym_metavariable] = ACTIONS(1585), + [sym_grit_metavariable] = ACTIONS(1585), + [sym_raw_string_literal] = ACTIONS(1585), + [sym_float_literal] = ACTIONS(1585), [sym_block_comment] = ACTIONS(3), }, [313] = { - [ts_builtin_sym_end] = ACTIONS(1591), - [sym__primitive_identifier] = ACTIONS(1593), - [anon_sym_SEMI] = ACTIONS(1591), - [anon_sym_macro_rules_BANG] = ACTIONS(1591), - [anon_sym_LPAREN] = ACTIONS(1591), - [anon_sym_LBRACE] = ACTIONS(1591), - [anon_sym_RBRACE] = ACTIONS(1591), - [anon_sym_LBRACK] = ACTIONS(1591), - [anon_sym_STAR] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1593), - [anon_sym_async] = ACTIONS(1593), - [anon_sym_break] = ACTIONS(1593), - [anon_sym_const] = ACTIONS(1593), - [anon_sym_continue] = ACTIONS(1593), - [anon_sym_default] = ACTIONS(1593), - [anon_sym_enum] = ACTIONS(1593), - [anon_sym_fn] = ACTIONS(1593), - [anon_sym_for] = ACTIONS(1593), - [anon_sym_if] = ACTIONS(1593), - [anon_sym_impl] = ACTIONS(1593), - [anon_sym_let] = ACTIONS(1593), - [anon_sym_loop] = ACTIONS(1593), - [anon_sym_match] = ACTIONS(1593), - [anon_sym_mod] = ACTIONS(1593), - [anon_sym_pub] = ACTIONS(1593), - [anon_sym_return] = ACTIONS(1593), - [anon_sym_static] = ACTIONS(1593), - [anon_sym_struct] = ACTIONS(1593), - [anon_sym_trait] = ACTIONS(1593), - [anon_sym_type] = ACTIONS(1593), - [anon_sym_union] = ACTIONS(1593), - [anon_sym_unsafe] = ACTIONS(1593), - [anon_sym_use] = ACTIONS(1593), - [anon_sym_while] = ACTIONS(1593), - [anon_sym_POUND] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1591), - [anon_sym_extern] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(1591), - [anon_sym_COLON_COLON] = ACTIONS(1591), - [anon_sym_AMP] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(1591), - [anon_sym_DASH] = ACTIONS(1591), - [anon_sym_PIPE] = ACTIONS(1591), - [anon_sym_yield] = ACTIONS(1593), - [anon_sym_move] = ACTIONS(1593), - [sym_integer_literal] = ACTIONS(1591), - [aux_sym_string_literal_token1] = ACTIONS(1591), - [sym_char_literal] = ACTIONS(1591), - [anon_sym_true] = ACTIONS(1593), - [anon_sym_false] = ACTIONS(1593), - [anon_sym_u8] = ACTIONS(1593), - [anon_sym_i8] = ACTIONS(1593), - [anon_sym_u16] = ACTIONS(1593), - [anon_sym_i16] = ACTIONS(1593), - [anon_sym_u32] = ACTIONS(1593), - [anon_sym_i32] = ACTIONS(1593), - [anon_sym_u64] = ACTIONS(1593), - [anon_sym_i64] = ACTIONS(1593), - [anon_sym_u128] = ACTIONS(1593), - [anon_sym_i128] = ACTIONS(1593), - [anon_sym_isize] = ACTIONS(1593), - [anon_sym_usize] = ACTIONS(1593), - [anon_sym_f32] = ACTIONS(1593), - [anon_sym_f64] = ACTIONS(1593), - [anon_sym_bool] = ACTIONS(1593), - [anon_sym_str] = ACTIONS(1593), - [anon_sym_char] = ACTIONS(1593), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1591), - [sym_self] = ACTIONS(1593), - [sym_super] = ACTIONS(1593), - [sym_crate] = ACTIONS(1593), - [sym_metavariable] = ACTIONS(1591), - [sym_grit_metavariable] = ACTIONS(1591), - [sym_raw_string_literal] = ACTIONS(1591), - [sym_float_literal] = ACTIONS(1591), + [ts_builtin_sym_end] = ACTIONS(1589), + [sym__primitive_identifier] = ACTIONS(1591), + [anon_sym_SEMI] = ACTIONS(1589), + [anon_sym_macro_rules_BANG] = ACTIONS(1589), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_LBRACE] = ACTIONS(1589), + [anon_sym_RBRACE] = ACTIONS(1589), + [anon_sym_LBRACK] = ACTIONS(1589), + [anon_sym_STAR] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_async] = ACTIONS(1591), + [anon_sym_break] = ACTIONS(1591), + [anon_sym_const] = ACTIONS(1591), + [anon_sym_continue] = ACTIONS(1591), + [anon_sym_default] = ACTIONS(1591), + [anon_sym_enum] = ACTIONS(1591), + [anon_sym_fn] = ACTIONS(1591), + [anon_sym_for] = ACTIONS(1591), + [anon_sym_if] = ACTIONS(1591), + [anon_sym_impl] = ACTIONS(1591), + [anon_sym_let] = ACTIONS(1591), + [anon_sym_loop] = ACTIONS(1591), + [anon_sym_match] = ACTIONS(1591), + [anon_sym_mod] = ACTIONS(1591), + [anon_sym_pub] = ACTIONS(1591), + [anon_sym_return] = ACTIONS(1591), + [anon_sym_static] = ACTIONS(1591), + [anon_sym_struct] = ACTIONS(1591), + [anon_sym_trait] = ACTIONS(1591), + [anon_sym_type] = ACTIONS(1591), + [anon_sym_union] = ACTIONS(1591), + [anon_sym_unsafe] = ACTIONS(1591), + [anon_sym_use] = ACTIONS(1591), + [anon_sym_while] = ACTIONS(1591), + [anon_sym_POUND] = ACTIONS(1589), + [anon_sym_BANG] = ACTIONS(1589), + [anon_sym_extern] = ACTIONS(1591), + [anon_sym_LT] = ACTIONS(1589), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_AMP] = ACTIONS(1589), + [anon_sym_DOT_DOT] = ACTIONS(1589), + [anon_sym_DASH] = ACTIONS(1589), + [anon_sym_PIPE] = ACTIONS(1589), + [anon_sym_yield] = ACTIONS(1591), + [anon_sym_move] = ACTIONS(1591), + [sym_integer_literal] = ACTIONS(1589), + [aux_sym_string_literal_token1] = ACTIONS(1589), + [sym_char_literal] = ACTIONS(1589), + [anon_sym_true] = ACTIONS(1591), + [anon_sym_false] = ACTIONS(1591), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(1589), + [sym_self] = ACTIONS(1591), + [sym_super] = ACTIONS(1591), + [sym_crate] = ACTIONS(1591), + [sym_metavariable] = ACTIONS(1589), + [sym_grit_metavariable] = ACTIONS(1589), + [sym_raw_string_literal] = ACTIONS(1589), + [sym_float_literal] = ACTIONS(1589), [sym_block_comment] = ACTIONS(3), }, [314] = { - [ts_builtin_sym_end] = ACTIONS(1595), - [sym__primitive_identifier] = ACTIONS(1597), - [anon_sym_SEMI] = ACTIONS(1595), - [anon_sym_macro_rules_BANG] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1595), - [anon_sym_LBRACE] = ACTIONS(1595), - [anon_sym_RBRACE] = ACTIONS(1595), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_STAR] = ACTIONS(1595), - [anon_sym_SQUOTE] = ACTIONS(1597), - [anon_sym_async] = ACTIONS(1597), - [anon_sym_break] = ACTIONS(1597), - [anon_sym_const] = ACTIONS(1597), - [anon_sym_continue] = ACTIONS(1597), - [anon_sym_default] = ACTIONS(1597), - [anon_sym_enum] = ACTIONS(1597), - [anon_sym_fn] = ACTIONS(1597), - [anon_sym_for] = ACTIONS(1597), - [anon_sym_if] = ACTIONS(1597), - [anon_sym_impl] = ACTIONS(1597), - [anon_sym_let] = ACTIONS(1597), - [anon_sym_loop] = ACTIONS(1597), - [anon_sym_match] = ACTIONS(1597), - [anon_sym_mod] = ACTIONS(1597), - [anon_sym_pub] = ACTIONS(1597), - [anon_sym_return] = ACTIONS(1597), - [anon_sym_static] = ACTIONS(1597), - [anon_sym_struct] = ACTIONS(1597), - [anon_sym_trait] = ACTIONS(1597), - [anon_sym_type] = ACTIONS(1597), - [anon_sym_union] = ACTIONS(1597), - [anon_sym_unsafe] = ACTIONS(1597), - [anon_sym_use] = ACTIONS(1597), - [anon_sym_while] = ACTIONS(1597), - [anon_sym_POUND] = ACTIONS(1595), - [anon_sym_BANG] = ACTIONS(1595), - [anon_sym_extern] = ACTIONS(1597), - [anon_sym_LT] = ACTIONS(1595), - [anon_sym_COLON_COLON] = ACTIONS(1595), - [anon_sym_AMP] = ACTIONS(1595), - [anon_sym_DOT_DOT] = ACTIONS(1595), - [anon_sym_DASH] = ACTIONS(1595), - [anon_sym_PIPE] = ACTIONS(1595), - [anon_sym_yield] = ACTIONS(1597), - [anon_sym_move] = ACTIONS(1597), - [sym_integer_literal] = ACTIONS(1595), - [aux_sym_string_literal_token1] = ACTIONS(1595), - [sym_char_literal] = ACTIONS(1595), - [anon_sym_true] = ACTIONS(1597), - [anon_sym_false] = ACTIONS(1597), - [anon_sym_u8] = ACTIONS(1597), - [anon_sym_i8] = ACTIONS(1597), - [anon_sym_u16] = ACTIONS(1597), - [anon_sym_i16] = ACTIONS(1597), - [anon_sym_u32] = ACTIONS(1597), - [anon_sym_i32] = ACTIONS(1597), - [anon_sym_u64] = ACTIONS(1597), - [anon_sym_i64] = ACTIONS(1597), - [anon_sym_u128] = ACTIONS(1597), - [anon_sym_i128] = ACTIONS(1597), - [anon_sym_isize] = ACTIONS(1597), - [anon_sym_usize] = ACTIONS(1597), - [anon_sym_f32] = ACTIONS(1597), - [anon_sym_f64] = ACTIONS(1597), - [anon_sym_bool] = ACTIONS(1597), - [anon_sym_str] = ACTIONS(1597), - [anon_sym_char] = ACTIONS(1597), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1595), - [sym_self] = ACTIONS(1597), - [sym_super] = ACTIONS(1597), - [sym_crate] = ACTIONS(1597), - [sym_metavariable] = ACTIONS(1595), - [sym_grit_metavariable] = ACTIONS(1595), - [sym_raw_string_literal] = ACTIONS(1595), - [sym_float_literal] = ACTIONS(1595), + [ts_builtin_sym_end] = ACTIONS(1593), + [sym__primitive_identifier] = ACTIONS(1595), + [anon_sym_SEMI] = ACTIONS(1593), + [anon_sym_macro_rules_BANG] = ACTIONS(1593), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACE] = ACTIONS(1593), + [anon_sym_RBRACE] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1593), + [anon_sym_STAR] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_async] = ACTIONS(1595), + [anon_sym_break] = ACTIONS(1595), + [anon_sym_const] = ACTIONS(1595), + [anon_sym_continue] = ACTIONS(1595), + [anon_sym_default] = ACTIONS(1595), + [anon_sym_enum] = ACTIONS(1595), + [anon_sym_fn] = ACTIONS(1595), + [anon_sym_for] = ACTIONS(1595), + [anon_sym_if] = ACTIONS(1595), + [anon_sym_impl] = ACTIONS(1595), + [anon_sym_let] = ACTIONS(1595), + [anon_sym_loop] = ACTIONS(1595), + [anon_sym_match] = ACTIONS(1595), + [anon_sym_mod] = ACTIONS(1595), + [anon_sym_pub] = ACTIONS(1595), + [anon_sym_return] = ACTIONS(1595), + [anon_sym_static] = ACTIONS(1595), + [anon_sym_struct] = ACTIONS(1595), + [anon_sym_trait] = ACTIONS(1595), + [anon_sym_type] = ACTIONS(1595), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1595), + [anon_sym_use] = ACTIONS(1595), + [anon_sym_while] = ACTIONS(1595), + [anon_sym_POUND] = ACTIONS(1593), + [anon_sym_BANG] = ACTIONS(1593), + [anon_sym_extern] = ACTIONS(1595), + [anon_sym_LT] = ACTIONS(1593), + [anon_sym_COLON_COLON] = ACTIONS(1593), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_DOT_DOT] = ACTIONS(1593), + [anon_sym_DASH] = ACTIONS(1593), + [anon_sym_PIPE] = ACTIONS(1593), + [anon_sym_yield] = ACTIONS(1595), + [anon_sym_move] = ACTIONS(1595), + [sym_integer_literal] = ACTIONS(1593), + [aux_sym_string_literal_token1] = ACTIONS(1593), + [sym_char_literal] = ACTIONS(1593), + [anon_sym_true] = ACTIONS(1595), + [anon_sym_false] = ACTIONS(1595), + [anon_sym_u8] = ACTIONS(1595), + [anon_sym_i8] = ACTIONS(1595), + [anon_sym_u16] = ACTIONS(1595), + [anon_sym_i16] = ACTIONS(1595), + [anon_sym_u32] = ACTIONS(1595), + [anon_sym_i32] = ACTIONS(1595), + [anon_sym_u64] = ACTIONS(1595), + [anon_sym_i64] = ACTIONS(1595), + [anon_sym_u128] = ACTIONS(1595), + [anon_sym_i128] = ACTIONS(1595), + [anon_sym_isize] = ACTIONS(1595), + [anon_sym_usize] = ACTIONS(1595), + [anon_sym_f32] = ACTIONS(1595), + [anon_sym_f64] = ACTIONS(1595), + [anon_sym_bool] = ACTIONS(1595), + [anon_sym_str] = ACTIONS(1595), + [anon_sym_char] = ACTIONS(1595), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(1593), + [sym_self] = ACTIONS(1595), + [sym_super] = ACTIONS(1595), + [sym_crate] = ACTIONS(1595), + [sym_metavariable] = ACTIONS(1593), + [sym_grit_metavariable] = ACTIONS(1593), + [sym_raw_string_literal] = ACTIONS(1593), + [sym_float_literal] = ACTIONS(1593), [sym_block_comment] = ACTIONS(3), }, [315] = { - [ts_builtin_sym_end] = ACTIONS(1599), - [sym__primitive_identifier] = ACTIONS(1601), - [anon_sym_SEMI] = ACTIONS(1599), - [anon_sym_macro_rules_BANG] = ACTIONS(1599), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(1599), - [anon_sym_RBRACE] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1599), - [anon_sym_SQUOTE] = ACTIONS(1601), - [anon_sym_async] = ACTIONS(1601), - [anon_sym_break] = ACTIONS(1601), - [anon_sym_const] = ACTIONS(1601), - [anon_sym_continue] = ACTIONS(1601), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_enum] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1601), - [anon_sym_for] = ACTIONS(1601), - [anon_sym_if] = ACTIONS(1601), - [anon_sym_impl] = ACTIONS(1601), - [anon_sym_let] = ACTIONS(1601), - [anon_sym_loop] = ACTIONS(1601), - [anon_sym_match] = ACTIONS(1601), - [anon_sym_mod] = ACTIONS(1601), - [anon_sym_pub] = ACTIONS(1601), - [anon_sym_return] = ACTIONS(1601), - [anon_sym_static] = ACTIONS(1601), - [anon_sym_struct] = ACTIONS(1601), - [anon_sym_trait] = ACTIONS(1601), - [anon_sym_type] = ACTIONS(1601), - [anon_sym_union] = ACTIONS(1601), - [anon_sym_unsafe] = ACTIONS(1601), - [anon_sym_use] = ACTIONS(1601), - [anon_sym_while] = ACTIONS(1601), - [anon_sym_POUND] = ACTIONS(1599), - [anon_sym_BANG] = ACTIONS(1599), - [anon_sym_extern] = ACTIONS(1601), - [anon_sym_LT] = ACTIONS(1599), - [anon_sym_COLON_COLON] = ACTIONS(1599), - [anon_sym_AMP] = ACTIONS(1599), - [anon_sym_DOT_DOT] = ACTIONS(1599), - [anon_sym_DASH] = ACTIONS(1599), - [anon_sym_PIPE] = ACTIONS(1599), - [anon_sym_yield] = ACTIONS(1601), - [anon_sym_move] = ACTIONS(1601), - [sym_integer_literal] = ACTIONS(1599), - [aux_sym_string_literal_token1] = ACTIONS(1599), - [sym_char_literal] = ACTIONS(1599), - [anon_sym_true] = ACTIONS(1601), - [anon_sym_false] = ACTIONS(1601), - [anon_sym_u8] = ACTIONS(1601), - [anon_sym_i8] = ACTIONS(1601), - [anon_sym_u16] = ACTIONS(1601), - [anon_sym_i16] = ACTIONS(1601), - [anon_sym_u32] = ACTIONS(1601), - [anon_sym_i32] = ACTIONS(1601), - [anon_sym_u64] = ACTIONS(1601), - [anon_sym_i64] = ACTIONS(1601), - [anon_sym_u128] = ACTIONS(1601), - [anon_sym_i128] = ACTIONS(1601), - [anon_sym_isize] = ACTIONS(1601), - [anon_sym_usize] = ACTIONS(1601), - [anon_sym_f32] = ACTIONS(1601), - [anon_sym_f64] = ACTIONS(1601), - [anon_sym_bool] = ACTIONS(1601), - [anon_sym_str] = ACTIONS(1601), - [anon_sym_char] = ACTIONS(1601), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1599), - [sym_self] = ACTIONS(1601), - [sym_super] = ACTIONS(1601), - [sym_crate] = ACTIONS(1601), - [sym_metavariable] = ACTIONS(1599), - [sym_grit_metavariable] = ACTIONS(1599), - [sym_raw_string_literal] = ACTIONS(1599), - [sym_float_literal] = ACTIONS(1599), + [ts_builtin_sym_end] = ACTIONS(1597), + [sym__primitive_identifier] = ACTIONS(1599), + [anon_sym_SEMI] = ACTIONS(1597), + [anon_sym_macro_rules_BANG] = ACTIONS(1597), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(1597), + [anon_sym_RBRACE] = ACTIONS(1597), + [anon_sym_LBRACK] = ACTIONS(1597), + [anon_sym_STAR] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(1599), + [anon_sym_async] = ACTIONS(1599), + [anon_sym_break] = ACTIONS(1599), + [anon_sym_const] = ACTIONS(1599), + [anon_sym_continue] = ACTIONS(1599), + [anon_sym_default] = ACTIONS(1599), + [anon_sym_enum] = ACTIONS(1599), + [anon_sym_fn] = ACTIONS(1599), + [anon_sym_for] = ACTIONS(1599), + [anon_sym_if] = ACTIONS(1599), + [anon_sym_impl] = ACTIONS(1599), + [anon_sym_let] = ACTIONS(1599), + [anon_sym_loop] = ACTIONS(1599), + [anon_sym_match] = ACTIONS(1599), + [anon_sym_mod] = ACTIONS(1599), + [anon_sym_pub] = ACTIONS(1599), + [anon_sym_return] = ACTIONS(1599), + [anon_sym_static] = ACTIONS(1599), + [anon_sym_struct] = ACTIONS(1599), + [anon_sym_trait] = ACTIONS(1599), + [anon_sym_type] = ACTIONS(1599), + [anon_sym_union] = ACTIONS(1599), + [anon_sym_unsafe] = ACTIONS(1599), + [anon_sym_use] = ACTIONS(1599), + [anon_sym_while] = ACTIONS(1599), + [anon_sym_POUND] = ACTIONS(1597), + [anon_sym_BANG] = ACTIONS(1597), + [anon_sym_extern] = ACTIONS(1599), + [anon_sym_LT] = ACTIONS(1597), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_AMP] = ACTIONS(1597), + [anon_sym_DOT_DOT] = ACTIONS(1597), + [anon_sym_DASH] = ACTIONS(1597), + [anon_sym_PIPE] = ACTIONS(1597), + [anon_sym_yield] = ACTIONS(1599), + [anon_sym_move] = ACTIONS(1599), + [sym_integer_literal] = ACTIONS(1597), + [aux_sym_string_literal_token1] = ACTIONS(1597), + [sym_char_literal] = ACTIONS(1597), + [anon_sym_true] = ACTIONS(1599), + [anon_sym_false] = ACTIONS(1599), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(1597), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1597), + [sym_grit_metavariable] = ACTIONS(1597), + [sym_raw_string_literal] = ACTIONS(1597), + [sym_float_literal] = ACTIONS(1597), [sym_block_comment] = ACTIONS(3), }, [316] = { - [ts_builtin_sym_end] = ACTIONS(1603), - [sym__primitive_identifier] = ACTIONS(1605), - [anon_sym_SEMI] = ACTIONS(1603), - [anon_sym_macro_rules_BANG] = ACTIONS(1603), - [anon_sym_LPAREN] = ACTIONS(1603), - [anon_sym_LBRACE] = ACTIONS(1603), - [anon_sym_RBRACE] = ACTIONS(1603), - [anon_sym_LBRACK] = ACTIONS(1603), - [anon_sym_STAR] = ACTIONS(1603), - [anon_sym_SQUOTE] = ACTIONS(1605), - [anon_sym_async] = ACTIONS(1605), - [anon_sym_break] = ACTIONS(1605), - [anon_sym_const] = ACTIONS(1605), - [anon_sym_continue] = ACTIONS(1605), - [anon_sym_default] = ACTIONS(1605), - [anon_sym_enum] = ACTIONS(1605), - [anon_sym_fn] = ACTIONS(1605), - [anon_sym_for] = ACTIONS(1605), - [anon_sym_if] = ACTIONS(1605), - [anon_sym_impl] = ACTIONS(1605), - [anon_sym_let] = ACTIONS(1605), - [anon_sym_loop] = ACTIONS(1605), - [anon_sym_match] = ACTIONS(1605), - [anon_sym_mod] = ACTIONS(1605), - [anon_sym_pub] = ACTIONS(1605), - [anon_sym_return] = ACTIONS(1605), - [anon_sym_static] = ACTIONS(1605), - [anon_sym_struct] = ACTIONS(1605), - [anon_sym_trait] = ACTIONS(1605), - [anon_sym_type] = ACTIONS(1605), - [anon_sym_union] = ACTIONS(1605), - [anon_sym_unsafe] = ACTIONS(1605), - [anon_sym_use] = ACTIONS(1605), - [anon_sym_while] = ACTIONS(1605), - [anon_sym_POUND] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1603), - [anon_sym_extern] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(1603), - [anon_sym_COLON_COLON] = ACTIONS(1603), - [anon_sym_AMP] = ACTIONS(1603), - [anon_sym_DOT_DOT] = ACTIONS(1603), - [anon_sym_DASH] = ACTIONS(1603), - [anon_sym_PIPE] = ACTIONS(1603), - [anon_sym_yield] = ACTIONS(1605), - [anon_sym_move] = ACTIONS(1605), - [sym_integer_literal] = ACTIONS(1603), - [aux_sym_string_literal_token1] = ACTIONS(1603), - [sym_char_literal] = ACTIONS(1603), - [anon_sym_true] = ACTIONS(1605), - [anon_sym_false] = ACTIONS(1605), - [anon_sym_u8] = ACTIONS(1605), - [anon_sym_i8] = ACTIONS(1605), - [anon_sym_u16] = ACTIONS(1605), - [anon_sym_i16] = ACTIONS(1605), - [anon_sym_u32] = ACTIONS(1605), - [anon_sym_i32] = ACTIONS(1605), - [anon_sym_u64] = ACTIONS(1605), - [anon_sym_i64] = ACTIONS(1605), - [anon_sym_u128] = ACTIONS(1605), - [anon_sym_i128] = ACTIONS(1605), - [anon_sym_isize] = ACTIONS(1605), - [anon_sym_usize] = ACTIONS(1605), - [anon_sym_f32] = ACTIONS(1605), - [anon_sym_f64] = ACTIONS(1605), - [anon_sym_bool] = ACTIONS(1605), - [anon_sym_str] = ACTIONS(1605), - [anon_sym_char] = ACTIONS(1605), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1603), - [sym_self] = ACTIONS(1605), - [sym_super] = ACTIONS(1605), - [sym_crate] = ACTIONS(1605), - [sym_metavariable] = ACTIONS(1603), - [sym_grit_metavariable] = ACTIONS(1603), - [sym_raw_string_literal] = ACTIONS(1603), - [sym_float_literal] = ACTIONS(1603), + [ts_builtin_sym_end] = ACTIONS(1601), + [sym__primitive_identifier] = ACTIONS(1603), + [anon_sym_SEMI] = ACTIONS(1601), + [anon_sym_macro_rules_BANG] = ACTIONS(1601), + [anon_sym_LPAREN] = ACTIONS(1601), + [anon_sym_LBRACE] = ACTIONS(1601), + [anon_sym_RBRACE] = ACTIONS(1601), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1601), + [anon_sym_SQUOTE] = ACTIONS(1603), + [anon_sym_async] = ACTIONS(1603), + [anon_sym_break] = ACTIONS(1603), + [anon_sym_const] = ACTIONS(1603), + [anon_sym_continue] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1603), + [anon_sym_enum] = ACTIONS(1603), + [anon_sym_fn] = ACTIONS(1603), + [anon_sym_for] = ACTIONS(1603), + [anon_sym_if] = ACTIONS(1603), + [anon_sym_impl] = ACTIONS(1603), + [anon_sym_let] = ACTIONS(1603), + [anon_sym_loop] = ACTIONS(1603), + [anon_sym_match] = ACTIONS(1603), + [anon_sym_mod] = ACTIONS(1603), + [anon_sym_pub] = ACTIONS(1603), + [anon_sym_return] = ACTIONS(1603), + [anon_sym_static] = ACTIONS(1603), + [anon_sym_struct] = ACTIONS(1603), + [anon_sym_trait] = ACTIONS(1603), + [anon_sym_type] = ACTIONS(1603), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1603), + [anon_sym_use] = ACTIONS(1603), + [anon_sym_while] = ACTIONS(1603), + [anon_sym_POUND] = ACTIONS(1601), + [anon_sym_BANG] = ACTIONS(1601), + [anon_sym_extern] = ACTIONS(1603), + [anon_sym_LT] = ACTIONS(1601), + [anon_sym_COLON_COLON] = ACTIONS(1601), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_DOT_DOT] = ACTIONS(1601), + [anon_sym_DASH] = ACTIONS(1601), + [anon_sym_PIPE] = ACTIONS(1601), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_move] = ACTIONS(1603), + [sym_integer_literal] = ACTIONS(1601), + [aux_sym_string_literal_token1] = ACTIONS(1601), + [sym_char_literal] = ACTIONS(1601), + [anon_sym_true] = ACTIONS(1603), + [anon_sym_false] = ACTIONS(1603), + [anon_sym_u8] = ACTIONS(1603), + [anon_sym_i8] = ACTIONS(1603), + [anon_sym_u16] = ACTIONS(1603), + [anon_sym_i16] = ACTIONS(1603), + [anon_sym_u32] = ACTIONS(1603), + [anon_sym_i32] = ACTIONS(1603), + [anon_sym_u64] = ACTIONS(1603), + [anon_sym_i64] = ACTIONS(1603), + [anon_sym_u128] = ACTIONS(1603), + [anon_sym_i128] = ACTIONS(1603), + [anon_sym_isize] = ACTIONS(1603), + [anon_sym_usize] = ACTIONS(1603), + [anon_sym_f32] = ACTIONS(1603), + [anon_sym_f64] = ACTIONS(1603), + [anon_sym_bool] = ACTIONS(1603), + [anon_sym_str] = ACTIONS(1603), + [anon_sym_char] = ACTIONS(1603), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(1601), + [sym_self] = ACTIONS(1603), + [sym_super] = ACTIONS(1603), + [sym_crate] = ACTIONS(1603), + [sym_metavariable] = ACTIONS(1601), + [sym_grit_metavariable] = ACTIONS(1601), + [sym_raw_string_literal] = ACTIONS(1601), + [sym_float_literal] = ACTIONS(1601), [sym_block_comment] = ACTIONS(3), }, [317] = { - [ts_builtin_sym_end] = ACTIONS(1607), - [sym__primitive_identifier] = ACTIONS(1609), - [anon_sym_SEMI] = ACTIONS(1607), - [anon_sym_macro_rules_BANG] = ACTIONS(1607), - [anon_sym_LPAREN] = ACTIONS(1607), - [anon_sym_LBRACE] = ACTIONS(1607), - [anon_sym_RBRACE] = ACTIONS(1607), - [anon_sym_LBRACK] = ACTIONS(1607), - [anon_sym_STAR] = ACTIONS(1607), - [anon_sym_SQUOTE] = ACTIONS(1609), - [anon_sym_async] = ACTIONS(1609), - [anon_sym_break] = ACTIONS(1609), - [anon_sym_const] = ACTIONS(1609), - [anon_sym_continue] = ACTIONS(1609), - [anon_sym_default] = ACTIONS(1609), - [anon_sym_enum] = ACTIONS(1609), - [anon_sym_fn] = ACTIONS(1609), - [anon_sym_for] = ACTIONS(1609), - [anon_sym_if] = ACTIONS(1609), - [anon_sym_impl] = ACTIONS(1609), - [anon_sym_let] = ACTIONS(1609), - [anon_sym_loop] = ACTIONS(1609), - [anon_sym_match] = ACTIONS(1609), - [anon_sym_mod] = ACTIONS(1609), - [anon_sym_pub] = ACTIONS(1609), - [anon_sym_return] = ACTIONS(1609), - [anon_sym_static] = ACTIONS(1609), - [anon_sym_struct] = ACTIONS(1609), - [anon_sym_trait] = ACTIONS(1609), - [anon_sym_type] = ACTIONS(1609), - [anon_sym_union] = ACTIONS(1609), - [anon_sym_unsafe] = ACTIONS(1609), - [anon_sym_use] = ACTIONS(1609), - [anon_sym_while] = ACTIONS(1609), - [anon_sym_POUND] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1607), - [anon_sym_extern] = ACTIONS(1609), - [anon_sym_LT] = ACTIONS(1607), - [anon_sym_COLON_COLON] = ACTIONS(1607), - [anon_sym_AMP] = ACTIONS(1607), - [anon_sym_DOT_DOT] = ACTIONS(1607), - [anon_sym_DASH] = ACTIONS(1607), - [anon_sym_PIPE] = ACTIONS(1607), - [anon_sym_yield] = ACTIONS(1609), - [anon_sym_move] = ACTIONS(1609), - [sym_integer_literal] = ACTIONS(1607), - [aux_sym_string_literal_token1] = ACTIONS(1607), - [sym_char_literal] = ACTIONS(1607), - [anon_sym_true] = ACTIONS(1609), - [anon_sym_false] = ACTIONS(1609), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1607), - [sym_self] = ACTIONS(1609), - [sym_super] = ACTIONS(1609), - [sym_crate] = ACTIONS(1609), - [sym_metavariable] = ACTIONS(1607), - [sym_grit_metavariable] = ACTIONS(1607), - [sym_raw_string_literal] = ACTIONS(1607), - [sym_float_literal] = ACTIONS(1607), + [ts_builtin_sym_end] = ACTIONS(1605), + [sym__primitive_identifier] = ACTIONS(1607), + [anon_sym_SEMI] = ACTIONS(1605), + [anon_sym_macro_rules_BANG] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(1605), + [anon_sym_LBRACE] = ACTIONS(1605), + [anon_sym_RBRACE] = ACTIONS(1605), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_SQUOTE] = ACTIONS(1607), + [anon_sym_async] = ACTIONS(1607), + [anon_sym_break] = ACTIONS(1607), + [anon_sym_const] = ACTIONS(1607), + [anon_sym_continue] = ACTIONS(1607), + [anon_sym_default] = ACTIONS(1607), + [anon_sym_enum] = ACTIONS(1607), + [anon_sym_fn] = ACTIONS(1607), + [anon_sym_for] = ACTIONS(1607), + [anon_sym_if] = ACTIONS(1607), + [anon_sym_impl] = ACTIONS(1607), + [anon_sym_let] = ACTIONS(1607), + [anon_sym_loop] = ACTIONS(1607), + [anon_sym_match] = ACTIONS(1607), + [anon_sym_mod] = ACTIONS(1607), + [anon_sym_pub] = ACTIONS(1607), + [anon_sym_return] = ACTIONS(1607), + [anon_sym_static] = ACTIONS(1607), + [anon_sym_struct] = ACTIONS(1607), + [anon_sym_trait] = ACTIONS(1607), + [anon_sym_type] = ACTIONS(1607), + [anon_sym_union] = ACTIONS(1607), + [anon_sym_unsafe] = ACTIONS(1607), + [anon_sym_use] = ACTIONS(1607), + [anon_sym_while] = ACTIONS(1607), + [anon_sym_POUND] = ACTIONS(1605), + [anon_sym_BANG] = ACTIONS(1605), + [anon_sym_extern] = ACTIONS(1607), + [anon_sym_LT] = ACTIONS(1605), + [anon_sym_COLON_COLON] = ACTIONS(1605), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_DOT_DOT] = ACTIONS(1605), + [anon_sym_DASH] = ACTIONS(1605), + [anon_sym_PIPE] = ACTIONS(1605), + [anon_sym_yield] = ACTIONS(1607), + [anon_sym_move] = ACTIONS(1607), + [sym_integer_literal] = ACTIONS(1605), + [aux_sym_string_literal_token1] = ACTIONS(1605), + [sym_char_literal] = ACTIONS(1605), + [anon_sym_true] = ACTIONS(1607), + [anon_sym_false] = ACTIONS(1607), + [anon_sym_u8] = ACTIONS(1607), + [anon_sym_i8] = ACTIONS(1607), + [anon_sym_u16] = ACTIONS(1607), + [anon_sym_i16] = ACTIONS(1607), + [anon_sym_u32] = ACTIONS(1607), + [anon_sym_i32] = ACTIONS(1607), + [anon_sym_u64] = ACTIONS(1607), + [anon_sym_i64] = ACTIONS(1607), + [anon_sym_u128] = ACTIONS(1607), + [anon_sym_i128] = ACTIONS(1607), + [anon_sym_isize] = ACTIONS(1607), + [anon_sym_usize] = ACTIONS(1607), + [anon_sym_f32] = ACTIONS(1607), + [anon_sym_f64] = ACTIONS(1607), + [anon_sym_bool] = ACTIONS(1607), + [anon_sym_str] = ACTIONS(1607), + [anon_sym_char] = ACTIONS(1607), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(1605), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1605), + [sym_grit_metavariable] = ACTIONS(1605), + [sym_raw_string_literal] = ACTIONS(1605), + [sym_float_literal] = ACTIONS(1605), [sym_block_comment] = ACTIONS(3), }, [318] = { - [ts_builtin_sym_end] = ACTIONS(1611), - [sym__primitive_identifier] = ACTIONS(1613), - [anon_sym_SEMI] = ACTIONS(1611), - [anon_sym_macro_rules_BANG] = ACTIONS(1611), - [anon_sym_LPAREN] = ACTIONS(1611), - [anon_sym_LBRACE] = ACTIONS(1611), - [anon_sym_RBRACE] = ACTIONS(1611), - [anon_sym_LBRACK] = ACTIONS(1611), - [anon_sym_STAR] = ACTIONS(1611), - [anon_sym_SQUOTE] = ACTIONS(1613), - [anon_sym_async] = ACTIONS(1613), - [anon_sym_break] = ACTIONS(1613), - [anon_sym_const] = ACTIONS(1613), - [anon_sym_continue] = ACTIONS(1613), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_enum] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1613), - [anon_sym_for] = ACTIONS(1613), - [anon_sym_if] = ACTIONS(1613), - [anon_sym_impl] = ACTIONS(1613), - [anon_sym_let] = ACTIONS(1613), - [anon_sym_loop] = ACTIONS(1613), - [anon_sym_match] = ACTIONS(1613), - [anon_sym_mod] = ACTIONS(1613), - [anon_sym_pub] = ACTIONS(1613), - [anon_sym_return] = ACTIONS(1613), - [anon_sym_static] = ACTIONS(1613), - [anon_sym_struct] = ACTIONS(1613), - [anon_sym_trait] = ACTIONS(1613), - [anon_sym_type] = ACTIONS(1613), - [anon_sym_union] = ACTIONS(1613), - [anon_sym_unsafe] = ACTIONS(1613), - [anon_sym_use] = ACTIONS(1613), - [anon_sym_while] = ACTIONS(1613), - [anon_sym_POUND] = ACTIONS(1611), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_extern] = ACTIONS(1613), - [anon_sym_LT] = ACTIONS(1611), - [anon_sym_COLON_COLON] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_DOT_DOT] = ACTIONS(1611), - [anon_sym_DASH] = ACTIONS(1611), - [anon_sym_PIPE] = ACTIONS(1611), - [anon_sym_yield] = ACTIONS(1613), - [anon_sym_move] = ACTIONS(1613), - [sym_integer_literal] = ACTIONS(1611), - [aux_sym_string_literal_token1] = ACTIONS(1611), - [sym_char_literal] = ACTIONS(1611), - [anon_sym_true] = ACTIONS(1613), - [anon_sym_false] = ACTIONS(1613), - [anon_sym_u8] = ACTIONS(1613), - [anon_sym_i8] = ACTIONS(1613), - [anon_sym_u16] = ACTIONS(1613), - [anon_sym_i16] = ACTIONS(1613), - [anon_sym_u32] = ACTIONS(1613), - [anon_sym_i32] = ACTIONS(1613), - [anon_sym_u64] = ACTIONS(1613), - [anon_sym_i64] = ACTIONS(1613), - [anon_sym_u128] = ACTIONS(1613), - [anon_sym_i128] = ACTIONS(1613), - [anon_sym_isize] = ACTIONS(1613), - [anon_sym_usize] = ACTIONS(1613), - [anon_sym_f32] = ACTIONS(1613), - [anon_sym_f64] = ACTIONS(1613), - [anon_sym_bool] = ACTIONS(1613), - [anon_sym_str] = ACTIONS(1613), - [anon_sym_char] = ACTIONS(1613), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1611), - [sym_self] = ACTIONS(1613), - [sym_super] = ACTIONS(1613), - [sym_crate] = ACTIONS(1613), - [sym_metavariable] = ACTIONS(1611), - [sym_grit_metavariable] = ACTIONS(1611), - [sym_raw_string_literal] = ACTIONS(1611), - [sym_float_literal] = ACTIONS(1611), + [ts_builtin_sym_end] = ACTIONS(1609), + [sym__primitive_identifier] = ACTIONS(1611), + [anon_sym_SEMI] = ACTIONS(1609), + [anon_sym_macro_rules_BANG] = ACTIONS(1609), + [anon_sym_LPAREN] = ACTIONS(1609), + [anon_sym_LBRACE] = ACTIONS(1609), + [anon_sym_RBRACE] = ACTIONS(1609), + [anon_sym_LBRACK] = ACTIONS(1609), + [anon_sym_STAR] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(1611), + [anon_sym_async] = ACTIONS(1611), + [anon_sym_break] = ACTIONS(1611), + [anon_sym_const] = ACTIONS(1611), + [anon_sym_continue] = ACTIONS(1611), + [anon_sym_default] = ACTIONS(1611), + [anon_sym_enum] = ACTIONS(1611), + [anon_sym_fn] = ACTIONS(1611), + [anon_sym_for] = ACTIONS(1611), + [anon_sym_if] = ACTIONS(1611), + [anon_sym_impl] = ACTIONS(1611), + [anon_sym_let] = ACTIONS(1611), + [anon_sym_loop] = ACTIONS(1611), + [anon_sym_match] = ACTIONS(1611), + [anon_sym_mod] = ACTIONS(1611), + [anon_sym_pub] = ACTIONS(1611), + [anon_sym_return] = ACTIONS(1611), + [anon_sym_static] = ACTIONS(1611), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_trait] = ACTIONS(1611), + [anon_sym_type] = ACTIONS(1611), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1611), + [anon_sym_use] = ACTIONS(1611), + [anon_sym_while] = ACTIONS(1611), + [anon_sym_POUND] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1609), + [anon_sym_extern] = ACTIONS(1611), + [anon_sym_LT] = ACTIONS(1609), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_AMP] = ACTIONS(1609), + [anon_sym_DOT_DOT] = ACTIONS(1609), + [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_PIPE] = ACTIONS(1609), + [anon_sym_yield] = ACTIONS(1611), + [anon_sym_move] = ACTIONS(1611), + [sym_integer_literal] = ACTIONS(1609), + [aux_sym_string_literal_token1] = ACTIONS(1609), + [sym_char_literal] = ACTIONS(1609), + [anon_sym_true] = ACTIONS(1611), + [anon_sym_false] = ACTIONS(1611), + [anon_sym_u8] = ACTIONS(1611), + [anon_sym_i8] = ACTIONS(1611), + [anon_sym_u16] = ACTIONS(1611), + [anon_sym_i16] = ACTIONS(1611), + [anon_sym_u32] = ACTIONS(1611), + [anon_sym_i32] = ACTIONS(1611), + [anon_sym_u64] = ACTIONS(1611), + [anon_sym_i64] = ACTIONS(1611), + [anon_sym_u128] = ACTIONS(1611), + [anon_sym_i128] = ACTIONS(1611), + [anon_sym_isize] = ACTIONS(1611), + [anon_sym_usize] = ACTIONS(1611), + [anon_sym_f32] = ACTIONS(1611), + [anon_sym_f64] = ACTIONS(1611), + [anon_sym_bool] = ACTIONS(1611), + [anon_sym_str] = ACTIONS(1611), + [anon_sym_char] = ACTIONS(1611), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(1609), + [sym_self] = ACTIONS(1611), + [sym_super] = ACTIONS(1611), + [sym_crate] = ACTIONS(1611), + [sym_metavariable] = ACTIONS(1609), + [sym_grit_metavariable] = ACTIONS(1609), + [sym_raw_string_literal] = ACTIONS(1609), + [sym_float_literal] = ACTIONS(1609), [sym_block_comment] = ACTIONS(3), }, [319] = { - [ts_builtin_sym_end] = ACTIONS(1615), - [sym__primitive_identifier] = ACTIONS(1617), - [anon_sym_SEMI] = ACTIONS(1615), - [anon_sym_macro_rules_BANG] = ACTIONS(1615), - [anon_sym_LPAREN] = ACTIONS(1615), - [anon_sym_LBRACE] = ACTIONS(1615), - [anon_sym_RBRACE] = ACTIONS(1615), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(1617), - [anon_sym_async] = ACTIONS(1617), - [anon_sym_break] = ACTIONS(1617), - [anon_sym_const] = ACTIONS(1617), - [anon_sym_continue] = ACTIONS(1617), - [anon_sym_default] = ACTIONS(1617), - [anon_sym_enum] = ACTIONS(1617), - [anon_sym_fn] = ACTIONS(1617), - [anon_sym_for] = ACTIONS(1617), - [anon_sym_if] = ACTIONS(1617), - [anon_sym_impl] = ACTIONS(1617), - [anon_sym_let] = ACTIONS(1617), - [anon_sym_loop] = ACTIONS(1617), - [anon_sym_match] = ACTIONS(1617), - [anon_sym_mod] = ACTIONS(1617), - [anon_sym_pub] = ACTIONS(1617), - [anon_sym_return] = ACTIONS(1617), - [anon_sym_static] = ACTIONS(1617), - [anon_sym_struct] = ACTIONS(1617), - [anon_sym_trait] = ACTIONS(1617), - [anon_sym_type] = ACTIONS(1617), - [anon_sym_union] = ACTIONS(1617), - [anon_sym_unsafe] = ACTIONS(1617), - [anon_sym_use] = ACTIONS(1617), - [anon_sym_while] = ACTIONS(1617), - [anon_sym_POUND] = ACTIONS(1615), - [anon_sym_BANG] = ACTIONS(1615), - [anon_sym_extern] = ACTIONS(1617), - [anon_sym_LT] = ACTIONS(1615), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_AMP] = ACTIONS(1615), - [anon_sym_DOT_DOT] = ACTIONS(1615), - [anon_sym_DASH] = ACTIONS(1615), - [anon_sym_PIPE] = ACTIONS(1615), - [anon_sym_yield] = ACTIONS(1617), - [anon_sym_move] = ACTIONS(1617), - [sym_integer_literal] = ACTIONS(1615), - [aux_sym_string_literal_token1] = ACTIONS(1615), - [sym_char_literal] = ACTIONS(1615), - [anon_sym_true] = ACTIONS(1617), - [anon_sym_false] = ACTIONS(1617), - [anon_sym_u8] = ACTIONS(1617), - [anon_sym_i8] = ACTIONS(1617), - [anon_sym_u16] = ACTIONS(1617), - [anon_sym_i16] = ACTIONS(1617), - [anon_sym_u32] = ACTIONS(1617), - [anon_sym_i32] = ACTIONS(1617), - [anon_sym_u64] = ACTIONS(1617), - [anon_sym_i64] = ACTIONS(1617), - [anon_sym_u128] = ACTIONS(1617), - [anon_sym_i128] = ACTIONS(1617), - [anon_sym_isize] = ACTIONS(1617), - [anon_sym_usize] = ACTIONS(1617), - [anon_sym_f32] = ACTIONS(1617), - [anon_sym_f64] = ACTIONS(1617), - [anon_sym_bool] = ACTIONS(1617), - [anon_sym_str] = ACTIONS(1617), - [anon_sym_char] = ACTIONS(1617), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1615), - [sym_self] = ACTIONS(1617), - [sym_super] = ACTIONS(1617), - [sym_crate] = ACTIONS(1617), - [sym_metavariable] = ACTIONS(1615), - [sym_grit_metavariable] = ACTIONS(1615), - [sym_raw_string_literal] = ACTIONS(1615), - [sym_float_literal] = ACTIONS(1615), + [ts_builtin_sym_end] = ACTIONS(1613), + [sym__primitive_identifier] = ACTIONS(1615), + [anon_sym_SEMI] = ACTIONS(1613), + [anon_sym_macro_rules_BANG] = ACTIONS(1613), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACE] = ACTIONS(1613), + [anon_sym_RBRACE] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1613), + [anon_sym_STAR] = ACTIONS(1613), + [anon_sym_SQUOTE] = ACTIONS(1615), + [anon_sym_async] = ACTIONS(1615), + [anon_sym_break] = ACTIONS(1615), + [anon_sym_const] = ACTIONS(1615), + [anon_sym_continue] = ACTIONS(1615), + [anon_sym_default] = ACTIONS(1615), + [anon_sym_enum] = ACTIONS(1615), + [anon_sym_fn] = ACTIONS(1615), + [anon_sym_for] = ACTIONS(1615), + [anon_sym_if] = ACTIONS(1615), + [anon_sym_impl] = ACTIONS(1615), + [anon_sym_let] = ACTIONS(1615), + [anon_sym_loop] = ACTIONS(1615), + [anon_sym_match] = ACTIONS(1615), + [anon_sym_mod] = ACTIONS(1615), + [anon_sym_pub] = ACTIONS(1615), + [anon_sym_return] = ACTIONS(1615), + [anon_sym_static] = ACTIONS(1615), + [anon_sym_struct] = ACTIONS(1615), + [anon_sym_trait] = ACTIONS(1615), + [anon_sym_type] = ACTIONS(1615), + [anon_sym_union] = ACTIONS(1615), + [anon_sym_unsafe] = ACTIONS(1615), + [anon_sym_use] = ACTIONS(1615), + [anon_sym_while] = ACTIONS(1615), + [anon_sym_POUND] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1613), + [anon_sym_extern] = ACTIONS(1615), + [anon_sym_LT] = ACTIONS(1613), + [anon_sym_COLON_COLON] = ACTIONS(1613), + [anon_sym_AMP] = ACTIONS(1613), + [anon_sym_DOT_DOT] = ACTIONS(1613), + [anon_sym_DASH] = ACTIONS(1613), + [anon_sym_PIPE] = ACTIONS(1613), + [anon_sym_yield] = ACTIONS(1615), + [anon_sym_move] = ACTIONS(1615), + [sym_integer_literal] = ACTIONS(1613), + [aux_sym_string_literal_token1] = ACTIONS(1613), + [sym_char_literal] = ACTIONS(1613), + [anon_sym_true] = ACTIONS(1615), + [anon_sym_false] = ACTIONS(1615), + [anon_sym_u8] = ACTIONS(1615), + [anon_sym_i8] = ACTIONS(1615), + [anon_sym_u16] = ACTIONS(1615), + [anon_sym_i16] = ACTIONS(1615), + [anon_sym_u32] = ACTIONS(1615), + [anon_sym_i32] = ACTIONS(1615), + [anon_sym_u64] = ACTIONS(1615), + [anon_sym_i64] = ACTIONS(1615), + [anon_sym_u128] = ACTIONS(1615), + [anon_sym_i128] = ACTIONS(1615), + [anon_sym_isize] = ACTIONS(1615), + [anon_sym_usize] = ACTIONS(1615), + [anon_sym_f32] = ACTIONS(1615), + [anon_sym_f64] = ACTIONS(1615), + [anon_sym_bool] = ACTIONS(1615), + [anon_sym_str] = ACTIONS(1615), + [anon_sym_char] = ACTIONS(1615), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(1613), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1613), + [sym_grit_metavariable] = ACTIONS(1613), + [sym_raw_string_literal] = ACTIONS(1613), + [sym_float_literal] = ACTIONS(1613), [sym_block_comment] = ACTIONS(3), }, [320] = { - [ts_builtin_sym_end] = ACTIONS(1619), - [sym__primitive_identifier] = ACTIONS(1621), - [anon_sym_SEMI] = ACTIONS(1619), - [anon_sym_macro_rules_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(1619), - [anon_sym_LBRACE] = ACTIONS(1619), - [anon_sym_RBRACE] = ACTIONS(1619), - [anon_sym_LBRACK] = ACTIONS(1619), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_SQUOTE] = ACTIONS(1621), - [anon_sym_async] = ACTIONS(1621), - [anon_sym_break] = ACTIONS(1621), - [anon_sym_const] = ACTIONS(1621), - [anon_sym_continue] = ACTIONS(1621), - [anon_sym_default] = ACTIONS(1621), - [anon_sym_enum] = ACTIONS(1621), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1621), - [anon_sym_if] = ACTIONS(1621), - [anon_sym_impl] = ACTIONS(1621), - [anon_sym_let] = ACTIONS(1621), - [anon_sym_loop] = ACTIONS(1621), - [anon_sym_match] = ACTIONS(1621), - [anon_sym_mod] = ACTIONS(1621), - [anon_sym_pub] = ACTIONS(1621), - [anon_sym_return] = ACTIONS(1621), - [anon_sym_static] = ACTIONS(1621), - [anon_sym_struct] = ACTIONS(1621), - [anon_sym_trait] = ACTIONS(1621), - [anon_sym_type] = ACTIONS(1621), - [anon_sym_union] = ACTIONS(1621), - [anon_sym_unsafe] = ACTIONS(1621), - [anon_sym_use] = ACTIONS(1621), - [anon_sym_while] = ACTIONS(1621), - [anon_sym_POUND] = ACTIONS(1619), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_extern] = ACTIONS(1621), - [anon_sym_LT] = ACTIONS(1619), - [anon_sym_COLON_COLON] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_DOT_DOT] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_yield] = ACTIONS(1621), - [anon_sym_move] = ACTIONS(1621), - [sym_integer_literal] = ACTIONS(1619), - [aux_sym_string_literal_token1] = ACTIONS(1619), - [sym_char_literal] = ACTIONS(1619), - [anon_sym_true] = ACTIONS(1621), - [anon_sym_false] = ACTIONS(1621), - [anon_sym_u8] = ACTIONS(1621), - [anon_sym_i8] = ACTIONS(1621), - [anon_sym_u16] = ACTIONS(1621), - [anon_sym_i16] = ACTIONS(1621), - [anon_sym_u32] = ACTIONS(1621), - [anon_sym_i32] = ACTIONS(1621), - [anon_sym_u64] = ACTIONS(1621), - [anon_sym_i64] = ACTIONS(1621), - [anon_sym_u128] = ACTIONS(1621), - [anon_sym_i128] = ACTIONS(1621), - [anon_sym_isize] = ACTIONS(1621), - [anon_sym_usize] = ACTIONS(1621), - [anon_sym_f32] = ACTIONS(1621), - [anon_sym_f64] = ACTIONS(1621), - [anon_sym_bool] = ACTIONS(1621), - [anon_sym_str] = ACTIONS(1621), - [anon_sym_char] = ACTIONS(1621), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1619), - [sym_self] = ACTIONS(1621), - [sym_super] = ACTIONS(1621), - [sym_crate] = ACTIONS(1621), - [sym_metavariable] = ACTIONS(1619), - [sym_grit_metavariable] = ACTIONS(1619), - [sym_raw_string_literal] = ACTIONS(1619), - [sym_float_literal] = ACTIONS(1619), + [ts_builtin_sym_end] = ACTIONS(1617), + [sym__primitive_identifier] = ACTIONS(1619), + [anon_sym_SEMI] = ACTIONS(1617), + [anon_sym_macro_rules_BANG] = ACTIONS(1617), + [anon_sym_LPAREN] = ACTIONS(1617), + [anon_sym_LBRACE] = ACTIONS(1617), + [anon_sym_RBRACE] = ACTIONS(1617), + [anon_sym_LBRACK] = ACTIONS(1617), + [anon_sym_STAR] = ACTIONS(1617), + [anon_sym_SQUOTE] = ACTIONS(1619), + [anon_sym_async] = ACTIONS(1619), + [anon_sym_break] = ACTIONS(1619), + [anon_sym_const] = ACTIONS(1619), + [anon_sym_continue] = ACTIONS(1619), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_enum] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1619), + [anon_sym_for] = ACTIONS(1619), + [anon_sym_if] = ACTIONS(1619), + [anon_sym_impl] = ACTIONS(1619), + [anon_sym_let] = ACTIONS(1619), + [anon_sym_loop] = ACTIONS(1619), + [anon_sym_match] = ACTIONS(1619), + [anon_sym_mod] = ACTIONS(1619), + [anon_sym_pub] = ACTIONS(1619), + [anon_sym_return] = ACTIONS(1619), + [anon_sym_static] = ACTIONS(1619), + [anon_sym_struct] = ACTIONS(1619), + [anon_sym_trait] = ACTIONS(1619), + [anon_sym_type] = ACTIONS(1619), + [anon_sym_union] = ACTIONS(1619), + [anon_sym_unsafe] = ACTIONS(1619), + [anon_sym_use] = ACTIONS(1619), + [anon_sym_while] = ACTIONS(1619), + [anon_sym_POUND] = ACTIONS(1617), + [anon_sym_BANG] = ACTIONS(1617), + [anon_sym_extern] = ACTIONS(1619), + [anon_sym_LT] = ACTIONS(1617), + [anon_sym_COLON_COLON] = ACTIONS(1617), + [anon_sym_AMP] = ACTIONS(1617), + [anon_sym_DOT_DOT] = ACTIONS(1617), + [anon_sym_DASH] = ACTIONS(1617), + [anon_sym_PIPE] = ACTIONS(1617), + [anon_sym_yield] = ACTIONS(1619), + [anon_sym_move] = ACTIONS(1619), + [sym_integer_literal] = ACTIONS(1617), + [aux_sym_string_literal_token1] = ACTIONS(1617), + [sym_char_literal] = ACTIONS(1617), + [anon_sym_true] = ACTIONS(1619), + [anon_sym_false] = ACTIONS(1619), + [anon_sym_u8] = ACTIONS(1619), + [anon_sym_i8] = ACTIONS(1619), + [anon_sym_u16] = ACTIONS(1619), + [anon_sym_i16] = ACTIONS(1619), + [anon_sym_u32] = ACTIONS(1619), + [anon_sym_i32] = ACTIONS(1619), + [anon_sym_u64] = ACTIONS(1619), + [anon_sym_i64] = ACTIONS(1619), + [anon_sym_u128] = ACTIONS(1619), + [anon_sym_i128] = ACTIONS(1619), + [anon_sym_isize] = ACTIONS(1619), + [anon_sym_usize] = ACTIONS(1619), + [anon_sym_f32] = ACTIONS(1619), + [anon_sym_f64] = ACTIONS(1619), + [anon_sym_bool] = ACTIONS(1619), + [anon_sym_str] = ACTIONS(1619), + [anon_sym_char] = ACTIONS(1619), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(1617), + [sym_self] = ACTIONS(1619), + [sym_super] = ACTIONS(1619), + [sym_crate] = ACTIONS(1619), + [sym_metavariable] = ACTIONS(1617), + [sym_grit_metavariable] = ACTIONS(1617), + [sym_raw_string_literal] = ACTIONS(1617), + [sym_float_literal] = ACTIONS(1617), [sym_block_comment] = ACTIONS(3), }, [321] = { - [ts_builtin_sym_end] = ACTIONS(1623), - [sym__primitive_identifier] = ACTIONS(1625), - [anon_sym_SEMI] = ACTIONS(1623), - [anon_sym_macro_rules_BANG] = ACTIONS(1623), - [anon_sym_LPAREN] = ACTIONS(1623), - [anon_sym_LBRACE] = ACTIONS(1623), - [anon_sym_RBRACE] = ACTIONS(1623), - [anon_sym_LBRACK] = ACTIONS(1623), - [anon_sym_STAR] = ACTIONS(1623), - [anon_sym_SQUOTE] = ACTIONS(1625), - [anon_sym_async] = ACTIONS(1625), - [anon_sym_break] = ACTIONS(1625), - [anon_sym_const] = ACTIONS(1625), - [anon_sym_continue] = ACTIONS(1625), - [anon_sym_default] = ACTIONS(1625), - [anon_sym_enum] = ACTIONS(1625), - [anon_sym_fn] = ACTIONS(1625), - [anon_sym_for] = ACTIONS(1625), - [anon_sym_if] = ACTIONS(1625), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_let] = ACTIONS(1625), - [anon_sym_loop] = ACTIONS(1625), - [anon_sym_match] = ACTIONS(1625), - [anon_sym_mod] = ACTIONS(1625), - [anon_sym_pub] = ACTIONS(1625), - [anon_sym_return] = ACTIONS(1625), - [anon_sym_static] = ACTIONS(1625), - [anon_sym_struct] = ACTIONS(1625), - [anon_sym_trait] = ACTIONS(1625), - [anon_sym_type] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1625), - [anon_sym_unsafe] = ACTIONS(1625), - [anon_sym_use] = ACTIONS(1625), - [anon_sym_while] = ACTIONS(1625), - [anon_sym_POUND] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1623), - [anon_sym_extern] = ACTIONS(1625), - [anon_sym_LT] = ACTIONS(1623), - [anon_sym_COLON_COLON] = ACTIONS(1623), - [anon_sym_AMP] = ACTIONS(1623), - [anon_sym_DOT_DOT] = ACTIONS(1623), - [anon_sym_DASH] = ACTIONS(1623), - [anon_sym_PIPE] = ACTIONS(1623), - [anon_sym_yield] = ACTIONS(1625), - [anon_sym_move] = ACTIONS(1625), - [sym_integer_literal] = ACTIONS(1623), - [aux_sym_string_literal_token1] = ACTIONS(1623), - [sym_char_literal] = ACTIONS(1623), - [anon_sym_true] = ACTIONS(1625), - [anon_sym_false] = ACTIONS(1625), - [anon_sym_u8] = ACTIONS(1625), - [anon_sym_i8] = ACTIONS(1625), - [anon_sym_u16] = ACTIONS(1625), - [anon_sym_i16] = ACTIONS(1625), - [anon_sym_u32] = ACTIONS(1625), - [anon_sym_i32] = ACTIONS(1625), - [anon_sym_u64] = ACTIONS(1625), - [anon_sym_i64] = ACTIONS(1625), - [anon_sym_u128] = ACTIONS(1625), - [anon_sym_i128] = ACTIONS(1625), - [anon_sym_isize] = ACTIONS(1625), - [anon_sym_usize] = ACTIONS(1625), - [anon_sym_f32] = ACTIONS(1625), - [anon_sym_f64] = ACTIONS(1625), - [anon_sym_bool] = ACTIONS(1625), - [anon_sym_str] = ACTIONS(1625), - [anon_sym_char] = ACTIONS(1625), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1623), - [sym_self] = ACTIONS(1625), - [sym_super] = ACTIONS(1625), - [sym_crate] = ACTIONS(1625), - [sym_metavariable] = ACTIONS(1623), - [sym_grit_metavariable] = ACTIONS(1623), - [sym_raw_string_literal] = ACTIONS(1623), - [sym_float_literal] = ACTIONS(1623), + [ts_builtin_sym_end] = ACTIONS(1621), + [sym__primitive_identifier] = ACTIONS(1623), + [anon_sym_SEMI] = ACTIONS(1621), + [anon_sym_macro_rules_BANG] = ACTIONS(1621), + [anon_sym_LPAREN] = ACTIONS(1621), + [anon_sym_LBRACE] = ACTIONS(1621), + [anon_sym_RBRACE] = ACTIONS(1621), + [anon_sym_LBRACK] = ACTIONS(1621), + [anon_sym_STAR] = ACTIONS(1621), + [anon_sym_SQUOTE] = ACTIONS(1623), + [anon_sym_async] = ACTIONS(1623), + [anon_sym_break] = ACTIONS(1623), + [anon_sym_const] = ACTIONS(1623), + [anon_sym_continue] = ACTIONS(1623), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_enum] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1623), + [anon_sym_for] = ACTIONS(1623), + [anon_sym_if] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1623), + [anon_sym_let] = ACTIONS(1623), + [anon_sym_loop] = ACTIONS(1623), + [anon_sym_match] = ACTIONS(1623), + [anon_sym_mod] = ACTIONS(1623), + [anon_sym_pub] = ACTIONS(1623), + [anon_sym_return] = ACTIONS(1623), + [anon_sym_static] = ACTIONS(1623), + [anon_sym_struct] = ACTIONS(1623), + [anon_sym_trait] = ACTIONS(1623), + [anon_sym_type] = ACTIONS(1623), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1623), + [anon_sym_use] = ACTIONS(1623), + [anon_sym_while] = ACTIONS(1623), + [anon_sym_POUND] = ACTIONS(1621), + [anon_sym_BANG] = ACTIONS(1621), + [anon_sym_extern] = ACTIONS(1623), + [anon_sym_LT] = ACTIONS(1621), + [anon_sym_COLON_COLON] = ACTIONS(1621), + [anon_sym_AMP] = ACTIONS(1621), + [anon_sym_DOT_DOT] = ACTIONS(1621), + [anon_sym_DASH] = ACTIONS(1621), + [anon_sym_PIPE] = ACTIONS(1621), + [anon_sym_yield] = ACTIONS(1623), + [anon_sym_move] = ACTIONS(1623), + [sym_integer_literal] = ACTIONS(1621), + [aux_sym_string_literal_token1] = ACTIONS(1621), + [sym_char_literal] = ACTIONS(1621), + [anon_sym_true] = ACTIONS(1623), + [anon_sym_false] = ACTIONS(1623), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(1621), + [sym_self] = ACTIONS(1623), + [sym_super] = ACTIONS(1623), + [sym_crate] = ACTIONS(1623), + [sym_metavariable] = ACTIONS(1621), + [sym_grit_metavariable] = ACTIONS(1621), + [sym_raw_string_literal] = ACTIONS(1621), + [sym_float_literal] = ACTIONS(1621), [sym_block_comment] = ACTIONS(3), }, [322] = { - [ts_builtin_sym_end] = ACTIONS(1627), - [sym__primitive_identifier] = ACTIONS(1629), - [anon_sym_SEMI] = ACTIONS(1627), - [anon_sym_macro_rules_BANG] = ACTIONS(1627), - [anon_sym_LPAREN] = ACTIONS(1627), - [anon_sym_LBRACE] = ACTIONS(1627), - [anon_sym_RBRACE] = ACTIONS(1627), - [anon_sym_LBRACK] = ACTIONS(1627), - [anon_sym_STAR] = ACTIONS(1627), - [anon_sym_SQUOTE] = ACTIONS(1629), - [anon_sym_async] = ACTIONS(1629), - [anon_sym_break] = ACTIONS(1629), - [anon_sym_const] = ACTIONS(1629), - [anon_sym_continue] = ACTIONS(1629), - [anon_sym_default] = ACTIONS(1629), - [anon_sym_enum] = ACTIONS(1629), - [anon_sym_fn] = ACTIONS(1629), - [anon_sym_for] = ACTIONS(1629), - [anon_sym_if] = ACTIONS(1629), - [anon_sym_impl] = ACTIONS(1629), - [anon_sym_let] = ACTIONS(1629), - [anon_sym_loop] = ACTIONS(1629), - [anon_sym_match] = ACTIONS(1629), - [anon_sym_mod] = ACTIONS(1629), - [anon_sym_pub] = ACTIONS(1629), - [anon_sym_return] = ACTIONS(1629), - [anon_sym_static] = ACTIONS(1629), - [anon_sym_struct] = ACTIONS(1629), - [anon_sym_trait] = ACTIONS(1629), - [anon_sym_type] = ACTIONS(1629), - [anon_sym_union] = ACTIONS(1629), - [anon_sym_unsafe] = ACTIONS(1629), - [anon_sym_use] = ACTIONS(1629), - [anon_sym_while] = ACTIONS(1629), - [anon_sym_POUND] = ACTIONS(1627), - [anon_sym_BANG] = ACTIONS(1627), - [anon_sym_extern] = ACTIONS(1629), - [anon_sym_LT] = ACTIONS(1627), - [anon_sym_COLON_COLON] = ACTIONS(1627), - [anon_sym_AMP] = ACTIONS(1627), - [anon_sym_DOT_DOT] = ACTIONS(1627), - [anon_sym_DASH] = ACTIONS(1627), - [anon_sym_PIPE] = ACTIONS(1627), - [anon_sym_yield] = ACTIONS(1629), - [anon_sym_move] = ACTIONS(1629), - [sym_integer_literal] = ACTIONS(1627), - [aux_sym_string_literal_token1] = ACTIONS(1627), - [sym_char_literal] = ACTIONS(1627), - [anon_sym_true] = ACTIONS(1629), - [anon_sym_false] = ACTIONS(1629), - [anon_sym_u8] = ACTIONS(1629), - [anon_sym_i8] = ACTIONS(1629), - [anon_sym_u16] = ACTIONS(1629), - [anon_sym_i16] = ACTIONS(1629), - [anon_sym_u32] = ACTIONS(1629), - [anon_sym_i32] = ACTIONS(1629), - [anon_sym_u64] = ACTIONS(1629), - [anon_sym_i64] = ACTIONS(1629), - [anon_sym_u128] = ACTIONS(1629), - [anon_sym_i128] = ACTIONS(1629), - [anon_sym_isize] = ACTIONS(1629), - [anon_sym_usize] = ACTIONS(1629), - [anon_sym_f32] = ACTIONS(1629), - [anon_sym_f64] = ACTIONS(1629), - [anon_sym_bool] = ACTIONS(1629), - [anon_sym_str] = ACTIONS(1629), - [anon_sym_char] = ACTIONS(1629), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1627), - [sym_self] = ACTIONS(1629), - [sym_super] = ACTIONS(1629), - [sym_crate] = ACTIONS(1629), - [sym_metavariable] = ACTIONS(1627), - [sym_grit_metavariable] = ACTIONS(1627), - [sym_raw_string_literal] = ACTIONS(1627), - [sym_float_literal] = ACTIONS(1627), + [ts_builtin_sym_end] = ACTIONS(1625), + [sym__primitive_identifier] = ACTIONS(1627), + [anon_sym_SEMI] = ACTIONS(1625), + [anon_sym_macro_rules_BANG] = ACTIONS(1625), + [anon_sym_LPAREN] = ACTIONS(1625), + [anon_sym_LBRACE] = ACTIONS(1625), + [anon_sym_RBRACE] = ACTIONS(1625), + [anon_sym_LBRACK] = ACTIONS(1625), + [anon_sym_STAR] = ACTIONS(1625), + [anon_sym_SQUOTE] = ACTIONS(1627), + [anon_sym_async] = ACTIONS(1627), + [anon_sym_break] = ACTIONS(1627), + [anon_sym_const] = ACTIONS(1627), + [anon_sym_continue] = ACTIONS(1627), + [anon_sym_default] = ACTIONS(1627), + [anon_sym_enum] = ACTIONS(1627), + [anon_sym_fn] = ACTIONS(1627), + [anon_sym_for] = ACTIONS(1627), + [anon_sym_if] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1627), + [anon_sym_let] = ACTIONS(1627), + [anon_sym_loop] = ACTIONS(1627), + [anon_sym_match] = ACTIONS(1627), + [anon_sym_mod] = ACTIONS(1627), + [anon_sym_pub] = ACTIONS(1627), + [anon_sym_return] = ACTIONS(1627), + [anon_sym_static] = ACTIONS(1627), + [anon_sym_struct] = ACTIONS(1627), + [anon_sym_trait] = ACTIONS(1627), + [anon_sym_type] = ACTIONS(1627), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1627), + [anon_sym_use] = ACTIONS(1627), + [anon_sym_while] = ACTIONS(1627), + [anon_sym_POUND] = ACTIONS(1625), + [anon_sym_BANG] = ACTIONS(1625), + [anon_sym_extern] = ACTIONS(1627), + [anon_sym_LT] = ACTIONS(1625), + [anon_sym_COLON_COLON] = ACTIONS(1625), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_DOT_DOT] = ACTIONS(1625), + [anon_sym_DASH] = ACTIONS(1625), + [anon_sym_PIPE] = ACTIONS(1625), + [anon_sym_yield] = ACTIONS(1627), + [anon_sym_move] = ACTIONS(1627), + [sym_integer_literal] = ACTIONS(1625), + [aux_sym_string_literal_token1] = ACTIONS(1625), + [sym_char_literal] = ACTIONS(1625), + [anon_sym_true] = ACTIONS(1627), + [anon_sym_false] = ACTIONS(1627), + [anon_sym_u8] = ACTIONS(1627), + [anon_sym_i8] = ACTIONS(1627), + [anon_sym_u16] = ACTIONS(1627), + [anon_sym_i16] = ACTIONS(1627), + [anon_sym_u32] = ACTIONS(1627), + [anon_sym_i32] = ACTIONS(1627), + [anon_sym_u64] = ACTIONS(1627), + [anon_sym_i64] = ACTIONS(1627), + [anon_sym_u128] = ACTIONS(1627), + [anon_sym_i128] = ACTIONS(1627), + [anon_sym_isize] = ACTIONS(1627), + [anon_sym_usize] = ACTIONS(1627), + [anon_sym_f32] = ACTIONS(1627), + [anon_sym_f64] = ACTIONS(1627), + [anon_sym_bool] = ACTIONS(1627), + [anon_sym_str] = ACTIONS(1627), + [anon_sym_char] = ACTIONS(1627), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(1625), + [sym_self] = ACTIONS(1627), + [sym_super] = ACTIONS(1627), + [sym_crate] = ACTIONS(1627), + [sym_metavariable] = ACTIONS(1625), + [sym_grit_metavariable] = ACTIONS(1625), + [sym_raw_string_literal] = ACTIONS(1625), + [sym_float_literal] = ACTIONS(1625), [sym_block_comment] = ACTIONS(3), }, [323] = { - [ts_builtin_sym_end] = ACTIONS(1631), - [sym__primitive_identifier] = ACTIONS(1633), - [anon_sym_SEMI] = ACTIONS(1631), - [anon_sym_macro_rules_BANG] = ACTIONS(1631), - [anon_sym_LPAREN] = ACTIONS(1631), - [anon_sym_LBRACE] = ACTIONS(1631), - [anon_sym_RBRACE] = ACTIONS(1631), - [anon_sym_LBRACK] = ACTIONS(1631), - [anon_sym_STAR] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_async] = ACTIONS(1633), - [anon_sym_break] = ACTIONS(1633), - [anon_sym_const] = ACTIONS(1633), - [anon_sym_continue] = ACTIONS(1633), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_enum] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1633), - [anon_sym_for] = ACTIONS(1633), - [anon_sym_if] = ACTIONS(1633), - [anon_sym_impl] = ACTIONS(1633), - [anon_sym_let] = ACTIONS(1633), - [anon_sym_loop] = ACTIONS(1633), - [anon_sym_match] = ACTIONS(1633), - [anon_sym_mod] = ACTIONS(1633), - [anon_sym_pub] = ACTIONS(1633), - [anon_sym_return] = ACTIONS(1633), - [anon_sym_static] = ACTIONS(1633), - [anon_sym_struct] = ACTIONS(1633), - [anon_sym_trait] = ACTIONS(1633), - [anon_sym_type] = ACTIONS(1633), - [anon_sym_union] = ACTIONS(1633), - [anon_sym_unsafe] = ACTIONS(1633), - [anon_sym_use] = ACTIONS(1633), - [anon_sym_while] = ACTIONS(1633), - [anon_sym_POUND] = ACTIONS(1631), - [anon_sym_BANG] = ACTIONS(1631), - [anon_sym_extern] = ACTIONS(1633), - [anon_sym_LT] = ACTIONS(1631), - [anon_sym_COLON_COLON] = ACTIONS(1631), - [anon_sym_AMP] = ACTIONS(1631), - [anon_sym_DOT_DOT] = ACTIONS(1631), - [anon_sym_DASH] = ACTIONS(1631), - [anon_sym_PIPE] = ACTIONS(1631), - [anon_sym_yield] = ACTIONS(1633), - [anon_sym_move] = ACTIONS(1633), - [sym_integer_literal] = ACTIONS(1631), - [aux_sym_string_literal_token1] = ACTIONS(1631), - [sym_char_literal] = ACTIONS(1631), - [anon_sym_true] = ACTIONS(1633), - [anon_sym_false] = ACTIONS(1633), - [anon_sym_u8] = ACTIONS(1633), - [anon_sym_i8] = ACTIONS(1633), - [anon_sym_u16] = ACTIONS(1633), - [anon_sym_i16] = ACTIONS(1633), - [anon_sym_u32] = ACTIONS(1633), - [anon_sym_i32] = ACTIONS(1633), - [anon_sym_u64] = ACTIONS(1633), - [anon_sym_i64] = ACTIONS(1633), - [anon_sym_u128] = ACTIONS(1633), - [anon_sym_i128] = ACTIONS(1633), - [anon_sym_isize] = ACTIONS(1633), - [anon_sym_usize] = ACTIONS(1633), - [anon_sym_f32] = ACTIONS(1633), - [anon_sym_f64] = ACTIONS(1633), - [anon_sym_bool] = ACTIONS(1633), - [anon_sym_str] = ACTIONS(1633), - [anon_sym_char] = ACTIONS(1633), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1631), - [sym_self] = ACTIONS(1633), - [sym_super] = ACTIONS(1633), - [sym_crate] = ACTIONS(1633), - [sym_metavariable] = ACTIONS(1631), - [sym_grit_metavariable] = ACTIONS(1631), - [sym_raw_string_literal] = ACTIONS(1631), - [sym_float_literal] = ACTIONS(1631), + [ts_builtin_sym_end] = ACTIONS(1629), + [sym__primitive_identifier] = ACTIONS(1631), + [anon_sym_SEMI] = ACTIONS(1629), + [anon_sym_macro_rules_BANG] = ACTIONS(1629), + [anon_sym_LPAREN] = ACTIONS(1629), + [anon_sym_LBRACE] = ACTIONS(1629), + [anon_sym_RBRACE] = ACTIONS(1629), + [anon_sym_LBRACK] = ACTIONS(1629), + [anon_sym_STAR] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(1631), + [anon_sym_async] = ACTIONS(1631), + [anon_sym_break] = ACTIONS(1631), + [anon_sym_const] = ACTIONS(1631), + [anon_sym_continue] = ACTIONS(1631), + [anon_sym_default] = ACTIONS(1631), + [anon_sym_enum] = ACTIONS(1631), + [anon_sym_fn] = ACTIONS(1631), + [anon_sym_for] = ACTIONS(1631), + [anon_sym_if] = ACTIONS(1631), + [anon_sym_impl] = ACTIONS(1631), + [anon_sym_let] = ACTIONS(1631), + [anon_sym_loop] = ACTIONS(1631), + [anon_sym_match] = ACTIONS(1631), + [anon_sym_mod] = ACTIONS(1631), + [anon_sym_pub] = ACTIONS(1631), + [anon_sym_return] = ACTIONS(1631), + [anon_sym_static] = ACTIONS(1631), + [anon_sym_struct] = ACTIONS(1631), + [anon_sym_trait] = ACTIONS(1631), + [anon_sym_type] = ACTIONS(1631), + [anon_sym_union] = ACTIONS(1631), + [anon_sym_unsafe] = ACTIONS(1631), + [anon_sym_use] = ACTIONS(1631), + [anon_sym_while] = ACTIONS(1631), + [anon_sym_POUND] = ACTIONS(1629), + [anon_sym_BANG] = ACTIONS(1629), + [anon_sym_extern] = ACTIONS(1631), + [anon_sym_LT] = ACTIONS(1629), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_AMP] = ACTIONS(1629), + [anon_sym_DOT_DOT] = ACTIONS(1629), + [anon_sym_DASH] = ACTIONS(1629), + [anon_sym_PIPE] = ACTIONS(1629), + [anon_sym_yield] = ACTIONS(1631), + [anon_sym_move] = ACTIONS(1631), + [sym_integer_literal] = ACTIONS(1629), + [aux_sym_string_literal_token1] = ACTIONS(1629), + [sym_char_literal] = ACTIONS(1629), + [anon_sym_true] = ACTIONS(1631), + [anon_sym_false] = ACTIONS(1631), + [anon_sym_u8] = ACTIONS(1631), + [anon_sym_i8] = ACTIONS(1631), + [anon_sym_u16] = ACTIONS(1631), + [anon_sym_i16] = ACTIONS(1631), + [anon_sym_u32] = ACTIONS(1631), + [anon_sym_i32] = ACTIONS(1631), + [anon_sym_u64] = ACTIONS(1631), + [anon_sym_i64] = ACTIONS(1631), + [anon_sym_u128] = ACTIONS(1631), + [anon_sym_i128] = ACTIONS(1631), + [anon_sym_isize] = ACTIONS(1631), + [anon_sym_usize] = ACTIONS(1631), + [anon_sym_f32] = ACTIONS(1631), + [anon_sym_f64] = ACTIONS(1631), + [anon_sym_bool] = ACTIONS(1631), + [anon_sym_str] = ACTIONS(1631), + [anon_sym_char] = ACTIONS(1631), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(1629), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1629), + [sym_grit_metavariable] = ACTIONS(1629), + [sym_raw_string_literal] = ACTIONS(1629), + [sym_float_literal] = ACTIONS(1629), [sym_block_comment] = ACTIONS(3), }, [324] = { - [ts_builtin_sym_end] = ACTIONS(1635), - [sym__primitive_identifier] = ACTIONS(1637), - [anon_sym_SEMI] = ACTIONS(1635), - [anon_sym_macro_rules_BANG] = ACTIONS(1635), - [anon_sym_LPAREN] = ACTIONS(1635), - [anon_sym_LBRACE] = ACTIONS(1635), - [anon_sym_RBRACE] = ACTIONS(1635), - [anon_sym_LBRACK] = ACTIONS(1635), - [anon_sym_STAR] = ACTIONS(1635), - [anon_sym_SQUOTE] = ACTIONS(1637), - [anon_sym_async] = ACTIONS(1637), - [anon_sym_break] = ACTIONS(1637), - [anon_sym_const] = ACTIONS(1637), - [anon_sym_continue] = ACTIONS(1637), - [anon_sym_default] = ACTIONS(1637), - [anon_sym_enum] = ACTIONS(1637), - [anon_sym_fn] = ACTIONS(1637), - [anon_sym_for] = ACTIONS(1637), - [anon_sym_if] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1637), - [anon_sym_let] = ACTIONS(1637), - [anon_sym_loop] = ACTIONS(1637), - [anon_sym_match] = ACTIONS(1637), - [anon_sym_mod] = ACTIONS(1637), - [anon_sym_pub] = ACTIONS(1637), - [anon_sym_return] = ACTIONS(1637), - [anon_sym_static] = ACTIONS(1637), - [anon_sym_struct] = ACTIONS(1637), - [anon_sym_trait] = ACTIONS(1637), - [anon_sym_type] = ACTIONS(1637), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1637), - [anon_sym_use] = ACTIONS(1637), - [anon_sym_while] = ACTIONS(1637), - [anon_sym_POUND] = ACTIONS(1635), - [anon_sym_BANG] = ACTIONS(1635), - [anon_sym_extern] = ACTIONS(1637), - [anon_sym_LT] = ACTIONS(1635), - [anon_sym_COLON_COLON] = ACTIONS(1635), - [anon_sym_AMP] = ACTIONS(1635), - [anon_sym_DOT_DOT] = ACTIONS(1635), - [anon_sym_DASH] = ACTIONS(1635), - [anon_sym_PIPE] = ACTIONS(1635), - [anon_sym_yield] = ACTIONS(1637), - [anon_sym_move] = ACTIONS(1637), - [sym_integer_literal] = ACTIONS(1635), - [aux_sym_string_literal_token1] = ACTIONS(1635), - [sym_char_literal] = ACTIONS(1635), - [anon_sym_true] = ACTIONS(1637), - [anon_sym_false] = ACTIONS(1637), - [anon_sym_u8] = ACTIONS(1637), - [anon_sym_i8] = ACTIONS(1637), - [anon_sym_u16] = ACTIONS(1637), - [anon_sym_i16] = ACTIONS(1637), - [anon_sym_u32] = ACTIONS(1637), - [anon_sym_i32] = ACTIONS(1637), - [anon_sym_u64] = ACTIONS(1637), - [anon_sym_i64] = ACTIONS(1637), - [anon_sym_u128] = ACTIONS(1637), - [anon_sym_i128] = ACTIONS(1637), - [anon_sym_isize] = ACTIONS(1637), - [anon_sym_usize] = ACTIONS(1637), - [anon_sym_f32] = ACTIONS(1637), - [anon_sym_f64] = ACTIONS(1637), - [anon_sym_bool] = ACTIONS(1637), - [anon_sym_str] = ACTIONS(1637), - [anon_sym_char] = ACTIONS(1637), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1635), - [sym_self] = ACTIONS(1637), - [sym_super] = ACTIONS(1637), - [sym_crate] = ACTIONS(1637), - [sym_metavariable] = ACTIONS(1635), - [sym_grit_metavariable] = ACTIONS(1635), - [sym_raw_string_literal] = ACTIONS(1635), - [sym_float_literal] = ACTIONS(1635), + [ts_builtin_sym_end] = ACTIONS(1633), + [sym__primitive_identifier] = ACTIONS(1635), + [anon_sym_SEMI] = ACTIONS(1633), + [anon_sym_macro_rules_BANG] = ACTIONS(1633), + [anon_sym_LPAREN] = ACTIONS(1633), + [anon_sym_LBRACE] = ACTIONS(1633), + [anon_sym_RBRACE] = ACTIONS(1633), + [anon_sym_LBRACK] = ACTIONS(1633), + [anon_sym_STAR] = ACTIONS(1633), + [anon_sym_SQUOTE] = ACTIONS(1635), + [anon_sym_async] = ACTIONS(1635), + [anon_sym_break] = ACTIONS(1635), + [anon_sym_const] = ACTIONS(1635), + [anon_sym_continue] = ACTIONS(1635), + [anon_sym_default] = ACTIONS(1635), + [anon_sym_enum] = ACTIONS(1635), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1635), + [anon_sym_if] = ACTIONS(1635), + [anon_sym_impl] = ACTIONS(1635), + [anon_sym_let] = ACTIONS(1635), + [anon_sym_loop] = ACTIONS(1635), + [anon_sym_match] = ACTIONS(1635), + [anon_sym_mod] = ACTIONS(1635), + [anon_sym_pub] = ACTIONS(1635), + [anon_sym_return] = ACTIONS(1635), + [anon_sym_static] = ACTIONS(1635), + [anon_sym_struct] = ACTIONS(1635), + [anon_sym_trait] = ACTIONS(1635), + [anon_sym_type] = ACTIONS(1635), + [anon_sym_union] = ACTIONS(1635), + [anon_sym_unsafe] = ACTIONS(1635), + [anon_sym_use] = ACTIONS(1635), + [anon_sym_while] = ACTIONS(1635), + [anon_sym_POUND] = ACTIONS(1633), + [anon_sym_BANG] = ACTIONS(1633), + [anon_sym_extern] = ACTIONS(1635), + [anon_sym_LT] = ACTIONS(1633), + [anon_sym_COLON_COLON] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(1633), + [anon_sym_DOT_DOT] = ACTIONS(1633), + [anon_sym_DASH] = ACTIONS(1633), + [anon_sym_PIPE] = ACTIONS(1633), + [anon_sym_yield] = ACTIONS(1635), + [anon_sym_move] = ACTIONS(1635), + [sym_integer_literal] = ACTIONS(1633), + [aux_sym_string_literal_token1] = ACTIONS(1633), + [sym_char_literal] = ACTIONS(1633), + [anon_sym_true] = ACTIONS(1635), + [anon_sym_false] = ACTIONS(1635), + [anon_sym_u8] = ACTIONS(1635), + [anon_sym_i8] = ACTIONS(1635), + [anon_sym_u16] = ACTIONS(1635), + [anon_sym_i16] = ACTIONS(1635), + [anon_sym_u32] = ACTIONS(1635), + [anon_sym_i32] = ACTIONS(1635), + [anon_sym_u64] = ACTIONS(1635), + [anon_sym_i64] = ACTIONS(1635), + [anon_sym_u128] = ACTIONS(1635), + [anon_sym_i128] = ACTIONS(1635), + [anon_sym_isize] = ACTIONS(1635), + [anon_sym_usize] = ACTIONS(1635), + [anon_sym_f32] = ACTIONS(1635), + [anon_sym_f64] = ACTIONS(1635), + [anon_sym_bool] = ACTIONS(1635), + [anon_sym_str] = ACTIONS(1635), + [anon_sym_char] = ACTIONS(1635), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(1633), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1633), + [sym_grit_metavariable] = ACTIONS(1633), + [sym_raw_string_literal] = ACTIONS(1633), + [sym_float_literal] = ACTIONS(1633), [sym_block_comment] = ACTIONS(3), }, [325] = { - [ts_builtin_sym_end] = ACTIONS(1639), - [sym__primitive_identifier] = ACTIONS(1641), - [anon_sym_SEMI] = ACTIONS(1639), - [anon_sym_macro_rules_BANG] = ACTIONS(1639), - [anon_sym_LPAREN] = ACTIONS(1639), - [anon_sym_LBRACE] = ACTIONS(1639), - [anon_sym_RBRACE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1639), - [anon_sym_STAR] = ACTIONS(1639), - [anon_sym_SQUOTE] = ACTIONS(1641), - [anon_sym_async] = ACTIONS(1641), - [anon_sym_break] = ACTIONS(1641), - [anon_sym_const] = ACTIONS(1641), - [anon_sym_continue] = ACTIONS(1641), - [anon_sym_default] = ACTIONS(1641), - [anon_sym_enum] = ACTIONS(1641), - [anon_sym_fn] = ACTIONS(1641), - [anon_sym_for] = ACTIONS(1641), - [anon_sym_if] = ACTIONS(1641), - [anon_sym_impl] = ACTIONS(1641), - [anon_sym_let] = ACTIONS(1641), - [anon_sym_loop] = ACTIONS(1641), - [anon_sym_match] = ACTIONS(1641), - [anon_sym_mod] = ACTIONS(1641), - [anon_sym_pub] = ACTIONS(1641), - [anon_sym_return] = ACTIONS(1641), - [anon_sym_static] = ACTIONS(1641), - [anon_sym_struct] = ACTIONS(1641), - [anon_sym_trait] = ACTIONS(1641), - [anon_sym_type] = ACTIONS(1641), - [anon_sym_union] = ACTIONS(1641), - [anon_sym_unsafe] = ACTIONS(1641), - [anon_sym_use] = ACTIONS(1641), - [anon_sym_while] = ACTIONS(1641), - [anon_sym_POUND] = ACTIONS(1639), - [anon_sym_BANG] = ACTIONS(1639), - [anon_sym_extern] = ACTIONS(1641), - [anon_sym_LT] = ACTIONS(1639), - [anon_sym_COLON_COLON] = ACTIONS(1639), - [anon_sym_AMP] = ACTIONS(1639), - [anon_sym_DOT_DOT] = ACTIONS(1639), - [anon_sym_DASH] = ACTIONS(1639), - [anon_sym_PIPE] = ACTIONS(1639), - [anon_sym_yield] = ACTIONS(1641), - [anon_sym_move] = ACTIONS(1641), - [sym_integer_literal] = ACTIONS(1639), - [aux_sym_string_literal_token1] = ACTIONS(1639), - [sym_char_literal] = ACTIONS(1639), - [anon_sym_true] = ACTIONS(1641), - [anon_sym_false] = ACTIONS(1641), - [anon_sym_u8] = ACTIONS(1641), - [anon_sym_i8] = ACTIONS(1641), - [anon_sym_u16] = ACTIONS(1641), - [anon_sym_i16] = ACTIONS(1641), - [anon_sym_u32] = ACTIONS(1641), - [anon_sym_i32] = ACTIONS(1641), - [anon_sym_u64] = ACTIONS(1641), - [anon_sym_i64] = ACTIONS(1641), - [anon_sym_u128] = ACTIONS(1641), - [anon_sym_i128] = ACTIONS(1641), - [anon_sym_isize] = ACTIONS(1641), - [anon_sym_usize] = ACTIONS(1641), - [anon_sym_f32] = ACTIONS(1641), - [anon_sym_f64] = ACTIONS(1641), - [anon_sym_bool] = ACTIONS(1641), - [anon_sym_str] = ACTIONS(1641), - [anon_sym_char] = ACTIONS(1641), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1639), - [sym_self] = ACTIONS(1641), - [sym_super] = ACTIONS(1641), - [sym_crate] = ACTIONS(1641), - [sym_metavariable] = ACTIONS(1639), - [sym_grit_metavariable] = ACTIONS(1639), - [sym_raw_string_literal] = ACTIONS(1639), - [sym_float_literal] = ACTIONS(1639), + [ts_builtin_sym_end] = ACTIONS(1637), + [sym__primitive_identifier] = ACTIONS(1639), + [anon_sym_SEMI] = ACTIONS(1637), + [anon_sym_macro_rules_BANG] = ACTIONS(1637), + [anon_sym_LPAREN] = ACTIONS(1637), + [anon_sym_LBRACE] = ACTIONS(1637), + [anon_sym_RBRACE] = ACTIONS(1637), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1637), + [anon_sym_SQUOTE] = ACTIONS(1639), + [anon_sym_async] = ACTIONS(1639), + [anon_sym_break] = ACTIONS(1639), + [anon_sym_const] = ACTIONS(1639), + [anon_sym_continue] = ACTIONS(1639), + [anon_sym_default] = ACTIONS(1639), + [anon_sym_enum] = ACTIONS(1639), + [anon_sym_fn] = ACTIONS(1639), + [anon_sym_for] = ACTIONS(1639), + [anon_sym_if] = ACTIONS(1639), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_let] = ACTIONS(1639), + [anon_sym_loop] = ACTIONS(1639), + [anon_sym_match] = ACTIONS(1639), + [anon_sym_mod] = ACTIONS(1639), + [anon_sym_pub] = ACTIONS(1639), + [anon_sym_return] = ACTIONS(1639), + [anon_sym_static] = ACTIONS(1639), + [anon_sym_struct] = ACTIONS(1639), + [anon_sym_trait] = ACTIONS(1639), + [anon_sym_type] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1639), + [anon_sym_unsafe] = ACTIONS(1639), + [anon_sym_use] = ACTIONS(1639), + [anon_sym_while] = ACTIONS(1639), + [anon_sym_POUND] = ACTIONS(1637), + [anon_sym_BANG] = ACTIONS(1637), + [anon_sym_extern] = ACTIONS(1639), + [anon_sym_LT] = ACTIONS(1637), + [anon_sym_COLON_COLON] = ACTIONS(1637), + [anon_sym_AMP] = ACTIONS(1637), + [anon_sym_DOT_DOT] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_PIPE] = ACTIONS(1637), + [anon_sym_yield] = ACTIONS(1639), + [anon_sym_move] = ACTIONS(1639), + [sym_integer_literal] = ACTIONS(1637), + [aux_sym_string_literal_token1] = ACTIONS(1637), + [sym_char_literal] = ACTIONS(1637), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [anon_sym_u8] = ACTIONS(1639), + [anon_sym_i8] = ACTIONS(1639), + [anon_sym_u16] = ACTIONS(1639), + [anon_sym_i16] = ACTIONS(1639), + [anon_sym_u32] = ACTIONS(1639), + [anon_sym_i32] = ACTIONS(1639), + [anon_sym_u64] = ACTIONS(1639), + [anon_sym_i64] = ACTIONS(1639), + [anon_sym_u128] = ACTIONS(1639), + [anon_sym_i128] = ACTIONS(1639), + [anon_sym_isize] = ACTIONS(1639), + [anon_sym_usize] = ACTIONS(1639), + [anon_sym_f32] = ACTIONS(1639), + [anon_sym_f64] = ACTIONS(1639), + [anon_sym_bool] = ACTIONS(1639), + [anon_sym_str] = ACTIONS(1639), + [anon_sym_char] = ACTIONS(1639), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(1637), + [sym_self] = ACTIONS(1639), + [sym_super] = ACTIONS(1639), + [sym_crate] = ACTIONS(1639), + [sym_metavariable] = ACTIONS(1637), + [sym_grit_metavariable] = ACTIONS(1637), + [sym_raw_string_literal] = ACTIONS(1637), + [sym_float_literal] = ACTIONS(1637), [sym_block_comment] = ACTIONS(3), }, [326] = { - [ts_builtin_sym_end] = ACTIONS(1643), - [sym__primitive_identifier] = ACTIONS(1645), - [anon_sym_SEMI] = ACTIONS(1643), - [anon_sym_macro_rules_BANG] = ACTIONS(1643), - [anon_sym_LPAREN] = ACTIONS(1643), - [anon_sym_LBRACE] = ACTIONS(1643), - [anon_sym_RBRACE] = ACTIONS(1643), - [anon_sym_LBRACK] = ACTIONS(1643), - [anon_sym_STAR] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [anon_sym_async] = ACTIONS(1645), - [anon_sym_break] = ACTIONS(1645), - [anon_sym_const] = ACTIONS(1645), - [anon_sym_continue] = ACTIONS(1645), - [anon_sym_default] = ACTIONS(1645), - [anon_sym_enum] = ACTIONS(1645), - [anon_sym_fn] = ACTIONS(1645), - [anon_sym_for] = ACTIONS(1645), - [anon_sym_if] = ACTIONS(1645), - [anon_sym_impl] = ACTIONS(1645), - [anon_sym_let] = ACTIONS(1645), - [anon_sym_loop] = ACTIONS(1645), - [anon_sym_match] = ACTIONS(1645), - [anon_sym_mod] = ACTIONS(1645), - [anon_sym_pub] = ACTIONS(1645), - [anon_sym_return] = ACTIONS(1645), - [anon_sym_static] = ACTIONS(1645), - [anon_sym_struct] = ACTIONS(1645), - [anon_sym_trait] = ACTIONS(1645), - [anon_sym_type] = ACTIONS(1645), - [anon_sym_union] = ACTIONS(1645), - [anon_sym_unsafe] = ACTIONS(1645), - [anon_sym_use] = ACTIONS(1645), - [anon_sym_while] = ACTIONS(1645), - [anon_sym_POUND] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(1643), - [anon_sym_extern] = ACTIONS(1645), - [anon_sym_LT] = ACTIONS(1643), - [anon_sym_COLON_COLON] = ACTIONS(1643), - [anon_sym_AMP] = ACTIONS(1643), - [anon_sym_DOT_DOT] = ACTIONS(1643), - [anon_sym_DASH] = ACTIONS(1643), - [anon_sym_PIPE] = ACTIONS(1643), - [anon_sym_yield] = ACTIONS(1645), - [anon_sym_move] = ACTIONS(1645), - [sym_integer_literal] = ACTIONS(1643), - [aux_sym_string_literal_token1] = ACTIONS(1643), - [sym_char_literal] = ACTIONS(1643), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_u8] = ACTIONS(1645), - [anon_sym_i8] = ACTIONS(1645), - [anon_sym_u16] = ACTIONS(1645), - [anon_sym_i16] = ACTIONS(1645), - [anon_sym_u32] = ACTIONS(1645), - [anon_sym_i32] = ACTIONS(1645), - [anon_sym_u64] = ACTIONS(1645), - [anon_sym_i64] = ACTIONS(1645), - [anon_sym_u128] = ACTIONS(1645), - [anon_sym_i128] = ACTIONS(1645), - [anon_sym_isize] = ACTIONS(1645), - [anon_sym_usize] = ACTIONS(1645), - [anon_sym_f32] = ACTIONS(1645), - [anon_sym_f64] = ACTIONS(1645), - [anon_sym_bool] = ACTIONS(1645), - [anon_sym_str] = ACTIONS(1645), - [anon_sym_char] = ACTIONS(1645), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1643), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1643), - [sym_grit_metavariable] = ACTIONS(1643), - [sym_raw_string_literal] = ACTIONS(1643), - [sym_float_literal] = ACTIONS(1643), + [ts_builtin_sym_end] = ACTIONS(1641), + [sym__primitive_identifier] = ACTIONS(1643), + [anon_sym_SEMI] = ACTIONS(1641), + [anon_sym_macro_rules_BANG] = ACTIONS(1641), + [anon_sym_LPAREN] = ACTIONS(1641), + [anon_sym_LBRACE] = ACTIONS(1641), + [anon_sym_RBRACE] = ACTIONS(1641), + [anon_sym_LBRACK] = ACTIONS(1641), + [anon_sym_STAR] = ACTIONS(1641), + [anon_sym_SQUOTE] = ACTIONS(1643), + [anon_sym_async] = ACTIONS(1643), + [anon_sym_break] = ACTIONS(1643), + [anon_sym_const] = ACTIONS(1643), + [anon_sym_continue] = ACTIONS(1643), + [anon_sym_default] = ACTIONS(1643), + [anon_sym_enum] = ACTIONS(1643), + [anon_sym_fn] = ACTIONS(1643), + [anon_sym_for] = ACTIONS(1643), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_impl] = ACTIONS(1643), + [anon_sym_let] = ACTIONS(1643), + [anon_sym_loop] = ACTIONS(1643), + [anon_sym_match] = ACTIONS(1643), + [anon_sym_mod] = ACTIONS(1643), + [anon_sym_pub] = ACTIONS(1643), + [anon_sym_return] = ACTIONS(1643), + [anon_sym_static] = ACTIONS(1643), + [anon_sym_struct] = ACTIONS(1643), + [anon_sym_trait] = ACTIONS(1643), + [anon_sym_type] = ACTIONS(1643), + [anon_sym_union] = ACTIONS(1643), + [anon_sym_unsafe] = ACTIONS(1643), + [anon_sym_use] = ACTIONS(1643), + [anon_sym_while] = ACTIONS(1643), + [anon_sym_POUND] = ACTIONS(1641), + [anon_sym_BANG] = ACTIONS(1641), + [anon_sym_extern] = ACTIONS(1643), + [anon_sym_LT] = ACTIONS(1641), + [anon_sym_COLON_COLON] = ACTIONS(1641), + [anon_sym_AMP] = ACTIONS(1641), + [anon_sym_DOT_DOT] = ACTIONS(1641), + [anon_sym_DASH] = ACTIONS(1641), + [anon_sym_PIPE] = ACTIONS(1641), + [anon_sym_yield] = ACTIONS(1643), + [anon_sym_move] = ACTIONS(1643), + [sym_integer_literal] = ACTIONS(1641), + [aux_sym_string_literal_token1] = ACTIONS(1641), + [sym_char_literal] = ACTIONS(1641), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), + [anon_sym_u8] = ACTIONS(1643), + [anon_sym_i8] = ACTIONS(1643), + [anon_sym_u16] = ACTIONS(1643), + [anon_sym_i16] = ACTIONS(1643), + [anon_sym_u32] = ACTIONS(1643), + [anon_sym_i32] = ACTIONS(1643), + [anon_sym_u64] = ACTIONS(1643), + [anon_sym_i64] = ACTIONS(1643), + [anon_sym_u128] = ACTIONS(1643), + [anon_sym_i128] = ACTIONS(1643), + [anon_sym_isize] = ACTIONS(1643), + [anon_sym_usize] = ACTIONS(1643), + [anon_sym_f32] = ACTIONS(1643), + [anon_sym_f64] = ACTIONS(1643), + [anon_sym_bool] = ACTIONS(1643), + [anon_sym_str] = ACTIONS(1643), + [anon_sym_char] = ACTIONS(1643), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(1641), + [sym_self] = ACTIONS(1643), + [sym_super] = ACTIONS(1643), + [sym_crate] = ACTIONS(1643), + [sym_metavariable] = ACTIONS(1641), + [sym_grit_metavariable] = ACTIONS(1641), + [sym_raw_string_literal] = ACTIONS(1641), + [sym_float_literal] = ACTIONS(1641), [sym_block_comment] = ACTIONS(3), }, [327] = { - [ts_builtin_sym_end] = ACTIONS(1647), - [sym__primitive_identifier] = ACTIONS(1649), - [anon_sym_SEMI] = ACTIONS(1647), - [anon_sym_macro_rules_BANG] = ACTIONS(1647), - [anon_sym_LPAREN] = ACTIONS(1647), - [anon_sym_LBRACE] = ACTIONS(1647), - [anon_sym_RBRACE] = ACTIONS(1647), - [anon_sym_LBRACK] = ACTIONS(1647), - [anon_sym_STAR] = ACTIONS(1647), - [anon_sym_SQUOTE] = ACTIONS(1649), - [anon_sym_async] = ACTIONS(1649), - [anon_sym_break] = ACTIONS(1649), - [anon_sym_const] = ACTIONS(1649), - [anon_sym_continue] = ACTIONS(1649), - [anon_sym_default] = ACTIONS(1649), - [anon_sym_enum] = ACTIONS(1649), - [anon_sym_fn] = ACTIONS(1649), - [anon_sym_for] = ACTIONS(1649), - [anon_sym_if] = ACTIONS(1649), - [anon_sym_impl] = ACTIONS(1649), - [anon_sym_let] = ACTIONS(1649), - [anon_sym_loop] = ACTIONS(1649), - [anon_sym_match] = ACTIONS(1649), - [anon_sym_mod] = ACTIONS(1649), - [anon_sym_pub] = ACTIONS(1649), - [anon_sym_return] = ACTIONS(1649), - [anon_sym_static] = ACTIONS(1649), - [anon_sym_struct] = ACTIONS(1649), - [anon_sym_trait] = ACTIONS(1649), - [anon_sym_type] = ACTIONS(1649), - [anon_sym_union] = ACTIONS(1649), - [anon_sym_unsafe] = ACTIONS(1649), - [anon_sym_use] = ACTIONS(1649), - [anon_sym_while] = ACTIONS(1649), - [anon_sym_POUND] = ACTIONS(1647), - [anon_sym_BANG] = ACTIONS(1647), - [anon_sym_extern] = ACTIONS(1649), - [anon_sym_LT] = ACTIONS(1647), - [anon_sym_COLON_COLON] = ACTIONS(1647), - [anon_sym_AMP] = ACTIONS(1647), - [anon_sym_DOT_DOT] = ACTIONS(1647), - [anon_sym_DASH] = ACTIONS(1647), - [anon_sym_PIPE] = ACTIONS(1647), - [anon_sym_yield] = ACTIONS(1649), - [anon_sym_move] = ACTIONS(1649), - [sym_integer_literal] = ACTIONS(1647), - [aux_sym_string_literal_token1] = ACTIONS(1647), - [sym_char_literal] = ACTIONS(1647), - [anon_sym_true] = ACTIONS(1649), - [anon_sym_false] = ACTIONS(1649), - [anon_sym_u8] = ACTIONS(1649), - [anon_sym_i8] = ACTIONS(1649), - [anon_sym_u16] = ACTIONS(1649), - [anon_sym_i16] = ACTIONS(1649), - [anon_sym_u32] = ACTIONS(1649), - [anon_sym_i32] = ACTIONS(1649), - [anon_sym_u64] = ACTIONS(1649), - [anon_sym_i64] = ACTIONS(1649), - [anon_sym_u128] = ACTIONS(1649), - [anon_sym_i128] = ACTIONS(1649), - [anon_sym_isize] = ACTIONS(1649), - [anon_sym_usize] = ACTIONS(1649), - [anon_sym_f32] = ACTIONS(1649), - [anon_sym_f64] = ACTIONS(1649), - [anon_sym_bool] = ACTIONS(1649), - [anon_sym_str] = ACTIONS(1649), - [anon_sym_char] = ACTIONS(1649), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1647), - [sym_self] = ACTIONS(1649), - [sym_super] = ACTIONS(1649), - [sym_crate] = ACTIONS(1649), - [sym_metavariable] = ACTIONS(1647), - [sym_grit_metavariable] = ACTIONS(1647), - [sym_raw_string_literal] = ACTIONS(1647), - [sym_float_literal] = ACTIONS(1647), + [ts_builtin_sym_end] = ACTIONS(1645), + [sym__primitive_identifier] = ACTIONS(1647), + [anon_sym_SEMI] = ACTIONS(1645), + [anon_sym_macro_rules_BANG] = ACTIONS(1645), + [anon_sym_LPAREN] = ACTIONS(1645), + [anon_sym_LBRACE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(1645), + [anon_sym_LBRACK] = ACTIONS(1645), + [anon_sym_STAR] = ACTIONS(1645), + [anon_sym_SQUOTE] = ACTIONS(1647), + [anon_sym_async] = ACTIONS(1647), + [anon_sym_break] = ACTIONS(1647), + [anon_sym_const] = ACTIONS(1647), + [anon_sym_continue] = ACTIONS(1647), + [anon_sym_default] = ACTIONS(1647), + [anon_sym_enum] = ACTIONS(1647), + [anon_sym_fn] = ACTIONS(1647), + [anon_sym_for] = ACTIONS(1647), + [anon_sym_if] = ACTIONS(1647), + [anon_sym_impl] = ACTIONS(1647), + [anon_sym_let] = ACTIONS(1647), + [anon_sym_loop] = ACTIONS(1647), + [anon_sym_match] = ACTIONS(1647), + [anon_sym_mod] = ACTIONS(1647), + [anon_sym_pub] = ACTIONS(1647), + [anon_sym_return] = ACTIONS(1647), + [anon_sym_static] = ACTIONS(1647), + [anon_sym_struct] = ACTIONS(1647), + [anon_sym_trait] = ACTIONS(1647), + [anon_sym_type] = ACTIONS(1647), + [anon_sym_union] = ACTIONS(1647), + [anon_sym_unsafe] = ACTIONS(1647), + [anon_sym_use] = ACTIONS(1647), + [anon_sym_while] = ACTIONS(1647), + [anon_sym_POUND] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1645), + [anon_sym_extern] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_COLON_COLON] = ACTIONS(1645), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_DOT_DOT] = ACTIONS(1645), + [anon_sym_DASH] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1645), + [anon_sym_yield] = ACTIONS(1647), + [anon_sym_move] = ACTIONS(1647), + [sym_integer_literal] = ACTIONS(1645), + [aux_sym_string_literal_token1] = ACTIONS(1645), + [sym_char_literal] = ACTIONS(1645), + [anon_sym_true] = ACTIONS(1647), + [anon_sym_false] = ACTIONS(1647), + [anon_sym_u8] = ACTIONS(1647), + [anon_sym_i8] = ACTIONS(1647), + [anon_sym_u16] = ACTIONS(1647), + [anon_sym_i16] = ACTIONS(1647), + [anon_sym_u32] = ACTIONS(1647), + [anon_sym_i32] = ACTIONS(1647), + [anon_sym_u64] = ACTIONS(1647), + [anon_sym_i64] = ACTIONS(1647), + [anon_sym_u128] = ACTIONS(1647), + [anon_sym_i128] = ACTIONS(1647), + [anon_sym_isize] = ACTIONS(1647), + [anon_sym_usize] = ACTIONS(1647), + [anon_sym_f32] = ACTIONS(1647), + [anon_sym_f64] = ACTIONS(1647), + [anon_sym_bool] = ACTIONS(1647), + [anon_sym_str] = ACTIONS(1647), + [anon_sym_char] = ACTIONS(1647), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(1645), + [sym_self] = ACTIONS(1647), + [sym_super] = ACTIONS(1647), + [sym_crate] = ACTIONS(1647), + [sym_metavariable] = ACTIONS(1645), + [sym_grit_metavariable] = ACTIONS(1645), + [sym_raw_string_literal] = ACTIONS(1645), + [sym_float_literal] = ACTIONS(1645), [sym_block_comment] = ACTIONS(3), }, [328] = { - [ts_builtin_sym_end] = ACTIONS(1651), - [sym__primitive_identifier] = ACTIONS(1653), - [anon_sym_SEMI] = ACTIONS(1651), - [anon_sym_macro_rules_BANG] = ACTIONS(1651), - [anon_sym_LPAREN] = ACTIONS(1651), - [anon_sym_LBRACE] = ACTIONS(1651), - [anon_sym_RBRACE] = ACTIONS(1651), - [anon_sym_LBRACK] = ACTIONS(1651), - [anon_sym_STAR] = ACTIONS(1651), - [anon_sym_SQUOTE] = ACTIONS(1653), - [anon_sym_async] = ACTIONS(1653), - [anon_sym_break] = ACTIONS(1653), - [anon_sym_const] = ACTIONS(1653), - [anon_sym_continue] = ACTIONS(1653), - [anon_sym_default] = ACTIONS(1653), - [anon_sym_enum] = ACTIONS(1653), - [anon_sym_fn] = ACTIONS(1653), - [anon_sym_for] = ACTIONS(1653), - [anon_sym_if] = ACTIONS(1653), - [anon_sym_impl] = ACTIONS(1653), - [anon_sym_let] = ACTIONS(1653), - [anon_sym_loop] = ACTIONS(1653), - [anon_sym_match] = ACTIONS(1653), - [anon_sym_mod] = ACTIONS(1653), - [anon_sym_pub] = ACTIONS(1653), - [anon_sym_return] = ACTIONS(1653), - [anon_sym_static] = ACTIONS(1653), - [anon_sym_struct] = ACTIONS(1653), - [anon_sym_trait] = ACTIONS(1653), - [anon_sym_type] = ACTIONS(1653), - [anon_sym_union] = ACTIONS(1653), - [anon_sym_unsafe] = ACTIONS(1653), - [anon_sym_use] = ACTIONS(1653), - [anon_sym_while] = ACTIONS(1653), - [anon_sym_POUND] = ACTIONS(1651), - [anon_sym_BANG] = ACTIONS(1651), - [anon_sym_extern] = ACTIONS(1653), - [anon_sym_LT] = ACTIONS(1651), - [anon_sym_COLON_COLON] = ACTIONS(1651), - [anon_sym_AMP] = ACTIONS(1651), - [anon_sym_DOT_DOT] = ACTIONS(1651), - [anon_sym_DASH] = ACTIONS(1651), - [anon_sym_PIPE] = ACTIONS(1651), - [anon_sym_yield] = ACTIONS(1653), - [anon_sym_move] = ACTIONS(1653), - [sym_integer_literal] = ACTIONS(1651), - [aux_sym_string_literal_token1] = ACTIONS(1651), - [sym_char_literal] = ACTIONS(1651), - [anon_sym_true] = ACTIONS(1653), - [anon_sym_false] = ACTIONS(1653), - [anon_sym_u8] = ACTIONS(1653), - [anon_sym_i8] = ACTIONS(1653), - [anon_sym_u16] = ACTIONS(1653), - [anon_sym_i16] = ACTIONS(1653), - [anon_sym_u32] = ACTIONS(1653), - [anon_sym_i32] = ACTIONS(1653), - [anon_sym_u64] = ACTIONS(1653), - [anon_sym_i64] = ACTIONS(1653), - [anon_sym_u128] = ACTIONS(1653), - [anon_sym_i128] = ACTIONS(1653), - [anon_sym_isize] = ACTIONS(1653), - [anon_sym_usize] = ACTIONS(1653), - [anon_sym_f32] = ACTIONS(1653), - [anon_sym_f64] = ACTIONS(1653), - [anon_sym_bool] = ACTIONS(1653), - [anon_sym_str] = ACTIONS(1653), - [anon_sym_char] = ACTIONS(1653), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1651), - [sym_self] = ACTIONS(1653), - [sym_super] = ACTIONS(1653), - [sym_crate] = ACTIONS(1653), - [sym_metavariable] = ACTIONS(1651), - [sym_grit_metavariable] = ACTIONS(1651), - [sym_raw_string_literal] = ACTIONS(1651), - [sym_float_literal] = ACTIONS(1651), + [ts_builtin_sym_end] = ACTIONS(1649), + [sym__primitive_identifier] = ACTIONS(1651), + [anon_sym_SEMI] = ACTIONS(1649), + [anon_sym_macro_rules_BANG] = ACTIONS(1649), + [anon_sym_LPAREN] = ACTIONS(1649), + [anon_sym_LBRACE] = ACTIONS(1649), + [anon_sym_RBRACE] = ACTIONS(1649), + [anon_sym_LBRACK] = ACTIONS(1649), + [anon_sym_STAR] = ACTIONS(1649), + [anon_sym_SQUOTE] = ACTIONS(1651), + [anon_sym_async] = ACTIONS(1651), + [anon_sym_break] = ACTIONS(1651), + [anon_sym_const] = ACTIONS(1651), + [anon_sym_continue] = ACTIONS(1651), + [anon_sym_default] = ACTIONS(1651), + [anon_sym_enum] = ACTIONS(1651), + [anon_sym_fn] = ACTIONS(1651), + [anon_sym_for] = ACTIONS(1651), + [anon_sym_if] = ACTIONS(1651), + [anon_sym_impl] = ACTIONS(1651), + [anon_sym_let] = ACTIONS(1651), + [anon_sym_loop] = ACTIONS(1651), + [anon_sym_match] = ACTIONS(1651), + [anon_sym_mod] = ACTIONS(1651), + [anon_sym_pub] = ACTIONS(1651), + [anon_sym_return] = ACTIONS(1651), + [anon_sym_static] = ACTIONS(1651), + [anon_sym_struct] = ACTIONS(1651), + [anon_sym_trait] = ACTIONS(1651), + [anon_sym_type] = ACTIONS(1651), + [anon_sym_union] = ACTIONS(1651), + [anon_sym_unsafe] = ACTIONS(1651), + [anon_sym_use] = ACTIONS(1651), + [anon_sym_while] = ACTIONS(1651), + [anon_sym_POUND] = ACTIONS(1649), + [anon_sym_BANG] = ACTIONS(1649), + [anon_sym_extern] = ACTIONS(1651), + [anon_sym_LT] = ACTIONS(1649), + [anon_sym_COLON_COLON] = ACTIONS(1649), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_DOT_DOT] = ACTIONS(1649), + [anon_sym_DASH] = ACTIONS(1649), + [anon_sym_PIPE] = ACTIONS(1649), + [anon_sym_yield] = ACTIONS(1651), + [anon_sym_move] = ACTIONS(1651), + [sym_integer_literal] = ACTIONS(1649), + [aux_sym_string_literal_token1] = ACTIONS(1649), + [sym_char_literal] = ACTIONS(1649), + [anon_sym_true] = ACTIONS(1651), + [anon_sym_false] = ACTIONS(1651), + [anon_sym_u8] = ACTIONS(1651), + [anon_sym_i8] = ACTIONS(1651), + [anon_sym_u16] = ACTIONS(1651), + [anon_sym_i16] = ACTIONS(1651), + [anon_sym_u32] = ACTIONS(1651), + [anon_sym_i32] = ACTIONS(1651), + [anon_sym_u64] = ACTIONS(1651), + [anon_sym_i64] = ACTIONS(1651), + [anon_sym_u128] = ACTIONS(1651), + [anon_sym_i128] = ACTIONS(1651), + [anon_sym_isize] = ACTIONS(1651), + [anon_sym_usize] = ACTIONS(1651), + [anon_sym_f32] = ACTIONS(1651), + [anon_sym_f64] = ACTIONS(1651), + [anon_sym_bool] = ACTIONS(1651), + [anon_sym_str] = ACTIONS(1651), + [anon_sym_char] = ACTIONS(1651), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(1649), + [sym_self] = ACTIONS(1651), + [sym_super] = ACTIONS(1651), + [sym_crate] = ACTIONS(1651), + [sym_metavariable] = ACTIONS(1649), + [sym_grit_metavariable] = ACTIONS(1649), + [sym_raw_string_literal] = ACTIONS(1649), + [sym_float_literal] = ACTIONS(1649), [sym_block_comment] = ACTIONS(3), }, [329] = { - [ts_builtin_sym_end] = ACTIONS(1655), - [sym__primitive_identifier] = ACTIONS(1657), - [anon_sym_SEMI] = ACTIONS(1655), - [anon_sym_macro_rules_BANG] = ACTIONS(1655), - [anon_sym_LPAREN] = ACTIONS(1655), - [anon_sym_LBRACE] = ACTIONS(1655), - [anon_sym_RBRACE] = ACTIONS(1655), - [anon_sym_LBRACK] = ACTIONS(1655), - [anon_sym_STAR] = ACTIONS(1655), - [anon_sym_SQUOTE] = ACTIONS(1657), - [anon_sym_async] = ACTIONS(1657), - [anon_sym_break] = ACTIONS(1657), - [anon_sym_const] = ACTIONS(1657), - [anon_sym_continue] = ACTIONS(1657), - [anon_sym_default] = ACTIONS(1657), - [anon_sym_enum] = ACTIONS(1657), - [anon_sym_fn] = ACTIONS(1657), - [anon_sym_for] = ACTIONS(1657), - [anon_sym_if] = ACTIONS(1657), - [anon_sym_impl] = ACTIONS(1657), - [anon_sym_let] = ACTIONS(1657), - [anon_sym_loop] = ACTIONS(1657), - [anon_sym_match] = ACTIONS(1657), - [anon_sym_mod] = ACTIONS(1657), - [anon_sym_pub] = ACTIONS(1657), - [anon_sym_return] = ACTIONS(1657), - [anon_sym_static] = ACTIONS(1657), - [anon_sym_struct] = ACTIONS(1657), - [anon_sym_trait] = ACTIONS(1657), - [anon_sym_type] = ACTIONS(1657), - [anon_sym_union] = ACTIONS(1657), - [anon_sym_unsafe] = ACTIONS(1657), - [anon_sym_use] = ACTIONS(1657), - [anon_sym_while] = ACTIONS(1657), - [anon_sym_POUND] = ACTIONS(1655), - [anon_sym_BANG] = ACTIONS(1655), - [anon_sym_extern] = ACTIONS(1657), - [anon_sym_LT] = ACTIONS(1655), - [anon_sym_COLON_COLON] = ACTIONS(1655), - [anon_sym_AMP] = ACTIONS(1655), - [anon_sym_DOT_DOT] = ACTIONS(1655), - [anon_sym_DASH] = ACTIONS(1655), - [anon_sym_PIPE] = ACTIONS(1655), - [anon_sym_yield] = ACTIONS(1657), - [anon_sym_move] = ACTIONS(1657), - [sym_integer_literal] = ACTIONS(1655), - [aux_sym_string_literal_token1] = ACTIONS(1655), - [sym_char_literal] = ACTIONS(1655), - [anon_sym_true] = ACTIONS(1657), - [anon_sym_false] = ACTIONS(1657), - [anon_sym_u8] = ACTIONS(1657), - [anon_sym_i8] = ACTIONS(1657), - [anon_sym_u16] = ACTIONS(1657), - [anon_sym_i16] = ACTIONS(1657), - [anon_sym_u32] = ACTIONS(1657), - [anon_sym_i32] = ACTIONS(1657), - [anon_sym_u64] = ACTIONS(1657), - [anon_sym_i64] = ACTIONS(1657), - [anon_sym_u128] = ACTIONS(1657), - [anon_sym_i128] = ACTIONS(1657), - [anon_sym_isize] = ACTIONS(1657), - [anon_sym_usize] = ACTIONS(1657), - [anon_sym_f32] = ACTIONS(1657), - [anon_sym_f64] = ACTIONS(1657), - [anon_sym_bool] = ACTIONS(1657), - [anon_sym_str] = ACTIONS(1657), - [anon_sym_char] = ACTIONS(1657), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1655), - [sym_self] = ACTIONS(1657), - [sym_super] = ACTIONS(1657), - [sym_crate] = ACTIONS(1657), - [sym_metavariable] = ACTIONS(1655), - [sym_grit_metavariable] = ACTIONS(1655), - [sym_raw_string_literal] = ACTIONS(1655), - [sym_float_literal] = ACTIONS(1655), + [ts_builtin_sym_end] = ACTIONS(1653), + [sym__primitive_identifier] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1653), + [anon_sym_macro_rules_BANG] = ACTIONS(1653), + [anon_sym_LPAREN] = ACTIONS(1653), + [anon_sym_LBRACE] = ACTIONS(1653), + [anon_sym_RBRACE] = ACTIONS(1653), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_STAR] = ACTIONS(1653), + [anon_sym_SQUOTE] = ACTIONS(1655), + [anon_sym_async] = ACTIONS(1655), + [anon_sym_break] = ACTIONS(1655), + [anon_sym_const] = ACTIONS(1655), + [anon_sym_continue] = ACTIONS(1655), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_enum] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1655), + [anon_sym_for] = ACTIONS(1655), + [anon_sym_if] = ACTIONS(1655), + [anon_sym_impl] = ACTIONS(1655), + [anon_sym_let] = ACTIONS(1655), + [anon_sym_loop] = ACTIONS(1655), + [anon_sym_match] = ACTIONS(1655), + [anon_sym_mod] = ACTIONS(1655), + [anon_sym_pub] = ACTIONS(1655), + [anon_sym_return] = ACTIONS(1655), + [anon_sym_static] = ACTIONS(1655), + [anon_sym_struct] = ACTIONS(1655), + [anon_sym_trait] = ACTIONS(1655), + [anon_sym_type] = ACTIONS(1655), + [anon_sym_union] = ACTIONS(1655), + [anon_sym_unsafe] = ACTIONS(1655), + [anon_sym_use] = ACTIONS(1655), + [anon_sym_while] = ACTIONS(1655), + [anon_sym_POUND] = ACTIONS(1653), + [anon_sym_BANG] = ACTIONS(1653), + [anon_sym_extern] = ACTIONS(1655), + [anon_sym_LT] = ACTIONS(1653), + [anon_sym_COLON_COLON] = ACTIONS(1653), + [anon_sym_AMP] = ACTIONS(1653), + [anon_sym_DOT_DOT] = ACTIONS(1653), + [anon_sym_DASH] = ACTIONS(1653), + [anon_sym_PIPE] = ACTIONS(1653), + [anon_sym_yield] = ACTIONS(1655), + [anon_sym_move] = ACTIONS(1655), + [sym_integer_literal] = ACTIONS(1653), + [aux_sym_string_literal_token1] = ACTIONS(1653), + [sym_char_literal] = ACTIONS(1653), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_u8] = ACTIONS(1655), + [anon_sym_i8] = ACTIONS(1655), + [anon_sym_u16] = ACTIONS(1655), + [anon_sym_i16] = ACTIONS(1655), + [anon_sym_u32] = ACTIONS(1655), + [anon_sym_i32] = ACTIONS(1655), + [anon_sym_u64] = ACTIONS(1655), + [anon_sym_i64] = ACTIONS(1655), + [anon_sym_u128] = ACTIONS(1655), + [anon_sym_i128] = ACTIONS(1655), + [anon_sym_isize] = ACTIONS(1655), + [anon_sym_usize] = ACTIONS(1655), + [anon_sym_f32] = ACTIONS(1655), + [anon_sym_f64] = ACTIONS(1655), + [anon_sym_bool] = ACTIONS(1655), + [anon_sym_str] = ACTIONS(1655), + [anon_sym_char] = ACTIONS(1655), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(1653), + [sym_self] = ACTIONS(1655), + [sym_super] = ACTIONS(1655), + [sym_crate] = ACTIONS(1655), + [sym_metavariable] = ACTIONS(1653), + [sym_grit_metavariable] = ACTIONS(1653), + [sym_raw_string_literal] = ACTIONS(1653), + [sym_float_literal] = ACTIONS(1653), [sym_block_comment] = ACTIONS(3), }, [330] = { - [ts_builtin_sym_end] = ACTIONS(1659), - [sym__primitive_identifier] = ACTIONS(1661), - [anon_sym_SEMI] = ACTIONS(1659), - [anon_sym_macro_rules_BANG] = ACTIONS(1659), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_LBRACE] = ACTIONS(1659), - [anon_sym_RBRACE] = ACTIONS(1659), - [anon_sym_LBRACK] = ACTIONS(1659), - [anon_sym_STAR] = ACTIONS(1659), - [anon_sym_SQUOTE] = ACTIONS(1661), - [anon_sym_async] = ACTIONS(1661), - [anon_sym_break] = ACTIONS(1661), - [anon_sym_const] = ACTIONS(1661), - [anon_sym_continue] = ACTIONS(1661), - [anon_sym_default] = ACTIONS(1661), - [anon_sym_enum] = ACTIONS(1661), - [anon_sym_fn] = ACTIONS(1661), - [anon_sym_for] = ACTIONS(1661), - [anon_sym_if] = ACTIONS(1661), - [anon_sym_impl] = ACTIONS(1661), - [anon_sym_let] = ACTIONS(1661), - [anon_sym_loop] = ACTIONS(1661), - [anon_sym_match] = ACTIONS(1661), - [anon_sym_mod] = ACTIONS(1661), - [anon_sym_pub] = ACTIONS(1661), - [anon_sym_return] = ACTIONS(1661), - [anon_sym_static] = ACTIONS(1661), - [anon_sym_struct] = ACTIONS(1661), - [anon_sym_trait] = ACTIONS(1661), - [anon_sym_type] = ACTIONS(1661), - [anon_sym_union] = ACTIONS(1661), - [anon_sym_unsafe] = ACTIONS(1661), - [anon_sym_use] = ACTIONS(1661), - [anon_sym_while] = ACTIONS(1661), - [anon_sym_POUND] = ACTIONS(1659), - [anon_sym_BANG] = ACTIONS(1659), - [anon_sym_extern] = ACTIONS(1661), - [anon_sym_LT] = ACTIONS(1659), - [anon_sym_COLON_COLON] = ACTIONS(1659), - [anon_sym_AMP] = ACTIONS(1659), - [anon_sym_DOT_DOT] = ACTIONS(1659), - [anon_sym_DASH] = ACTIONS(1659), - [anon_sym_PIPE] = ACTIONS(1659), - [anon_sym_yield] = ACTIONS(1661), - [anon_sym_move] = ACTIONS(1661), - [sym_integer_literal] = ACTIONS(1659), - [aux_sym_string_literal_token1] = ACTIONS(1659), - [sym_char_literal] = ACTIONS(1659), - [anon_sym_true] = ACTIONS(1661), - [anon_sym_false] = ACTIONS(1661), - [anon_sym_u8] = ACTIONS(1661), - [anon_sym_i8] = ACTIONS(1661), - [anon_sym_u16] = ACTIONS(1661), - [anon_sym_i16] = ACTIONS(1661), - [anon_sym_u32] = ACTIONS(1661), - [anon_sym_i32] = ACTIONS(1661), - [anon_sym_u64] = ACTIONS(1661), - [anon_sym_i64] = ACTIONS(1661), - [anon_sym_u128] = ACTIONS(1661), - [anon_sym_i128] = ACTIONS(1661), - [anon_sym_isize] = ACTIONS(1661), - [anon_sym_usize] = ACTIONS(1661), - [anon_sym_f32] = ACTIONS(1661), - [anon_sym_f64] = ACTIONS(1661), - [anon_sym_bool] = ACTIONS(1661), - [anon_sym_str] = ACTIONS(1661), - [anon_sym_char] = ACTIONS(1661), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1659), - [sym_self] = ACTIONS(1661), - [sym_super] = ACTIONS(1661), - [sym_crate] = ACTIONS(1661), - [sym_metavariable] = ACTIONS(1659), - [sym_grit_metavariable] = ACTIONS(1659), - [sym_raw_string_literal] = ACTIONS(1659), - [sym_float_literal] = ACTIONS(1659), + [ts_builtin_sym_end] = ACTIONS(1657), + [sym__primitive_identifier] = ACTIONS(1659), + [anon_sym_SEMI] = ACTIONS(1657), + [anon_sym_macro_rules_BANG] = ACTIONS(1657), + [anon_sym_LPAREN] = ACTIONS(1657), + [anon_sym_LBRACE] = ACTIONS(1657), + [anon_sym_RBRACE] = ACTIONS(1657), + [anon_sym_LBRACK] = ACTIONS(1657), + [anon_sym_STAR] = ACTIONS(1657), + [anon_sym_SQUOTE] = ACTIONS(1659), + [anon_sym_async] = ACTIONS(1659), + [anon_sym_break] = ACTIONS(1659), + [anon_sym_const] = ACTIONS(1659), + [anon_sym_continue] = ACTIONS(1659), + [anon_sym_default] = ACTIONS(1659), + [anon_sym_enum] = ACTIONS(1659), + [anon_sym_fn] = ACTIONS(1659), + [anon_sym_for] = ACTIONS(1659), + [anon_sym_if] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1659), + [anon_sym_let] = ACTIONS(1659), + [anon_sym_loop] = ACTIONS(1659), + [anon_sym_match] = ACTIONS(1659), + [anon_sym_mod] = ACTIONS(1659), + [anon_sym_pub] = ACTIONS(1659), + [anon_sym_return] = ACTIONS(1659), + [anon_sym_static] = ACTIONS(1659), + [anon_sym_struct] = ACTIONS(1659), + [anon_sym_trait] = ACTIONS(1659), + [anon_sym_type] = ACTIONS(1659), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1659), + [anon_sym_use] = ACTIONS(1659), + [anon_sym_while] = ACTIONS(1659), + [anon_sym_POUND] = ACTIONS(1657), + [anon_sym_BANG] = ACTIONS(1657), + [anon_sym_extern] = ACTIONS(1659), + [anon_sym_LT] = ACTIONS(1657), + [anon_sym_COLON_COLON] = ACTIONS(1657), + [anon_sym_AMP] = ACTIONS(1657), + [anon_sym_DOT_DOT] = ACTIONS(1657), + [anon_sym_DASH] = ACTIONS(1657), + [anon_sym_PIPE] = ACTIONS(1657), + [anon_sym_yield] = ACTIONS(1659), + [anon_sym_move] = ACTIONS(1659), + [sym_integer_literal] = ACTIONS(1657), + [aux_sym_string_literal_token1] = ACTIONS(1657), + [sym_char_literal] = ACTIONS(1657), + [anon_sym_true] = ACTIONS(1659), + [anon_sym_false] = ACTIONS(1659), + [anon_sym_u8] = ACTIONS(1659), + [anon_sym_i8] = ACTIONS(1659), + [anon_sym_u16] = ACTIONS(1659), + [anon_sym_i16] = ACTIONS(1659), + [anon_sym_u32] = ACTIONS(1659), + [anon_sym_i32] = ACTIONS(1659), + [anon_sym_u64] = ACTIONS(1659), + [anon_sym_i64] = ACTIONS(1659), + [anon_sym_u128] = ACTIONS(1659), + [anon_sym_i128] = ACTIONS(1659), + [anon_sym_isize] = ACTIONS(1659), + [anon_sym_usize] = ACTIONS(1659), + [anon_sym_f32] = ACTIONS(1659), + [anon_sym_f64] = ACTIONS(1659), + [anon_sym_bool] = ACTIONS(1659), + [anon_sym_str] = ACTIONS(1659), + [anon_sym_char] = ACTIONS(1659), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(1657), + [sym_self] = ACTIONS(1659), + [sym_super] = ACTIONS(1659), + [sym_crate] = ACTIONS(1659), + [sym_metavariable] = ACTIONS(1657), + [sym_grit_metavariable] = ACTIONS(1657), + [sym_raw_string_literal] = ACTIONS(1657), + [sym_float_literal] = ACTIONS(1657), [sym_block_comment] = ACTIONS(3), }, [331] = { - [ts_builtin_sym_end] = ACTIONS(1663), - [sym__primitive_identifier] = ACTIONS(1665), - [anon_sym_SEMI] = ACTIONS(1663), - [anon_sym_macro_rules_BANG] = ACTIONS(1663), - [anon_sym_LPAREN] = ACTIONS(1663), - [anon_sym_LBRACE] = ACTIONS(1663), - [anon_sym_RBRACE] = ACTIONS(1663), - [anon_sym_LBRACK] = ACTIONS(1663), - [anon_sym_STAR] = ACTIONS(1663), - [anon_sym_SQUOTE] = ACTIONS(1665), - [anon_sym_async] = ACTIONS(1665), - [anon_sym_break] = ACTIONS(1665), - [anon_sym_const] = ACTIONS(1665), - [anon_sym_continue] = ACTIONS(1665), - [anon_sym_default] = ACTIONS(1665), - [anon_sym_enum] = ACTIONS(1665), - [anon_sym_fn] = ACTIONS(1665), - [anon_sym_for] = ACTIONS(1665), - [anon_sym_if] = ACTIONS(1665), - [anon_sym_impl] = ACTIONS(1665), - [anon_sym_let] = ACTIONS(1665), - [anon_sym_loop] = ACTIONS(1665), - [anon_sym_match] = ACTIONS(1665), - [anon_sym_mod] = ACTIONS(1665), - [anon_sym_pub] = ACTIONS(1665), - [anon_sym_return] = ACTIONS(1665), - [anon_sym_static] = ACTIONS(1665), - [anon_sym_struct] = ACTIONS(1665), - [anon_sym_trait] = ACTIONS(1665), - [anon_sym_type] = ACTIONS(1665), - [anon_sym_union] = ACTIONS(1665), - [anon_sym_unsafe] = ACTIONS(1665), - [anon_sym_use] = ACTIONS(1665), - [anon_sym_while] = ACTIONS(1665), - [anon_sym_POUND] = ACTIONS(1663), - [anon_sym_BANG] = ACTIONS(1663), - [anon_sym_extern] = ACTIONS(1665), - [anon_sym_LT] = ACTIONS(1663), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym_AMP] = ACTIONS(1663), - [anon_sym_DOT_DOT] = ACTIONS(1663), - [anon_sym_DASH] = ACTIONS(1663), - [anon_sym_PIPE] = ACTIONS(1663), - [anon_sym_yield] = ACTIONS(1665), - [anon_sym_move] = ACTIONS(1665), - [sym_integer_literal] = ACTIONS(1663), - [aux_sym_string_literal_token1] = ACTIONS(1663), - [sym_char_literal] = ACTIONS(1663), - [anon_sym_true] = ACTIONS(1665), - [anon_sym_false] = ACTIONS(1665), - [anon_sym_u8] = ACTIONS(1665), - [anon_sym_i8] = ACTIONS(1665), - [anon_sym_u16] = ACTIONS(1665), - [anon_sym_i16] = ACTIONS(1665), - [anon_sym_u32] = ACTIONS(1665), - [anon_sym_i32] = ACTIONS(1665), - [anon_sym_u64] = ACTIONS(1665), - [anon_sym_i64] = ACTIONS(1665), - [anon_sym_u128] = ACTIONS(1665), - [anon_sym_i128] = ACTIONS(1665), - [anon_sym_isize] = ACTIONS(1665), - [anon_sym_usize] = ACTIONS(1665), - [anon_sym_f32] = ACTIONS(1665), - [anon_sym_f64] = ACTIONS(1665), - [anon_sym_bool] = ACTIONS(1665), - [anon_sym_str] = ACTIONS(1665), - [anon_sym_char] = ACTIONS(1665), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1663), - [sym_self] = ACTIONS(1665), - [sym_super] = ACTIONS(1665), - [sym_crate] = ACTIONS(1665), - [sym_metavariable] = ACTIONS(1663), - [sym_grit_metavariable] = ACTIONS(1663), - [sym_raw_string_literal] = ACTIONS(1663), - [sym_float_literal] = ACTIONS(1663), + [ts_builtin_sym_end] = ACTIONS(1661), + [sym__primitive_identifier] = ACTIONS(1663), + [anon_sym_SEMI] = ACTIONS(1661), + [anon_sym_macro_rules_BANG] = ACTIONS(1661), + [anon_sym_LPAREN] = ACTIONS(1661), + [anon_sym_LBRACE] = ACTIONS(1661), + [anon_sym_RBRACE] = ACTIONS(1661), + [anon_sym_LBRACK] = ACTIONS(1661), + [anon_sym_STAR] = ACTIONS(1661), + [anon_sym_SQUOTE] = ACTIONS(1663), + [anon_sym_async] = ACTIONS(1663), + [anon_sym_break] = ACTIONS(1663), + [anon_sym_const] = ACTIONS(1663), + [anon_sym_continue] = ACTIONS(1663), + [anon_sym_default] = ACTIONS(1663), + [anon_sym_enum] = ACTIONS(1663), + [anon_sym_fn] = ACTIONS(1663), + [anon_sym_for] = ACTIONS(1663), + [anon_sym_if] = ACTIONS(1663), + [anon_sym_impl] = ACTIONS(1663), + [anon_sym_let] = ACTIONS(1663), + [anon_sym_loop] = ACTIONS(1663), + [anon_sym_match] = ACTIONS(1663), + [anon_sym_mod] = ACTIONS(1663), + [anon_sym_pub] = ACTIONS(1663), + [anon_sym_return] = ACTIONS(1663), + [anon_sym_static] = ACTIONS(1663), + [anon_sym_struct] = ACTIONS(1663), + [anon_sym_trait] = ACTIONS(1663), + [anon_sym_type] = ACTIONS(1663), + [anon_sym_union] = ACTIONS(1663), + [anon_sym_unsafe] = ACTIONS(1663), + [anon_sym_use] = ACTIONS(1663), + [anon_sym_while] = ACTIONS(1663), + [anon_sym_POUND] = ACTIONS(1661), + [anon_sym_BANG] = ACTIONS(1661), + [anon_sym_extern] = ACTIONS(1663), + [anon_sym_LT] = ACTIONS(1661), + [anon_sym_COLON_COLON] = ACTIONS(1661), + [anon_sym_AMP] = ACTIONS(1661), + [anon_sym_DOT_DOT] = ACTIONS(1661), + [anon_sym_DASH] = ACTIONS(1661), + [anon_sym_PIPE] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_move] = ACTIONS(1663), + [sym_integer_literal] = ACTIONS(1661), + [aux_sym_string_literal_token1] = ACTIONS(1661), + [sym_char_literal] = ACTIONS(1661), + [anon_sym_true] = ACTIONS(1663), + [anon_sym_false] = ACTIONS(1663), + [anon_sym_u8] = ACTIONS(1663), + [anon_sym_i8] = ACTIONS(1663), + [anon_sym_u16] = ACTIONS(1663), + [anon_sym_i16] = ACTIONS(1663), + [anon_sym_u32] = ACTIONS(1663), + [anon_sym_i32] = ACTIONS(1663), + [anon_sym_u64] = ACTIONS(1663), + [anon_sym_i64] = ACTIONS(1663), + [anon_sym_u128] = ACTIONS(1663), + [anon_sym_i128] = ACTIONS(1663), + [anon_sym_isize] = ACTIONS(1663), + [anon_sym_usize] = ACTIONS(1663), + [anon_sym_f32] = ACTIONS(1663), + [anon_sym_f64] = ACTIONS(1663), + [anon_sym_bool] = ACTIONS(1663), + [anon_sym_str] = ACTIONS(1663), + [anon_sym_char] = ACTIONS(1663), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(1661), + [sym_self] = ACTIONS(1663), + [sym_super] = ACTIONS(1663), + [sym_crate] = ACTIONS(1663), + [sym_metavariable] = ACTIONS(1661), + [sym_grit_metavariable] = ACTIONS(1661), + [sym_raw_string_literal] = ACTIONS(1661), + [sym_float_literal] = ACTIONS(1661), [sym_block_comment] = ACTIONS(3), }, [332] = { - [ts_builtin_sym_end] = ACTIONS(1667), - [sym__primitive_identifier] = ACTIONS(1669), - [anon_sym_SEMI] = ACTIONS(1667), - [anon_sym_macro_rules_BANG] = ACTIONS(1667), - [anon_sym_LPAREN] = ACTIONS(1667), - [anon_sym_LBRACE] = ACTIONS(1667), - [anon_sym_RBRACE] = ACTIONS(1667), - [anon_sym_LBRACK] = ACTIONS(1667), - [anon_sym_STAR] = ACTIONS(1667), - [anon_sym_SQUOTE] = ACTIONS(1669), - [anon_sym_async] = ACTIONS(1669), - [anon_sym_break] = ACTIONS(1669), - [anon_sym_const] = ACTIONS(1669), - [anon_sym_continue] = ACTIONS(1669), - [anon_sym_default] = ACTIONS(1669), - [anon_sym_enum] = ACTIONS(1669), - [anon_sym_fn] = ACTIONS(1669), - [anon_sym_for] = ACTIONS(1669), - [anon_sym_if] = ACTIONS(1669), - [anon_sym_impl] = ACTIONS(1669), - [anon_sym_let] = ACTIONS(1669), - [anon_sym_loop] = ACTIONS(1669), - [anon_sym_match] = ACTIONS(1669), - [anon_sym_mod] = ACTIONS(1669), - [anon_sym_pub] = ACTIONS(1669), - [anon_sym_return] = ACTIONS(1669), - [anon_sym_static] = ACTIONS(1669), - [anon_sym_struct] = ACTIONS(1669), - [anon_sym_trait] = ACTIONS(1669), - [anon_sym_type] = ACTIONS(1669), - [anon_sym_union] = ACTIONS(1669), - [anon_sym_unsafe] = ACTIONS(1669), - [anon_sym_use] = ACTIONS(1669), - [anon_sym_while] = ACTIONS(1669), - [anon_sym_POUND] = ACTIONS(1667), - [anon_sym_BANG] = ACTIONS(1667), - [anon_sym_extern] = ACTIONS(1669), - [anon_sym_LT] = ACTIONS(1667), - [anon_sym_COLON_COLON] = ACTIONS(1667), - [anon_sym_AMP] = ACTIONS(1667), - [anon_sym_DOT_DOT] = ACTIONS(1667), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_PIPE] = ACTIONS(1667), - [anon_sym_yield] = ACTIONS(1669), - [anon_sym_move] = ACTIONS(1669), - [sym_integer_literal] = ACTIONS(1667), - [aux_sym_string_literal_token1] = ACTIONS(1667), - [sym_char_literal] = ACTIONS(1667), - [anon_sym_true] = ACTIONS(1669), - [anon_sym_false] = ACTIONS(1669), - [anon_sym_u8] = ACTIONS(1669), - [anon_sym_i8] = ACTIONS(1669), - [anon_sym_u16] = ACTIONS(1669), - [anon_sym_i16] = ACTIONS(1669), - [anon_sym_u32] = ACTIONS(1669), - [anon_sym_i32] = ACTIONS(1669), - [anon_sym_u64] = ACTIONS(1669), - [anon_sym_i64] = ACTIONS(1669), - [anon_sym_u128] = ACTIONS(1669), - [anon_sym_i128] = ACTIONS(1669), - [anon_sym_isize] = ACTIONS(1669), - [anon_sym_usize] = ACTIONS(1669), - [anon_sym_f32] = ACTIONS(1669), - [anon_sym_f64] = ACTIONS(1669), - [anon_sym_bool] = ACTIONS(1669), - [anon_sym_str] = ACTIONS(1669), - [anon_sym_char] = ACTIONS(1669), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1667), - [sym_self] = ACTIONS(1669), - [sym_super] = ACTIONS(1669), - [sym_crate] = ACTIONS(1669), - [sym_metavariable] = ACTIONS(1667), - [sym_grit_metavariable] = ACTIONS(1667), - [sym_raw_string_literal] = ACTIONS(1667), - [sym_float_literal] = ACTIONS(1667), + [ts_builtin_sym_end] = ACTIONS(1665), + [sym__primitive_identifier] = ACTIONS(1667), + [anon_sym_SEMI] = ACTIONS(1665), + [anon_sym_macro_rules_BANG] = ACTIONS(1665), + [anon_sym_LPAREN] = ACTIONS(1665), + [anon_sym_LBRACE] = ACTIONS(1665), + [anon_sym_RBRACE] = ACTIONS(1665), + [anon_sym_LBRACK] = ACTIONS(1665), + [anon_sym_STAR] = ACTIONS(1665), + [anon_sym_SQUOTE] = ACTIONS(1667), + [anon_sym_async] = ACTIONS(1667), + [anon_sym_break] = ACTIONS(1667), + [anon_sym_const] = ACTIONS(1667), + [anon_sym_continue] = ACTIONS(1667), + [anon_sym_default] = ACTIONS(1667), + [anon_sym_enum] = ACTIONS(1667), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_for] = ACTIONS(1667), + [anon_sym_if] = ACTIONS(1667), + [anon_sym_impl] = ACTIONS(1667), + [anon_sym_let] = ACTIONS(1667), + [anon_sym_loop] = ACTIONS(1667), + [anon_sym_match] = ACTIONS(1667), + [anon_sym_mod] = ACTIONS(1667), + [anon_sym_pub] = ACTIONS(1667), + [anon_sym_return] = ACTIONS(1667), + [anon_sym_static] = ACTIONS(1667), + [anon_sym_struct] = ACTIONS(1667), + [anon_sym_trait] = ACTIONS(1667), + [anon_sym_type] = ACTIONS(1667), + [anon_sym_union] = ACTIONS(1667), + [anon_sym_unsafe] = ACTIONS(1667), + [anon_sym_use] = ACTIONS(1667), + [anon_sym_while] = ACTIONS(1667), + [anon_sym_POUND] = ACTIONS(1665), + [anon_sym_BANG] = ACTIONS(1665), + [anon_sym_extern] = ACTIONS(1667), + [anon_sym_LT] = ACTIONS(1665), + [anon_sym_COLON_COLON] = ACTIONS(1665), + [anon_sym_AMP] = ACTIONS(1665), + [anon_sym_DOT_DOT] = ACTIONS(1665), + [anon_sym_DASH] = ACTIONS(1665), + [anon_sym_PIPE] = ACTIONS(1665), + [anon_sym_yield] = ACTIONS(1667), + [anon_sym_move] = ACTIONS(1667), + [sym_integer_literal] = ACTIONS(1665), + [aux_sym_string_literal_token1] = ACTIONS(1665), + [sym_char_literal] = ACTIONS(1665), + [anon_sym_true] = ACTIONS(1667), + [anon_sym_false] = ACTIONS(1667), + [anon_sym_u8] = ACTIONS(1667), + [anon_sym_i8] = ACTIONS(1667), + [anon_sym_u16] = ACTIONS(1667), + [anon_sym_i16] = ACTIONS(1667), + [anon_sym_u32] = ACTIONS(1667), + [anon_sym_i32] = ACTIONS(1667), + [anon_sym_u64] = ACTIONS(1667), + [anon_sym_i64] = ACTIONS(1667), + [anon_sym_u128] = ACTIONS(1667), + [anon_sym_i128] = ACTIONS(1667), + [anon_sym_isize] = ACTIONS(1667), + [anon_sym_usize] = ACTIONS(1667), + [anon_sym_f32] = ACTIONS(1667), + [anon_sym_f64] = ACTIONS(1667), + [anon_sym_bool] = ACTIONS(1667), + [anon_sym_str] = ACTIONS(1667), + [anon_sym_char] = ACTIONS(1667), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(1665), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1665), + [sym_grit_metavariable] = ACTIONS(1665), + [sym_raw_string_literal] = ACTIONS(1665), + [sym_float_literal] = ACTIONS(1665), [sym_block_comment] = ACTIONS(3), }, [333] = { - [ts_builtin_sym_end] = ACTIONS(1671), - [sym__primitive_identifier] = ACTIONS(1673), - [anon_sym_SEMI] = ACTIONS(1671), - [anon_sym_macro_rules_BANG] = ACTIONS(1671), - [anon_sym_LPAREN] = ACTIONS(1671), - [anon_sym_LBRACE] = ACTIONS(1671), - [anon_sym_RBRACE] = ACTIONS(1671), - [anon_sym_LBRACK] = ACTIONS(1671), - [anon_sym_STAR] = ACTIONS(1671), - [anon_sym_SQUOTE] = ACTIONS(1673), - [anon_sym_async] = ACTIONS(1673), - [anon_sym_break] = ACTIONS(1673), - [anon_sym_const] = ACTIONS(1673), - [anon_sym_continue] = ACTIONS(1673), - [anon_sym_default] = ACTIONS(1673), - [anon_sym_enum] = ACTIONS(1673), - [anon_sym_fn] = ACTIONS(1673), - [anon_sym_for] = ACTIONS(1673), - [anon_sym_if] = ACTIONS(1673), - [anon_sym_impl] = ACTIONS(1673), - [anon_sym_let] = ACTIONS(1673), - [anon_sym_loop] = ACTIONS(1673), - [anon_sym_match] = ACTIONS(1673), - [anon_sym_mod] = ACTIONS(1673), - [anon_sym_pub] = ACTIONS(1673), - [anon_sym_return] = ACTIONS(1673), - [anon_sym_static] = ACTIONS(1673), - [anon_sym_struct] = ACTIONS(1673), - [anon_sym_trait] = ACTIONS(1673), - [anon_sym_type] = ACTIONS(1673), - [anon_sym_union] = ACTIONS(1673), - [anon_sym_unsafe] = ACTIONS(1673), - [anon_sym_use] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1673), - [anon_sym_POUND] = ACTIONS(1671), - [anon_sym_BANG] = ACTIONS(1671), - [anon_sym_extern] = ACTIONS(1673), - [anon_sym_LT] = ACTIONS(1671), - [anon_sym_COLON_COLON] = ACTIONS(1671), - [anon_sym_AMP] = ACTIONS(1671), - [anon_sym_DOT_DOT] = ACTIONS(1671), - [anon_sym_DASH] = ACTIONS(1671), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_yield] = ACTIONS(1673), - [anon_sym_move] = ACTIONS(1673), - [sym_integer_literal] = ACTIONS(1671), - [aux_sym_string_literal_token1] = ACTIONS(1671), - [sym_char_literal] = ACTIONS(1671), - [anon_sym_true] = ACTIONS(1673), - [anon_sym_false] = ACTIONS(1673), - [anon_sym_u8] = ACTIONS(1673), - [anon_sym_i8] = ACTIONS(1673), - [anon_sym_u16] = ACTIONS(1673), - [anon_sym_i16] = ACTIONS(1673), - [anon_sym_u32] = ACTIONS(1673), - [anon_sym_i32] = ACTIONS(1673), - [anon_sym_u64] = ACTIONS(1673), - [anon_sym_i64] = ACTIONS(1673), - [anon_sym_u128] = ACTIONS(1673), - [anon_sym_i128] = ACTIONS(1673), - [anon_sym_isize] = ACTIONS(1673), - [anon_sym_usize] = ACTIONS(1673), - [anon_sym_f32] = ACTIONS(1673), - [anon_sym_f64] = ACTIONS(1673), - [anon_sym_bool] = ACTIONS(1673), - [anon_sym_str] = ACTIONS(1673), - [anon_sym_char] = ACTIONS(1673), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1671), - [sym_self] = ACTIONS(1673), - [sym_super] = ACTIONS(1673), - [sym_crate] = ACTIONS(1673), - [sym_metavariable] = ACTIONS(1671), - [sym_grit_metavariable] = ACTIONS(1671), - [sym_raw_string_literal] = ACTIONS(1671), - [sym_float_literal] = ACTIONS(1671), + [ts_builtin_sym_end] = ACTIONS(689), + [sym__primitive_identifier] = ACTIONS(691), + [anon_sym_SEMI] = ACTIONS(689), + [anon_sym_macro_rules_BANG] = ACTIONS(689), + [anon_sym_LPAREN] = ACTIONS(689), + [anon_sym_LBRACE] = ACTIONS(689), + [anon_sym_RBRACE] = ACTIONS(689), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_STAR] = ACTIONS(689), + [anon_sym_SQUOTE] = ACTIONS(691), + [anon_sym_async] = ACTIONS(691), + [anon_sym_break] = ACTIONS(691), + [anon_sym_const] = ACTIONS(691), + [anon_sym_continue] = ACTIONS(691), + [anon_sym_default] = ACTIONS(691), + [anon_sym_enum] = ACTIONS(691), + [anon_sym_fn] = ACTIONS(691), + [anon_sym_for] = ACTIONS(691), + [anon_sym_if] = ACTIONS(691), + [anon_sym_impl] = ACTIONS(691), + [anon_sym_let] = ACTIONS(691), + [anon_sym_loop] = ACTIONS(691), + [anon_sym_match] = ACTIONS(691), + [anon_sym_mod] = ACTIONS(691), + [anon_sym_pub] = ACTIONS(691), + [anon_sym_return] = ACTIONS(691), + [anon_sym_static] = ACTIONS(691), + [anon_sym_struct] = ACTIONS(691), + [anon_sym_trait] = ACTIONS(691), + [anon_sym_type] = ACTIONS(691), + [anon_sym_union] = ACTIONS(691), + [anon_sym_unsafe] = ACTIONS(691), + [anon_sym_use] = ACTIONS(691), + [anon_sym_while] = ACTIONS(691), + [anon_sym_POUND] = ACTIONS(689), + [anon_sym_BANG] = ACTIONS(689), + [anon_sym_extern] = ACTIONS(691), + [anon_sym_LT] = ACTIONS(689), + [anon_sym_COLON_COLON] = ACTIONS(689), + [anon_sym_AMP] = ACTIONS(689), + [anon_sym_DOT_DOT] = ACTIONS(689), + [anon_sym_DASH] = ACTIONS(689), + [anon_sym_PIPE] = ACTIONS(689), + [anon_sym_yield] = ACTIONS(691), + [anon_sym_move] = ACTIONS(691), + [sym_integer_literal] = ACTIONS(689), + [aux_sym_string_literal_token1] = ACTIONS(689), + [sym_char_literal] = ACTIONS(689), + [anon_sym_true] = ACTIONS(691), + [anon_sym_false] = ACTIONS(691), + [anon_sym_u8] = ACTIONS(691), + [anon_sym_i8] = ACTIONS(691), + [anon_sym_u16] = ACTIONS(691), + [anon_sym_i16] = ACTIONS(691), + [anon_sym_u32] = ACTIONS(691), + [anon_sym_i32] = ACTIONS(691), + [anon_sym_u64] = ACTIONS(691), + [anon_sym_i64] = ACTIONS(691), + [anon_sym_u128] = ACTIONS(691), + [anon_sym_i128] = ACTIONS(691), + [anon_sym_isize] = ACTIONS(691), + [anon_sym_usize] = ACTIONS(691), + [anon_sym_f32] = ACTIONS(691), + [anon_sym_f64] = ACTIONS(691), + [anon_sym_bool] = ACTIONS(691), + [anon_sym_str] = ACTIONS(691), + [anon_sym_char] = ACTIONS(691), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(689), + [sym_self] = ACTIONS(691), + [sym_super] = ACTIONS(691), + [sym_crate] = ACTIONS(691), + [sym_metavariable] = ACTIONS(689), + [sym_grit_metavariable] = ACTIONS(689), + [sym_raw_string_literal] = ACTIONS(689), + [sym_float_literal] = ACTIONS(689), [sym_block_comment] = ACTIONS(3), }, [334] = { - [ts_builtin_sym_end] = ACTIONS(1675), - [sym__primitive_identifier] = ACTIONS(1677), - [anon_sym_SEMI] = ACTIONS(1675), - [anon_sym_macro_rules_BANG] = ACTIONS(1675), - [anon_sym_LPAREN] = ACTIONS(1675), - [anon_sym_LBRACE] = ACTIONS(1675), - [anon_sym_RBRACE] = ACTIONS(1675), - [anon_sym_LBRACK] = ACTIONS(1675), - [anon_sym_STAR] = ACTIONS(1675), - [anon_sym_SQUOTE] = ACTIONS(1677), - [anon_sym_async] = ACTIONS(1677), - [anon_sym_break] = ACTIONS(1677), - [anon_sym_const] = ACTIONS(1677), - [anon_sym_continue] = ACTIONS(1677), - [anon_sym_default] = ACTIONS(1677), - [anon_sym_enum] = ACTIONS(1677), - [anon_sym_fn] = ACTIONS(1677), - [anon_sym_for] = ACTIONS(1677), - [anon_sym_if] = ACTIONS(1677), - [anon_sym_impl] = ACTIONS(1677), - [anon_sym_let] = ACTIONS(1677), - [anon_sym_loop] = ACTIONS(1677), - [anon_sym_match] = ACTIONS(1677), - [anon_sym_mod] = ACTIONS(1677), - [anon_sym_pub] = ACTIONS(1677), - [anon_sym_return] = ACTIONS(1677), - [anon_sym_static] = ACTIONS(1677), - [anon_sym_struct] = ACTIONS(1677), - [anon_sym_trait] = ACTIONS(1677), - [anon_sym_type] = ACTIONS(1677), - [anon_sym_union] = ACTIONS(1677), - [anon_sym_unsafe] = ACTIONS(1677), - [anon_sym_use] = ACTIONS(1677), - [anon_sym_while] = ACTIONS(1677), - [anon_sym_POUND] = ACTIONS(1675), - [anon_sym_BANG] = ACTIONS(1675), - [anon_sym_extern] = ACTIONS(1677), - [anon_sym_LT] = ACTIONS(1675), - [anon_sym_COLON_COLON] = ACTIONS(1675), - [anon_sym_AMP] = ACTIONS(1675), - [anon_sym_DOT_DOT] = ACTIONS(1675), - [anon_sym_DASH] = ACTIONS(1675), - [anon_sym_PIPE] = ACTIONS(1675), - [anon_sym_yield] = ACTIONS(1677), - [anon_sym_move] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1675), - [aux_sym_string_literal_token1] = ACTIONS(1675), - [sym_char_literal] = ACTIONS(1675), - [anon_sym_true] = ACTIONS(1677), - [anon_sym_false] = ACTIONS(1677), - [anon_sym_u8] = ACTIONS(1677), - [anon_sym_i8] = ACTIONS(1677), - [anon_sym_u16] = ACTIONS(1677), - [anon_sym_i16] = ACTIONS(1677), - [anon_sym_u32] = ACTIONS(1677), - [anon_sym_i32] = ACTIONS(1677), - [anon_sym_u64] = ACTIONS(1677), - [anon_sym_i64] = ACTIONS(1677), - [anon_sym_u128] = ACTIONS(1677), - [anon_sym_i128] = ACTIONS(1677), - [anon_sym_isize] = ACTIONS(1677), - [anon_sym_usize] = ACTIONS(1677), - [anon_sym_f32] = ACTIONS(1677), - [anon_sym_f64] = ACTIONS(1677), - [anon_sym_bool] = ACTIONS(1677), - [anon_sym_str] = ACTIONS(1677), - [anon_sym_char] = ACTIONS(1677), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1675), - [sym_self] = ACTIONS(1677), - [sym_super] = ACTIONS(1677), - [sym_crate] = ACTIONS(1677), - [sym_metavariable] = ACTIONS(1675), - [sym_grit_metavariable] = ACTIONS(1675), - [sym_raw_string_literal] = ACTIONS(1675), - [sym_float_literal] = ACTIONS(1675), + [ts_builtin_sym_end] = ACTIONS(1669), + [sym__primitive_identifier] = ACTIONS(1671), + [anon_sym_SEMI] = ACTIONS(1669), + [anon_sym_macro_rules_BANG] = ACTIONS(1669), + [anon_sym_LPAREN] = ACTIONS(1669), + [anon_sym_LBRACE] = ACTIONS(1669), + [anon_sym_RBRACE] = ACTIONS(1669), + [anon_sym_LBRACK] = ACTIONS(1669), + [anon_sym_STAR] = ACTIONS(1669), + [anon_sym_SQUOTE] = ACTIONS(1671), + [anon_sym_async] = ACTIONS(1671), + [anon_sym_break] = ACTIONS(1671), + [anon_sym_const] = ACTIONS(1671), + [anon_sym_continue] = ACTIONS(1671), + [anon_sym_default] = ACTIONS(1671), + [anon_sym_enum] = ACTIONS(1671), + [anon_sym_fn] = ACTIONS(1671), + [anon_sym_for] = ACTIONS(1671), + [anon_sym_if] = ACTIONS(1671), + [anon_sym_impl] = ACTIONS(1671), + [anon_sym_let] = ACTIONS(1671), + [anon_sym_loop] = ACTIONS(1671), + [anon_sym_match] = ACTIONS(1671), + [anon_sym_mod] = ACTIONS(1671), + [anon_sym_pub] = ACTIONS(1671), + [anon_sym_return] = ACTIONS(1671), + [anon_sym_static] = ACTIONS(1671), + [anon_sym_struct] = ACTIONS(1671), + [anon_sym_trait] = ACTIONS(1671), + [anon_sym_type] = ACTIONS(1671), + [anon_sym_union] = ACTIONS(1671), + [anon_sym_unsafe] = ACTIONS(1671), + [anon_sym_use] = ACTIONS(1671), + [anon_sym_while] = ACTIONS(1671), + [anon_sym_POUND] = ACTIONS(1669), + [anon_sym_BANG] = ACTIONS(1669), + [anon_sym_extern] = ACTIONS(1671), + [anon_sym_LT] = ACTIONS(1669), + [anon_sym_COLON_COLON] = ACTIONS(1669), + [anon_sym_AMP] = ACTIONS(1669), + [anon_sym_DOT_DOT] = ACTIONS(1669), + [anon_sym_DASH] = ACTIONS(1669), + [anon_sym_PIPE] = ACTIONS(1669), + [anon_sym_yield] = ACTIONS(1671), + [anon_sym_move] = ACTIONS(1671), + [sym_integer_literal] = ACTIONS(1669), + [aux_sym_string_literal_token1] = ACTIONS(1669), + [sym_char_literal] = ACTIONS(1669), + [anon_sym_true] = ACTIONS(1671), + [anon_sym_false] = ACTIONS(1671), + [anon_sym_u8] = ACTIONS(1671), + [anon_sym_i8] = ACTIONS(1671), + [anon_sym_u16] = ACTIONS(1671), + [anon_sym_i16] = ACTIONS(1671), + [anon_sym_u32] = ACTIONS(1671), + [anon_sym_i32] = ACTIONS(1671), + [anon_sym_u64] = ACTIONS(1671), + [anon_sym_i64] = ACTIONS(1671), + [anon_sym_u128] = ACTIONS(1671), + [anon_sym_i128] = ACTIONS(1671), + [anon_sym_isize] = ACTIONS(1671), + [anon_sym_usize] = ACTIONS(1671), + [anon_sym_f32] = ACTIONS(1671), + [anon_sym_f64] = ACTIONS(1671), + [anon_sym_bool] = ACTIONS(1671), + [anon_sym_str] = ACTIONS(1671), + [anon_sym_char] = ACTIONS(1671), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(1669), + [sym_self] = ACTIONS(1671), + [sym_super] = ACTIONS(1671), + [sym_crate] = ACTIONS(1671), + [sym_metavariable] = ACTIONS(1669), + [sym_grit_metavariable] = ACTIONS(1669), + [sym_raw_string_literal] = ACTIONS(1669), + [sym_float_literal] = ACTIONS(1669), [sym_block_comment] = ACTIONS(3), }, [335] = { - [ts_builtin_sym_end] = ACTIONS(1679), - [sym__primitive_identifier] = ACTIONS(1681), - [anon_sym_SEMI] = ACTIONS(1679), - [anon_sym_macro_rules_BANG] = ACTIONS(1679), - [anon_sym_LPAREN] = ACTIONS(1679), - [anon_sym_LBRACE] = ACTIONS(1679), - [anon_sym_RBRACE] = ACTIONS(1679), - [anon_sym_LBRACK] = ACTIONS(1679), - [anon_sym_STAR] = ACTIONS(1679), - [anon_sym_SQUOTE] = ACTIONS(1681), - [anon_sym_async] = ACTIONS(1681), - [anon_sym_break] = ACTIONS(1681), - [anon_sym_const] = ACTIONS(1681), - [anon_sym_continue] = ACTIONS(1681), - [anon_sym_default] = ACTIONS(1681), - [anon_sym_enum] = ACTIONS(1681), - [anon_sym_fn] = ACTIONS(1681), - [anon_sym_for] = ACTIONS(1681), - [anon_sym_if] = ACTIONS(1681), - [anon_sym_impl] = ACTIONS(1681), - [anon_sym_let] = ACTIONS(1681), - [anon_sym_loop] = ACTIONS(1681), - [anon_sym_match] = ACTIONS(1681), - [anon_sym_mod] = ACTIONS(1681), - [anon_sym_pub] = ACTIONS(1681), - [anon_sym_return] = ACTIONS(1681), - [anon_sym_static] = ACTIONS(1681), - [anon_sym_struct] = ACTIONS(1681), - [anon_sym_trait] = ACTIONS(1681), - [anon_sym_type] = ACTIONS(1681), - [anon_sym_union] = ACTIONS(1681), - [anon_sym_unsafe] = ACTIONS(1681), - [anon_sym_use] = ACTIONS(1681), - [anon_sym_while] = ACTIONS(1681), - [anon_sym_POUND] = ACTIONS(1679), - [anon_sym_BANG] = ACTIONS(1679), - [anon_sym_extern] = ACTIONS(1681), - [anon_sym_LT] = ACTIONS(1679), - [anon_sym_COLON_COLON] = ACTIONS(1679), - [anon_sym_AMP] = ACTIONS(1679), - [anon_sym_DOT_DOT] = ACTIONS(1679), - [anon_sym_DASH] = ACTIONS(1679), - [anon_sym_PIPE] = ACTIONS(1679), - [anon_sym_yield] = ACTIONS(1681), - [anon_sym_move] = ACTIONS(1681), - [sym_integer_literal] = ACTIONS(1679), - [aux_sym_string_literal_token1] = ACTIONS(1679), - [sym_char_literal] = ACTIONS(1679), - [anon_sym_true] = ACTIONS(1681), - [anon_sym_false] = ACTIONS(1681), - [anon_sym_u8] = ACTIONS(1681), - [anon_sym_i8] = ACTIONS(1681), - [anon_sym_u16] = ACTIONS(1681), - [anon_sym_i16] = ACTIONS(1681), - [anon_sym_u32] = ACTIONS(1681), - [anon_sym_i32] = ACTIONS(1681), - [anon_sym_u64] = ACTIONS(1681), - [anon_sym_i64] = ACTIONS(1681), - [anon_sym_u128] = ACTIONS(1681), - [anon_sym_i128] = ACTIONS(1681), - [anon_sym_isize] = ACTIONS(1681), - [anon_sym_usize] = ACTIONS(1681), - [anon_sym_f32] = ACTIONS(1681), - [anon_sym_f64] = ACTIONS(1681), - [anon_sym_bool] = ACTIONS(1681), - [anon_sym_str] = ACTIONS(1681), - [anon_sym_char] = ACTIONS(1681), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1679), - [sym_self] = ACTIONS(1681), - [sym_super] = ACTIONS(1681), - [sym_crate] = ACTIONS(1681), - [sym_metavariable] = ACTIONS(1679), - [sym_grit_metavariable] = ACTIONS(1679), - [sym_raw_string_literal] = ACTIONS(1679), - [sym_float_literal] = ACTIONS(1679), + [ts_builtin_sym_end] = ACTIONS(1673), + [sym__primitive_identifier] = ACTIONS(1675), + [anon_sym_SEMI] = ACTIONS(1673), + [anon_sym_macro_rules_BANG] = ACTIONS(1673), + [anon_sym_LPAREN] = ACTIONS(1673), + [anon_sym_LBRACE] = ACTIONS(1673), + [anon_sym_RBRACE] = ACTIONS(1673), + [anon_sym_LBRACK] = ACTIONS(1673), + [anon_sym_STAR] = ACTIONS(1673), + [anon_sym_SQUOTE] = ACTIONS(1675), + [anon_sym_async] = ACTIONS(1675), + [anon_sym_break] = ACTIONS(1675), + [anon_sym_const] = ACTIONS(1675), + [anon_sym_continue] = ACTIONS(1675), + [anon_sym_default] = ACTIONS(1675), + [anon_sym_enum] = ACTIONS(1675), + [anon_sym_fn] = ACTIONS(1675), + [anon_sym_for] = ACTIONS(1675), + [anon_sym_if] = ACTIONS(1675), + [anon_sym_impl] = ACTIONS(1675), + [anon_sym_let] = ACTIONS(1675), + [anon_sym_loop] = ACTIONS(1675), + [anon_sym_match] = ACTIONS(1675), + [anon_sym_mod] = ACTIONS(1675), + [anon_sym_pub] = ACTIONS(1675), + [anon_sym_return] = ACTIONS(1675), + [anon_sym_static] = ACTIONS(1675), + [anon_sym_struct] = ACTIONS(1675), + [anon_sym_trait] = ACTIONS(1675), + [anon_sym_type] = ACTIONS(1675), + [anon_sym_union] = ACTIONS(1675), + [anon_sym_unsafe] = ACTIONS(1675), + [anon_sym_use] = ACTIONS(1675), + [anon_sym_while] = ACTIONS(1675), + [anon_sym_POUND] = ACTIONS(1673), + [anon_sym_BANG] = ACTIONS(1673), + [anon_sym_extern] = ACTIONS(1675), + [anon_sym_LT] = ACTIONS(1673), + [anon_sym_COLON_COLON] = ACTIONS(1673), + [anon_sym_AMP] = ACTIONS(1673), + [anon_sym_DOT_DOT] = ACTIONS(1673), + [anon_sym_DASH] = ACTIONS(1673), + [anon_sym_PIPE] = ACTIONS(1673), + [anon_sym_yield] = ACTIONS(1675), + [anon_sym_move] = ACTIONS(1675), + [sym_integer_literal] = ACTIONS(1673), + [aux_sym_string_literal_token1] = ACTIONS(1673), + [sym_char_literal] = ACTIONS(1673), + [anon_sym_true] = ACTIONS(1675), + [anon_sym_false] = ACTIONS(1675), + [anon_sym_u8] = ACTIONS(1675), + [anon_sym_i8] = ACTIONS(1675), + [anon_sym_u16] = ACTIONS(1675), + [anon_sym_i16] = ACTIONS(1675), + [anon_sym_u32] = ACTIONS(1675), + [anon_sym_i32] = ACTIONS(1675), + [anon_sym_u64] = ACTIONS(1675), + [anon_sym_i64] = ACTIONS(1675), + [anon_sym_u128] = ACTIONS(1675), + [anon_sym_i128] = ACTIONS(1675), + [anon_sym_isize] = ACTIONS(1675), + [anon_sym_usize] = ACTIONS(1675), + [anon_sym_f32] = ACTIONS(1675), + [anon_sym_f64] = ACTIONS(1675), + [anon_sym_bool] = ACTIONS(1675), + [anon_sym_str] = ACTIONS(1675), + [anon_sym_char] = ACTIONS(1675), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(1673), + [sym_self] = ACTIONS(1675), + [sym_super] = ACTIONS(1675), + [sym_crate] = ACTIONS(1675), + [sym_metavariable] = ACTIONS(1673), + [sym_grit_metavariable] = ACTIONS(1673), + [sym_raw_string_literal] = ACTIONS(1673), + [sym_float_literal] = ACTIONS(1673), [sym_block_comment] = ACTIONS(3), }, [336] = { - [ts_builtin_sym_end] = ACTIONS(1683), - [sym__primitive_identifier] = ACTIONS(1685), - [anon_sym_SEMI] = ACTIONS(1683), - [anon_sym_macro_rules_BANG] = ACTIONS(1683), - [anon_sym_LPAREN] = ACTIONS(1683), - [anon_sym_LBRACE] = ACTIONS(1683), - [anon_sym_RBRACE] = ACTIONS(1683), - [anon_sym_LBRACK] = ACTIONS(1683), - [anon_sym_STAR] = ACTIONS(1683), - [anon_sym_SQUOTE] = ACTIONS(1685), - [anon_sym_async] = ACTIONS(1685), - [anon_sym_break] = ACTIONS(1685), - [anon_sym_const] = ACTIONS(1685), - [anon_sym_continue] = ACTIONS(1685), - [anon_sym_default] = ACTIONS(1685), - [anon_sym_enum] = ACTIONS(1685), - [anon_sym_fn] = ACTIONS(1685), - [anon_sym_for] = ACTIONS(1685), - [anon_sym_if] = ACTIONS(1685), - [anon_sym_impl] = ACTIONS(1685), - [anon_sym_let] = ACTIONS(1685), - [anon_sym_loop] = ACTIONS(1685), - [anon_sym_match] = ACTIONS(1685), - [anon_sym_mod] = ACTIONS(1685), - [anon_sym_pub] = ACTIONS(1685), - [anon_sym_return] = ACTIONS(1685), - [anon_sym_static] = ACTIONS(1685), - [anon_sym_struct] = ACTIONS(1685), - [anon_sym_trait] = ACTIONS(1685), - [anon_sym_type] = ACTIONS(1685), - [anon_sym_union] = ACTIONS(1685), - [anon_sym_unsafe] = ACTIONS(1685), - [anon_sym_use] = ACTIONS(1685), - [anon_sym_while] = ACTIONS(1685), - [anon_sym_POUND] = ACTIONS(1683), - [anon_sym_BANG] = ACTIONS(1683), - [anon_sym_extern] = ACTIONS(1685), - [anon_sym_LT] = ACTIONS(1683), - [anon_sym_COLON_COLON] = ACTIONS(1683), - [anon_sym_AMP] = ACTIONS(1683), - [anon_sym_DOT_DOT] = ACTIONS(1683), - [anon_sym_DASH] = ACTIONS(1683), - [anon_sym_PIPE] = ACTIONS(1683), - [anon_sym_yield] = ACTIONS(1685), - [anon_sym_move] = ACTIONS(1685), - [sym_integer_literal] = ACTIONS(1683), - [aux_sym_string_literal_token1] = ACTIONS(1683), - [sym_char_literal] = ACTIONS(1683), - [anon_sym_true] = ACTIONS(1685), - [anon_sym_false] = ACTIONS(1685), - [anon_sym_u8] = ACTIONS(1685), - [anon_sym_i8] = ACTIONS(1685), - [anon_sym_u16] = ACTIONS(1685), - [anon_sym_i16] = ACTIONS(1685), - [anon_sym_u32] = ACTIONS(1685), - [anon_sym_i32] = ACTIONS(1685), - [anon_sym_u64] = ACTIONS(1685), - [anon_sym_i64] = ACTIONS(1685), - [anon_sym_u128] = ACTIONS(1685), - [anon_sym_i128] = ACTIONS(1685), - [anon_sym_isize] = ACTIONS(1685), - [anon_sym_usize] = ACTIONS(1685), - [anon_sym_f32] = ACTIONS(1685), - [anon_sym_f64] = ACTIONS(1685), - [anon_sym_bool] = ACTIONS(1685), - [anon_sym_str] = ACTIONS(1685), - [anon_sym_char] = ACTIONS(1685), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1683), - [sym_self] = ACTIONS(1685), - [sym_super] = ACTIONS(1685), - [sym_crate] = ACTIONS(1685), - [sym_metavariable] = ACTIONS(1683), - [sym_grit_metavariable] = ACTIONS(1683), - [sym_raw_string_literal] = ACTIONS(1683), - [sym_float_literal] = ACTIONS(1683), + [ts_builtin_sym_end] = ACTIONS(1677), + [sym__primitive_identifier] = ACTIONS(1679), + [anon_sym_SEMI] = ACTIONS(1677), + [anon_sym_macro_rules_BANG] = ACTIONS(1677), + [anon_sym_LPAREN] = ACTIONS(1677), + [anon_sym_LBRACE] = ACTIONS(1677), + [anon_sym_RBRACE] = ACTIONS(1677), + [anon_sym_LBRACK] = ACTIONS(1677), + [anon_sym_STAR] = ACTIONS(1677), + [anon_sym_SQUOTE] = ACTIONS(1679), + [anon_sym_async] = ACTIONS(1679), + [anon_sym_break] = ACTIONS(1679), + [anon_sym_const] = ACTIONS(1679), + [anon_sym_continue] = ACTIONS(1679), + [anon_sym_default] = ACTIONS(1679), + [anon_sym_enum] = ACTIONS(1679), + [anon_sym_fn] = ACTIONS(1679), + [anon_sym_for] = ACTIONS(1679), + [anon_sym_if] = ACTIONS(1679), + [anon_sym_impl] = ACTIONS(1679), + [anon_sym_let] = ACTIONS(1679), + [anon_sym_loop] = ACTIONS(1679), + [anon_sym_match] = ACTIONS(1679), + [anon_sym_mod] = ACTIONS(1679), + [anon_sym_pub] = ACTIONS(1679), + [anon_sym_return] = ACTIONS(1679), + [anon_sym_static] = ACTIONS(1679), + [anon_sym_struct] = ACTIONS(1679), + [anon_sym_trait] = ACTIONS(1679), + [anon_sym_type] = ACTIONS(1679), + [anon_sym_union] = ACTIONS(1679), + [anon_sym_unsafe] = ACTIONS(1679), + [anon_sym_use] = ACTIONS(1679), + [anon_sym_while] = ACTIONS(1679), + [anon_sym_POUND] = ACTIONS(1677), + [anon_sym_BANG] = ACTIONS(1677), + [anon_sym_extern] = ACTIONS(1679), + [anon_sym_LT] = ACTIONS(1677), + [anon_sym_COLON_COLON] = ACTIONS(1677), + [anon_sym_AMP] = ACTIONS(1677), + [anon_sym_DOT_DOT] = ACTIONS(1677), + [anon_sym_DASH] = ACTIONS(1677), + [anon_sym_PIPE] = ACTIONS(1677), + [anon_sym_yield] = ACTIONS(1679), + [anon_sym_move] = ACTIONS(1679), + [sym_integer_literal] = ACTIONS(1677), + [aux_sym_string_literal_token1] = ACTIONS(1677), + [sym_char_literal] = ACTIONS(1677), + [anon_sym_true] = ACTIONS(1679), + [anon_sym_false] = ACTIONS(1679), + [anon_sym_u8] = ACTIONS(1679), + [anon_sym_i8] = ACTIONS(1679), + [anon_sym_u16] = ACTIONS(1679), + [anon_sym_i16] = ACTIONS(1679), + [anon_sym_u32] = ACTIONS(1679), + [anon_sym_i32] = ACTIONS(1679), + [anon_sym_u64] = ACTIONS(1679), + [anon_sym_i64] = ACTIONS(1679), + [anon_sym_u128] = ACTIONS(1679), + [anon_sym_i128] = ACTIONS(1679), + [anon_sym_isize] = ACTIONS(1679), + [anon_sym_usize] = ACTIONS(1679), + [anon_sym_f32] = ACTIONS(1679), + [anon_sym_f64] = ACTIONS(1679), + [anon_sym_bool] = ACTIONS(1679), + [anon_sym_str] = ACTIONS(1679), + [anon_sym_char] = ACTIONS(1679), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(1677), + [sym_self] = ACTIONS(1679), + [sym_super] = ACTIONS(1679), + [sym_crate] = ACTIONS(1679), + [sym_metavariable] = ACTIONS(1677), + [sym_grit_metavariable] = ACTIONS(1677), + [sym_raw_string_literal] = ACTIONS(1677), + [sym_float_literal] = ACTIONS(1677), [sym_block_comment] = ACTIONS(3), }, [337] = { - [ts_builtin_sym_end] = ACTIONS(1687), - [sym__primitive_identifier] = ACTIONS(1689), - [anon_sym_SEMI] = ACTIONS(1687), - [anon_sym_macro_rules_BANG] = ACTIONS(1687), - [anon_sym_LPAREN] = ACTIONS(1687), - [anon_sym_LBRACE] = ACTIONS(1687), - [anon_sym_RBRACE] = ACTIONS(1687), - [anon_sym_LBRACK] = ACTIONS(1687), - [anon_sym_STAR] = ACTIONS(1687), - [anon_sym_SQUOTE] = ACTIONS(1689), - [anon_sym_async] = ACTIONS(1689), - [anon_sym_break] = ACTIONS(1689), - [anon_sym_const] = ACTIONS(1689), - [anon_sym_continue] = ACTIONS(1689), - [anon_sym_default] = ACTIONS(1689), - [anon_sym_enum] = ACTIONS(1689), - [anon_sym_fn] = ACTIONS(1689), - [anon_sym_for] = ACTIONS(1689), - [anon_sym_if] = ACTIONS(1689), - [anon_sym_impl] = ACTIONS(1689), - [anon_sym_let] = ACTIONS(1689), - [anon_sym_loop] = ACTIONS(1689), - [anon_sym_match] = ACTIONS(1689), - [anon_sym_mod] = ACTIONS(1689), - [anon_sym_pub] = ACTIONS(1689), - [anon_sym_return] = ACTIONS(1689), - [anon_sym_static] = ACTIONS(1689), - [anon_sym_struct] = ACTIONS(1689), - [anon_sym_trait] = ACTIONS(1689), - [anon_sym_type] = ACTIONS(1689), - [anon_sym_union] = ACTIONS(1689), - [anon_sym_unsafe] = ACTIONS(1689), - [anon_sym_use] = ACTIONS(1689), - [anon_sym_while] = ACTIONS(1689), - [anon_sym_POUND] = ACTIONS(1687), - [anon_sym_BANG] = ACTIONS(1687), - [anon_sym_extern] = ACTIONS(1689), - [anon_sym_LT] = ACTIONS(1687), - [anon_sym_COLON_COLON] = ACTIONS(1687), - [anon_sym_AMP] = ACTIONS(1687), - [anon_sym_DOT_DOT] = ACTIONS(1687), - [anon_sym_DASH] = ACTIONS(1687), - [anon_sym_PIPE] = ACTIONS(1687), - [anon_sym_yield] = ACTIONS(1689), - [anon_sym_move] = ACTIONS(1689), - [sym_integer_literal] = ACTIONS(1687), - [aux_sym_string_literal_token1] = ACTIONS(1687), - [sym_char_literal] = ACTIONS(1687), - [anon_sym_true] = ACTIONS(1689), - [anon_sym_false] = ACTIONS(1689), - [anon_sym_u8] = ACTIONS(1689), - [anon_sym_i8] = ACTIONS(1689), - [anon_sym_u16] = ACTIONS(1689), - [anon_sym_i16] = ACTIONS(1689), - [anon_sym_u32] = ACTIONS(1689), - [anon_sym_i32] = ACTIONS(1689), - [anon_sym_u64] = ACTIONS(1689), - [anon_sym_i64] = ACTIONS(1689), - [anon_sym_u128] = ACTIONS(1689), - [anon_sym_i128] = ACTIONS(1689), - [anon_sym_isize] = ACTIONS(1689), - [anon_sym_usize] = ACTIONS(1689), - [anon_sym_f32] = ACTIONS(1689), - [anon_sym_f64] = ACTIONS(1689), - [anon_sym_bool] = ACTIONS(1689), - [anon_sym_str] = ACTIONS(1689), - [anon_sym_char] = ACTIONS(1689), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1687), - [sym_self] = ACTIONS(1689), - [sym_super] = ACTIONS(1689), - [sym_crate] = ACTIONS(1689), - [sym_metavariable] = ACTIONS(1687), - [sym_grit_metavariable] = ACTIONS(1687), - [sym_raw_string_literal] = ACTIONS(1687), - [sym_float_literal] = ACTIONS(1687), + [ts_builtin_sym_end] = ACTIONS(1681), + [sym__primitive_identifier] = ACTIONS(1683), + [anon_sym_SEMI] = ACTIONS(1681), + [anon_sym_macro_rules_BANG] = ACTIONS(1681), + [anon_sym_LPAREN] = ACTIONS(1681), + [anon_sym_LBRACE] = ACTIONS(1681), + [anon_sym_RBRACE] = ACTIONS(1681), + [anon_sym_LBRACK] = ACTIONS(1681), + [anon_sym_STAR] = ACTIONS(1681), + [anon_sym_SQUOTE] = ACTIONS(1683), + [anon_sym_async] = ACTIONS(1683), + [anon_sym_break] = ACTIONS(1683), + [anon_sym_const] = ACTIONS(1683), + [anon_sym_continue] = ACTIONS(1683), + [anon_sym_default] = ACTIONS(1683), + [anon_sym_enum] = ACTIONS(1683), + [anon_sym_fn] = ACTIONS(1683), + [anon_sym_for] = ACTIONS(1683), + [anon_sym_if] = ACTIONS(1683), + [anon_sym_impl] = ACTIONS(1683), + [anon_sym_let] = ACTIONS(1683), + [anon_sym_loop] = ACTIONS(1683), + [anon_sym_match] = ACTIONS(1683), + [anon_sym_mod] = ACTIONS(1683), + [anon_sym_pub] = ACTIONS(1683), + [anon_sym_return] = ACTIONS(1683), + [anon_sym_static] = ACTIONS(1683), + [anon_sym_struct] = ACTIONS(1683), + [anon_sym_trait] = ACTIONS(1683), + [anon_sym_type] = ACTIONS(1683), + [anon_sym_union] = ACTIONS(1683), + [anon_sym_unsafe] = ACTIONS(1683), + [anon_sym_use] = ACTIONS(1683), + [anon_sym_while] = ACTIONS(1683), + [anon_sym_POUND] = ACTIONS(1681), + [anon_sym_BANG] = ACTIONS(1681), + [anon_sym_extern] = ACTIONS(1683), + [anon_sym_LT] = ACTIONS(1681), + [anon_sym_COLON_COLON] = ACTIONS(1681), + [anon_sym_AMP] = ACTIONS(1681), + [anon_sym_DOT_DOT] = ACTIONS(1681), + [anon_sym_DASH] = ACTIONS(1681), + [anon_sym_PIPE] = ACTIONS(1681), + [anon_sym_yield] = ACTIONS(1683), + [anon_sym_move] = ACTIONS(1683), + [sym_integer_literal] = ACTIONS(1681), + [aux_sym_string_literal_token1] = ACTIONS(1681), + [sym_char_literal] = ACTIONS(1681), + [anon_sym_true] = ACTIONS(1683), + [anon_sym_false] = ACTIONS(1683), + [anon_sym_u8] = ACTIONS(1683), + [anon_sym_i8] = ACTIONS(1683), + [anon_sym_u16] = ACTIONS(1683), + [anon_sym_i16] = ACTIONS(1683), + [anon_sym_u32] = ACTIONS(1683), + [anon_sym_i32] = ACTIONS(1683), + [anon_sym_u64] = ACTIONS(1683), + [anon_sym_i64] = ACTIONS(1683), + [anon_sym_u128] = ACTIONS(1683), + [anon_sym_i128] = ACTIONS(1683), + [anon_sym_isize] = ACTIONS(1683), + [anon_sym_usize] = ACTIONS(1683), + [anon_sym_f32] = ACTIONS(1683), + [anon_sym_f64] = ACTIONS(1683), + [anon_sym_bool] = ACTIONS(1683), + [anon_sym_str] = ACTIONS(1683), + [anon_sym_char] = ACTIONS(1683), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(1681), + [sym_self] = ACTIONS(1683), + [sym_super] = ACTIONS(1683), + [sym_crate] = ACTIONS(1683), + [sym_metavariable] = ACTIONS(1681), + [sym_grit_metavariable] = ACTIONS(1681), + [sym_raw_string_literal] = ACTIONS(1681), + [sym_float_literal] = ACTIONS(1681), [sym_block_comment] = ACTIONS(3), }, [338] = { - [ts_builtin_sym_end] = ACTIONS(1691), - [sym__primitive_identifier] = ACTIONS(1693), - [anon_sym_SEMI] = ACTIONS(1691), - [anon_sym_macro_rules_BANG] = ACTIONS(1691), - [anon_sym_LPAREN] = ACTIONS(1691), - [anon_sym_LBRACE] = ACTIONS(1691), - [anon_sym_RBRACE] = ACTIONS(1691), - [anon_sym_LBRACK] = ACTIONS(1691), - [anon_sym_STAR] = ACTIONS(1691), - [anon_sym_SQUOTE] = ACTIONS(1693), - [anon_sym_async] = ACTIONS(1693), - [anon_sym_break] = ACTIONS(1693), - [anon_sym_const] = ACTIONS(1693), - [anon_sym_continue] = ACTIONS(1693), - [anon_sym_default] = ACTIONS(1693), - [anon_sym_enum] = ACTIONS(1693), - [anon_sym_fn] = ACTIONS(1693), - [anon_sym_for] = ACTIONS(1693), - [anon_sym_if] = ACTIONS(1693), - [anon_sym_impl] = ACTIONS(1693), - [anon_sym_let] = ACTIONS(1693), - [anon_sym_loop] = ACTIONS(1693), - [anon_sym_match] = ACTIONS(1693), - [anon_sym_mod] = ACTIONS(1693), - [anon_sym_pub] = ACTIONS(1693), - [anon_sym_return] = ACTIONS(1693), - [anon_sym_static] = ACTIONS(1693), - [anon_sym_struct] = ACTIONS(1693), - [anon_sym_trait] = ACTIONS(1693), - [anon_sym_type] = ACTIONS(1693), - [anon_sym_union] = ACTIONS(1693), - [anon_sym_unsafe] = ACTIONS(1693), - [anon_sym_use] = ACTIONS(1693), - [anon_sym_while] = ACTIONS(1693), - [anon_sym_POUND] = ACTIONS(1691), - [anon_sym_BANG] = ACTIONS(1691), - [anon_sym_extern] = ACTIONS(1693), - [anon_sym_LT] = ACTIONS(1691), - [anon_sym_COLON_COLON] = ACTIONS(1691), - [anon_sym_AMP] = ACTIONS(1691), - [anon_sym_DOT_DOT] = ACTIONS(1691), - [anon_sym_DASH] = ACTIONS(1691), - [anon_sym_PIPE] = ACTIONS(1691), - [anon_sym_yield] = ACTIONS(1693), - [anon_sym_move] = ACTIONS(1693), - [sym_integer_literal] = ACTIONS(1691), - [aux_sym_string_literal_token1] = ACTIONS(1691), - [sym_char_literal] = ACTIONS(1691), - [anon_sym_true] = ACTIONS(1693), - [anon_sym_false] = ACTIONS(1693), - [anon_sym_u8] = ACTIONS(1693), - [anon_sym_i8] = ACTIONS(1693), - [anon_sym_u16] = ACTIONS(1693), - [anon_sym_i16] = ACTIONS(1693), - [anon_sym_u32] = ACTIONS(1693), - [anon_sym_i32] = ACTIONS(1693), - [anon_sym_u64] = ACTIONS(1693), - [anon_sym_i64] = ACTIONS(1693), - [anon_sym_u128] = ACTIONS(1693), - [anon_sym_i128] = ACTIONS(1693), - [anon_sym_isize] = ACTIONS(1693), - [anon_sym_usize] = ACTIONS(1693), - [anon_sym_f32] = ACTIONS(1693), - [anon_sym_f64] = ACTIONS(1693), - [anon_sym_bool] = ACTIONS(1693), - [anon_sym_str] = ACTIONS(1693), - [anon_sym_char] = ACTIONS(1693), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1691), - [sym_self] = ACTIONS(1693), - [sym_super] = ACTIONS(1693), - [sym_crate] = ACTIONS(1693), - [sym_metavariable] = ACTIONS(1691), - [sym_grit_metavariable] = ACTIONS(1691), - [sym_raw_string_literal] = ACTIONS(1691), - [sym_float_literal] = ACTIONS(1691), + [ts_builtin_sym_end] = ACTIONS(1685), + [sym__primitive_identifier] = ACTIONS(1687), + [anon_sym_SEMI] = ACTIONS(1685), + [anon_sym_macro_rules_BANG] = ACTIONS(1685), + [anon_sym_LPAREN] = ACTIONS(1685), + [anon_sym_LBRACE] = ACTIONS(1685), + [anon_sym_RBRACE] = ACTIONS(1685), + [anon_sym_LBRACK] = ACTIONS(1685), + [anon_sym_STAR] = ACTIONS(1685), + [anon_sym_SQUOTE] = ACTIONS(1687), + [anon_sym_async] = ACTIONS(1687), + [anon_sym_break] = ACTIONS(1687), + [anon_sym_const] = ACTIONS(1687), + [anon_sym_continue] = ACTIONS(1687), + [anon_sym_default] = ACTIONS(1687), + [anon_sym_enum] = ACTIONS(1687), + [anon_sym_fn] = ACTIONS(1687), + [anon_sym_for] = ACTIONS(1687), + [anon_sym_if] = ACTIONS(1687), + [anon_sym_impl] = ACTIONS(1687), + [anon_sym_let] = ACTIONS(1687), + [anon_sym_loop] = ACTIONS(1687), + [anon_sym_match] = ACTIONS(1687), + [anon_sym_mod] = ACTIONS(1687), + [anon_sym_pub] = ACTIONS(1687), + [anon_sym_return] = ACTIONS(1687), + [anon_sym_static] = ACTIONS(1687), + [anon_sym_struct] = ACTIONS(1687), + [anon_sym_trait] = ACTIONS(1687), + [anon_sym_type] = ACTIONS(1687), + [anon_sym_union] = ACTIONS(1687), + [anon_sym_unsafe] = ACTIONS(1687), + [anon_sym_use] = ACTIONS(1687), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_POUND] = ACTIONS(1685), + [anon_sym_BANG] = ACTIONS(1685), + [anon_sym_extern] = ACTIONS(1687), + [anon_sym_LT] = ACTIONS(1685), + [anon_sym_COLON_COLON] = ACTIONS(1685), + [anon_sym_AMP] = ACTIONS(1685), + [anon_sym_DOT_DOT] = ACTIONS(1685), + [anon_sym_DASH] = ACTIONS(1685), + [anon_sym_PIPE] = ACTIONS(1685), + [anon_sym_yield] = ACTIONS(1687), + [anon_sym_move] = ACTIONS(1687), + [sym_integer_literal] = ACTIONS(1685), + [aux_sym_string_literal_token1] = ACTIONS(1685), + [sym_char_literal] = ACTIONS(1685), + [anon_sym_true] = ACTIONS(1687), + [anon_sym_false] = ACTIONS(1687), + [anon_sym_u8] = ACTIONS(1687), + [anon_sym_i8] = ACTIONS(1687), + [anon_sym_u16] = ACTIONS(1687), + [anon_sym_i16] = ACTIONS(1687), + [anon_sym_u32] = ACTIONS(1687), + [anon_sym_i32] = ACTIONS(1687), + [anon_sym_u64] = ACTIONS(1687), + [anon_sym_i64] = ACTIONS(1687), + [anon_sym_u128] = ACTIONS(1687), + [anon_sym_i128] = ACTIONS(1687), + [anon_sym_isize] = ACTIONS(1687), + [anon_sym_usize] = ACTIONS(1687), + [anon_sym_f32] = ACTIONS(1687), + [anon_sym_f64] = ACTIONS(1687), + [anon_sym_bool] = ACTIONS(1687), + [anon_sym_str] = ACTIONS(1687), + [anon_sym_char] = ACTIONS(1687), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(1685), + [sym_self] = ACTIONS(1687), + [sym_super] = ACTIONS(1687), + [sym_crate] = ACTIONS(1687), + [sym_metavariable] = ACTIONS(1685), + [sym_grit_metavariable] = ACTIONS(1685), + [sym_raw_string_literal] = ACTIONS(1685), + [sym_float_literal] = ACTIONS(1685), [sym_block_comment] = ACTIONS(3), }, [339] = { - [ts_builtin_sym_end] = ACTIONS(1695), - [sym__primitive_identifier] = ACTIONS(1697), - [anon_sym_SEMI] = ACTIONS(1695), - [anon_sym_macro_rules_BANG] = ACTIONS(1695), - [anon_sym_LPAREN] = ACTIONS(1695), - [anon_sym_LBRACE] = ACTIONS(1695), - [anon_sym_RBRACE] = ACTIONS(1695), - [anon_sym_LBRACK] = ACTIONS(1695), - [anon_sym_STAR] = ACTIONS(1695), - [anon_sym_SQUOTE] = ACTIONS(1697), - [anon_sym_async] = ACTIONS(1697), - [anon_sym_break] = ACTIONS(1697), - [anon_sym_const] = ACTIONS(1697), - [anon_sym_continue] = ACTIONS(1697), - [anon_sym_default] = ACTIONS(1697), - [anon_sym_enum] = ACTIONS(1697), - [anon_sym_fn] = ACTIONS(1697), - [anon_sym_for] = ACTIONS(1697), - [anon_sym_if] = ACTIONS(1697), - [anon_sym_impl] = ACTIONS(1697), - [anon_sym_let] = ACTIONS(1697), - [anon_sym_loop] = ACTIONS(1697), - [anon_sym_match] = ACTIONS(1697), - [anon_sym_mod] = ACTIONS(1697), - [anon_sym_pub] = ACTIONS(1697), - [anon_sym_return] = ACTIONS(1697), - [anon_sym_static] = ACTIONS(1697), - [anon_sym_struct] = ACTIONS(1697), - [anon_sym_trait] = ACTIONS(1697), - [anon_sym_type] = ACTIONS(1697), - [anon_sym_union] = ACTIONS(1697), - [anon_sym_unsafe] = ACTIONS(1697), - [anon_sym_use] = ACTIONS(1697), - [anon_sym_while] = ACTIONS(1697), - [anon_sym_POUND] = ACTIONS(1695), - [anon_sym_BANG] = ACTIONS(1695), - [anon_sym_extern] = ACTIONS(1697), - [anon_sym_LT] = ACTIONS(1695), - [anon_sym_COLON_COLON] = ACTIONS(1695), - [anon_sym_AMP] = ACTIONS(1695), - [anon_sym_DOT_DOT] = ACTIONS(1695), - [anon_sym_DASH] = ACTIONS(1695), - [anon_sym_PIPE] = ACTIONS(1695), - [anon_sym_yield] = ACTIONS(1697), - [anon_sym_move] = ACTIONS(1697), - [sym_integer_literal] = ACTIONS(1695), - [aux_sym_string_literal_token1] = ACTIONS(1695), - [sym_char_literal] = ACTIONS(1695), - [anon_sym_true] = ACTIONS(1697), - [anon_sym_false] = ACTIONS(1697), - [anon_sym_u8] = ACTIONS(1697), - [anon_sym_i8] = ACTIONS(1697), - [anon_sym_u16] = ACTIONS(1697), - [anon_sym_i16] = ACTIONS(1697), - [anon_sym_u32] = ACTIONS(1697), - [anon_sym_i32] = ACTIONS(1697), - [anon_sym_u64] = ACTIONS(1697), - [anon_sym_i64] = ACTIONS(1697), - [anon_sym_u128] = ACTIONS(1697), - [anon_sym_i128] = ACTIONS(1697), - [anon_sym_isize] = ACTIONS(1697), - [anon_sym_usize] = ACTIONS(1697), - [anon_sym_f32] = ACTIONS(1697), - [anon_sym_f64] = ACTIONS(1697), - [anon_sym_bool] = ACTIONS(1697), - [anon_sym_str] = ACTIONS(1697), - [anon_sym_char] = ACTIONS(1697), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1695), - [sym_self] = ACTIONS(1697), - [sym_super] = ACTIONS(1697), - [sym_crate] = ACTIONS(1697), - [sym_metavariable] = ACTIONS(1695), - [sym_grit_metavariable] = ACTIONS(1695), - [sym_raw_string_literal] = ACTIONS(1695), - [sym_float_literal] = ACTIONS(1695), + [ts_builtin_sym_end] = ACTIONS(1689), + [sym__primitive_identifier] = ACTIONS(1691), + [anon_sym_SEMI] = ACTIONS(1689), + [anon_sym_macro_rules_BANG] = ACTIONS(1689), + [anon_sym_LPAREN] = ACTIONS(1689), + [anon_sym_LBRACE] = ACTIONS(1689), + [anon_sym_RBRACE] = ACTIONS(1689), + [anon_sym_LBRACK] = ACTIONS(1689), + [anon_sym_STAR] = ACTIONS(1689), + [anon_sym_SQUOTE] = ACTIONS(1691), + [anon_sym_async] = ACTIONS(1691), + [anon_sym_break] = ACTIONS(1691), + [anon_sym_const] = ACTIONS(1691), + [anon_sym_continue] = ACTIONS(1691), + [anon_sym_default] = ACTIONS(1691), + [anon_sym_enum] = ACTIONS(1691), + [anon_sym_fn] = ACTIONS(1691), + [anon_sym_for] = ACTIONS(1691), + [anon_sym_if] = ACTIONS(1691), + [anon_sym_impl] = ACTIONS(1691), + [anon_sym_let] = ACTIONS(1691), + [anon_sym_loop] = ACTIONS(1691), + [anon_sym_match] = ACTIONS(1691), + [anon_sym_mod] = ACTIONS(1691), + [anon_sym_pub] = ACTIONS(1691), + [anon_sym_return] = ACTIONS(1691), + [anon_sym_static] = ACTIONS(1691), + [anon_sym_struct] = ACTIONS(1691), + [anon_sym_trait] = ACTIONS(1691), + [anon_sym_type] = ACTIONS(1691), + [anon_sym_union] = ACTIONS(1691), + [anon_sym_unsafe] = ACTIONS(1691), + [anon_sym_use] = ACTIONS(1691), + [anon_sym_while] = ACTIONS(1691), + [anon_sym_POUND] = ACTIONS(1689), + [anon_sym_BANG] = ACTIONS(1689), + [anon_sym_extern] = ACTIONS(1691), + [anon_sym_LT] = ACTIONS(1689), + [anon_sym_COLON_COLON] = ACTIONS(1689), + [anon_sym_AMP] = ACTIONS(1689), + [anon_sym_DOT_DOT] = ACTIONS(1689), + [anon_sym_DASH] = ACTIONS(1689), + [anon_sym_PIPE] = ACTIONS(1689), + [anon_sym_yield] = ACTIONS(1691), + [anon_sym_move] = ACTIONS(1691), + [sym_integer_literal] = ACTIONS(1689), + [aux_sym_string_literal_token1] = ACTIONS(1689), + [sym_char_literal] = ACTIONS(1689), + [anon_sym_true] = ACTIONS(1691), + [anon_sym_false] = ACTIONS(1691), + [anon_sym_u8] = ACTIONS(1691), + [anon_sym_i8] = ACTIONS(1691), + [anon_sym_u16] = ACTIONS(1691), + [anon_sym_i16] = ACTIONS(1691), + [anon_sym_u32] = ACTIONS(1691), + [anon_sym_i32] = ACTIONS(1691), + [anon_sym_u64] = ACTIONS(1691), + [anon_sym_i64] = ACTIONS(1691), + [anon_sym_u128] = ACTIONS(1691), + [anon_sym_i128] = ACTIONS(1691), + [anon_sym_isize] = ACTIONS(1691), + [anon_sym_usize] = ACTIONS(1691), + [anon_sym_f32] = ACTIONS(1691), + [anon_sym_f64] = ACTIONS(1691), + [anon_sym_bool] = ACTIONS(1691), + [anon_sym_str] = ACTIONS(1691), + [anon_sym_char] = ACTIONS(1691), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(1689), + [sym_self] = ACTIONS(1691), + [sym_super] = ACTIONS(1691), + [sym_crate] = ACTIONS(1691), + [sym_metavariable] = ACTIONS(1689), + [sym_grit_metavariable] = ACTIONS(1689), + [sym_raw_string_literal] = ACTIONS(1689), + [sym_float_literal] = ACTIONS(1689), [sym_block_comment] = ACTIONS(3), }, [340] = { - [ts_builtin_sym_end] = ACTIONS(1699), - [sym__primitive_identifier] = ACTIONS(1701), - [anon_sym_SEMI] = ACTIONS(1699), - [anon_sym_macro_rules_BANG] = ACTIONS(1699), - [anon_sym_LPAREN] = ACTIONS(1699), - [anon_sym_LBRACE] = ACTIONS(1699), - [anon_sym_RBRACE] = ACTIONS(1699), - [anon_sym_LBRACK] = ACTIONS(1699), - [anon_sym_STAR] = ACTIONS(1699), - [anon_sym_SQUOTE] = ACTIONS(1701), - [anon_sym_async] = ACTIONS(1701), - [anon_sym_break] = ACTIONS(1701), - [anon_sym_const] = ACTIONS(1701), - [anon_sym_continue] = ACTIONS(1701), - [anon_sym_default] = ACTIONS(1701), - [anon_sym_enum] = ACTIONS(1701), - [anon_sym_fn] = ACTIONS(1701), - [anon_sym_for] = ACTIONS(1701), - [anon_sym_if] = ACTIONS(1701), - [anon_sym_impl] = ACTIONS(1701), - [anon_sym_let] = ACTIONS(1701), - [anon_sym_loop] = ACTIONS(1701), - [anon_sym_match] = ACTIONS(1701), - [anon_sym_mod] = ACTIONS(1701), - [anon_sym_pub] = ACTIONS(1701), - [anon_sym_return] = ACTIONS(1701), - [anon_sym_static] = ACTIONS(1701), - [anon_sym_struct] = ACTIONS(1701), - [anon_sym_trait] = ACTIONS(1701), - [anon_sym_type] = ACTIONS(1701), - [anon_sym_union] = ACTIONS(1701), - [anon_sym_unsafe] = ACTIONS(1701), - [anon_sym_use] = ACTIONS(1701), - [anon_sym_while] = ACTIONS(1701), - [anon_sym_POUND] = ACTIONS(1699), - [anon_sym_BANG] = ACTIONS(1699), - [anon_sym_extern] = ACTIONS(1701), - [anon_sym_LT] = ACTIONS(1699), - [anon_sym_COLON_COLON] = ACTIONS(1699), - [anon_sym_AMP] = ACTIONS(1699), - [anon_sym_DOT_DOT] = ACTIONS(1699), - [anon_sym_DASH] = ACTIONS(1699), - [anon_sym_PIPE] = ACTIONS(1699), - [anon_sym_yield] = ACTIONS(1701), - [anon_sym_move] = ACTIONS(1701), - [sym_integer_literal] = ACTIONS(1699), - [aux_sym_string_literal_token1] = ACTIONS(1699), - [sym_char_literal] = ACTIONS(1699), - [anon_sym_true] = ACTIONS(1701), - [anon_sym_false] = ACTIONS(1701), - [anon_sym_u8] = ACTIONS(1701), - [anon_sym_i8] = ACTIONS(1701), - [anon_sym_u16] = ACTIONS(1701), - [anon_sym_i16] = ACTIONS(1701), - [anon_sym_u32] = ACTIONS(1701), - [anon_sym_i32] = ACTIONS(1701), - [anon_sym_u64] = ACTIONS(1701), - [anon_sym_i64] = ACTIONS(1701), - [anon_sym_u128] = ACTIONS(1701), - [anon_sym_i128] = ACTIONS(1701), - [anon_sym_isize] = ACTIONS(1701), - [anon_sym_usize] = ACTIONS(1701), - [anon_sym_f32] = ACTIONS(1701), - [anon_sym_f64] = ACTIONS(1701), - [anon_sym_bool] = ACTIONS(1701), - [anon_sym_str] = ACTIONS(1701), - [anon_sym_char] = ACTIONS(1701), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1699), - [sym_self] = ACTIONS(1701), - [sym_super] = ACTIONS(1701), - [sym_crate] = ACTIONS(1701), - [sym_metavariable] = ACTIONS(1699), - [sym_grit_metavariable] = ACTIONS(1699), - [sym_raw_string_literal] = ACTIONS(1699), - [sym_float_literal] = ACTIONS(1699), + [ts_builtin_sym_end] = ACTIONS(1693), + [sym__primitive_identifier] = ACTIONS(1695), + [anon_sym_SEMI] = ACTIONS(1693), + [anon_sym_macro_rules_BANG] = ACTIONS(1693), + [anon_sym_LPAREN] = ACTIONS(1693), + [anon_sym_LBRACE] = ACTIONS(1693), + [anon_sym_RBRACE] = ACTIONS(1693), + [anon_sym_LBRACK] = ACTIONS(1693), + [anon_sym_STAR] = ACTIONS(1693), + [anon_sym_SQUOTE] = ACTIONS(1695), + [anon_sym_async] = ACTIONS(1695), + [anon_sym_break] = ACTIONS(1695), + [anon_sym_const] = ACTIONS(1695), + [anon_sym_continue] = ACTIONS(1695), + [anon_sym_default] = ACTIONS(1695), + [anon_sym_enum] = ACTIONS(1695), + [anon_sym_fn] = ACTIONS(1695), + [anon_sym_for] = ACTIONS(1695), + [anon_sym_if] = ACTIONS(1695), + [anon_sym_impl] = ACTIONS(1695), + [anon_sym_let] = ACTIONS(1695), + [anon_sym_loop] = ACTIONS(1695), + [anon_sym_match] = ACTIONS(1695), + [anon_sym_mod] = ACTIONS(1695), + [anon_sym_pub] = ACTIONS(1695), + [anon_sym_return] = ACTIONS(1695), + [anon_sym_static] = ACTIONS(1695), + [anon_sym_struct] = ACTIONS(1695), + [anon_sym_trait] = ACTIONS(1695), + [anon_sym_type] = ACTIONS(1695), + [anon_sym_union] = ACTIONS(1695), + [anon_sym_unsafe] = ACTIONS(1695), + [anon_sym_use] = ACTIONS(1695), + [anon_sym_while] = ACTIONS(1695), + [anon_sym_POUND] = ACTIONS(1693), + [anon_sym_BANG] = ACTIONS(1693), + [anon_sym_extern] = ACTIONS(1695), + [anon_sym_LT] = ACTIONS(1693), + [anon_sym_COLON_COLON] = ACTIONS(1693), + [anon_sym_AMP] = ACTIONS(1693), + [anon_sym_DOT_DOT] = ACTIONS(1693), + [anon_sym_DASH] = ACTIONS(1693), + [anon_sym_PIPE] = ACTIONS(1693), + [anon_sym_yield] = ACTIONS(1695), + [anon_sym_move] = ACTIONS(1695), + [sym_integer_literal] = ACTIONS(1693), + [aux_sym_string_literal_token1] = ACTIONS(1693), + [sym_char_literal] = ACTIONS(1693), + [anon_sym_true] = ACTIONS(1695), + [anon_sym_false] = ACTIONS(1695), + [anon_sym_u8] = ACTIONS(1695), + [anon_sym_i8] = ACTIONS(1695), + [anon_sym_u16] = ACTIONS(1695), + [anon_sym_i16] = ACTIONS(1695), + [anon_sym_u32] = ACTIONS(1695), + [anon_sym_i32] = ACTIONS(1695), + [anon_sym_u64] = ACTIONS(1695), + [anon_sym_i64] = ACTIONS(1695), + [anon_sym_u128] = ACTIONS(1695), + [anon_sym_i128] = ACTIONS(1695), + [anon_sym_isize] = ACTIONS(1695), + [anon_sym_usize] = ACTIONS(1695), + [anon_sym_f32] = ACTIONS(1695), + [anon_sym_f64] = ACTIONS(1695), + [anon_sym_bool] = ACTIONS(1695), + [anon_sym_str] = ACTIONS(1695), + [anon_sym_char] = ACTIONS(1695), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(1693), + [sym_self] = ACTIONS(1695), + [sym_super] = ACTIONS(1695), + [sym_crate] = ACTIONS(1695), + [sym_metavariable] = ACTIONS(1693), + [sym_grit_metavariable] = ACTIONS(1693), + [sym_raw_string_literal] = ACTIONS(1693), + [sym_float_literal] = ACTIONS(1693), [sym_block_comment] = ACTIONS(3), }, [341] = { - [ts_builtin_sym_end] = ACTIONS(1703), - [sym__primitive_identifier] = ACTIONS(1705), - [anon_sym_SEMI] = ACTIONS(1703), - [anon_sym_macro_rules_BANG] = ACTIONS(1703), - [anon_sym_LPAREN] = ACTIONS(1703), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_RBRACE] = ACTIONS(1703), - [anon_sym_LBRACK] = ACTIONS(1703), - [anon_sym_STAR] = ACTIONS(1703), - [anon_sym_SQUOTE] = ACTIONS(1705), - [anon_sym_async] = ACTIONS(1705), - [anon_sym_break] = ACTIONS(1705), - [anon_sym_const] = ACTIONS(1705), - [anon_sym_continue] = ACTIONS(1705), - [anon_sym_default] = ACTIONS(1705), - [anon_sym_enum] = ACTIONS(1705), - [anon_sym_fn] = ACTIONS(1705), - [anon_sym_for] = ACTIONS(1705), - [anon_sym_if] = ACTIONS(1705), - [anon_sym_impl] = ACTIONS(1705), - [anon_sym_let] = ACTIONS(1705), - [anon_sym_loop] = ACTIONS(1705), - [anon_sym_match] = ACTIONS(1705), - [anon_sym_mod] = ACTIONS(1705), - [anon_sym_pub] = ACTIONS(1705), - [anon_sym_return] = ACTIONS(1705), - [anon_sym_static] = ACTIONS(1705), - [anon_sym_struct] = ACTIONS(1705), - [anon_sym_trait] = ACTIONS(1705), - [anon_sym_type] = ACTIONS(1705), - [anon_sym_union] = ACTIONS(1705), - [anon_sym_unsafe] = ACTIONS(1705), - [anon_sym_use] = ACTIONS(1705), - [anon_sym_while] = ACTIONS(1705), - [anon_sym_POUND] = ACTIONS(1703), - [anon_sym_BANG] = ACTIONS(1703), - [anon_sym_extern] = ACTIONS(1705), - [anon_sym_LT] = ACTIONS(1703), - [anon_sym_COLON_COLON] = ACTIONS(1703), - [anon_sym_AMP] = ACTIONS(1703), - [anon_sym_DOT_DOT] = ACTIONS(1703), - [anon_sym_DASH] = ACTIONS(1703), - [anon_sym_PIPE] = ACTIONS(1703), - [anon_sym_yield] = ACTIONS(1705), - [anon_sym_move] = ACTIONS(1705), - [sym_integer_literal] = ACTIONS(1703), - [aux_sym_string_literal_token1] = ACTIONS(1703), - [sym_char_literal] = ACTIONS(1703), - [anon_sym_true] = ACTIONS(1705), - [anon_sym_false] = ACTIONS(1705), - [anon_sym_u8] = ACTIONS(1705), - [anon_sym_i8] = ACTIONS(1705), - [anon_sym_u16] = ACTIONS(1705), - [anon_sym_i16] = ACTIONS(1705), - [anon_sym_u32] = ACTIONS(1705), - [anon_sym_i32] = ACTIONS(1705), - [anon_sym_u64] = ACTIONS(1705), - [anon_sym_i64] = ACTIONS(1705), - [anon_sym_u128] = ACTIONS(1705), - [anon_sym_i128] = ACTIONS(1705), - [anon_sym_isize] = ACTIONS(1705), - [anon_sym_usize] = ACTIONS(1705), - [anon_sym_f32] = ACTIONS(1705), - [anon_sym_f64] = ACTIONS(1705), - [anon_sym_bool] = ACTIONS(1705), - [anon_sym_str] = ACTIONS(1705), - [anon_sym_char] = ACTIONS(1705), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1703), - [sym_self] = ACTIONS(1705), - [sym_super] = ACTIONS(1705), - [sym_crate] = ACTIONS(1705), - [sym_metavariable] = ACTIONS(1703), - [sym_grit_metavariable] = ACTIONS(1703), - [sym_raw_string_literal] = ACTIONS(1703), - [sym_float_literal] = ACTIONS(1703), + [ts_builtin_sym_end] = ACTIONS(1697), + [sym__primitive_identifier] = ACTIONS(1699), + [anon_sym_SEMI] = ACTIONS(1697), + [anon_sym_macro_rules_BANG] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(1697), + [anon_sym_LBRACE] = ACTIONS(1697), + [anon_sym_RBRACE] = ACTIONS(1697), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_STAR] = ACTIONS(1697), + [anon_sym_SQUOTE] = ACTIONS(1699), + [anon_sym_async] = ACTIONS(1699), + [anon_sym_break] = ACTIONS(1699), + [anon_sym_const] = ACTIONS(1699), + [anon_sym_continue] = ACTIONS(1699), + [anon_sym_default] = ACTIONS(1699), + [anon_sym_enum] = ACTIONS(1699), + [anon_sym_fn] = ACTIONS(1699), + [anon_sym_for] = ACTIONS(1699), + [anon_sym_if] = ACTIONS(1699), + [anon_sym_impl] = ACTIONS(1699), + [anon_sym_let] = ACTIONS(1699), + [anon_sym_loop] = ACTIONS(1699), + [anon_sym_match] = ACTIONS(1699), + [anon_sym_mod] = ACTIONS(1699), + [anon_sym_pub] = ACTIONS(1699), + [anon_sym_return] = ACTIONS(1699), + [anon_sym_static] = ACTIONS(1699), + [anon_sym_struct] = ACTIONS(1699), + [anon_sym_trait] = ACTIONS(1699), + [anon_sym_type] = ACTIONS(1699), + [anon_sym_union] = ACTIONS(1699), + [anon_sym_unsafe] = ACTIONS(1699), + [anon_sym_use] = ACTIONS(1699), + [anon_sym_while] = ACTIONS(1699), + [anon_sym_POUND] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(1697), + [anon_sym_extern] = ACTIONS(1699), + [anon_sym_LT] = ACTIONS(1697), + [anon_sym_COLON_COLON] = ACTIONS(1697), + [anon_sym_AMP] = ACTIONS(1697), + [anon_sym_DOT_DOT] = ACTIONS(1697), + [anon_sym_DASH] = ACTIONS(1697), + [anon_sym_PIPE] = ACTIONS(1697), + [anon_sym_yield] = ACTIONS(1699), + [anon_sym_move] = ACTIONS(1699), + [sym_integer_literal] = ACTIONS(1697), + [aux_sym_string_literal_token1] = ACTIONS(1697), + [sym_char_literal] = ACTIONS(1697), + [anon_sym_true] = ACTIONS(1699), + [anon_sym_false] = ACTIONS(1699), + [anon_sym_u8] = ACTIONS(1699), + [anon_sym_i8] = ACTIONS(1699), + [anon_sym_u16] = ACTIONS(1699), + [anon_sym_i16] = ACTIONS(1699), + [anon_sym_u32] = ACTIONS(1699), + [anon_sym_i32] = ACTIONS(1699), + [anon_sym_u64] = ACTIONS(1699), + [anon_sym_i64] = ACTIONS(1699), + [anon_sym_u128] = ACTIONS(1699), + [anon_sym_i128] = ACTIONS(1699), + [anon_sym_isize] = ACTIONS(1699), + [anon_sym_usize] = ACTIONS(1699), + [anon_sym_f32] = ACTIONS(1699), + [anon_sym_f64] = ACTIONS(1699), + [anon_sym_bool] = ACTIONS(1699), + [anon_sym_str] = ACTIONS(1699), + [anon_sym_char] = ACTIONS(1699), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(1697), + [sym_self] = ACTIONS(1699), + [sym_super] = ACTIONS(1699), + [sym_crate] = ACTIONS(1699), + [sym_metavariable] = ACTIONS(1697), + [sym_grit_metavariable] = ACTIONS(1697), + [sym_raw_string_literal] = ACTIONS(1697), + [sym_float_literal] = ACTIONS(1697), [sym_block_comment] = ACTIONS(3), }, [342] = { - [ts_builtin_sym_end] = ACTIONS(1707), - [sym__primitive_identifier] = ACTIONS(1709), - [anon_sym_SEMI] = ACTIONS(1707), - [anon_sym_macro_rules_BANG] = ACTIONS(1707), - [anon_sym_LPAREN] = ACTIONS(1707), - [anon_sym_LBRACE] = ACTIONS(1707), - [anon_sym_RBRACE] = ACTIONS(1707), - [anon_sym_LBRACK] = ACTIONS(1707), - [anon_sym_STAR] = ACTIONS(1707), - [anon_sym_SQUOTE] = ACTIONS(1709), - [anon_sym_async] = ACTIONS(1709), - [anon_sym_break] = ACTIONS(1709), - [anon_sym_const] = ACTIONS(1709), - [anon_sym_continue] = ACTIONS(1709), - [anon_sym_default] = ACTIONS(1709), - [anon_sym_enum] = ACTIONS(1709), - [anon_sym_fn] = ACTIONS(1709), - [anon_sym_for] = ACTIONS(1709), - [anon_sym_if] = ACTIONS(1709), - [anon_sym_impl] = ACTIONS(1709), - [anon_sym_let] = ACTIONS(1709), - [anon_sym_loop] = ACTIONS(1709), - [anon_sym_match] = ACTIONS(1709), - [anon_sym_mod] = ACTIONS(1709), - [anon_sym_pub] = ACTIONS(1709), - [anon_sym_return] = ACTIONS(1709), - [anon_sym_static] = ACTIONS(1709), - [anon_sym_struct] = ACTIONS(1709), - [anon_sym_trait] = ACTIONS(1709), - [anon_sym_type] = ACTIONS(1709), - [anon_sym_union] = ACTIONS(1709), - [anon_sym_unsafe] = ACTIONS(1709), - [anon_sym_use] = ACTIONS(1709), - [anon_sym_while] = ACTIONS(1709), - [anon_sym_POUND] = ACTIONS(1707), - [anon_sym_BANG] = ACTIONS(1707), - [anon_sym_extern] = ACTIONS(1709), - [anon_sym_LT] = ACTIONS(1707), - [anon_sym_COLON_COLON] = ACTIONS(1707), - [anon_sym_AMP] = ACTIONS(1707), - [anon_sym_DOT_DOT] = ACTIONS(1707), - [anon_sym_DASH] = ACTIONS(1707), - [anon_sym_PIPE] = ACTIONS(1707), - [anon_sym_yield] = ACTIONS(1709), - [anon_sym_move] = ACTIONS(1709), - [sym_integer_literal] = ACTIONS(1707), - [aux_sym_string_literal_token1] = ACTIONS(1707), - [sym_char_literal] = ACTIONS(1707), - [anon_sym_true] = ACTIONS(1709), - [anon_sym_false] = ACTIONS(1709), - [anon_sym_u8] = ACTIONS(1709), - [anon_sym_i8] = ACTIONS(1709), - [anon_sym_u16] = ACTIONS(1709), - [anon_sym_i16] = ACTIONS(1709), - [anon_sym_u32] = ACTIONS(1709), - [anon_sym_i32] = ACTIONS(1709), - [anon_sym_u64] = ACTIONS(1709), - [anon_sym_i64] = ACTIONS(1709), - [anon_sym_u128] = ACTIONS(1709), - [anon_sym_i128] = ACTIONS(1709), - [anon_sym_isize] = ACTIONS(1709), - [anon_sym_usize] = ACTIONS(1709), - [anon_sym_f32] = ACTIONS(1709), - [anon_sym_f64] = ACTIONS(1709), - [anon_sym_bool] = ACTIONS(1709), - [anon_sym_str] = ACTIONS(1709), - [anon_sym_char] = ACTIONS(1709), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1707), - [sym_self] = ACTIONS(1709), - [sym_super] = ACTIONS(1709), - [sym_crate] = ACTIONS(1709), - [sym_metavariable] = ACTIONS(1707), - [sym_grit_metavariable] = ACTIONS(1707), - [sym_raw_string_literal] = ACTIONS(1707), - [sym_float_literal] = ACTIONS(1707), + [ts_builtin_sym_end] = ACTIONS(1701), + [sym__primitive_identifier] = ACTIONS(1703), + [anon_sym_SEMI] = ACTIONS(1701), + [anon_sym_macro_rules_BANG] = ACTIONS(1701), + [anon_sym_LPAREN] = ACTIONS(1701), + [anon_sym_LBRACE] = ACTIONS(1701), + [anon_sym_RBRACE] = ACTIONS(1701), + [anon_sym_LBRACK] = ACTIONS(1701), + [anon_sym_STAR] = ACTIONS(1701), + [anon_sym_SQUOTE] = ACTIONS(1703), + [anon_sym_async] = ACTIONS(1703), + [anon_sym_break] = ACTIONS(1703), + [anon_sym_const] = ACTIONS(1703), + [anon_sym_continue] = ACTIONS(1703), + [anon_sym_default] = ACTIONS(1703), + [anon_sym_enum] = ACTIONS(1703), + [anon_sym_fn] = ACTIONS(1703), + [anon_sym_for] = ACTIONS(1703), + [anon_sym_if] = ACTIONS(1703), + [anon_sym_impl] = ACTIONS(1703), + [anon_sym_let] = ACTIONS(1703), + [anon_sym_loop] = ACTIONS(1703), + [anon_sym_match] = ACTIONS(1703), + [anon_sym_mod] = ACTIONS(1703), + [anon_sym_pub] = ACTIONS(1703), + [anon_sym_return] = ACTIONS(1703), + [anon_sym_static] = ACTIONS(1703), + [anon_sym_struct] = ACTIONS(1703), + [anon_sym_trait] = ACTIONS(1703), + [anon_sym_type] = ACTIONS(1703), + [anon_sym_union] = ACTIONS(1703), + [anon_sym_unsafe] = ACTIONS(1703), + [anon_sym_use] = ACTIONS(1703), + [anon_sym_while] = ACTIONS(1703), + [anon_sym_POUND] = ACTIONS(1701), + [anon_sym_BANG] = ACTIONS(1701), + [anon_sym_extern] = ACTIONS(1703), + [anon_sym_LT] = ACTIONS(1701), + [anon_sym_COLON_COLON] = ACTIONS(1701), + [anon_sym_AMP] = ACTIONS(1701), + [anon_sym_DOT_DOT] = ACTIONS(1701), + [anon_sym_DASH] = ACTIONS(1701), + [anon_sym_PIPE] = ACTIONS(1701), + [anon_sym_yield] = ACTIONS(1703), + [anon_sym_move] = ACTIONS(1703), + [sym_integer_literal] = ACTIONS(1701), + [aux_sym_string_literal_token1] = ACTIONS(1701), + [sym_char_literal] = ACTIONS(1701), + [anon_sym_true] = ACTIONS(1703), + [anon_sym_false] = ACTIONS(1703), + [anon_sym_u8] = ACTIONS(1703), + [anon_sym_i8] = ACTIONS(1703), + [anon_sym_u16] = ACTIONS(1703), + [anon_sym_i16] = ACTIONS(1703), + [anon_sym_u32] = ACTIONS(1703), + [anon_sym_i32] = ACTIONS(1703), + [anon_sym_u64] = ACTIONS(1703), + [anon_sym_i64] = ACTIONS(1703), + [anon_sym_u128] = ACTIONS(1703), + [anon_sym_i128] = ACTIONS(1703), + [anon_sym_isize] = ACTIONS(1703), + [anon_sym_usize] = ACTIONS(1703), + [anon_sym_f32] = ACTIONS(1703), + [anon_sym_f64] = ACTIONS(1703), + [anon_sym_bool] = ACTIONS(1703), + [anon_sym_str] = ACTIONS(1703), + [anon_sym_char] = ACTIONS(1703), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(1701), + [sym_self] = ACTIONS(1703), + [sym_super] = ACTIONS(1703), + [sym_crate] = ACTIONS(1703), + [sym_metavariable] = ACTIONS(1701), + [sym_grit_metavariable] = ACTIONS(1701), + [sym_raw_string_literal] = ACTIONS(1701), + [sym_float_literal] = ACTIONS(1701), [sym_block_comment] = ACTIONS(3), }, [343] = { - [ts_builtin_sym_end] = ACTIONS(1711), - [sym__primitive_identifier] = ACTIONS(1713), - [anon_sym_SEMI] = ACTIONS(1711), - [anon_sym_macro_rules_BANG] = ACTIONS(1711), - [anon_sym_LPAREN] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(1711), - [anon_sym_RBRACE] = ACTIONS(1711), - [anon_sym_LBRACK] = ACTIONS(1711), - [anon_sym_STAR] = ACTIONS(1711), - [anon_sym_SQUOTE] = ACTIONS(1713), - [anon_sym_async] = ACTIONS(1713), - [anon_sym_break] = ACTIONS(1713), - [anon_sym_const] = ACTIONS(1713), - [anon_sym_continue] = ACTIONS(1713), - [anon_sym_default] = ACTIONS(1713), - [anon_sym_enum] = ACTIONS(1713), - [anon_sym_fn] = ACTIONS(1713), - [anon_sym_for] = ACTIONS(1713), - [anon_sym_if] = ACTIONS(1713), - [anon_sym_impl] = ACTIONS(1713), - [anon_sym_let] = ACTIONS(1713), - [anon_sym_loop] = ACTIONS(1713), - [anon_sym_match] = ACTIONS(1713), - [anon_sym_mod] = ACTIONS(1713), - [anon_sym_pub] = ACTIONS(1713), - [anon_sym_return] = ACTIONS(1713), - [anon_sym_static] = ACTIONS(1713), - [anon_sym_struct] = ACTIONS(1713), - [anon_sym_trait] = ACTIONS(1713), - [anon_sym_type] = ACTIONS(1713), - [anon_sym_union] = ACTIONS(1713), - [anon_sym_unsafe] = ACTIONS(1713), - [anon_sym_use] = ACTIONS(1713), - [anon_sym_while] = ACTIONS(1713), - [anon_sym_POUND] = ACTIONS(1711), - [anon_sym_BANG] = ACTIONS(1711), - [anon_sym_extern] = ACTIONS(1713), - [anon_sym_LT] = ACTIONS(1711), - [anon_sym_COLON_COLON] = ACTIONS(1711), - [anon_sym_AMP] = ACTIONS(1711), - [anon_sym_DOT_DOT] = ACTIONS(1711), - [anon_sym_DASH] = ACTIONS(1711), - [anon_sym_PIPE] = ACTIONS(1711), - [anon_sym_yield] = ACTIONS(1713), - [anon_sym_move] = ACTIONS(1713), - [sym_integer_literal] = ACTIONS(1711), - [aux_sym_string_literal_token1] = ACTIONS(1711), - [sym_char_literal] = ACTIONS(1711), - [anon_sym_true] = ACTIONS(1713), - [anon_sym_false] = ACTIONS(1713), - [anon_sym_u8] = ACTIONS(1713), - [anon_sym_i8] = ACTIONS(1713), - [anon_sym_u16] = ACTIONS(1713), - [anon_sym_i16] = ACTIONS(1713), - [anon_sym_u32] = ACTIONS(1713), - [anon_sym_i32] = ACTIONS(1713), - [anon_sym_u64] = ACTIONS(1713), - [anon_sym_i64] = ACTIONS(1713), - [anon_sym_u128] = ACTIONS(1713), - [anon_sym_i128] = ACTIONS(1713), - [anon_sym_isize] = ACTIONS(1713), - [anon_sym_usize] = ACTIONS(1713), - [anon_sym_f32] = ACTIONS(1713), - [anon_sym_f64] = ACTIONS(1713), - [anon_sym_bool] = ACTIONS(1713), - [anon_sym_str] = ACTIONS(1713), - [anon_sym_char] = ACTIONS(1713), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1711), - [sym_self] = ACTIONS(1713), - [sym_super] = ACTIONS(1713), - [sym_crate] = ACTIONS(1713), - [sym_metavariable] = ACTIONS(1711), - [sym_grit_metavariable] = ACTIONS(1711), - [sym_raw_string_literal] = ACTIONS(1711), - [sym_float_literal] = ACTIONS(1711), + [ts_builtin_sym_end] = ACTIONS(1705), + [sym__primitive_identifier] = ACTIONS(1707), + [anon_sym_SEMI] = ACTIONS(1705), + [anon_sym_macro_rules_BANG] = ACTIONS(1705), + [anon_sym_LPAREN] = ACTIONS(1705), + [anon_sym_LBRACE] = ACTIONS(1705), + [anon_sym_RBRACE] = ACTIONS(1705), + [anon_sym_LBRACK] = ACTIONS(1705), + [anon_sym_STAR] = ACTIONS(1705), + [anon_sym_SQUOTE] = ACTIONS(1707), + [anon_sym_async] = ACTIONS(1707), + [anon_sym_break] = ACTIONS(1707), + [anon_sym_const] = ACTIONS(1707), + [anon_sym_continue] = ACTIONS(1707), + [anon_sym_default] = ACTIONS(1707), + [anon_sym_enum] = ACTIONS(1707), + [anon_sym_fn] = ACTIONS(1707), + [anon_sym_for] = ACTIONS(1707), + [anon_sym_if] = ACTIONS(1707), + [anon_sym_impl] = ACTIONS(1707), + [anon_sym_let] = ACTIONS(1707), + [anon_sym_loop] = ACTIONS(1707), + [anon_sym_match] = ACTIONS(1707), + [anon_sym_mod] = ACTIONS(1707), + [anon_sym_pub] = ACTIONS(1707), + [anon_sym_return] = ACTIONS(1707), + [anon_sym_static] = ACTIONS(1707), + [anon_sym_struct] = ACTIONS(1707), + [anon_sym_trait] = ACTIONS(1707), + [anon_sym_type] = ACTIONS(1707), + [anon_sym_union] = ACTIONS(1707), + [anon_sym_unsafe] = ACTIONS(1707), + [anon_sym_use] = ACTIONS(1707), + [anon_sym_while] = ACTIONS(1707), + [anon_sym_POUND] = ACTIONS(1705), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_extern] = ACTIONS(1707), + [anon_sym_LT] = ACTIONS(1705), + [anon_sym_COLON_COLON] = ACTIONS(1705), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_DOT_DOT] = ACTIONS(1705), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_PIPE] = ACTIONS(1705), + [anon_sym_yield] = ACTIONS(1707), + [anon_sym_move] = ACTIONS(1707), + [sym_integer_literal] = ACTIONS(1705), + [aux_sym_string_literal_token1] = ACTIONS(1705), + [sym_char_literal] = ACTIONS(1705), + [anon_sym_true] = ACTIONS(1707), + [anon_sym_false] = ACTIONS(1707), + [anon_sym_u8] = ACTIONS(1707), + [anon_sym_i8] = ACTIONS(1707), + [anon_sym_u16] = ACTIONS(1707), + [anon_sym_i16] = ACTIONS(1707), + [anon_sym_u32] = ACTIONS(1707), + [anon_sym_i32] = ACTIONS(1707), + [anon_sym_u64] = ACTIONS(1707), + [anon_sym_i64] = ACTIONS(1707), + [anon_sym_u128] = ACTIONS(1707), + [anon_sym_i128] = ACTIONS(1707), + [anon_sym_isize] = ACTIONS(1707), + [anon_sym_usize] = ACTIONS(1707), + [anon_sym_f32] = ACTIONS(1707), + [anon_sym_f64] = ACTIONS(1707), + [anon_sym_bool] = ACTIONS(1707), + [anon_sym_str] = ACTIONS(1707), + [anon_sym_char] = ACTIONS(1707), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(1705), + [sym_self] = ACTIONS(1707), + [sym_super] = ACTIONS(1707), + [sym_crate] = ACTIONS(1707), + [sym_metavariable] = ACTIONS(1705), + [sym_grit_metavariable] = ACTIONS(1705), + [sym_raw_string_literal] = ACTIONS(1705), + [sym_float_literal] = ACTIONS(1705), [sym_block_comment] = ACTIONS(3), }, [344] = { - [ts_builtin_sym_end] = ACTIONS(1715), - [sym__primitive_identifier] = ACTIONS(1717), - [anon_sym_SEMI] = ACTIONS(1715), - [anon_sym_macro_rules_BANG] = ACTIONS(1715), - [anon_sym_LPAREN] = ACTIONS(1715), - [anon_sym_LBRACE] = ACTIONS(1715), - [anon_sym_RBRACE] = ACTIONS(1715), - [anon_sym_LBRACK] = ACTIONS(1715), - [anon_sym_STAR] = ACTIONS(1715), - [anon_sym_SQUOTE] = ACTIONS(1717), - [anon_sym_async] = ACTIONS(1717), - [anon_sym_break] = ACTIONS(1717), - [anon_sym_const] = ACTIONS(1717), - [anon_sym_continue] = ACTIONS(1717), - [anon_sym_default] = ACTIONS(1717), - [anon_sym_enum] = ACTIONS(1717), - [anon_sym_fn] = ACTIONS(1717), - [anon_sym_for] = ACTIONS(1717), - [anon_sym_if] = ACTIONS(1717), - [anon_sym_impl] = ACTIONS(1717), - [anon_sym_let] = ACTIONS(1717), - [anon_sym_loop] = ACTIONS(1717), - [anon_sym_match] = ACTIONS(1717), - [anon_sym_mod] = ACTIONS(1717), - [anon_sym_pub] = ACTIONS(1717), - [anon_sym_return] = ACTIONS(1717), - [anon_sym_static] = ACTIONS(1717), - [anon_sym_struct] = ACTIONS(1717), - [anon_sym_trait] = ACTIONS(1717), - [anon_sym_type] = ACTIONS(1717), - [anon_sym_union] = ACTIONS(1717), - [anon_sym_unsafe] = ACTIONS(1717), - [anon_sym_use] = ACTIONS(1717), - [anon_sym_while] = ACTIONS(1717), - [anon_sym_POUND] = ACTIONS(1715), - [anon_sym_BANG] = ACTIONS(1715), - [anon_sym_extern] = ACTIONS(1717), - [anon_sym_LT] = ACTIONS(1715), - [anon_sym_COLON_COLON] = ACTIONS(1715), - [anon_sym_AMP] = ACTIONS(1715), - [anon_sym_DOT_DOT] = ACTIONS(1715), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_PIPE] = ACTIONS(1715), - [anon_sym_yield] = ACTIONS(1717), - [anon_sym_move] = ACTIONS(1717), - [sym_integer_literal] = ACTIONS(1715), - [aux_sym_string_literal_token1] = ACTIONS(1715), - [sym_char_literal] = ACTIONS(1715), - [anon_sym_true] = ACTIONS(1717), - [anon_sym_false] = ACTIONS(1717), - [anon_sym_u8] = ACTIONS(1717), - [anon_sym_i8] = ACTIONS(1717), - [anon_sym_u16] = ACTIONS(1717), - [anon_sym_i16] = ACTIONS(1717), - [anon_sym_u32] = ACTIONS(1717), - [anon_sym_i32] = ACTIONS(1717), - [anon_sym_u64] = ACTIONS(1717), - [anon_sym_i64] = ACTIONS(1717), - [anon_sym_u128] = ACTIONS(1717), - [anon_sym_i128] = ACTIONS(1717), - [anon_sym_isize] = ACTIONS(1717), - [anon_sym_usize] = ACTIONS(1717), - [anon_sym_f32] = ACTIONS(1717), - [anon_sym_f64] = ACTIONS(1717), - [anon_sym_bool] = ACTIONS(1717), - [anon_sym_str] = ACTIONS(1717), - [anon_sym_char] = ACTIONS(1717), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1715), - [sym_self] = ACTIONS(1717), - [sym_super] = ACTIONS(1717), - [sym_crate] = ACTIONS(1717), - [sym_metavariable] = ACTIONS(1715), - [sym_grit_metavariable] = ACTIONS(1715), - [sym_raw_string_literal] = ACTIONS(1715), - [sym_float_literal] = ACTIONS(1715), + [ts_builtin_sym_end] = ACTIONS(695), + [sym__primitive_identifier] = ACTIONS(697), + [anon_sym_SEMI] = ACTIONS(695), + [anon_sym_macro_rules_BANG] = ACTIONS(695), + [anon_sym_LPAREN] = ACTIONS(695), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_RBRACE] = ACTIONS(695), + [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_STAR] = ACTIONS(695), + [anon_sym_SQUOTE] = ACTIONS(697), + [anon_sym_async] = ACTIONS(697), + [anon_sym_break] = ACTIONS(697), + [anon_sym_const] = ACTIONS(697), + [anon_sym_continue] = ACTIONS(697), + [anon_sym_default] = ACTIONS(697), + [anon_sym_enum] = ACTIONS(697), + [anon_sym_fn] = ACTIONS(697), + [anon_sym_for] = ACTIONS(697), + [anon_sym_if] = ACTIONS(697), + [anon_sym_impl] = ACTIONS(697), + [anon_sym_let] = ACTIONS(697), + [anon_sym_loop] = ACTIONS(697), + [anon_sym_match] = ACTIONS(697), + [anon_sym_mod] = ACTIONS(697), + [anon_sym_pub] = ACTIONS(697), + [anon_sym_return] = ACTIONS(697), + [anon_sym_static] = ACTIONS(697), + [anon_sym_struct] = ACTIONS(697), + [anon_sym_trait] = ACTIONS(697), + [anon_sym_type] = ACTIONS(697), + [anon_sym_union] = ACTIONS(697), + [anon_sym_unsafe] = ACTIONS(697), + [anon_sym_use] = ACTIONS(697), + [anon_sym_while] = ACTIONS(697), + [anon_sym_POUND] = ACTIONS(695), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_extern] = ACTIONS(697), + [anon_sym_LT] = ACTIONS(695), + [anon_sym_COLON_COLON] = ACTIONS(695), + [anon_sym_AMP] = ACTIONS(695), + [anon_sym_DOT_DOT] = ACTIONS(695), + [anon_sym_DASH] = ACTIONS(695), + [anon_sym_PIPE] = ACTIONS(695), + [anon_sym_yield] = ACTIONS(697), + [anon_sym_move] = ACTIONS(697), + [sym_integer_literal] = ACTIONS(695), + [aux_sym_string_literal_token1] = ACTIONS(695), + [sym_char_literal] = ACTIONS(695), + [anon_sym_true] = ACTIONS(697), + [anon_sym_false] = ACTIONS(697), + [anon_sym_u8] = ACTIONS(697), + [anon_sym_i8] = ACTIONS(697), + [anon_sym_u16] = ACTIONS(697), + [anon_sym_i16] = ACTIONS(697), + [anon_sym_u32] = ACTIONS(697), + [anon_sym_i32] = ACTIONS(697), + [anon_sym_u64] = ACTIONS(697), + [anon_sym_i64] = ACTIONS(697), + [anon_sym_u128] = ACTIONS(697), + [anon_sym_i128] = ACTIONS(697), + [anon_sym_isize] = ACTIONS(697), + [anon_sym_usize] = ACTIONS(697), + [anon_sym_f32] = ACTIONS(697), + [anon_sym_f64] = ACTIONS(697), + [anon_sym_bool] = ACTIONS(697), + [anon_sym_str] = ACTIONS(697), + [anon_sym_char] = ACTIONS(697), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(695), + [sym_self] = ACTIONS(697), + [sym_super] = ACTIONS(697), + [sym_crate] = ACTIONS(697), + [sym_metavariable] = ACTIONS(695), + [sym_grit_metavariable] = ACTIONS(695), + [sym_raw_string_literal] = ACTIONS(695), + [sym_float_literal] = ACTIONS(695), [sym_block_comment] = ACTIONS(3), }, [345] = { - [ts_builtin_sym_end] = ACTIONS(1719), - [sym__primitive_identifier] = ACTIONS(1721), - [anon_sym_SEMI] = ACTIONS(1719), - [anon_sym_macro_rules_BANG] = ACTIONS(1719), - [anon_sym_LPAREN] = ACTIONS(1719), - [anon_sym_LBRACE] = ACTIONS(1719), - [anon_sym_RBRACE] = ACTIONS(1719), - [anon_sym_LBRACK] = ACTIONS(1719), - [anon_sym_STAR] = ACTIONS(1719), - [anon_sym_SQUOTE] = ACTIONS(1721), - [anon_sym_async] = ACTIONS(1721), - [anon_sym_break] = ACTIONS(1721), - [anon_sym_const] = ACTIONS(1721), - [anon_sym_continue] = ACTIONS(1721), - [anon_sym_default] = ACTIONS(1721), - [anon_sym_enum] = ACTIONS(1721), - [anon_sym_fn] = ACTIONS(1721), - [anon_sym_for] = ACTIONS(1721), - [anon_sym_if] = ACTIONS(1721), - [anon_sym_impl] = ACTIONS(1721), - [anon_sym_let] = ACTIONS(1721), - [anon_sym_loop] = ACTIONS(1721), - [anon_sym_match] = ACTIONS(1721), - [anon_sym_mod] = ACTIONS(1721), - [anon_sym_pub] = ACTIONS(1721), - [anon_sym_return] = ACTIONS(1721), - [anon_sym_static] = ACTIONS(1721), - [anon_sym_struct] = ACTIONS(1721), - [anon_sym_trait] = ACTIONS(1721), - [anon_sym_type] = ACTIONS(1721), - [anon_sym_union] = ACTIONS(1721), - [anon_sym_unsafe] = ACTIONS(1721), - [anon_sym_use] = ACTIONS(1721), - [anon_sym_while] = ACTIONS(1721), - [anon_sym_POUND] = ACTIONS(1719), - [anon_sym_BANG] = ACTIONS(1719), - [anon_sym_extern] = ACTIONS(1721), - [anon_sym_LT] = ACTIONS(1719), - [anon_sym_COLON_COLON] = ACTIONS(1719), - [anon_sym_AMP] = ACTIONS(1719), - [anon_sym_DOT_DOT] = ACTIONS(1719), - [anon_sym_DASH] = ACTIONS(1719), - [anon_sym_PIPE] = ACTIONS(1719), - [anon_sym_yield] = ACTIONS(1721), - [anon_sym_move] = ACTIONS(1721), - [sym_integer_literal] = ACTIONS(1719), - [aux_sym_string_literal_token1] = ACTIONS(1719), - [sym_char_literal] = ACTIONS(1719), - [anon_sym_true] = ACTIONS(1721), - [anon_sym_false] = ACTIONS(1721), - [anon_sym_u8] = ACTIONS(1721), - [anon_sym_i8] = ACTIONS(1721), - [anon_sym_u16] = ACTIONS(1721), - [anon_sym_i16] = ACTIONS(1721), - [anon_sym_u32] = ACTIONS(1721), - [anon_sym_i32] = ACTIONS(1721), - [anon_sym_u64] = ACTIONS(1721), - [anon_sym_i64] = ACTIONS(1721), - [anon_sym_u128] = ACTIONS(1721), - [anon_sym_i128] = ACTIONS(1721), - [anon_sym_isize] = ACTIONS(1721), - [anon_sym_usize] = ACTIONS(1721), - [anon_sym_f32] = ACTIONS(1721), - [anon_sym_f64] = ACTIONS(1721), - [anon_sym_bool] = ACTIONS(1721), - [anon_sym_str] = ACTIONS(1721), - [anon_sym_char] = ACTIONS(1721), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1719), - [sym_self] = ACTIONS(1721), - [sym_super] = ACTIONS(1721), - [sym_crate] = ACTIONS(1721), - [sym_metavariable] = ACTIONS(1719), - [sym_grit_metavariable] = ACTIONS(1719), - [sym_raw_string_literal] = ACTIONS(1719), - [sym_float_literal] = ACTIONS(1719), + [ts_builtin_sym_end] = ACTIONS(1709), + [sym__primitive_identifier] = ACTIONS(1711), + [anon_sym_SEMI] = ACTIONS(1709), + [anon_sym_macro_rules_BANG] = ACTIONS(1709), + [anon_sym_LPAREN] = ACTIONS(1709), + [anon_sym_LBRACE] = ACTIONS(1709), + [anon_sym_RBRACE] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(1709), + [anon_sym_STAR] = ACTIONS(1709), + [anon_sym_SQUOTE] = ACTIONS(1711), + [anon_sym_async] = ACTIONS(1711), + [anon_sym_break] = ACTIONS(1711), + [anon_sym_const] = ACTIONS(1711), + [anon_sym_continue] = ACTIONS(1711), + [anon_sym_default] = ACTIONS(1711), + [anon_sym_enum] = ACTIONS(1711), + [anon_sym_fn] = ACTIONS(1711), + [anon_sym_for] = ACTIONS(1711), + [anon_sym_if] = ACTIONS(1711), + [anon_sym_impl] = ACTIONS(1711), + [anon_sym_let] = ACTIONS(1711), + [anon_sym_loop] = ACTIONS(1711), + [anon_sym_match] = ACTIONS(1711), + [anon_sym_mod] = ACTIONS(1711), + [anon_sym_pub] = ACTIONS(1711), + [anon_sym_return] = ACTIONS(1711), + [anon_sym_static] = ACTIONS(1711), + [anon_sym_struct] = ACTIONS(1711), + [anon_sym_trait] = ACTIONS(1711), + [anon_sym_type] = ACTIONS(1711), + [anon_sym_union] = ACTIONS(1711), + [anon_sym_unsafe] = ACTIONS(1711), + [anon_sym_use] = ACTIONS(1711), + [anon_sym_while] = ACTIONS(1711), + [anon_sym_POUND] = ACTIONS(1709), + [anon_sym_BANG] = ACTIONS(1709), + [anon_sym_extern] = ACTIONS(1711), + [anon_sym_LT] = ACTIONS(1709), + [anon_sym_COLON_COLON] = ACTIONS(1709), + [anon_sym_AMP] = ACTIONS(1709), + [anon_sym_DOT_DOT] = ACTIONS(1709), + [anon_sym_DASH] = ACTIONS(1709), + [anon_sym_PIPE] = ACTIONS(1709), + [anon_sym_yield] = ACTIONS(1711), + [anon_sym_move] = ACTIONS(1711), + [sym_integer_literal] = ACTIONS(1709), + [aux_sym_string_literal_token1] = ACTIONS(1709), + [sym_char_literal] = ACTIONS(1709), + [anon_sym_true] = ACTIONS(1711), + [anon_sym_false] = ACTIONS(1711), + [anon_sym_u8] = ACTIONS(1711), + [anon_sym_i8] = ACTIONS(1711), + [anon_sym_u16] = ACTIONS(1711), + [anon_sym_i16] = ACTIONS(1711), + [anon_sym_u32] = ACTIONS(1711), + [anon_sym_i32] = ACTIONS(1711), + [anon_sym_u64] = ACTIONS(1711), + [anon_sym_i64] = ACTIONS(1711), + [anon_sym_u128] = ACTIONS(1711), + [anon_sym_i128] = ACTIONS(1711), + [anon_sym_isize] = ACTIONS(1711), + [anon_sym_usize] = ACTIONS(1711), + [anon_sym_f32] = ACTIONS(1711), + [anon_sym_f64] = ACTIONS(1711), + [anon_sym_bool] = ACTIONS(1711), + [anon_sym_str] = ACTIONS(1711), + [anon_sym_char] = ACTIONS(1711), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(1709), + [sym_self] = ACTIONS(1711), + [sym_super] = ACTIONS(1711), + [sym_crate] = ACTIONS(1711), + [sym_metavariable] = ACTIONS(1709), + [sym_grit_metavariable] = ACTIONS(1709), + [sym_raw_string_literal] = ACTIONS(1709), + [sym_float_literal] = ACTIONS(1709), [sym_block_comment] = ACTIONS(3), }, [346] = { - [ts_builtin_sym_end] = ACTIONS(1723), - [sym__primitive_identifier] = ACTIONS(1725), - [anon_sym_SEMI] = ACTIONS(1723), - [anon_sym_macro_rules_BANG] = ACTIONS(1723), - [anon_sym_LPAREN] = ACTIONS(1723), - [anon_sym_LBRACE] = ACTIONS(1723), - [anon_sym_RBRACE] = ACTIONS(1723), - [anon_sym_LBRACK] = ACTIONS(1723), - [anon_sym_STAR] = ACTIONS(1723), - [anon_sym_SQUOTE] = ACTIONS(1725), - [anon_sym_async] = ACTIONS(1725), - [anon_sym_break] = ACTIONS(1725), - [anon_sym_const] = ACTIONS(1725), - [anon_sym_continue] = ACTIONS(1725), - [anon_sym_default] = ACTIONS(1725), - [anon_sym_enum] = ACTIONS(1725), - [anon_sym_fn] = ACTIONS(1725), - [anon_sym_for] = ACTIONS(1725), - [anon_sym_if] = ACTIONS(1725), - [anon_sym_impl] = ACTIONS(1725), - [anon_sym_let] = ACTIONS(1725), - [anon_sym_loop] = ACTIONS(1725), - [anon_sym_match] = ACTIONS(1725), - [anon_sym_mod] = ACTIONS(1725), - [anon_sym_pub] = ACTIONS(1725), - [anon_sym_return] = ACTIONS(1725), - [anon_sym_static] = ACTIONS(1725), - [anon_sym_struct] = ACTIONS(1725), - [anon_sym_trait] = ACTIONS(1725), - [anon_sym_type] = ACTIONS(1725), - [anon_sym_union] = ACTIONS(1725), - [anon_sym_unsafe] = ACTIONS(1725), - [anon_sym_use] = ACTIONS(1725), - [anon_sym_while] = ACTIONS(1725), - [anon_sym_POUND] = ACTIONS(1723), - [anon_sym_BANG] = ACTIONS(1723), - [anon_sym_extern] = ACTIONS(1725), - [anon_sym_LT] = ACTIONS(1723), - [anon_sym_COLON_COLON] = ACTIONS(1723), - [anon_sym_AMP] = ACTIONS(1723), - [anon_sym_DOT_DOT] = ACTIONS(1723), - [anon_sym_DASH] = ACTIONS(1723), - [anon_sym_PIPE] = ACTIONS(1723), - [anon_sym_yield] = ACTIONS(1725), - [anon_sym_move] = ACTIONS(1725), - [sym_integer_literal] = ACTIONS(1723), - [aux_sym_string_literal_token1] = ACTIONS(1723), - [sym_char_literal] = ACTIONS(1723), - [anon_sym_true] = ACTIONS(1725), - [anon_sym_false] = ACTIONS(1725), - [anon_sym_u8] = ACTIONS(1725), - [anon_sym_i8] = ACTIONS(1725), - [anon_sym_u16] = ACTIONS(1725), - [anon_sym_i16] = ACTIONS(1725), - [anon_sym_u32] = ACTIONS(1725), - [anon_sym_i32] = ACTIONS(1725), - [anon_sym_u64] = ACTIONS(1725), - [anon_sym_i64] = ACTIONS(1725), - [anon_sym_u128] = ACTIONS(1725), - [anon_sym_i128] = ACTIONS(1725), - [anon_sym_isize] = ACTIONS(1725), - [anon_sym_usize] = ACTIONS(1725), - [anon_sym_f32] = ACTIONS(1725), - [anon_sym_f64] = ACTIONS(1725), - [anon_sym_bool] = ACTIONS(1725), - [anon_sym_str] = ACTIONS(1725), - [anon_sym_char] = ACTIONS(1725), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1723), - [sym_self] = ACTIONS(1725), - [sym_super] = ACTIONS(1725), - [sym_crate] = ACTIONS(1725), - [sym_metavariable] = ACTIONS(1723), - [sym_grit_metavariable] = ACTIONS(1723), - [sym_raw_string_literal] = ACTIONS(1723), - [sym_float_literal] = ACTIONS(1723), + [ts_builtin_sym_end] = ACTIONS(1713), + [sym__primitive_identifier] = ACTIONS(1715), + [anon_sym_SEMI] = ACTIONS(1713), + [anon_sym_macro_rules_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(1713), + [anon_sym_LBRACE] = ACTIONS(1713), + [anon_sym_RBRACE] = ACTIONS(1713), + [anon_sym_LBRACK] = ACTIONS(1713), + [anon_sym_STAR] = ACTIONS(1713), + [anon_sym_SQUOTE] = ACTIONS(1715), + [anon_sym_async] = ACTIONS(1715), + [anon_sym_break] = ACTIONS(1715), + [anon_sym_const] = ACTIONS(1715), + [anon_sym_continue] = ACTIONS(1715), + [anon_sym_default] = ACTIONS(1715), + [anon_sym_enum] = ACTIONS(1715), + [anon_sym_fn] = ACTIONS(1715), + [anon_sym_for] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(1715), + [anon_sym_impl] = ACTIONS(1715), + [anon_sym_let] = ACTIONS(1715), + [anon_sym_loop] = ACTIONS(1715), + [anon_sym_match] = ACTIONS(1715), + [anon_sym_mod] = ACTIONS(1715), + [anon_sym_pub] = ACTIONS(1715), + [anon_sym_return] = ACTIONS(1715), + [anon_sym_static] = ACTIONS(1715), + [anon_sym_struct] = ACTIONS(1715), + [anon_sym_trait] = ACTIONS(1715), + [anon_sym_type] = ACTIONS(1715), + [anon_sym_union] = ACTIONS(1715), + [anon_sym_unsafe] = ACTIONS(1715), + [anon_sym_use] = ACTIONS(1715), + [anon_sym_while] = ACTIONS(1715), + [anon_sym_POUND] = ACTIONS(1713), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_extern] = ACTIONS(1715), + [anon_sym_LT] = ACTIONS(1713), + [anon_sym_COLON_COLON] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_DOT_DOT] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_yield] = ACTIONS(1715), + [anon_sym_move] = ACTIONS(1715), + [sym_integer_literal] = ACTIONS(1713), + [aux_sym_string_literal_token1] = ACTIONS(1713), + [sym_char_literal] = ACTIONS(1713), + [anon_sym_true] = ACTIONS(1715), + [anon_sym_false] = ACTIONS(1715), + [anon_sym_u8] = ACTIONS(1715), + [anon_sym_i8] = ACTIONS(1715), + [anon_sym_u16] = ACTIONS(1715), + [anon_sym_i16] = ACTIONS(1715), + [anon_sym_u32] = ACTIONS(1715), + [anon_sym_i32] = ACTIONS(1715), + [anon_sym_u64] = ACTIONS(1715), + [anon_sym_i64] = ACTIONS(1715), + [anon_sym_u128] = ACTIONS(1715), + [anon_sym_i128] = ACTIONS(1715), + [anon_sym_isize] = ACTIONS(1715), + [anon_sym_usize] = ACTIONS(1715), + [anon_sym_f32] = ACTIONS(1715), + [anon_sym_f64] = ACTIONS(1715), + [anon_sym_bool] = ACTIONS(1715), + [anon_sym_str] = ACTIONS(1715), + [anon_sym_char] = ACTIONS(1715), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(1713), + [sym_self] = ACTIONS(1715), + [sym_super] = ACTIONS(1715), + [sym_crate] = ACTIONS(1715), + [sym_metavariable] = ACTIONS(1713), + [sym_grit_metavariable] = ACTIONS(1713), + [sym_raw_string_literal] = ACTIONS(1713), + [sym_float_literal] = ACTIONS(1713), [sym_block_comment] = ACTIONS(3), }, [347] = { - [ts_builtin_sym_end] = ACTIONS(1727), - [sym__primitive_identifier] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1727), - [anon_sym_macro_rules_BANG] = ACTIONS(1727), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_LBRACE] = ACTIONS(1727), - [anon_sym_RBRACE] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1727), - [anon_sym_STAR] = ACTIONS(1727), - [anon_sym_SQUOTE] = ACTIONS(1729), - [anon_sym_async] = ACTIONS(1729), - [anon_sym_break] = ACTIONS(1729), - [anon_sym_const] = ACTIONS(1729), - [anon_sym_continue] = ACTIONS(1729), - [anon_sym_default] = ACTIONS(1729), - [anon_sym_enum] = ACTIONS(1729), - [anon_sym_fn] = ACTIONS(1729), - [anon_sym_for] = ACTIONS(1729), - [anon_sym_if] = ACTIONS(1729), - [anon_sym_impl] = ACTIONS(1729), - [anon_sym_let] = ACTIONS(1729), - [anon_sym_loop] = ACTIONS(1729), - [anon_sym_match] = ACTIONS(1729), - [anon_sym_mod] = ACTIONS(1729), - [anon_sym_pub] = ACTIONS(1729), - [anon_sym_return] = ACTIONS(1729), - [anon_sym_static] = ACTIONS(1729), - [anon_sym_struct] = ACTIONS(1729), - [anon_sym_trait] = ACTIONS(1729), - [anon_sym_type] = ACTIONS(1729), - [anon_sym_union] = ACTIONS(1729), - [anon_sym_unsafe] = ACTIONS(1729), - [anon_sym_use] = ACTIONS(1729), - [anon_sym_while] = ACTIONS(1729), - [anon_sym_POUND] = ACTIONS(1727), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_extern] = ACTIONS(1729), - [anon_sym_LT] = ACTIONS(1727), - [anon_sym_COLON_COLON] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_DOT_DOT] = ACTIONS(1727), - [anon_sym_DASH] = ACTIONS(1727), - [anon_sym_PIPE] = ACTIONS(1727), - [anon_sym_yield] = ACTIONS(1729), - [anon_sym_move] = ACTIONS(1729), - [sym_integer_literal] = ACTIONS(1727), - [aux_sym_string_literal_token1] = ACTIONS(1727), - [sym_char_literal] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(1729), - [anon_sym_false] = ACTIONS(1729), - [anon_sym_u8] = ACTIONS(1729), - [anon_sym_i8] = ACTIONS(1729), - [anon_sym_u16] = ACTIONS(1729), - [anon_sym_i16] = ACTIONS(1729), - [anon_sym_u32] = ACTIONS(1729), - [anon_sym_i32] = ACTIONS(1729), - [anon_sym_u64] = ACTIONS(1729), - [anon_sym_i64] = ACTIONS(1729), - [anon_sym_u128] = ACTIONS(1729), - [anon_sym_i128] = ACTIONS(1729), - [anon_sym_isize] = ACTIONS(1729), - [anon_sym_usize] = ACTIONS(1729), - [anon_sym_f32] = ACTIONS(1729), - [anon_sym_f64] = ACTIONS(1729), - [anon_sym_bool] = ACTIONS(1729), - [anon_sym_str] = ACTIONS(1729), - [anon_sym_char] = ACTIONS(1729), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1727), - [sym_self] = ACTIONS(1729), - [sym_super] = ACTIONS(1729), - [sym_crate] = ACTIONS(1729), - [sym_metavariable] = ACTIONS(1727), - [sym_grit_metavariable] = ACTIONS(1727), - [sym_raw_string_literal] = ACTIONS(1727), - [sym_float_literal] = ACTIONS(1727), + [ts_builtin_sym_end] = ACTIONS(1717), + [sym__primitive_identifier] = ACTIONS(1719), + [anon_sym_SEMI] = ACTIONS(1717), + [anon_sym_macro_rules_BANG] = ACTIONS(1717), + [anon_sym_LPAREN] = ACTIONS(1717), + [anon_sym_LBRACE] = ACTIONS(1717), + [anon_sym_RBRACE] = ACTIONS(1717), + [anon_sym_LBRACK] = ACTIONS(1717), + [anon_sym_STAR] = ACTIONS(1717), + [anon_sym_SQUOTE] = ACTIONS(1719), + [anon_sym_async] = ACTIONS(1719), + [anon_sym_break] = ACTIONS(1719), + [anon_sym_const] = ACTIONS(1719), + [anon_sym_continue] = ACTIONS(1719), + [anon_sym_default] = ACTIONS(1719), + [anon_sym_enum] = ACTIONS(1719), + [anon_sym_fn] = ACTIONS(1719), + [anon_sym_for] = ACTIONS(1719), + [anon_sym_if] = ACTIONS(1719), + [anon_sym_impl] = ACTIONS(1719), + [anon_sym_let] = ACTIONS(1719), + [anon_sym_loop] = ACTIONS(1719), + [anon_sym_match] = ACTIONS(1719), + [anon_sym_mod] = ACTIONS(1719), + [anon_sym_pub] = ACTIONS(1719), + [anon_sym_return] = ACTIONS(1719), + [anon_sym_static] = ACTIONS(1719), + [anon_sym_struct] = ACTIONS(1719), + [anon_sym_trait] = ACTIONS(1719), + [anon_sym_type] = ACTIONS(1719), + [anon_sym_union] = ACTIONS(1719), + [anon_sym_unsafe] = ACTIONS(1719), + [anon_sym_use] = ACTIONS(1719), + [anon_sym_while] = ACTIONS(1719), + [anon_sym_POUND] = ACTIONS(1717), + [anon_sym_BANG] = ACTIONS(1717), + [anon_sym_extern] = ACTIONS(1719), + [anon_sym_LT] = ACTIONS(1717), + [anon_sym_COLON_COLON] = ACTIONS(1717), + [anon_sym_AMP] = ACTIONS(1717), + [anon_sym_DOT_DOT] = ACTIONS(1717), + [anon_sym_DASH] = ACTIONS(1717), + [anon_sym_PIPE] = ACTIONS(1717), + [anon_sym_yield] = ACTIONS(1719), + [anon_sym_move] = ACTIONS(1719), + [sym_integer_literal] = ACTIONS(1717), + [aux_sym_string_literal_token1] = ACTIONS(1717), + [sym_char_literal] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1719), + [anon_sym_false] = ACTIONS(1719), + [anon_sym_u8] = ACTIONS(1719), + [anon_sym_i8] = ACTIONS(1719), + [anon_sym_u16] = ACTIONS(1719), + [anon_sym_i16] = ACTIONS(1719), + [anon_sym_u32] = ACTIONS(1719), + [anon_sym_i32] = ACTIONS(1719), + [anon_sym_u64] = ACTIONS(1719), + [anon_sym_i64] = ACTIONS(1719), + [anon_sym_u128] = ACTIONS(1719), + [anon_sym_i128] = ACTIONS(1719), + [anon_sym_isize] = ACTIONS(1719), + [anon_sym_usize] = ACTIONS(1719), + [anon_sym_f32] = ACTIONS(1719), + [anon_sym_f64] = ACTIONS(1719), + [anon_sym_bool] = ACTIONS(1719), + [anon_sym_str] = ACTIONS(1719), + [anon_sym_char] = ACTIONS(1719), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(1717), + [sym_self] = ACTIONS(1719), + [sym_super] = ACTIONS(1719), + [sym_crate] = ACTIONS(1719), + [sym_metavariable] = ACTIONS(1717), + [sym_grit_metavariable] = ACTIONS(1717), + [sym_raw_string_literal] = ACTIONS(1717), + [sym_float_literal] = ACTIONS(1717), [sym_block_comment] = ACTIONS(3), }, [348] = { - [ts_builtin_sym_end] = ACTIONS(1731), - [sym__primitive_identifier] = ACTIONS(1733), - [anon_sym_SEMI] = ACTIONS(1731), - [anon_sym_macro_rules_BANG] = ACTIONS(1731), - [anon_sym_LPAREN] = ACTIONS(1731), - [anon_sym_LBRACE] = ACTIONS(1731), - [anon_sym_RBRACE] = ACTIONS(1731), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_STAR] = ACTIONS(1731), - [anon_sym_SQUOTE] = ACTIONS(1733), - [anon_sym_async] = ACTIONS(1733), - [anon_sym_break] = ACTIONS(1733), - [anon_sym_const] = ACTIONS(1733), - [anon_sym_continue] = ACTIONS(1733), - [anon_sym_default] = ACTIONS(1733), - [anon_sym_enum] = ACTIONS(1733), - [anon_sym_fn] = ACTIONS(1733), - [anon_sym_for] = ACTIONS(1733), - [anon_sym_if] = ACTIONS(1733), - [anon_sym_impl] = ACTIONS(1733), - [anon_sym_let] = ACTIONS(1733), - [anon_sym_loop] = ACTIONS(1733), - [anon_sym_match] = ACTIONS(1733), - [anon_sym_mod] = ACTIONS(1733), - [anon_sym_pub] = ACTIONS(1733), - [anon_sym_return] = ACTIONS(1733), - [anon_sym_static] = ACTIONS(1733), - [anon_sym_struct] = ACTIONS(1733), - [anon_sym_trait] = ACTIONS(1733), - [anon_sym_type] = ACTIONS(1733), - [anon_sym_union] = ACTIONS(1733), - [anon_sym_unsafe] = ACTIONS(1733), - [anon_sym_use] = ACTIONS(1733), - [anon_sym_while] = ACTIONS(1733), - [anon_sym_POUND] = ACTIONS(1731), - [anon_sym_BANG] = ACTIONS(1731), - [anon_sym_extern] = ACTIONS(1733), - [anon_sym_LT] = ACTIONS(1731), - [anon_sym_COLON_COLON] = ACTIONS(1731), - [anon_sym_AMP] = ACTIONS(1731), - [anon_sym_DOT_DOT] = ACTIONS(1731), - [anon_sym_DASH] = ACTIONS(1731), - [anon_sym_PIPE] = ACTIONS(1731), - [anon_sym_yield] = ACTIONS(1733), - [anon_sym_move] = ACTIONS(1733), - [sym_integer_literal] = ACTIONS(1731), - [aux_sym_string_literal_token1] = ACTIONS(1731), - [sym_char_literal] = ACTIONS(1731), - [anon_sym_true] = ACTIONS(1733), - [anon_sym_false] = ACTIONS(1733), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u128] = ACTIONS(1733), - [anon_sym_i128] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_str] = ACTIONS(1733), - [anon_sym_char] = ACTIONS(1733), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1731), - [sym_self] = ACTIONS(1733), - [sym_super] = ACTIONS(1733), - [sym_crate] = ACTIONS(1733), - [sym_metavariable] = ACTIONS(1731), - [sym_grit_metavariable] = ACTIONS(1731), - [sym_raw_string_literal] = ACTIONS(1731), - [sym_float_literal] = ACTIONS(1731), + [ts_builtin_sym_end] = ACTIONS(1721), + [sym__primitive_identifier] = ACTIONS(1723), + [anon_sym_SEMI] = ACTIONS(1721), + [anon_sym_macro_rules_BANG] = ACTIONS(1721), + [anon_sym_LPAREN] = ACTIONS(1721), + [anon_sym_LBRACE] = ACTIONS(1721), + [anon_sym_RBRACE] = ACTIONS(1721), + [anon_sym_LBRACK] = ACTIONS(1721), + [anon_sym_STAR] = ACTIONS(1721), + [anon_sym_SQUOTE] = ACTIONS(1723), + [anon_sym_async] = ACTIONS(1723), + [anon_sym_break] = ACTIONS(1723), + [anon_sym_const] = ACTIONS(1723), + [anon_sym_continue] = ACTIONS(1723), + [anon_sym_default] = ACTIONS(1723), + [anon_sym_enum] = ACTIONS(1723), + [anon_sym_fn] = ACTIONS(1723), + [anon_sym_for] = ACTIONS(1723), + [anon_sym_if] = ACTIONS(1723), + [anon_sym_impl] = ACTIONS(1723), + [anon_sym_let] = ACTIONS(1723), + [anon_sym_loop] = ACTIONS(1723), + [anon_sym_match] = ACTIONS(1723), + [anon_sym_mod] = ACTIONS(1723), + [anon_sym_pub] = ACTIONS(1723), + [anon_sym_return] = ACTIONS(1723), + [anon_sym_static] = ACTIONS(1723), + [anon_sym_struct] = ACTIONS(1723), + [anon_sym_trait] = ACTIONS(1723), + [anon_sym_type] = ACTIONS(1723), + [anon_sym_union] = ACTIONS(1723), + [anon_sym_unsafe] = ACTIONS(1723), + [anon_sym_use] = ACTIONS(1723), + [anon_sym_while] = ACTIONS(1723), + [anon_sym_POUND] = ACTIONS(1721), + [anon_sym_BANG] = ACTIONS(1721), + [anon_sym_extern] = ACTIONS(1723), + [anon_sym_LT] = ACTIONS(1721), + [anon_sym_COLON_COLON] = ACTIONS(1721), + [anon_sym_AMP] = ACTIONS(1721), + [anon_sym_DOT_DOT] = ACTIONS(1721), + [anon_sym_DASH] = ACTIONS(1721), + [anon_sym_PIPE] = ACTIONS(1721), + [anon_sym_yield] = ACTIONS(1723), + [anon_sym_move] = ACTIONS(1723), + [sym_integer_literal] = ACTIONS(1721), + [aux_sym_string_literal_token1] = ACTIONS(1721), + [sym_char_literal] = ACTIONS(1721), + [anon_sym_true] = ACTIONS(1723), + [anon_sym_false] = ACTIONS(1723), + [anon_sym_u8] = ACTIONS(1723), + [anon_sym_i8] = ACTIONS(1723), + [anon_sym_u16] = ACTIONS(1723), + [anon_sym_i16] = ACTIONS(1723), + [anon_sym_u32] = ACTIONS(1723), + [anon_sym_i32] = ACTIONS(1723), + [anon_sym_u64] = ACTIONS(1723), + [anon_sym_i64] = ACTIONS(1723), + [anon_sym_u128] = ACTIONS(1723), + [anon_sym_i128] = ACTIONS(1723), + [anon_sym_isize] = ACTIONS(1723), + [anon_sym_usize] = ACTIONS(1723), + [anon_sym_f32] = ACTIONS(1723), + [anon_sym_f64] = ACTIONS(1723), + [anon_sym_bool] = ACTIONS(1723), + [anon_sym_str] = ACTIONS(1723), + [anon_sym_char] = ACTIONS(1723), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(1721), + [sym_self] = ACTIONS(1723), + [sym_super] = ACTIONS(1723), + [sym_crate] = ACTIONS(1723), + [sym_metavariable] = ACTIONS(1721), + [sym_grit_metavariable] = ACTIONS(1721), + [sym_raw_string_literal] = ACTIONS(1721), + [sym_float_literal] = ACTIONS(1721), [sym_block_comment] = ACTIONS(3), }, [349] = { - [ts_builtin_sym_end] = ACTIONS(1735), - [sym__primitive_identifier] = ACTIONS(1737), - [anon_sym_SEMI] = ACTIONS(1735), - [anon_sym_macro_rules_BANG] = ACTIONS(1735), - [anon_sym_LPAREN] = ACTIONS(1735), - [anon_sym_LBRACE] = ACTIONS(1735), - [anon_sym_RBRACE] = ACTIONS(1735), - [anon_sym_LBRACK] = ACTIONS(1735), - [anon_sym_STAR] = ACTIONS(1735), - [anon_sym_SQUOTE] = ACTIONS(1737), - [anon_sym_async] = ACTIONS(1737), - [anon_sym_break] = ACTIONS(1737), - [anon_sym_const] = ACTIONS(1737), - [anon_sym_continue] = ACTIONS(1737), - [anon_sym_default] = ACTIONS(1737), - [anon_sym_enum] = ACTIONS(1737), - [anon_sym_fn] = ACTIONS(1737), - [anon_sym_for] = ACTIONS(1737), - [anon_sym_if] = ACTIONS(1737), - [anon_sym_impl] = ACTIONS(1737), - [anon_sym_let] = ACTIONS(1737), - [anon_sym_loop] = ACTIONS(1737), - [anon_sym_match] = ACTIONS(1737), - [anon_sym_mod] = ACTIONS(1737), - [anon_sym_pub] = ACTIONS(1737), - [anon_sym_return] = ACTIONS(1737), - [anon_sym_static] = ACTIONS(1737), - [anon_sym_struct] = ACTIONS(1737), - [anon_sym_trait] = ACTIONS(1737), - [anon_sym_type] = ACTIONS(1737), - [anon_sym_union] = ACTIONS(1737), - [anon_sym_unsafe] = ACTIONS(1737), - [anon_sym_use] = ACTIONS(1737), - [anon_sym_while] = ACTIONS(1737), - [anon_sym_POUND] = ACTIONS(1735), - [anon_sym_BANG] = ACTIONS(1735), - [anon_sym_extern] = ACTIONS(1737), - [anon_sym_LT] = ACTIONS(1735), - [anon_sym_COLON_COLON] = ACTIONS(1735), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_DOT_DOT] = ACTIONS(1735), - [anon_sym_DASH] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1735), - [anon_sym_yield] = ACTIONS(1737), - [anon_sym_move] = ACTIONS(1737), - [sym_integer_literal] = ACTIONS(1735), - [aux_sym_string_literal_token1] = ACTIONS(1735), - [sym_char_literal] = ACTIONS(1735), - [anon_sym_true] = ACTIONS(1737), - [anon_sym_false] = ACTIONS(1737), - [anon_sym_u8] = ACTIONS(1737), - [anon_sym_i8] = ACTIONS(1737), - [anon_sym_u16] = ACTIONS(1737), - [anon_sym_i16] = ACTIONS(1737), - [anon_sym_u32] = ACTIONS(1737), - [anon_sym_i32] = ACTIONS(1737), - [anon_sym_u64] = ACTIONS(1737), - [anon_sym_i64] = ACTIONS(1737), - [anon_sym_u128] = ACTIONS(1737), - [anon_sym_i128] = ACTIONS(1737), - [anon_sym_isize] = ACTIONS(1737), - [anon_sym_usize] = ACTIONS(1737), - [anon_sym_f32] = ACTIONS(1737), - [anon_sym_f64] = ACTIONS(1737), - [anon_sym_bool] = ACTIONS(1737), - [anon_sym_str] = ACTIONS(1737), - [anon_sym_char] = ACTIONS(1737), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1735), - [sym_self] = ACTIONS(1737), - [sym_super] = ACTIONS(1737), - [sym_crate] = ACTIONS(1737), - [sym_metavariable] = ACTIONS(1735), - [sym_grit_metavariable] = ACTIONS(1735), - [sym_raw_string_literal] = ACTIONS(1735), - [sym_float_literal] = ACTIONS(1735), + [ts_builtin_sym_end] = ACTIONS(1725), + [sym__primitive_identifier] = ACTIONS(1727), + [anon_sym_SEMI] = ACTIONS(1725), + [anon_sym_macro_rules_BANG] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1725), + [anon_sym_LBRACE] = ACTIONS(1725), + [anon_sym_RBRACE] = ACTIONS(1725), + [anon_sym_LBRACK] = ACTIONS(1725), + [anon_sym_STAR] = ACTIONS(1725), + [anon_sym_SQUOTE] = ACTIONS(1727), + [anon_sym_async] = ACTIONS(1727), + [anon_sym_break] = ACTIONS(1727), + [anon_sym_const] = ACTIONS(1727), + [anon_sym_continue] = ACTIONS(1727), + [anon_sym_default] = ACTIONS(1727), + [anon_sym_enum] = ACTIONS(1727), + [anon_sym_fn] = ACTIONS(1727), + [anon_sym_for] = ACTIONS(1727), + [anon_sym_if] = ACTIONS(1727), + [anon_sym_impl] = ACTIONS(1727), + [anon_sym_let] = ACTIONS(1727), + [anon_sym_loop] = ACTIONS(1727), + [anon_sym_match] = ACTIONS(1727), + [anon_sym_mod] = ACTIONS(1727), + [anon_sym_pub] = ACTIONS(1727), + [anon_sym_return] = ACTIONS(1727), + [anon_sym_static] = ACTIONS(1727), + [anon_sym_struct] = ACTIONS(1727), + [anon_sym_trait] = ACTIONS(1727), + [anon_sym_type] = ACTIONS(1727), + [anon_sym_union] = ACTIONS(1727), + [anon_sym_unsafe] = ACTIONS(1727), + [anon_sym_use] = ACTIONS(1727), + [anon_sym_while] = ACTIONS(1727), + [anon_sym_POUND] = ACTIONS(1725), + [anon_sym_BANG] = ACTIONS(1725), + [anon_sym_extern] = ACTIONS(1727), + [anon_sym_LT] = ACTIONS(1725), + [anon_sym_COLON_COLON] = ACTIONS(1725), + [anon_sym_AMP] = ACTIONS(1725), + [anon_sym_DOT_DOT] = ACTIONS(1725), + [anon_sym_DASH] = ACTIONS(1725), + [anon_sym_PIPE] = ACTIONS(1725), + [anon_sym_yield] = ACTIONS(1727), + [anon_sym_move] = ACTIONS(1727), + [sym_integer_literal] = ACTIONS(1725), + [aux_sym_string_literal_token1] = ACTIONS(1725), + [sym_char_literal] = ACTIONS(1725), + [anon_sym_true] = ACTIONS(1727), + [anon_sym_false] = ACTIONS(1727), + [anon_sym_u8] = ACTIONS(1727), + [anon_sym_i8] = ACTIONS(1727), + [anon_sym_u16] = ACTIONS(1727), + [anon_sym_i16] = ACTIONS(1727), + [anon_sym_u32] = ACTIONS(1727), + [anon_sym_i32] = ACTIONS(1727), + [anon_sym_u64] = ACTIONS(1727), + [anon_sym_i64] = ACTIONS(1727), + [anon_sym_u128] = ACTIONS(1727), + [anon_sym_i128] = ACTIONS(1727), + [anon_sym_isize] = ACTIONS(1727), + [anon_sym_usize] = ACTIONS(1727), + [anon_sym_f32] = ACTIONS(1727), + [anon_sym_f64] = ACTIONS(1727), + [anon_sym_bool] = ACTIONS(1727), + [anon_sym_str] = ACTIONS(1727), + [anon_sym_char] = ACTIONS(1727), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(1725), + [sym_self] = ACTIONS(1727), + [sym_super] = ACTIONS(1727), + [sym_crate] = ACTIONS(1727), + [sym_metavariable] = ACTIONS(1725), + [sym_grit_metavariable] = ACTIONS(1725), + [sym_raw_string_literal] = ACTIONS(1725), + [sym_float_literal] = ACTIONS(1725), [sym_block_comment] = ACTIONS(3), }, [350] = { - [ts_builtin_sym_end] = ACTIONS(1739), - [sym__primitive_identifier] = ACTIONS(1741), - [anon_sym_SEMI] = ACTIONS(1739), - [anon_sym_macro_rules_BANG] = ACTIONS(1739), - [anon_sym_LPAREN] = ACTIONS(1739), - [anon_sym_LBRACE] = ACTIONS(1739), - [anon_sym_RBRACE] = ACTIONS(1739), - [anon_sym_LBRACK] = ACTIONS(1739), - [anon_sym_STAR] = ACTIONS(1739), - [anon_sym_SQUOTE] = ACTIONS(1741), - [anon_sym_async] = ACTIONS(1741), - [anon_sym_break] = ACTIONS(1741), - [anon_sym_const] = ACTIONS(1741), - [anon_sym_continue] = ACTIONS(1741), - [anon_sym_default] = ACTIONS(1741), - [anon_sym_enum] = ACTIONS(1741), - [anon_sym_fn] = ACTIONS(1741), - [anon_sym_for] = ACTIONS(1741), - [anon_sym_if] = ACTIONS(1741), - [anon_sym_impl] = ACTIONS(1741), - [anon_sym_let] = ACTIONS(1741), - [anon_sym_loop] = ACTIONS(1741), - [anon_sym_match] = ACTIONS(1741), - [anon_sym_mod] = ACTIONS(1741), - [anon_sym_pub] = ACTIONS(1741), - [anon_sym_return] = ACTIONS(1741), - [anon_sym_static] = ACTIONS(1741), - [anon_sym_struct] = ACTIONS(1741), - [anon_sym_trait] = ACTIONS(1741), - [anon_sym_type] = ACTIONS(1741), - [anon_sym_union] = ACTIONS(1741), - [anon_sym_unsafe] = ACTIONS(1741), - [anon_sym_use] = ACTIONS(1741), - [anon_sym_while] = ACTIONS(1741), - [anon_sym_POUND] = ACTIONS(1739), - [anon_sym_BANG] = ACTIONS(1739), - [anon_sym_extern] = ACTIONS(1741), - [anon_sym_LT] = ACTIONS(1739), - [anon_sym_COLON_COLON] = ACTIONS(1739), - [anon_sym_AMP] = ACTIONS(1739), - [anon_sym_DOT_DOT] = ACTIONS(1739), - [anon_sym_DASH] = ACTIONS(1739), - [anon_sym_PIPE] = ACTIONS(1739), - [anon_sym_yield] = ACTIONS(1741), - [anon_sym_move] = ACTIONS(1741), - [sym_integer_literal] = ACTIONS(1739), - [aux_sym_string_literal_token1] = ACTIONS(1739), - [sym_char_literal] = ACTIONS(1739), - [anon_sym_true] = ACTIONS(1741), - [anon_sym_false] = ACTIONS(1741), - [anon_sym_u8] = ACTIONS(1741), - [anon_sym_i8] = ACTIONS(1741), - [anon_sym_u16] = ACTIONS(1741), - [anon_sym_i16] = ACTIONS(1741), - [anon_sym_u32] = ACTIONS(1741), - [anon_sym_i32] = ACTIONS(1741), - [anon_sym_u64] = ACTIONS(1741), - [anon_sym_i64] = ACTIONS(1741), - [anon_sym_u128] = ACTIONS(1741), - [anon_sym_i128] = ACTIONS(1741), - [anon_sym_isize] = ACTIONS(1741), - [anon_sym_usize] = ACTIONS(1741), - [anon_sym_f32] = ACTIONS(1741), - [anon_sym_f64] = ACTIONS(1741), - [anon_sym_bool] = ACTIONS(1741), - [anon_sym_str] = ACTIONS(1741), - [anon_sym_char] = ACTIONS(1741), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1739), - [sym_self] = ACTIONS(1741), - [sym_super] = ACTIONS(1741), - [sym_crate] = ACTIONS(1741), - [sym_metavariable] = ACTIONS(1739), - [sym_grit_metavariable] = ACTIONS(1739), - [sym_raw_string_literal] = ACTIONS(1739), - [sym_float_literal] = ACTIONS(1739), + [ts_builtin_sym_end] = ACTIONS(705), + [sym__primitive_identifier] = ACTIONS(707), + [anon_sym_SEMI] = ACTIONS(705), + [anon_sym_macro_rules_BANG] = ACTIONS(705), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_RBRACE] = ACTIONS(705), + [anon_sym_LBRACK] = ACTIONS(705), + [anon_sym_STAR] = ACTIONS(705), + [anon_sym_SQUOTE] = ACTIONS(707), + [anon_sym_async] = ACTIONS(707), + [anon_sym_break] = ACTIONS(707), + [anon_sym_const] = ACTIONS(707), + [anon_sym_continue] = ACTIONS(707), + [anon_sym_default] = ACTIONS(707), + [anon_sym_enum] = ACTIONS(707), + [anon_sym_fn] = ACTIONS(707), + [anon_sym_for] = ACTIONS(707), + [anon_sym_if] = ACTIONS(707), + [anon_sym_impl] = ACTIONS(707), + [anon_sym_let] = ACTIONS(707), + [anon_sym_loop] = ACTIONS(707), + [anon_sym_match] = ACTIONS(707), + [anon_sym_mod] = ACTIONS(707), + [anon_sym_pub] = ACTIONS(707), + [anon_sym_return] = ACTIONS(707), + [anon_sym_static] = ACTIONS(707), + [anon_sym_struct] = ACTIONS(707), + [anon_sym_trait] = ACTIONS(707), + [anon_sym_type] = ACTIONS(707), + [anon_sym_union] = ACTIONS(707), + [anon_sym_unsafe] = ACTIONS(707), + [anon_sym_use] = ACTIONS(707), + [anon_sym_while] = ACTIONS(707), + [anon_sym_POUND] = ACTIONS(705), + [anon_sym_BANG] = ACTIONS(705), + [anon_sym_extern] = ACTIONS(707), + [anon_sym_LT] = ACTIONS(705), + [anon_sym_COLON_COLON] = ACTIONS(705), + [anon_sym_AMP] = ACTIONS(705), + [anon_sym_DOT_DOT] = ACTIONS(705), + [anon_sym_DASH] = ACTIONS(705), + [anon_sym_PIPE] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_move] = ACTIONS(707), + [sym_integer_literal] = ACTIONS(705), + [aux_sym_string_literal_token1] = ACTIONS(705), + [sym_char_literal] = ACTIONS(705), + [anon_sym_true] = ACTIONS(707), + [anon_sym_false] = ACTIONS(707), + [anon_sym_u8] = ACTIONS(707), + [anon_sym_i8] = ACTIONS(707), + [anon_sym_u16] = ACTIONS(707), + [anon_sym_i16] = ACTIONS(707), + [anon_sym_u32] = ACTIONS(707), + [anon_sym_i32] = ACTIONS(707), + [anon_sym_u64] = ACTIONS(707), + [anon_sym_i64] = ACTIONS(707), + [anon_sym_u128] = ACTIONS(707), + [anon_sym_i128] = ACTIONS(707), + [anon_sym_isize] = ACTIONS(707), + [anon_sym_usize] = ACTIONS(707), + [anon_sym_f32] = ACTIONS(707), + [anon_sym_f64] = ACTIONS(707), + [anon_sym_bool] = ACTIONS(707), + [anon_sym_str] = ACTIONS(707), + [anon_sym_char] = ACTIONS(707), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(705), + [sym_self] = ACTIONS(707), + [sym_super] = ACTIONS(707), + [sym_crate] = ACTIONS(707), + [sym_metavariable] = ACTIONS(705), + [sym_grit_metavariable] = ACTIONS(705), + [sym_raw_string_literal] = ACTIONS(705), + [sym_float_literal] = ACTIONS(705), [sym_block_comment] = ACTIONS(3), }, [351] = { - [ts_builtin_sym_end] = ACTIONS(1743), - [sym__primitive_identifier] = ACTIONS(1745), - [anon_sym_SEMI] = ACTIONS(1743), - [anon_sym_macro_rules_BANG] = ACTIONS(1743), - [anon_sym_LPAREN] = ACTIONS(1743), - [anon_sym_LBRACE] = ACTIONS(1743), - [anon_sym_RBRACE] = ACTIONS(1743), - [anon_sym_LBRACK] = ACTIONS(1743), - [anon_sym_STAR] = ACTIONS(1743), - [anon_sym_SQUOTE] = ACTIONS(1745), - [anon_sym_async] = ACTIONS(1745), - [anon_sym_break] = ACTIONS(1745), - [anon_sym_const] = ACTIONS(1745), - [anon_sym_continue] = ACTIONS(1745), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_enum] = ACTIONS(1745), - [anon_sym_fn] = ACTIONS(1745), - [anon_sym_for] = ACTIONS(1745), - [anon_sym_if] = ACTIONS(1745), - [anon_sym_impl] = ACTIONS(1745), - [anon_sym_let] = ACTIONS(1745), - [anon_sym_loop] = ACTIONS(1745), - [anon_sym_match] = ACTIONS(1745), - [anon_sym_mod] = ACTIONS(1745), - [anon_sym_pub] = ACTIONS(1745), - [anon_sym_return] = ACTIONS(1745), - [anon_sym_static] = ACTIONS(1745), - [anon_sym_struct] = ACTIONS(1745), - [anon_sym_trait] = ACTIONS(1745), - [anon_sym_type] = ACTIONS(1745), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_unsafe] = ACTIONS(1745), - [anon_sym_use] = ACTIONS(1745), - [anon_sym_while] = ACTIONS(1745), - [anon_sym_POUND] = ACTIONS(1743), - [anon_sym_BANG] = ACTIONS(1743), - [anon_sym_extern] = ACTIONS(1745), - [anon_sym_LT] = ACTIONS(1743), - [anon_sym_COLON_COLON] = ACTIONS(1743), - [anon_sym_AMP] = ACTIONS(1743), - [anon_sym_DOT_DOT] = ACTIONS(1743), - [anon_sym_DASH] = ACTIONS(1743), - [anon_sym_PIPE] = ACTIONS(1743), - [anon_sym_yield] = ACTIONS(1745), - [anon_sym_move] = ACTIONS(1745), - [sym_integer_literal] = ACTIONS(1743), - [aux_sym_string_literal_token1] = ACTIONS(1743), - [sym_char_literal] = ACTIONS(1743), - [anon_sym_true] = ACTIONS(1745), - [anon_sym_false] = ACTIONS(1745), - [anon_sym_u8] = ACTIONS(1745), - [anon_sym_i8] = ACTIONS(1745), - [anon_sym_u16] = ACTIONS(1745), - [anon_sym_i16] = ACTIONS(1745), - [anon_sym_u32] = ACTIONS(1745), - [anon_sym_i32] = ACTIONS(1745), - [anon_sym_u64] = ACTIONS(1745), - [anon_sym_i64] = ACTIONS(1745), - [anon_sym_u128] = ACTIONS(1745), - [anon_sym_i128] = ACTIONS(1745), - [anon_sym_isize] = ACTIONS(1745), - [anon_sym_usize] = ACTIONS(1745), - [anon_sym_f32] = ACTIONS(1745), - [anon_sym_f64] = ACTIONS(1745), - [anon_sym_bool] = ACTIONS(1745), - [anon_sym_str] = ACTIONS(1745), - [anon_sym_char] = ACTIONS(1745), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1743), - [sym_self] = ACTIONS(1745), - [sym_super] = ACTIONS(1745), - [sym_crate] = ACTIONS(1745), - [sym_metavariable] = ACTIONS(1743), - [sym_grit_metavariable] = ACTIONS(1743), - [sym_raw_string_literal] = ACTIONS(1743), - [sym_float_literal] = ACTIONS(1743), + [ts_builtin_sym_end] = ACTIONS(1729), + [sym__primitive_identifier] = ACTIONS(1731), + [anon_sym_SEMI] = ACTIONS(1729), + [anon_sym_macro_rules_BANG] = ACTIONS(1729), + [anon_sym_LPAREN] = ACTIONS(1729), + [anon_sym_LBRACE] = ACTIONS(1729), + [anon_sym_RBRACE] = ACTIONS(1729), + [anon_sym_LBRACK] = ACTIONS(1729), + [anon_sym_STAR] = ACTIONS(1729), + [anon_sym_SQUOTE] = ACTIONS(1731), + [anon_sym_async] = ACTIONS(1731), + [anon_sym_break] = ACTIONS(1731), + [anon_sym_const] = ACTIONS(1731), + [anon_sym_continue] = ACTIONS(1731), + [anon_sym_default] = ACTIONS(1731), + [anon_sym_enum] = ACTIONS(1731), + [anon_sym_fn] = ACTIONS(1731), + [anon_sym_for] = ACTIONS(1731), + [anon_sym_if] = ACTIONS(1731), + [anon_sym_impl] = ACTIONS(1731), + [anon_sym_let] = ACTIONS(1731), + [anon_sym_loop] = ACTIONS(1731), + [anon_sym_match] = ACTIONS(1731), + [anon_sym_mod] = ACTIONS(1731), + [anon_sym_pub] = ACTIONS(1731), + [anon_sym_return] = ACTIONS(1731), + [anon_sym_static] = ACTIONS(1731), + [anon_sym_struct] = ACTIONS(1731), + [anon_sym_trait] = ACTIONS(1731), + [anon_sym_type] = ACTIONS(1731), + [anon_sym_union] = ACTIONS(1731), + [anon_sym_unsafe] = ACTIONS(1731), + [anon_sym_use] = ACTIONS(1731), + [anon_sym_while] = ACTIONS(1731), + [anon_sym_POUND] = ACTIONS(1729), + [anon_sym_BANG] = ACTIONS(1729), + [anon_sym_extern] = ACTIONS(1731), + [anon_sym_LT] = ACTIONS(1729), + [anon_sym_COLON_COLON] = ACTIONS(1729), + [anon_sym_AMP] = ACTIONS(1729), + [anon_sym_DOT_DOT] = ACTIONS(1729), + [anon_sym_DASH] = ACTIONS(1729), + [anon_sym_PIPE] = ACTIONS(1729), + [anon_sym_yield] = ACTIONS(1731), + [anon_sym_move] = ACTIONS(1731), + [sym_integer_literal] = ACTIONS(1729), + [aux_sym_string_literal_token1] = ACTIONS(1729), + [sym_char_literal] = ACTIONS(1729), + [anon_sym_true] = ACTIONS(1731), + [anon_sym_false] = ACTIONS(1731), + [anon_sym_u8] = ACTIONS(1731), + [anon_sym_i8] = ACTIONS(1731), + [anon_sym_u16] = ACTIONS(1731), + [anon_sym_i16] = ACTIONS(1731), + [anon_sym_u32] = ACTIONS(1731), + [anon_sym_i32] = ACTIONS(1731), + [anon_sym_u64] = ACTIONS(1731), + [anon_sym_i64] = ACTIONS(1731), + [anon_sym_u128] = ACTIONS(1731), + [anon_sym_i128] = ACTIONS(1731), + [anon_sym_isize] = ACTIONS(1731), + [anon_sym_usize] = ACTIONS(1731), + [anon_sym_f32] = ACTIONS(1731), + [anon_sym_f64] = ACTIONS(1731), + [anon_sym_bool] = ACTIONS(1731), + [anon_sym_str] = ACTIONS(1731), + [anon_sym_char] = ACTIONS(1731), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(1729), + [sym_self] = ACTIONS(1731), + [sym_super] = ACTIONS(1731), + [sym_crate] = ACTIONS(1731), + [sym_metavariable] = ACTIONS(1729), + [sym_grit_metavariable] = ACTIONS(1729), + [sym_raw_string_literal] = ACTIONS(1729), + [sym_float_literal] = ACTIONS(1729), [sym_block_comment] = ACTIONS(3), }, [352] = { - [ts_builtin_sym_end] = ACTIONS(1747), - [sym__primitive_identifier] = ACTIONS(1749), - [anon_sym_SEMI] = ACTIONS(1747), - [anon_sym_macro_rules_BANG] = ACTIONS(1747), - [anon_sym_LPAREN] = ACTIONS(1747), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_RBRACE] = ACTIONS(1747), - [anon_sym_LBRACK] = ACTIONS(1747), - [anon_sym_STAR] = ACTIONS(1747), - [anon_sym_SQUOTE] = ACTIONS(1749), - [anon_sym_async] = ACTIONS(1749), - [anon_sym_break] = ACTIONS(1749), - [anon_sym_const] = ACTIONS(1749), - [anon_sym_continue] = ACTIONS(1749), - [anon_sym_default] = ACTIONS(1749), - [anon_sym_enum] = ACTIONS(1749), - [anon_sym_fn] = ACTIONS(1749), - [anon_sym_for] = ACTIONS(1749), - [anon_sym_if] = ACTIONS(1749), - [anon_sym_impl] = ACTIONS(1749), - [anon_sym_let] = ACTIONS(1749), - [anon_sym_loop] = ACTIONS(1749), - [anon_sym_match] = ACTIONS(1749), - [anon_sym_mod] = ACTIONS(1749), - [anon_sym_pub] = ACTIONS(1749), - [anon_sym_return] = ACTIONS(1749), - [anon_sym_static] = ACTIONS(1749), - [anon_sym_struct] = ACTIONS(1749), - [anon_sym_trait] = ACTIONS(1749), - [anon_sym_type] = ACTIONS(1749), - [anon_sym_union] = ACTIONS(1749), - [anon_sym_unsafe] = ACTIONS(1749), - [anon_sym_use] = ACTIONS(1749), - [anon_sym_while] = ACTIONS(1749), - [anon_sym_POUND] = ACTIONS(1747), - [anon_sym_BANG] = ACTIONS(1747), - [anon_sym_extern] = ACTIONS(1749), - [anon_sym_LT] = ACTIONS(1747), - [anon_sym_COLON_COLON] = ACTIONS(1747), - [anon_sym_AMP] = ACTIONS(1747), - [anon_sym_DOT_DOT] = ACTIONS(1747), - [anon_sym_DASH] = ACTIONS(1747), - [anon_sym_PIPE] = ACTIONS(1747), - [anon_sym_yield] = ACTIONS(1749), - [anon_sym_move] = ACTIONS(1749), - [sym_integer_literal] = ACTIONS(1747), - [aux_sym_string_literal_token1] = ACTIONS(1747), - [sym_char_literal] = ACTIONS(1747), - [anon_sym_true] = ACTIONS(1749), - [anon_sym_false] = ACTIONS(1749), - [anon_sym_u8] = ACTIONS(1749), - [anon_sym_i8] = ACTIONS(1749), - [anon_sym_u16] = ACTIONS(1749), - [anon_sym_i16] = ACTIONS(1749), - [anon_sym_u32] = ACTIONS(1749), - [anon_sym_i32] = ACTIONS(1749), - [anon_sym_u64] = ACTIONS(1749), - [anon_sym_i64] = ACTIONS(1749), - [anon_sym_u128] = ACTIONS(1749), - [anon_sym_i128] = ACTIONS(1749), - [anon_sym_isize] = ACTIONS(1749), - [anon_sym_usize] = ACTIONS(1749), - [anon_sym_f32] = ACTIONS(1749), - [anon_sym_f64] = ACTIONS(1749), - [anon_sym_bool] = ACTIONS(1749), - [anon_sym_str] = ACTIONS(1749), - [anon_sym_char] = ACTIONS(1749), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1747), - [sym_self] = ACTIONS(1749), - [sym_super] = ACTIONS(1749), - [sym_crate] = ACTIONS(1749), - [sym_metavariable] = ACTIONS(1747), - [sym_grit_metavariable] = ACTIONS(1747), - [sym_raw_string_literal] = ACTIONS(1747), - [sym_float_literal] = ACTIONS(1747), + [ts_builtin_sym_end] = ACTIONS(1733), + [sym__primitive_identifier] = ACTIONS(1735), + [anon_sym_SEMI] = ACTIONS(1733), + [anon_sym_macro_rules_BANG] = ACTIONS(1733), + [anon_sym_LPAREN] = ACTIONS(1733), + [anon_sym_LBRACE] = ACTIONS(1733), + [anon_sym_RBRACE] = ACTIONS(1733), + [anon_sym_LBRACK] = ACTIONS(1733), + [anon_sym_STAR] = ACTIONS(1733), + [anon_sym_SQUOTE] = ACTIONS(1735), + [anon_sym_async] = ACTIONS(1735), + [anon_sym_break] = ACTIONS(1735), + [anon_sym_const] = ACTIONS(1735), + [anon_sym_continue] = ACTIONS(1735), + [anon_sym_default] = ACTIONS(1735), + [anon_sym_enum] = ACTIONS(1735), + [anon_sym_fn] = ACTIONS(1735), + [anon_sym_for] = ACTIONS(1735), + [anon_sym_if] = ACTIONS(1735), + [anon_sym_impl] = ACTIONS(1735), + [anon_sym_let] = ACTIONS(1735), + [anon_sym_loop] = ACTIONS(1735), + [anon_sym_match] = ACTIONS(1735), + [anon_sym_mod] = ACTIONS(1735), + [anon_sym_pub] = ACTIONS(1735), + [anon_sym_return] = ACTIONS(1735), + [anon_sym_static] = ACTIONS(1735), + [anon_sym_struct] = ACTIONS(1735), + [anon_sym_trait] = ACTIONS(1735), + [anon_sym_type] = ACTIONS(1735), + [anon_sym_union] = ACTIONS(1735), + [anon_sym_unsafe] = ACTIONS(1735), + [anon_sym_use] = ACTIONS(1735), + [anon_sym_while] = ACTIONS(1735), + [anon_sym_POUND] = ACTIONS(1733), + [anon_sym_BANG] = ACTIONS(1733), + [anon_sym_extern] = ACTIONS(1735), + [anon_sym_LT] = ACTIONS(1733), + [anon_sym_COLON_COLON] = ACTIONS(1733), + [anon_sym_AMP] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1733), + [anon_sym_PIPE] = ACTIONS(1733), + [anon_sym_yield] = ACTIONS(1735), + [anon_sym_move] = ACTIONS(1735), + [sym_integer_literal] = ACTIONS(1733), + [aux_sym_string_literal_token1] = ACTIONS(1733), + [sym_char_literal] = ACTIONS(1733), + [anon_sym_true] = ACTIONS(1735), + [anon_sym_false] = ACTIONS(1735), + [anon_sym_u8] = ACTIONS(1735), + [anon_sym_i8] = ACTIONS(1735), + [anon_sym_u16] = ACTIONS(1735), + [anon_sym_i16] = ACTIONS(1735), + [anon_sym_u32] = ACTIONS(1735), + [anon_sym_i32] = ACTIONS(1735), + [anon_sym_u64] = ACTIONS(1735), + [anon_sym_i64] = ACTIONS(1735), + [anon_sym_u128] = ACTIONS(1735), + [anon_sym_i128] = ACTIONS(1735), + [anon_sym_isize] = ACTIONS(1735), + [anon_sym_usize] = ACTIONS(1735), + [anon_sym_f32] = ACTIONS(1735), + [anon_sym_f64] = ACTIONS(1735), + [anon_sym_bool] = ACTIONS(1735), + [anon_sym_str] = ACTIONS(1735), + [anon_sym_char] = ACTIONS(1735), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(1733), + [sym_self] = ACTIONS(1735), + [sym_super] = ACTIONS(1735), + [sym_crate] = ACTIONS(1735), + [sym_metavariable] = ACTIONS(1733), + [sym_grit_metavariable] = ACTIONS(1733), + [sym_raw_string_literal] = ACTIONS(1733), + [sym_float_literal] = ACTIONS(1733), [sym_block_comment] = ACTIONS(3), }, [353] = { - [ts_builtin_sym_end] = ACTIONS(1751), - [sym__primitive_identifier] = ACTIONS(1753), - [anon_sym_SEMI] = ACTIONS(1751), - [anon_sym_macro_rules_BANG] = ACTIONS(1751), - [anon_sym_LPAREN] = ACTIONS(1751), - [anon_sym_LBRACE] = ACTIONS(1751), - [anon_sym_RBRACE] = ACTIONS(1751), - [anon_sym_LBRACK] = ACTIONS(1751), - [anon_sym_STAR] = ACTIONS(1751), - [anon_sym_SQUOTE] = ACTIONS(1753), - [anon_sym_async] = ACTIONS(1753), - [anon_sym_break] = ACTIONS(1753), - [anon_sym_const] = ACTIONS(1753), - [anon_sym_continue] = ACTIONS(1753), - [anon_sym_default] = ACTIONS(1753), - [anon_sym_enum] = ACTIONS(1753), - [anon_sym_fn] = ACTIONS(1753), - [anon_sym_for] = ACTIONS(1753), - [anon_sym_if] = ACTIONS(1753), - [anon_sym_impl] = ACTIONS(1753), - [anon_sym_let] = ACTIONS(1753), - [anon_sym_loop] = ACTIONS(1753), - [anon_sym_match] = ACTIONS(1753), - [anon_sym_mod] = ACTIONS(1753), - [anon_sym_pub] = ACTIONS(1753), - [anon_sym_return] = ACTIONS(1753), - [anon_sym_static] = ACTIONS(1753), - [anon_sym_struct] = ACTIONS(1753), - [anon_sym_trait] = ACTIONS(1753), - [anon_sym_type] = ACTIONS(1753), - [anon_sym_union] = ACTIONS(1753), - [anon_sym_unsafe] = ACTIONS(1753), - [anon_sym_use] = ACTIONS(1753), - [anon_sym_while] = ACTIONS(1753), - [anon_sym_POUND] = ACTIONS(1751), - [anon_sym_BANG] = ACTIONS(1751), - [anon_sym_extern] = ACTIONS(1753), - [anon_sym_LT] = ACTIONS(1751), - [anon_sym_COLON_COLON] = ACTIONS(1751), - [anon_sym_AMP] = ACTIONS(1751), - [anon_sym_DOT_DOT] = ACTIONS(1751), - [anon_sym_DASH] = ACTIONS(1751), - [anon_sym_PIPE] = ACTIONS(1751), - [anon_sym_yield] = ACTIONS(1753), - [anon_sym_move] = ACTIONS(1753), - [sym_integer_literal] = ACTIONS(1751), - [aux_sym_string_literal_token1] = ACTIONS(1751), - [sym_char_literal] = ACTIONS(1751), - [anon_sym_true] = ACTIONS(1753), - [anon_sym_false] = ACTIONS(1753), - [anon_sym_u8] = ACTIONS(1753), - [anon_sym_i8] = ACTIONS(1753), - [anon_sym_u16] = ACTIONS(1753), - [anon_sym_i16] = ACTIONS(1753), - [anon_sym_u32] = ACTIONS(1753), - [anon_sym_i32] = ACTIONS(1753), - [anon_sym_u64] = ACTIONS(1753), - [anon_sym_i64] = ACTIONS(1753), - [anon_sym_u128] = ACTIONS(1753), - [anon_sym_i128] = ACTIONS(1753), - [anon_sym_isize] = ACTIONS(1753), - [anon_sym_usize] = ACTIONS(1753), - [anon_sym_f32] = ACTIONS(1753), - [anon_sym_f64] = ACTIONS(1753), - [anon_sym_bool] = ACTIONS(1753), - [anon_sym_str] = ACTIONS(1753), - [anon_sym_char] = ACTIONS(1753), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1751), - [sym_self] = ACTIONS(1753), - [sym_super] = ACTIONS(1753), - [sym_crate] = ACTIONS(1753), - [sym_metavariable] = ACTIONS(1751), - [sym_grit_metavariable] = ACTIONS(1751), - [sym_raw_string_literal] = ACTIONS(1751), - [sym_float_literal] = ACTIONS(1751), + [ts_builtin_sym_end] = ACTIONS(1737), + [sym__primitive_identifier] = ACTIONS(1739), + [anon_sym_SEMI] = ACTIONS(1737), + [anon_sym_macro_rules_BANG] = ACTIONS(1737), + [anon_sym_LPAREN] = ACTIONS(1737), + [anon_sym_LBRACE] = ACTIONS(1737), + [anon_sym_RBRACE] = ACTIONS(1737), + [anon_sym_LBRACK] = ACTIONS(1737), + [anon_sym_STAR] = ACTIONS(1737), + [anon_sym_SQUOTE] = ACTIONS(1739), + [anon_sym_async] = ACTIONS(1739), + [anon_sym_break] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1739), + [anon_sym_continue] = ACTIONS(1739), + [anon_sym_default] = ACTIONS(1739), + [anon_sym_enum] = ACTIONS(1739), + [anon_sym_fn] = ACTIONS(1739), + [anon_sym_for] = ACTIONS(1739), + [anon_sym_if] = ACTIONS(1739), + [anon_sym_impl] = ACTIONS(1739), + [anon_sym_let] = ACTIONS(1739), + [anon_sym_loop] = ACTIONS(1739), + [anon_sym_match] = ACTIONS(1739), + [anon_sym_mod] = ACTIONS(1739), + [anon_sym_pub] = ACTIONS(1739), + [anon_sym_return] = ACTIONS(1739), + [anon_sym_static] = ACTIONS(1739), + [anon_sym_struct] = ACTIONS(1739), + [anon_sym_trait] = ACTIONS(1739), + [anon_sym_type] = ACTIONS(1739), + [anon_sym_union] = ACTIONS(1739), + [anon_sym_unsafe] = ACTIONS(1739), + [anon_sym_use] = ACTIONS(1739), + [anon_sym_while] = ACTIONS(1739), + [anon_sym_POUND] = ACTIONS(1737), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_extern] = ACTIONS(1739), + [anon_sym_LT] = ACTIONS(1737), + [anon_sym_COLON_COLON] = ACTIONS(1737), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_DOT_DOT] = ACTIONS(1737), + [anon_sym_DASH] = ACTIONS(1737), + [anon_sym_PIPE] = ACTIONS(1737), + [anon_sym_yield] = ACTIONS(1739), + [anon_sym_move] = ACTIONS(1739), + [sym_integer_literal] = ACTIONS(1737), + [aux_sym_string_literal_token1] = ACTIONS(1737), + [sym_char_literal] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(1739), + [anon_sym_false] = ACTIONS(1739), + [anon_sym_u8] = ACTIONS(1739), + [anon_sym_i8] = ACTIONS(1739), + [anon_sym_u16] = ACTIONS(1739), + [anon_sym_i16] = ACTIONS(1739), + [anon_sym_u32] = ACTIONS(1739), + [anon_sym_i32] = ACTIONS(1739), + [anon_sym_u64] = ACTIONS(1739), + [anon_sym_i64] = ACTIONS(1739), + [anon_sym_u128] = ACTIONS(1739), + [anon_sym_i128] = ACTIONS(1739), + [anon_sym_isize] = ACTIONS(1739), + [anon_sym_usize] = ACTIONS(1739), + [anon_sym_f32] = ACTIONS(1739), + [anon_sym_f64] = ACTIONS(1739), + [anon_sym_bool] = ACTIONS(1739), + [anon_sym_str] = ACTIONS(1739), + [anon_sym_char] = ACTIONS(1739), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(1737), + [sym_self] = ACTIONS(1739), + [sym_super] = ACTIONS(1739), + [sym_crate] = ACTIONS(1739), + [sym_metavariable] = ACTIONS(1737), + [sym_grit_metavariable] = ACTIONS(1737), + [sym_raw_string_literal] = ACTIONS(1737), + [sym_float_literal] = ACTIONS(1737), [sym_block_comment] = ACTIONS(3), }, [354] = { - [ts_builtin_sym_end] = ACTIONS(1755), - [sym__primitive_identifier] = ACTIONS(1757), - [anon_sym_SEMI] = ACTIONS(1755), - [anon_sym_macro_rules_BANG] = ACTIONS(1755), - [anon_sym_LPAREN] = ACTIONS(1755), - [anon_sym_LBRACE] = ACTIONS(1755), - [anon_sym_RBRACE] = ACTIONS(1755), - [anon_sym_LBRACK] = ACTIONS(1755), - [anon_sym_STAR] = ACTIONS(1755), - [anon_sym_SQUOTE] = ACTIONS(1757), - [anon_sym_async] = ACTIONS(1757), - [anon_sym_break] = ACTIONS(1757), - [anon_sym_const] = ACTIONS(1757), - [anon_sym_continue] = ACTIONS(1757), - [anon_sym_default] = ACTIONS(1757), - [anon_sym_enum] = ACTIONS(1757), - [anon_sym_fn] = ACTIONS(1757), - [anon_sym_for] = ACTIONS(1757), - [anon_sym_if] = ACTIONS(1757), - [anon_sym_impl] = ACTIONS(1757), - [anon_sym_let] = ACTIONS(1757), - [anon_sym_loop] = ACTIONS(1757), - [anon_sym_match] = ACTIONS(1757), - [anon_sym_mod] = ACTIONS(1757), - [anon_sym_pub] = ACTIONS(1757), - [anon_sym_return] = ACTIONS(1757), - [anon_sym_static] = ACTIONS(1757), - [anon_sym_struct] = ACTIONS(1757), - [anon_sym_trait] = ACTIONS(1757), - [anon_sym_type] = ACTIONS(1757), - [anon_sym_union] = ACTIONS(1757), - [anon_sym_unsafe] = ACTIONS(1757), - [anon_sym_use] = ACTIONS(1757), - [anon_sym_while] = ACTIONS(1757), - [anon_sym_POUND] = ACTIONS(1755), - [anon_sym_BANG] = ACTIONS(1755), - [anon_sym_extern] = ACTIONS(1757), - [anon_sym_LT] = ACTIONS(1755), - [anon_sym_COLON_COLON] = ACTIONS(1755), - [anon_sym_AMP] = ACTIONS(1755), - [anon_sym_DOT_DOT] = ACTIONS(1755), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_PIPE] = ACTIONS(1755), - [anon_sym_yield] = ACTIONS(1757), - [anon_sym_move] = ACTIONS(1757), - [sym_integer_literal] = ACTIONS(1755), - [aux_sym_string_literal_token1] = ACTIONS(1755), - [sym_char_literal] = ACTIONS(1755), - [anon_sym_true] = ACTIONS(1757), - [anon_sym_false] = ACTIONS(1757), - [anon_sym_u8] = ACTIONS(1757), - [anon_sym_i8] = ACTIONS(1757), - [anon_sym_u16] = ACTIONS(1757), - [anon_sym_i16] = ACTIONS(1757), - [anon_sym_u32] = ACTIONS(1757), - [anon_sym_i32] = ACTIONS(1757), - [anon_sym_u64] = ACTIONS(1757), - [anon_sym_i64] = ACTIONS(1757), - [anon_sym_u128] = ACTIONS(1757), - [anon_sym_i128] = ACTIONS(1757), - [anon_sym_isize] = ACTIONS(1757), - [anon_sym_usize] = ACTIONS(1757), - [anon_sym_f32] = ACTIONS(1757), - [anon_sym_f64] = ACTIONS(1757), - [anon_sym_bool] = ACTIONS(1757), - [anon_sym_str] = ACTIONS(1757), - [anon_sym_char] = ACTIONS(1757), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1755), - [sym_self] = ACTIONS(1757), - [sym_super] = ACTIONS(1757), - [sym_crate] = ACTIONS(1757), - [sym_metavariable] = ACTIONS(1755), - [sym_grit_metavariable] = ACTIONS(1755), - [sym_raw_string_literal] = ACTIONS(1755), - [sym_float_literal] = ACTIONS(1755), + [ts_builtin_sym_end] = ACTIONS(1741), + [sym__primitive_identifier] = ACTIONS(1743), + [anon_sym_SEMI] = ACTIONS(1741), + [anon_sym_macro_rules_BANG] = ACTIONS(1741), + [anon_sym_LPAREN] = ACTIONS(1741), + [anon_sym_LBRACE] = ACTIONS(1741), + [anon_sym_RBRACE] = ACTIONS(1741), + [anon_sym_LBRACK] = ACTIONS(1741), + [anon_sym_STAR] = ACTIONS(1741), + [anon_sym_SQUOTE] = ACTIONS(1743), + [anon_sym_async] = ACTIONS(1743), + [anon_sym_break] = ACTIONS(1743), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_continue] = ACTIONS(1743), + [anon_sym_default] = ACTIONS(1743), + [anon_sym_enum] = ACTIONS(1743), + [anon_sym_fn] = ACTIONS(1743), + [anon_sym_for] = ACTIONS(1743), + [anon_sym_if] = ACTIONS(1743), + [anon_sym_impl] = ACTIONS(1743), + [anon_sym_let] = ACTIONS(1743), + [anon_sym_loop] = ACTIONS(1743), + [anon_sym_match] = ACTIONS(1743), + [anon_sym_mod] = ACTIONS(1743), + [anon_sym_pub] = ACTIONS(1743), + [anon_sym_return] = ACTIONS(1743), + [anon_sym_static] = ACTIONS(1743), + [anon_sym_struct] = ACTIONS(1743), + [anon_sym_trait] = ACTIONS(1743), + [anon_sym_type] = ACTIONS(1743), + [anon_sym_union] = ACTIONS(1743), + [anon_sym_unsafe] = ACTIONS(1743), + [anon_sym_use] = ACTIONS(1743), + [anon_sym_while] = ACTIONS(1743), + [anon_sym_POUND] = ACTIONS(1741), + [anon_sym_BANG] = ACTIONS(1741), + [anon_sym_extern] = ACTIONS(1743), + [anon_sym_LT] = ACTIONS(1741), + [anon_sym_COLON_COLON] = ACTIONS(1741), + [anon_sym_AMP] = ACTIONS(1741), + [anon_sym_DOT_DOT] = ACTIONS(1741), + [anon_sym_DASH] = ACTIONS(1741), + [anon_sym_PIPE] = ACTIONS(1741), + [anon_sym_yield] = ACTIONS(1743), + [anon_sym_move] = ACTIONS(1743), + [sym_integer_literal] = ACTIONS(1741), + [aux_sym_string_literal_token1] = ACTIONS(1741), + [sym_char_literal] = ACTIONS(1741), + [anon_sym_true] = ACTIONS(1743), + [anon_sym_false] = ACTIONS(1743), + [anon_sym_u8] = ACTIONS(1743), + [anon_sym_i8] = ACTIONS(1743), + [anon_sym_u16] = ACTIONS(1743), + [anon_sym_i16] = ACTIONS(1743), + [anon_sym_u32] = ACTIONS(1743), + [anon_sym_i32] = ACTIONS(1743), + [anon_sym_u64] = ACTIONS(1743), + [anon_sym_i64] = ACTIONS(1743), + [anon_sym_u128] = ACTIONS(1743), + [anon_sym_i128] = ACTIONS(1743), + [anon_sym_isize] = ACTIONS(1743), + [anon_sym_usize] = ACTIONS(1743), + [anon_sym_f32] = ACTIONS(1743), + [anon_sym_f64] = ACTIONS(1743), + [anon_sym_bool] = ACTIONS(1743), + [anon_sym_str] = ACTIONS(1743), + [anon_sym_char] = ACTIONS(1743), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(1741), + [sym_self] = ACTIONS(1743), + [sym_super] = ACTIONS(1743), + [sym_crate] = ACTIONS(1743), + [sym_metavariable] = ACTIONS(1741), + [sym_grit_metavariable] = ACTIONS(1741), + [sym_raw_string_literal] = ACTIONS(1741), + [sym_float_literal] = ACTIONS(1741), [sym_block_comment] = ACTIONS(3), }, [355] = { - [ts_builtin_sym_end] = ACTIONS(1759), - [sym__primitive_identifier] = ACTIONS(1761), - [anon_sym_SEMI] = ACTIONS(1759), - [anon_sym_macro_rules_BANG] = ACTIONS(1759), - [anon_sym_LPAREN] = ACTIONS(1759), - [anon_sym_LBRACE] = ACTIONS(1759), - [anon_sym_RBRACE] = ACTIONS(1759), - [anon_sym_LBRACK] = ACTIONS(1759), - [anon_sym_STAR] = ACTIONS(1759), - [anon_sym_SQUOTE] = ACTIONS(1761), - [anon_sym_async] = ACTIONS(1761), - [anon_sym_break] = ACTIONS(1761), - [anon_sym_const] = ACTIONS(1761), - [anon_sym_continue] = ACTIONS(1761), - [anon_sym_default] = ACTIONS(1761), - [anon_sym_enum] = ACTIONS(1761), - [anon_sym_fn] = ACTIONS(1761), - [anon_sym_for] = ACTIONS(1761), - [anon_sym_if] = ACTIONS(1761), - [anon_sym_impl] = ACTIONS(1761), - [anon_sym_let] = ACTIONS(1761), - [anon_sym_loop] = ACTIONS(1761), - [anon_sym_match] = ACTIONS(1761), - [anon_sym_mod] = ACTIONS(1761), - [anon_sym_pub] = ACTIONS(1761), - [anon_sym_return] = ACTIONS(1761), - [anon_sym_static] = ACTIONS(1761), - [anon_sym_struct] = ACTIONS(1761), - [anon_sym_trait] = ACTIONS(1761), - [anon_sym_type] = ACTIONS(1761), - [anon_sym_union] = ACTIONS(1761), - [anon_sym_unsafe] = ACTIONS(1761), - [anon_sym_use] = ACTIONS(1761), - [anon_sym_while] = ACTIONS(1761), - [anon_sym_POUND] = ACTIONS(1759), - [anon_sym_BANG] = ACTIONS(1759), - [anon_sym_extern] = ACTIONS(1761), - [anon_sym_LT] = ACTIONS(1759), - [anon_sym_COLON_COLON] = ACTIONS(1759), - [anon_sym_AMP] = ACTIONS(1759), - [anon_sym_DOT_DOT] = ACTIONS(1759), - [anon_sym_DASH] = ACTIONS(1759), - [anon_sym_PIPE] = ACTIONS(1759), - [anon_sym_yield] = ACTIONS(1761), - [anon_sym_move] = ACTIONS(1761), - [sym_integer_literal] = ACTIONS(1759), - [aux_sym_string_literal_token1] = ACTIONS(1759), - [sym_char_literal] = ACTIONS(1759), - [anon_sym_true] = ACTIONS(1761), - [anon_sym_false] = ACTIONS(1761), - [anon_sym_u8] = ACTIONS(1761), - [anon_sym_i8] = ACTIONS(1761), - [anon_sym_u16] = ACTIONS(1761), - [anon_sym_i16] = ACTIONS(1761), - [anon_sym_u32] = ACTIONS(1761), - [anon_sym_i32] = ACTIONS(1761), - [anon_sym_u64] = ACTIONS(1761), - [anon_sym_i64] = ACTIONS(1761), - [anon_sym_u128] = ACTIONS(1761), - [anon_sym_i128] = ACTIONS(1761), - [anon_sym_isize] = ACTIONS(1761), - [anon_sym_usize] = ACTIONS(1761), - [anon_sym_f32] = ACTIONS(1761), - [anon_sym_f64] = ACTIONS(1761), - [anon_sym_bool] = ACTIONS(1761), - [anon_sym_str] = ACTIONS(1761), - [anon_sym_char] = ACTIONS(1761), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1759), - [sym_self] = ACTIONS(1761), - [sym_super] = ACTIONS(1761), - [sym_crate] = ACTIONS(1761), - [sym_metavariable] = ACTIONS(1759), - [sym_grit_metavariable] = ACTIONS(1759), - [sym_raw_string_literal] = ACTIONS(1759), - [sym_float_literal] = ACTIONS(1759), + [ts_builtin_sym_end] = ACTIONS(1745), + [sym__primitive_identifier] = ACTIONS(1747), + [anon_sym_SEMI] = ACTIONS(1745), + [anon_sym_macro_rules_BANG] = ACTIONS(1745), + [anon_sym_LPAREN] = ACTIONS(1745), + [anon_sym_LBRACE] = ACTIONS(1745), + [anon_sym_RBRACE] = ACTIONS(1745), + [anon_sym_LBRACK] = ACTIONS(1745), + [anon_sym_STAR] = ACTIONS(1745), + [anon_sym_SQUOTE] = ACTIONS(1747), + [anon_sym_async] = ACTIONS(1747), + [anon_sym_break] = ACTIONS(1747), + [anon_sym_const] = ACTIONS(1747), + [anon_sym_continue] = ACTIONS(1747), + [anon_sym_default] = ACTIONS(1747), + [anon_sym_enum] = ACTIONS(1747), + [anon_sym_fn] = ACTIONS(1747), + [anon_sym_for] = ACTIONS(1747), + [anon_sym_if] = ACTIONS(1747), + [anon_sym_impl] = ACTIONS(1747), + [anon_sym_let] = ACTIONS(1747), + [anon_sym_loop] = ACTIONS(1747), + [anon_sym_match] = ACTIONS(1747), + [anon_sym_mod] = ACTIONS(1747), + [anon_sym_pub] = ACTIONS(1747), + [anon_sym_return] = ACTIONS(1747), + [anon_sym_static] = ACTIONS(1747), + [anon_sym_struct] = ACTIONS(1747), + [anon_sym_trait] = ACTIONS(1747), + [anon_sym_type] = ACTIONS(1747), + [anon_sym_union] = ACTIONS(1747), + [anon_sym_unsafe] = ACTIONS(1747), + [anon_sym_use] = ACTIONS(1747), + [anon_sym_while] = ACTIONS(1747), + [anon_sym_POUND] = ACTIONS(1745), + [anon_sym_BANG] = ACTIONS(1745), + [anon_sym_extern] = ACTIONS(1747), + [anon_sym_LT] = ACTIONS(1745), + [anon_sym_COLON_COLON] = ACTIONS(1745), + [anon_sym_AMP] = ACTIONS(1745), + [anon_sym_DOT_DOT] = ACTIONS(1745), + [anon_sym_DASH] = ACTIONS(1745), + [anon_sym_PIPE] = ACTIONS(1745), + [anon_sym_yield] = ACTIONS(1747), + [anon_sym_move] = ACTIONS(1747), + [sym_integer_literal] = ACTIONS(1745), + [aux_sym_string_literal_token1] = ACTIONS(1745), + [sym_char_literal] = ACTIONS(1745), + [anon_sym_true] = ACTIONS(1747), + [anon_sym_false] = ACTIONS(1747), + [anon_sym_u8] = ACTIONS(1747), + [anon_sym_i8] = ACTIONS(1747), + [anon_sym_u16] = ACTIONS(1747), + [anon_sym_i16] = ACTIONS(1747), + [anon_sym_u32] = ACTIONS(1747), + [anon_sym_i32] = ACTIONS(1747), + [anon_sym_u64] = ACTIONS(1747), + [anon_sym_i64] = ACTIONS(1747), + [anon_sym_u128] = ACTIONS(1747), + [anon_sym_i128] = ACTIONS(1747), + [anon_sym_isize] = ACTIONS(1747), + [anon_sym_usize] = ACTIONS(1747), + [anon_sym_f32] = ACTIONS(1747), + [anon_sym_f64] = ACTIONS(1747), + [anon_sym_bool] = ACTIONS(1747), + [anon_sym_str] = ACTIONS(1747), + [anon_sym_char] = ACTIONS(1747), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(1745), + [sym_self] = ACTIONS(1747), + [sym_super] = ACTIONS(1747), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1745), + [sym_grit_metavariable] = ACTIONS(1745), + [sym_raw_string_literal] = ACTIONS(1745), + [sym_float_literal] = ACTIONS(1745), [sym_block_comment] = ACTIONS(3), }, [356] = { - [ts_builtin_sym_end] = ACTIONS(1763), - [sym__primitive_identifier] = ACTIONS(1765), - [anon_sym_SEMI] = ACTIONS(1763), - [anon_sym_macro_rules_BANG] = ACTIONS(1763), - [anon_sym_LPAREN] = ACTIONS(1763), - [anon_sym_LBRACE] = ACTIONS(1763), - [anon_sym_RBRACE] = ACTIONS(1763), - [anon_sym_LBRACK] = ACTIONS(1763), - [anon_sym_STAR] = ACTIONS(1763), - [anon_sym_SQUOTE] = ACTIONS(1765), - [anon_sym_async] = ACTIONS(1765), - [anon_sym_break] = ACTIONS(1765), - [anon_sym_const] = ACTIONS(1765), - [anon_sym_continue] = ACTIONS(1765), - [anon_sym_default] = ACTIONS(1765), - [anon_sym_enum] = ACTIONS(1765), - [anon_sym_fn] = ACTIONS(1765), - [anon_sym_for] = ACTIONS(1765), - [anon_sym_if] = ACTIONS(1765), - [anon_sym_impl] = ACTIONS(1765), - [anon_sym_let] = ACTIONS(1765), - [anon_sym_loop] = ACTIONS(1765), - [anon_sym_match] = ACTIONS(1765), - [anon_sym_mod] = ACTIONS(1765), - [anon_sym_pub] = ACTIONS(1765), - [anon_sym_return] = ACTIONS(1765), - [anon_sym_static] = ACTIONS(1765), - [anon_sym_struct] = ACTIONS(1765), - [anon_sym_trait] = ACTIONS(1765), - [anon_sym_type] = ACTIONS(1765), - [anon_sym_union] = ACTIONS(1765), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_use] = ACTIONS(1765), - [anon_sym_while] = ACTIONS(1765), - [anon_sym_POUND] = ACTIONS(1763), - [anon_sym_BANG] = ACTIONS(1763), - [anon_sym_extern] = ACTIONS(1765), - [anon_sym_LT] = ACTIONS(1763), - [anon_sym_COLON_COLON] = ACTIONS(1763), - [anon_sym_AMP] = ACTIONS(1763), - [anon_sym_DOT_DOT] = ACTIONS(1763), - [anon_sym_DASH] = ACTIONS(1763), - [anon_sym_PIPE] = ACTIONS(1763), - [anon_sym_yield] = ACTIONS(1765), - [anon_sym_move] = ACTIONS(1765), - [sym_integer_literal] = ACTIONS(1763), - [aux_sym_string_literal_token1] = ACTIONS(1763), - [sym_char_literal] = ACTIONS(1763), - [anon_sym_true] = ACTIONS(1765), - [anon_sym_false] = ACTIONS(1765), - [anon_sym_u8] = ACTIONS(1765), - [anon_sym_i8] = ACTIONS(1765), - [anon_sym_u16] = ACTIONS(1765), - [anon_sym_i16] = ACTIONS(1765), - [anon_sym_u32] = ACTIONS(1765), - [anon_sym_i32] = ACTIONS(1765), - [anon_sym_u64] = ACTIONS(1765), - [anon_sym_i64] = ACTIONS(1765), - [anon_sym_u128] = ACTIONS(1765), - [anon_sym_i128] = ACTIONS(1765), - [anon_sym_isize] = ACTIONS(1765), - [anon_sym_usize] = ACTIONS(1765), - [anon_sym_f32] = ACTIONS(1765), - [anon_sym_f64] = ACTIONS(1765), - [anon_sym_bool] = ACTIONS(1765), - [anon_sym_str] = ACTIONS(1765), - [anon_sym_char] = ACTIONS(1765), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1763), - [sym_self] = ACTIONS(1765), - [sym_super] = ACTIONS(1765), - [sym_crate] = ACTIONS(1765), - [sym_metavariable] = ACTIONS(1763), - [sym_grit_metavariable] = ACTIONS(1763), - [sym_raw_string_literal] = ACTIONS(1763), - [sym_float_literal] = ACTIONS(1763), + [ts_builtin_sym_end] = ACTIONS(1749), + [sym__primitive_identifier] = ACTIONS(1751), + [anon_sym_SEMI] = ACTIONS(1749), + [anon_sym_macro_rules_BANG] = ACTIONS(1749), + [anon_sym_LPAREN] = ACTIONS(1749), + [anon_sym_LBRACE] = ACTIONS(1749), + [anon_sym_RBRACE] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1749), + [anon_sym_STAR] = ACTIONS(1749), + [anon_sym_SQUOTE] = ACTIONS(1751), + [anon_sym_async] = ACTIONS(1751), + [anon_sym_break] = ACTIONS(1751), + [anon_sym_const] = ACTIONS(1751), + [anon_sym_continue] = ACTIONS(1751), + [anon_sym_default] = ACTIONS(1751), + [anon_sym_enum] = ACTIONS(1751), + [anon_sym_fn] = ACTIONS(1751), + [anon_sym_for] = ACTIONS(1751), + [anon_sym_if] = ACTIONS(1751), + [anon_sym_impl] = ACTIONS(1751), + [anon_sym_let] = ACTIONS(1751), + [anon_sym_loop] = ACTIONS(1751), + [anon_sym_match] = ACTIONS(1751), + [anon_sym_mod] = ACTIONS(1751), + [anon_sym_pub] = ACTIONS(1751), + [anon_sym_return] = ACTIONS(1751), + [anon_sym_static] = ACTIONS(1751), + [anon_sym_struct] = ACTIONS(1751), + [anon_sym_trait] = ACTIONS(1751), + [anon_sym_type] = ACTIONS(1751), + [anon_sym_union] = ACTIONS(1751), + [anon_sym_unsafe] = ACTIONS(1751), + [anon_sym_use] = ACTIONS(1751), + [anon_sym_while] = ACTIONS(1751), + [anon_sym_POUND] = ACTIONS(1749), + [anon_sym_BANG] = ACTIONS(1749), + [anon_sym_extern] = ACTIONS(1751), + [anon_sym_LT] = ACTIONS(1749), + [anon_sym_COLON_COLON] = ACTIONS(1749), + [anon_sym_AMP] = ACTIONS(1749), + [anon_sym_DOT_DOT] = ACTIONS(1749), + [anon_sym_DASH] = ACTIONS(1749), + [anon_sym_PIPE] = ACTIONS(1749), + [anon_sym_yield] = ACTIONS(1751), + [anon_sym_move] = ACTIONS(1751), + [sym_integer_literal] = ACTIONS(1749), + [aux_sym_string_literal_token1] = ACTIONS(1749), + [sym_char_literal] = ACTIONS(1749), + [anon_sym_true] = ACTIONS(1751), + [anon_sym_false] = ACTIONS(1751), + [anon_sym_u8] = ACTIONS(1751), + [anon_sym_i8] = ACTIONS(1751), + [anon_sym_u16] = ACTIONS(1751), + [anon_sym_i16] = ACTIONS(1751), + [anon_sym_u32] = ACTIONS(1751), + [anon_sym_i32] = ACTIONS(1751), + [anon_sym_u64] = ACTIONS(1751), + [anon_sym_i64] = ACTIONS(1751), + [anon_sym_u128] = ACTIONS(1751), + [anon_sym_i128] = ACTIONS(1751), + [anon_sym_isize] = ACTIONS(1751), + [anon_sym_usize] = ACTIONS(1751), + [anon_sym_f32] = ACTIONS(1751), + [anon_sym_f64] = ACTIONS(1751), + [anon_sym_bool] = ACTIONS(1751), + [anon_sym_str] = ACTIONS(1751), + [anon_sym_char] = ACTIONS(1751), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(1749), + [sym_self] = ACTIONS(1751), + [sym_super] = ACTIONS(1751), + [sym_crate] = ACTIONS(1751), + [sym_metavariable] = ACTIONS(1749), + [sym_grit_metavariable] = ACTIONS(1749), + [sym_raw_string_literal] = ACTIONS(1749), + [sym_float_literal] = ACTIONS(1749), [sym_block_comment] = ACTIONS(3), }, [357] = { - [ts_builtin_sym_end] = ACTIONS(1767), - [sym__primitive_identifier] = ACTIONS(1769), - [anon_sym_SEMI] = ACTIONS(1767), - [anon_sym_macro_rules_BANG] = ACTIONS(1767), - [anon_sym_LPAREN] = ACTIONS(1767), - [anon_sym_LBRACE] = ACTIONS(1767), - [anon_sym_RBRACE] = ACTIONS(1767), - [anon_sym_LBRACK] = ACTIONS(1767), - [anon_sym_STAR] = ACTIONS(1767), - [anon_sym_SQUOTE] = ACTIONS(1769), - [anon_sym_async] = ACTIONS(1769), - [anon_sym_break] = ACTIONS(1769), - [anon_sym_const] = ACTIONS(1769), - [anon_sym_continue] = ACTIONS(1769), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_enum] = ACTIONS(1769), - [anon_sym_fn] = ACTIONS(1769), - [anon_sym_for] = ACTIONS(1769), - [anon_sym_if] = ACTIONS(1769), - [anon_sym_impl] = ACTIONS(1769), - [anon_sym_let] = ACTIONS(1769), - [anon_sym_loop] = ACTIONS(1769), - [anon_sym_match] = ACTIONS(1769), - [anon_sym_mod] = ACTIONS(1769), - [anon_sym_pub] = ACTIONS(1769), - [anon_sym_return] = ACTIONS(1769), - [anon_sym_static] = ACTIONS(1769), - [anon_sym_struct] = ACTIONS(1769), - [anon_sym_trait] = ACTIONS(1769), - [anon_sym_type] = ACTIONS(1769), - [anon_sym_union] = ACTIONS(1769), - [anon_sym_unsafe] = ACTIONS(1769), - [anon_sym_use] = ACTIONS(1769), - [anon_sym_while] = ACTIONS(1769), - [anon_sym_POUND] = ACTIONS(1767), - [anon_sym_BANG] = ACTIONS(1767), - [anon_sym_extern] = ACTIONS(1769), - [anon_sym_LT] = ACTIONS(1767), - [anon_sym_COLON_COLON] = ACTIONS(1767), - [anon_sym_AMP] = ACTIONS(1767), - [anon_sym_DOT_DOT] = ACTIONS(1767), - [anon_sym_DASH] = ACTIONS(1767), - [anon_sym_PIPE] = ACTIONS(1767), - [anon_sym_yield] = ACTIONS(1769), - [anon_sym_move] = ACTIONS(1769), - [sym_integer_literal] = ACTIONS(1767), - [aux_sym_string_literal_token1] = ACTIONS(1767), - [sym_char_literal] = ACTIONS(1767), - [anon_sym_true] = ACTIONS(1769), - [anon_sym_false] = ACTIONS(1769), - [anon_sym_u8] = ACTIONS(1769), - [anon_sym_i8] = ACTIONS(1769), - [anon_sym_u16] = ACTIONS(1769), - [anon_sym_i16] = ACTIONS(1769), - [anon_sym_u32] = ACTIONS(1769), - [anon_sym_i32] = ACTIONS(1769), - [anon_sym_u64] = ACTIONS(1769), - [anon_sym_i64] = ACTIONS(1769), - [anon_sym_u128] = ACTIONS(1769), - [anon_sym_i128] = ACTIONS(1769), - [anon_sym_isize] = ACTIONS(1769), - [anon_sym_usize] = ACTIONS(1769), - [anon_sym_f32] = ACTIONS(1769), - [anon_sym_f64] = ACTIONS(1769), - [anon_sym_bool] = ACTIONS(1769), - [anon_sym_str] = ACTIONS(1769), - [anon_sym_char] = ACTIONS(1769), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1767), - [sym_self] = ACTIONS(1769), - [sym_super] = ACTIONS(1769), - [sym_crate] = ACTIONS(1769), - [sym_metavariable] = ACTIONS(1767), - [sym_grit_metavariable] = ACTIONS(1767), - [sym_raw_string_literal] = ACTIONS(1767), - [sym_float_literal] = ACTIONS(1767), + [ts_builtin_sym_end] = ACTIONS(1753), + [sym__primitive_identifier] = ACTIONS(1755), + [anon_sym_SEMI] = ACTIONS(1753), + [anon_sym_macro_rules_BANG] = ACTIONS(1753), + [anon_sym_LPAREN] = ACTIONS(1753), + [anon_sym_LBRACE] = ACTIONS(1753), + [anon_sym_RBRACE] = ACTIONS(1753), + [anon_sym_LBRACK] = ACTIONS(1753), + [anon_sym_STAR] = ACTIONS(1753), + [anon_sym_SQUOTE] = ACTIONS(1755), + [anon_sym_async] = ACTIONS(1755), + [anon_sym_break] = ACTIONS(1755), + [anon_sym_const] = ACTIONS(1755), + [anon_sym_continue] = ACTIONS(1755), + [anon_sym_default] = ACTIONS(1755), + [anon_sym_enum] = ACTIONS(1755), + [anon_sym_fn] = ACTIONS(1755), + [anon_sym_for] = ACTIONS(1755), + [anon_sym_if] = ACTIONS(1755), + [anon_sym_impl] = ACTIONS(1755), + [anon_sym_let] = ACTIONS(1755), + [anon_sym_loop] = ACTIONS(1755), + [anon_sym_match] = ACTIONS(1755), + [anon_sym_mod] = ACTIONS(1755), + [anon_sym_pub] = ACTIONS(1755), + [anon_sym_return] = ACTIONS(1755), + [anon_sym_static] = ACTIONS(1755), + [anon_sym_struct] = ACTIONS(1755), + [anon_sym_trait] = ACTIONS(1755), + [anon_sym_type] = ACTIONS(1755), + [anon_sym_union] = ACTIONS(1755), + [anon_sym_unsafe] = ACTIONS(1755), + [anon_sym_use] = ACTIONS(1755), + [anon_sym_while] = ACTIONS(1755), + [anon_sym_POUND] = ACTIONS(1753), + [anon_sym_BANG] = ACTIONS(1753), + [anon_sym_extern] = ACTIONS(1755), + [anon_sym_LT] = ACTIONS(1753), + [anon_sym_COLON_COLON] = ACTIONS(1753), + [anon_sym_AMP] = ACTIONS(1753), + [anon_sym_DOT_DOT] = ACTIONS(1753), + [anon_sym_DASH] = ACTIONS(1753), + [anon_sym_PIPE] = ACTIONS(1753), + [anon_sym_yield] = ACTIONS(1755), + [anon_sym_move] = ACTIONS(1755), + [sym_integer_literal] = ACTIONS(1753), + [aux_sym_string_literal_token1] = ACTIONS(1753), + [sym_char_literal] = ACTIONS(1753), + [anon_sym_true] = ACTIONS(1755), + [anon_sym_false] = ACTIONS(1755), + [anon_sym_u8] = ACTIONS(1755), + [anon_sym_i8] = ACTIONS(1755), + [anon_sym_u16] = ACTIONS(1755), + [anon_sym_i16] = ACTIONS(1755), + [anon_sym_u32] = ACTIONS(1755), + [anon_sym_i32] = ACTIONS(1755), + [anon_sym_u64] = ACTIONS(1755), + [anon_sym_i64] = ACTIONS(1755), + [anon_sym_u128] = ACTIONS(1755), + [anon_sym_i128] = ACTIONS(1755), + [anon_sym_isize] = ACTIONS(1755), + [anon_sym_usize] = ACTIONS(1755), + [anon_sym_f32] = ACTIONS(1755), + [anon_sym_f64] = ACTIONS(1755), + [anon_sym_bool] = ACTIONS(1755), + [anon_sym_str] = ACTIONS(1755), + [anon_sym_char] = ACTIONS(1755), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(1753), + [sym_self] = ACTIONS(1755), + [sym_super] = ACTIONS(1755), + [sym_crate] = ACTIONS(1755), + [sym_metavariable] = ACTIONS(1753), + [sym_grit_metavariable] = ACTIONS(1753), + [sym_raw_string_literal] = ACTIONS(1753), + [sym_float_literal] = ACTIONS(1753), [sym_block_comment] = ACTIONS(3), }, [358] = { - [ts_builtin_sym_end] = ACTIONS(1771), - [sym__primitive_identifier] = ACTIONS(1773), - [anon_sym_SEMI] = ACTIONS(1771), - [anon_sym_macro_rules_BANG] = ACTIONS(1771), - [anon_sym_LPAREN] = ACTIONS(1771), - [anon_sym_LBRACE] = ACTIONS(1771), - [anon_sym_RBRACE] = ACTIONS(1771), - [anon_sym_LBRACK] = ACTIONS(1771), - [anon_sym_STAR] = ACTIONS(1771), - [anon_sym_SQUOTE] = ACTIONS(1773), - [anon_sym_async] = ACTIONS(1773), - [anon_sym_break] = ACTIONS(1773), - [anon_sym_const] = ACTIONS(1773), - [anon_sym_continue] = ACTIONS(1773), - [anon_sym_default] = ACTIONS(1773), - [anon_sym_enum] = ACTIONS(1773), - [anon_sym_fn] = ACTIONS(1773), - [anon_sym_for] = ACTIONS(1773), - [anon_sym_if] = ACTIONS(1773), - [anon_sym_impl] = ACTIONS(1773), - [anon_sym_let] = ACTIONS(1773), - [anon_sym_loop] = ACTIONS(1773), - [anon_sym_match] = ACTIONS(1773), - [anon_sym_mod] = ACTIONS(1773), - [anon_sym_pub] = ACTIONS(1773), - [anon_sym_return] = ACTIONS(1773), - [anon_sym_static] = ACTIONS(1773), - [anon_sym_struct] = ACTIONS(1773), - [anon_sym_trait] = ACTIONS(1773), - [anon_sym_type] = ACTIONS(1773), - [anon_sym_union] = ACTIONS(1773), - [anon_sym_unsafe] = ACTIONS(1773), - [anon_sym_use] = ACTIONS(1773), - [anon_sym_while] = ACTIONS(1773), - [anon_sym_POUND] = ACTIONS(1771), - [anon_sym_BANG] = ACTIONS(1771), - [anon_sym_extern] = ACTIONS(1773), - [anon_sym_LT] = ACTIONS(1771), - [anon_sym_COLON_COLON] = ACTIONS(1771), - [anon_sym_AMP] = ACTIONS(1771), - [anon_sym_DOT_DOT] = ACTIONS(1771), - [anon_sym_DASH] = ACTIONS(1771), - [anon_sym_PIPE] = ACTIONS(1771), - [anon_sym_yield] = ACTIONS(1773), - [anon_sym_move] = ACTIONS(1773), - [sym_integer_literal] = ACTIONS(1771), - [aux_sym_string_literal_token1] = ACTIONS(1771), - [sym_char_literal] = ACTIONS(1771), - [anon_sym_true] = ACTIONS(1773), - [anon_sym_false] = ACTIONS(1773), - [anon_sym_u8] = ACTIONS(1773), - [anon_sym_i8] = ACTIONS(1773), - [anon_sym_u16] = ACTIONS(1773), - [anon_sym_i16] = ACTIONS(1773), - [anon_sym_u32] = ACTIONS(1773), - [anon_sym_i32] = ACTIONS(1773), - [anon_sym_u64] = ACTIONS(1773), - [anon_sym_i64] = ACTIONS(1773), - [anon_sym_u128] = ACTIONS(1773), - [anon_sym_i128] = ACTIONS(1773), - [anon_sym_isize] = ACTIONS(1773), - [anon_sym_usize] = ACTIONS(1773), - [anon_sym_f32] = ACTIONS(1773), - [anon_sym_f64] = ACTIONS(1773), - [anon_sym_bool] = ACTIONS(1773), - [anon_sym_str] = ACTIONS(1773), - [anon_sym_char] = ACTIONS(1773), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1771), - [sym_self] = ACTIONS(1773), - [sym_super] = ACTIONS(1773), - [sym_crate] = ACTIONS(1773), - [sym_metavariable] = ACTIONS(1771), - [sym_grit_metavariable] = ACTIONS(1771), - [sym_raw_string_literal] = ACTIONS(1771), - [sym_float_literal] = ACTIONS(1771), + [ts_builtin_sym_end] = ACTIONS(1757), + [sym__primitive_identifier] = ACTIONS(1759), + [anon_sym_SEMI] = ACTIONS(1757), + [anon_sym_macro_rules_BANG] = ACTIONS(1757), + [anon_sym_LPAREN] = ACTIONS(1757), + [anon_sym_LBRACE] = ACTIONS(1757), + [anon_sym_RBRACE] = ACTIONS(1757), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_STAR] = ACTIONS(1757), + [anon_sym_SQUOTE] = ACTIONS(1759), + [anon_sym_async] = ACTIONS(1759), + [anon_sym_break] = ACTIONS(1759), + [anon_sym_const] = ACTIONS(1759), + [anon_sym_continue] = ACTIONS(1759), + [anon_sym_default] = ACTIONS(1759), + [anon_sym_enum] = ACTIONS(1759), + [anon_sym_fn] = ACTIONS(1759), + [anon_sym_for] = ACTIONS(1759), + [anon_sym_if] = ACTIONS(1759), + [anon_sym_impl] = ACTIONS(1759), + [anon_sym_let] = ACTIONS(1759), + [anon_sym_loop] = ACTIONS(1759), + [anon_sym_match] = ACTIONS(1759), + [anon_sym_mod] = ACTIONS(1759), + [anon_sym_pub] = ACTIONS(1759), + [anon_sym_return] = ACTIONS(1759), + [anon_sym_static] = ACTIONS(1759), + [anon_sym_struct] = ACTIONS(1759), + [anon_sym_trait] = ACTIONS(1759), + [anon_sym_type] = ACTIONS(1759), + [anon_sym_union] = ACTIONS(1759), + [anon_sym_unsafe] = ACTIONS(1759), + [anon_sym_use] = ACTIONS(1759), + [anon_sym_while] = ACTIONS(1759), + [anon_sym_POUND] = ACTIONS(1757), + [anon_sym_BANG] = ACTIONS(1757), + [anon_sym_extern] = ACTIONS(1759), + [anon_sym_LT] = ACTIONS(1757), + [anon_sym_COLON_COLON] = ACTIONS(1757), + [anon_sym_AMP] = ACTIONS(1757), + [anon_sym_DOT_DOT] = ACTIONS(1757), + [anon_sym_DASH] = ACTIONS(1757), + [anon_sym_PIPE] = ACTIONS(1757), + [anon_sym_yield] = ACTIONS(1759), + [anon_sym_move] = ACTIONS(1759), + [sym_integer_literal] = ACTIONS(1757), + [aux_sym_string_literal_token1] = ACTIONS(1757), + [sym_char_literal] = ACTIONS(1757), + [anon_sym_true] = ACTIONS(1759), + [anon_sym_false] = ACTIONS(1759), + [anon_sym_u8] = ACTIONS(1759), + [anon_sym_i8] = ACTIONS(1759), + [anon_sym_u16] = ACTIONS(1759), + [anon_sym_i16] = ACTIONS(1759), + [anon_sym_u32] = ACTIONS(1759), + [anon_sym_i32] = ACTIONS(1759), + [anon_sym_u64] = ACTIONS(1759), + [anon_sym_i64] = ACTIONS(1759), + [anon_sym_u128] = ACTIONS(1759), + [anon_sym_i128] = ACTIONS(1759), + [anon_sym_isize] = ACTIONS(1759), + [anon_sym_usize] = ACTIONS(1759), + [anon_sym_f32] = ACTIONS(1759), + [anon_sym_f64] = ACTIONS(1759), + [anon_sym_bool] = ACTIONS(1759), + [anon_sym_str] = ACTIONS(1759), + [anon_sym_char] = ACTIONS(1759), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(1757), + [sym_self] = ACTIONS(1759), + [sym_super] = ACTIONS(1759), + [sym_crate] = ACTIONS(1759), + [sym_metavariable] = ACTIONS(1757), + [sym_grit_metavariable] = ACTIONS(1757), + [sym_raw_string_literal] = ACTIONS(1757), + [sym_float_literal] = ACTIONS(1757), [sym_block_comment] = ACTIONS(3), }, [359] = { - [ts_builtin_sym_end] = ACTIONS(1775), - [sym__primitive_identifier] = ACTIONS(1777), - [anon_sym_SEMI] = ACTIONS(1775), - [anon_sym_macro_rules_BANG] = ACTIONS(1775), - [anon_sym_LPAREN] = ACTIONS(1775), - [anon_sym_LBRACE] = ACTIONS(1775), - [anon_sym_RBRACE] = ACTIONS(1775), - [anon_sym_LBRACK] = ACTIONS(1775), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_SQUOTE] = ACTIONS(1777), - [anon_sym_async] = ACTIONS(1777), - [anon_sym_break] = ACTIONS(1777), - [anon_sym_const] = ACTIONS(1777), - [anon_sym_continue] = ACTIONS(1777), - [anon_sym_default] = ACTIONS(1777), - [anon_sym_enum] = ACTIONS(1777), - [anon_sym_fn] = ACTIONS(1777), - [anon_sym_for] = ACTIONS(1777), - [anon_sym_if] = ACTIONS(1777), - [anon_sym_impl] = ACTIONS(1777), - [anon_sym_let] = ACTIONS(1777), - [anon_sym_loop] = ACTIONS(1777), - [anon_sym_match] = ACTIONS(1777), - [anon_sym_mod] = ACTIONS(1777), - [anon_sym_pub] = ACTIONS(1777), - [anon_sym_return] = ACTIONS(1777), - [anon_sym_static] = ACTIONS(1777), - [anon_sym_struct] = ACTIONS(1777), - [anon_sym_trait] = ACTIONS(1777), - [anon_sym_type] = ACTIONS(1777), - [anon_sym_union] = ACTIONS(1777), - [anon_sym_unsafe] = ACTIONS(1777), - [anon_sym_use] = ACTIONS(1777), - [anon_sym_while] = ACTIONS(1777), - [anon_sym_POUND] = ACTIONS(1775), - [anon_sym_BANG] = ACTIONS(1775), - [anon_sym_extern] = ACTIONS(1777), - [anon_sym_LT] = ACTIONS(1775), - [anon_sym_COLON_COLON] = ACTIONS(1775), - [anon_sym_AMP] = ACTIONS(1775), - [anon_sym_DOT_DOT] = ACTIONS(1775), - [anon_sym_DASH] = ACTIONS(1775), - [anon_sym_PIPE] = ACTIONS(1775), - [anon_sym_yield] = ACTIONS(1777), - [anon_sym_move] = ACTIONS(1777), - [sym_integer_literal] = ACTIONS(1775), - [aux_sym_string_literal_token1] = ACTIONS(1775), - [sym_char_literal] = ACTIONS(1775), - [anon_sym_true] = ACTIONS(1777), - [anon_sym_false] = ACTIONS(1777), - [anon_sym_u8] = ACTIONS(1777), - [anon_sym_i8] = ACTIONS(1777), - [anon_sym_u16] = ACTIONS(1777), - [anon_sym_i16] = ACTIONS(1777), - [anon_sym_u32] = ACTIONS(1777), - [anon_sym_i32] = ACTIONS(1777), - [anon_sym_u64] = ACTIONS(1777), - [anon_sym_i64] = ACTIONS(1777), - [anon_sym_u128] = ACTIONS(1777), - [anon_sym_i128] = ACTIONS(1777), - [anon_sym_isize] = ACTIONS(1777), - [anon_sym_usize] = ACTIONS(1777), - [anon_sym_f32] = ACTIONS(1777), - [anon_sym_f64] = ACTIONS(1777), - [anon_sym_bool] = ACTIONS(1777), - [anon_sym_str] = ACTIONS(1777), - [anon_sym_char] = ACTIONS(1777), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1775), - [sym_self] = ACTIONS(1777), - [sym_super] = ACTIONS(1777), - [sym_crate] = ACTIONS(1777), - [sym_metavariable] = ACTIONS(1775), - [sym_grit_metavariable] = ACTIONS(1775), - [sym_raw_string_literal] = ACTIONS(1775), - [sym_float_literal] = ACTIONS(1775), + [ts_builtin_sym_end] = ACTIONS(1761), + [sym__primitive_identifier] = ACTIONS(1763), + [anon_sym_SEMI] = ACTIONS(1761), + [anon_sym_macro_rules_BANG] = ACTIONS(1761), + [anon_sym_LPAREN] = ACTIONS(1761), + [anon_sym_LBRACE] = ACTIONS(1761), + [anon_sym_RBRACE] = ACTIONS(1761), + [anon_sym_LBRACK] = ACTIONS(1761), + [anon_sym_STAR] = ACTIONS(1761), + [anon_sym_SQUOTE] = ACTIONS(1763), + [anon_sym_async] = ACTIONS(1763), + [anon_sym_break] = ACTIONS(1763), + [anon_sym_const] = ACTIONS(1763), + [anon_sym_continue] = ACTIONS(1763), + [anon_sym_default] = ACTIONS(1763), + [anon_sym_enum] = ACTIONS(1763), + [anon_sym_fn] = ACTIONS(1763), + [anon_sym_for] = ACTIONS(1763), + [anon_sym_if] = ACTIONS(1763), + [anon_sym_impl] = ACTIONS(1763), + [anon_sym_let] = ACTIONS(1763), + [anon_sym_loop] = ACTIONS(1763), + [anon_sym_match] = ACTIONS(1763), + [anon_sym_mod] = ACTIONS(1763), + [anon_sym_pub] = ACTIONS(1763), + [anon_sym_return] = ACTIONS(1763), + [anon_sym_static] = ACTIONS(1763), + [anon_sym_struct] = ACTIONS(1763), + [anon_sym_trait] = ACTIONS(1763), + [anon_sym_type] = ACTIONS(1763), + [anon_sym_union] = ACTIONS(1763), + [anon_sym_unsafe] = ACTIONS(1763), + [anon_sym_use] = ACTIONS(1763), + [anon_sym_while] = ACTIONS(1763), + [anon_sym_POUND] = ACTIONS(1761), + [anon_sym_BANG] = ACTIONS(1761), + [anon_sym_extern] = ACTIONS(1763), + [anon_sym_LT] = ACTIONS(1761), + [anon_sym_COLON_COLON] = ACTIONS(1761), + [anon_sym_AMP] = ACTIONS(1761), + [anon_sym_DOT_DOT] = ACTIONS(1761), + [anon_sym_DASH] = ACTIONS(1761), + [anon_sym_PIPE] = ACTIONS(1761), + [anon_sym_yield] = ACTIONS(1763), + [anon_sym_move] = ACTIONS(1763), + [sym_integer_literal] = ACTIONS(1761), + [aux_sym_string_literal_token1] = ACTIONS(1761), + [sym_char_literal] = ACTIONS(1761), + [anon_sym_true] = ACTIONS(1763), + [anon_sym_false] = ACTIONS(1763), + [anon_sym_u8] = ACTIONS(1763), + [anon_sym_i8] = ACTIONS(1763), + [anon_sym_u16] = ACTIONS(1763), + [anon_sym_i16] = ACTIONS(1763), + [anon_sym_u32] = ACTIONS(1763), + [anon_sym_i32] = ACTIONS(1763), + [anon_sym_u64] = ACTIONS(1763), + [anon_sym_i64] = ACTIONS(1763), + [anon_sym_u128] = ACTIONS(1763), + [anon_sym_i128] = ACTIONS(1763), + [anon_sym_isize] = ACTIONS(1763), + [anon_sym_usize] = ACTIONS(1763), + [anon_sym_f32] = ACTIONS(1763), + [anon_sym_f64] = ACTIONS(1763), + [anon_sym_bool] = ACTIONS(1763), + [anon_sym_str] = ACTIONS(1763), + [anon_sym_char] = ACTIONS(1763), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(1761), + [sym_self] = ACTIONS(1763), + [sym_super] = ACTIONS(1763), + [sym_crate] = ACTIONS(1763), + [sym_metavariable] = ACTIONS(1761), + [sym_grit_metavariable] = ACTIONS(1761), + [sym_raw_string_literal] = ACTIONS(1761), + [sym_float_literal] = ACTIONS(1761), [sym_block_comment] = ACTIONS(3), }, [360] = { - [ts_builtin_sym_end] = ACTIONS(1779), - [sym__primitive_identifier] = ACTIONS(1781), - [anon_sym_SEMI] = ACTIONS(1779), - [anon_sym_macro_rules_BANG] = ACTIONS(1779), - [anon_sym_LPAREN] = ACTIONS(1779), - [anon_sym_LBRACE] = ACTIONS(1779), - [anon_sym_RBRACE] = ACTIONS(1779), - [anon_sym_LBRACK] = ACTIONS(1779), - [anon_sym_STAR] = ACTIONS(1779), - [anon_sym_SQUOTE] = ACTIONS(1781), - [anon_sym_async] = ACTIONS(1781), - [anon_sym_break] = ACTIONS(1781), - [anon_sym_const] = ACTIONS(1781), - [anon_sym_continue] = ACTIONS(1781), - [anon_sym_default] = ACTIONS(1781), - [anon_sym_enum] = ACTIONS(1781), - [anon_sym_fn] = ACTIONS(1781), - [anon_sym_for] = ACTIONS(1781), - [anon_sym_if] = ACTIONS(1781), - [anon_sym_impl] = ACTIONS(1781), - [anon_sym_let] = ACTIONS(1781), - [anon_sym_loop] = ACTIONS(1781), - [anon_sym_match] = ACTIONS(1781), - [anon_sym_mod] = ACTIONS(1781), - [anon_sym_pub] = ACTIONS(1781), - [anon_sym_return] = ACTIONS(1781), - [anon_sym_static] = ACTIONS(1781), - [anon_sym_struct] = ACTIONS(1781), - [anon_sym_trait] = ACTIONS(1781), - [anon_sym_type] = ACTIONS(1781), - [anon_sym_union] = ACTIONS(1781), - [anon_sym_unsafe] = ACTIONS(1781), - [anon_sym_use] = ACTIONS(1781), - [anon_sym_while] = ACTIONS(1781), - [anon_sym_POUND] = ACTIONS(1779), - [anon_sym_BANG] = ACTIONS(1779), - [anon_sym_extern] = ACTIONS(1781), - [anon_sym_LT] = ACTIONS(1779), - [anon_sym_COLON_COLON] = ACTIONS(1779), - [anon_sym_AMP] = ACTIONS(1779), - [anon_sym_DOT_DOT] = ACTIONS(1779), - [anon_sym_DASH] = ACTIONS(1779), - [anon_sym_PIPE] = ACTIONS(1779), - [anon_sym_yield] = ACTIONS(1781), - [anon_sym_move] = ACTIONS(1781), - [sym_integer_literal] = ACTIONS(1779), - [aux_sym_string_literal_token1] = ACTIONS(1779), - [sym_char_literal] = ACTIONS(1779), - [anon_sym_true] = ACTIONS(1781), - [anon_sym_false] = ACTIONS(1781), - [anon_sym_u8] = ACTIONS(1781), - [anon_sym_i8] = ACTIONS(1781), - [anon_sym_u16] = ACTIONS(1781), - [anon_sym_i16] = ACTIONS(1781), - [anon_sym_u32] = ACTIONS(1781), - [anon_sym_i32] = ACTIONS(1781), - [anon_sym_u64] = ACTIONS(1781), - [anon_sym_i64] = ACTIONS(1781), - [anon_sym_u128] = ACTIONS(1781), - [anon_sym_i128] = ACTIONS(1781), - [anon_sym_isize] = ACTIONS(1781), - [anon_sym_usize] = ACTIONS(1781), - [anon_sym_f32] = ACTIONS(1781), - [anon_sym_f64] = ACTIONS(1781), - [anon_sym_bool] = ACTIONS(1781), - [anon_sym_str] = ACTIONS(1781), - [anon_sym_char] = ACTIONS(1781), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1779), - [sym_self] = ACTIONS(1781), - [sym_super] = ACTIONS(1781), - [sym_crate] = ACTIONS(1781), - [sym_metavariable] = ACTIONS(1779), - [sym_grit_metavariable] = ACTIONS(1779), - [sym_raw_string_literal] = ACTIONS(1779), - [sym_float_literal] = ACTIONS(1779), + [ts_builtin_sym_end] = ACTIONS(1765), + [sym__primitive_identifier] = ACTIONS(1767), + [anon_sym_SEMI] = ACTIONS(1765), + [anon_sym_macro_rules_BANG] = ACTIONS(1765), + [anon_sym_LPAREN] = ACTIONS(1765), + [anon_sym_LBRACE] = ACTIONS(1765), + [anon_sym_RBRACE] = ACTIONS(1765), + [anon_sym_LBRACK] = ACTIONS(1765), + [anon_sym_STAR] = ACTIONS(1765), + [anon_sym_SQUOTE] = ACTIONS(1767), + [anon_sym_async] = ACTIONS(1767), + [anon_sym_break] = ACTIONS(1767), + [anon_sym_const] = ACTIONS(1767), + [anon_sym_continue] = ACTIONS(1767), + [anon_sym_default] = ACTIONS(1767), + [anon_sym_enum] = ACTIONS(1767), + [anon_sym_fn] = ACTIONS(1767), + [anon_sym_for] = ACTIONS(1767), + [anon_sym_if] = ACTIONS(1767), + [anon_sym_impl] = ACTIONS(1767), + [anon_sym_let] = ACTIONS(1767), + [anon_sym_loop] = ACTIONS(1767), + [anon_sym_match] = ACTIONS(1767), + [anon_sym_mod] = ACTIONS(1767), + [anon_sym_pub] = ACTIONS(1767), + [anon_sym_return] = ACTIONS(1767), + [anon_sym_static] = ACTIONS(1767), + [anon_sym_struct] = ACTIONS(1767), + [anon_sym_trait] = ACTIONS(1767), + [anon_sym_type] = ACTIONS(1767), + [anon_sym_union] = ACTIONS(1767), + [anon_sym_unsafe] = ACTIONS(1767), + [anon_sym_use] = ACTIONS(1767), + [anon_sym_while] = ACTIONS(1767), + [anon_sym_POUND] = ACTIONS(1765), + [anon_sym_BANG] = ACTIONS(1765), + [anon_sym_extern] = ACTIONS(1767), + [anon_sym_LT] = ACTIONS(1765), + [anon_sym_COLON_COLON] = ACTIONS(1765), + [anon_sym_AMP] = ACTIONS(1765), + [anon_sym_DOT_DOT] = ACTIONS(1765), + [anon_sym_DASH] = ACTIONS(1765), + [anon_sym_PIPE] = ACTIONS(1765), + [anon_sym_yield] = ACTIONS(1767), + [anon_sym_move] = ACTIONS(1767), + [sym_integer_literal] = ACTIONS(1765), + [aux_sym_string_literal_token1] = ACTIONS(1765), + [sym_char_literal] = ACTIONS(1765), + [anon_sym_true] = ACTIONS(1767), + [anon_sym_false] = ACTIONS(1767), + [anon_sym_u8] = ACTIONS(1767), + [anon_sym_i8] = ACTIONS(1767), + [anon_sym_u16] = ACTIONS(1767), + [anon_sym_i16] = ACTIONS(1767), + [anon_sym_u32] = ACTIONS(1767), + [anon_sym_i32] = ACTIONS(1767), + [anon_sym_u64] = ACTIONS(1767), + [anon_sym_i64] = ACTIONS(1767), + [anon_sym_u128] = ACTIONS(1767), + [anon_sym_i128] = ACTIONS(1767), + [anon_sym_isize] = ACTIONS(1767), + [anon_sym_usize] = ACTIONS(1767), + [anon_sym_f32] = ACTIONS(1767), + [anon_sym_f64] = ACTIONS(1767), + [anon_sym_bool] = ACTIONS(1767), + [anon_sym_str] = ACTIONS(1767), + [anon_sym_char] = ACTIONS(1767), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(1765), + [sym_self] = ACTIONS(1767), + [sym_super] = ACTIONS(1767), + [sym_crate] = ACTIONS(1767), + [sym_metavariable] = ACTIONS(1765), + [sym_grit_metavariable] = ACTIONS(1765), + [sym_raw_string_literal] = ACTIONS(1765), + [sym_float_literal] = ACTIONS(1765), [sym_block_comment] = ACTIONS(3), }, [361] = { - [ts_builtin_sym_end] = ACTIONS(1783), - [sym__primitive_identifier] = ACTIONS(1785), - [anon_sym_SEMI] = ACTIONS(1783), - [anon_sym_macro_rules_BANG] = ACTIONS(1783), - [anon_sym_LPAREN] = ACTIONS(1783), - [anon_sym_LBRACE] = ACTIONS(1783), - [anon_sym_RBRACE] = ACTIONS(1783), - [anon_sym_LBRACK] = ACTIONS(1783), - [anon_sym_STAR] = ACTIONS(1783), - [anon_sym_SQUOTE] = ACTIONS(1785), - [anon_sym_async] = ACTIONS(1785), - [anon_sym_break] = ACTIONS(1785), - [anon_sym_const] = ACTIONS(1785), - [anon_sym_continue] = ACTIONS(1785), - [anon_sym_default] = ACTIONS(1785), - [anon_sym_enum] = ACTIONS(1785), - [anon_sym_fn] = ACTIONS(1785), - [anon_sym_for] = ACTIONS(1785), - [anon_sym_if] = ACTIONS(1785), - [anon_sym_impl] = ACTIONS(1785), - [anon_sym_let] = ACTIONS(1785), - [anon_sym_loop] = ACTIONS(1785), - [anon_sym_match] = ACTIONS(1785), - [anon_sym_mod] = ACTIONS(1785), - [anon_sym_pub] = ACTIONS(1785), - [anon_sym_return] = ACTIONS(1785), - [anon_sym_static] = ACTIONS(1785), - [anon_sym_struct] = ACTIONS(1785), - [anon_sym_trait] = ACTIONS(1785), - [anon_sym_type] = ACTIONS(1785), - [anon_sym_union] = ACTIONS(1785), - [anon_sym_unsafe] = ACTIONS(1785), - [anon_sym_use] = ACTIONS(1785), - [anon_sym_while] = ACTIONS(1785), - [anon_sym_POUND] = ACTIONS(1783), - [anon_sym_BANG] = ACTIONS(1783), - [anon_sym_extern] = ACTIONS(1785), - [anon_sym_LT] = ACTIONS(1783), - [anon_sym_COLON_COLON] = ACTIONS(1783), - [anon_sym_AMP] = ACTIONS(1783), - [anon_sym_DOT_DOT] = ACTIONS(1783), - [anon_sym_DASH] = ACTIONS(1783), - [anon_sym_PIPE] = ACTIONS(1783), - [anon_sym_yield] = ACTIONS(1785), - [anon_sym_move] = ACTIONS(1785), - [sym_integer_literal] = ACTIONS(1783), - [aux_sym_string_literal_token1] = ACTIONS(1783), - [sym_char_literal] = ACTIONS(1783), - [anon_sym_true] = ACTIONS(1785), - [anon_sym_false] = ACTIONS(1785), - [anon_sym_u8] = ACTIONS(1785), - [anon_sym_i8] = ACTIONS(1785), - [anon_sym_u16] = ACTIONS(1785), - [anon_sym_i16] = ACTIONS(1785), - [anon_sym_u32] = ACTIONS(1785), - [anon_sym_i32] = ACTIONS(1785), - [anon_sym_u64] = ACTIONS(1785), - [anon_sym_i64] = ACTIONS(1785), - [anon_sym_u128] = ACTIONS(1785), - [anon_sym_i128] = ACTIONS(1785), - [anon_sym_isize] = ACTIONS(1785), - [anon_sym_usize] = ACTIONS(1785), - [anon_sym_f32] = ACTIONS(1785), - [anon_sym_f64] = ACTIONS(1785), - [anon_sym_bool] = ACTIONS(1785), - [anon_sym_str] = ACTIONS(1785), - [anon_sym_char] = ACTIONS(1785), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1783), - [sym_self] = ACTIONS(1785), - [sym_super] = ACTIONS(1785), - [sym_crate] = ACTIONS(1785), - [sym_metavariable] = ACTIONS(1783), - [sym_grit_metavariable] = ACTIONS(1783), - [sym_raw_string_literal] = ACTIONS(1783), - [sym_float_literal] = ACTIONS(1783), + [ts_builtin_sym_end] = ACTIONS(1769), + [sym__primitive_identifier] = ACTIONS(1771), + [anon_sym_SEMI] = ACTIONS(1769), + [anon_sym_macro_rules_BANG] = ACTIONS(1769), + [anon_sym_LPAREN] = ACTIONS(1769), + [anon_sym_LBRACE] = ACTIONS(1769), + [anon_sym_RBRACE] = ACTIONS(1769), + [anon_sym_LBRACK] = ACTIONS(1769), + [anon_sym_STAR] = ACTIONS(1769), + [anon_sym_SQUOTE] = ACTIONS(1771), + [anon_sym_async] = ACTIONS(1771), + [anon_sym_break] = ACTIONS(1771), + [anon_sym_const] = ACTIONS(1771), + [anon_sym_continue] = ACTIONS(1771), + [anon_sym_default] = ACTIONS(1771), + [anon_sym_enum] = ACTIONS(1771), + [anon_sym_fn] = ACTIONS(1771), + [anon_sym_for] = ACTIONS(1771), + [anon_sym_if] = ACTIONS(1771), + [anon_sym_impl] = ACTIONS(1771), + [anon_sym_let] = ACTIONS(1771), + [anon_sym_loop] = ACTIONS(1771), + [anon_sym_match] = ACTIONS(1771), + [anon_sym_mod] = ACTIONS(1771), + [anon_sym_pub] = ACTIONS(1771), + [anon_sym_return] = ACTIONS(1771), + [anon_sym_static] = ACTIONS(1771), + [anon_sym_struct] = ACTIONS(1771), + [anon_sym_trait] = ACTIONS(1771), + [anon_sym_type] = ACTIONS(1771), + [anon_sym_union] = ACTIONS(1771), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_use] = ACTIONS(1771), + [anon_sym_while] = ACTIONS(1771), + [anon_sym_POUND] = ACTIONS(1769), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_extern] = ACTIONS(1771), + [anon_sym_LT] = ACTIONS(1769), + [anon_sym_COLON_COLON] = ACTIONS(1769), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_DOT_DOT] = ACTIONS(1769), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_PIPE] = ACTIONS(1769), + [anon_sym_yield] = ACTIONS(1771), + [anon_sym_move] = ACTIONS(1771), + [sym_integer_literal] = ACTIONS(1769), + [aux_sym_string_literal_token1] = ACTIONS(1769), + [sym_char_literal] = ACTIONS(1769), + [anon_sym_true] = ACTIONS(1771), + [anon_sym_false] = ACTIONS(1771), + [anon_sym_u8] = ACTIONS(1771), + [anon_sym_i8] = ACTIONS(1771), + [anon_sym_u16] = ACTIONS(1771), + [anon_sym_i16] = ACTIONS(1771), + [anon_sym_u32] = ACTIONS(1771), + [anon_sym_i32] = ACTIONS(1771), + [anon_sym_u64] = ACTIONS(1771), + [anon_sym_i64] = ACTIONS(1771), + [anon_sym_u128] = ACTIONS(1771), + [anon_sym_i128] = ACTIONS(1771), + [anon_sym_isize] = ACTIONS(1771), + [anon_sym_usize] = ACTIONS(1771), + [anon_sym_f32] = ACTIONS(1771), + [anon_sym_f64] = ACTIONS(1771), + [anon_sym_bool] = ACTIONS(1771), + [anon_sym_str] = ACTIONS(1771), + [anon_sym_char] = ACTIONS(1771), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(1769), + [sym_self] = ACTIONS(1771), + [sym_super] = ACTIONS(1771), + [sym_crate] = ACTIONS(1771), + [sym_metavariable] = ACTIONS(1769), + [sym_grit_metavariable] = ACTIONS(1769), + [sym_raw_string_literal] = ACTIONS(1769), + [sym_float_literal] = ACTIONS(1769), [sym_block_comment] = ACTIONS(3), }, [362] = { - [ts_builtin_sym_end] = ACTIONS(1787), - [sym__primitive_identifier] = ACTIONS(1789), - [anon_sym_SEMI] = ACTIONS(1787), - [anon_sym_macro_rules_BANG] = ACTIONS(1787), - [anon_sym_LPAREN] = ACTIONS(1787), - [anon_sym_LBRACE] = ACTIONS(1787), - [anon_sym_RBRACE] = ACTIONS(1787), - [anon_sym_LBRACK] = ACTIONS(1787), - [anon_sym_STAR] = ACTIONS(1787), - [anon_sym_SQUOTE] = ACTIONS(1789), - [anon_sym_async] = ACTIONS(1789), - [anon_sym_break] = ACTIONS(1789), - [anon_sym_const] = ACTIONS(1789), - [anon_sym_continue] = ACTIONS(1789), - [anon_sym_default] = ACTIONS(1789), - [anon_sym_enum] = ACTIONS(1789), - [anon_sym_fn] = ACTIONS(1789), - [anon_sym_for] = ACTIONS(1789), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_impl] = ACTIONS(1789), - [anon_sym_let] = ACTIONS(1789), - [anon_sym_loop] = ACTIONS(1789), - [anon_sym_match] = ACTIONS(1789), - [anon_sym_mod] = ACTIONS(1789), - [anon_sym_pub] = ACTIONS(1789), - [anon_sym_return] = ACTIONS(1789), - [anon_sym_static] = ACTIONS(1789), - [anon_sym_struct] = ACTIONS(1789), - [anon_sym_trait] = ACTIONS(1789), - [anon_sym_type] = ACTIONS(1789), - [anon_sym_union] = ACTIONS(1789), - [anon_sym_unsafe] = ACTIONS(1789), - [anon_sym_use] = ACTIONS(1789), - [anon_sym_while] = ACTIONS(1789), - [anon_sym_POUND] = ACTIONS(1787), - [anon_sym_BANG] = ACTIONS(1787), - [anon_sym_extern] = ACTIONS(1789), - [anon_sym_LT] = ACTIONS(1787), - [anon_sym_COLON_COLON] = ACTIONS(1787), - [anon_sym_AMP] = ACTIONS(1787), - [anon_sym_DOT_DOT] = ACTIONS(1787), - [anon_sym_DASH] = ACTIONS(1787), - [anon_sym_PIPE] = ACTIONS(1787), - [anon_sym_yield] = ACTIONS(1789), - [anon_sym_move] = ACTIONS(1789), - [sym_integer_literal] = ACTIONS(1787), - [aux_sym_string_literal_token1] = ACTIONS(1787), - [sym_char_literal] = ACTIONS(1787), - [anon_sym_true] = ACTIONS(1789), - [anon_sym_false] = ACTIONS(1789), - [anon_sym_u8] = ACTIONS(1789), - [anon_sym_i8] = ACTIONS(1789), - [anon_sym_u16] = ACTIONS(1789), - [anon_sym_i16] = ACTIONS(1789), - [anon_sym_u32] = ACTIONS(1789), - [anon_sym_i32] = ACTIONS(1789), - [anon_sym_u64] = ACTIONS(1789), - [anon_sym_i64] = ACTIONS(1789), - [anon_sym_u128] = ACTIONS(1789), - [anon_sym_i128] = ACTIONS(1789), - [anon_sym_isize] = ACTIONS(1789), - [anon_sym_usize] = ACTIONS(1789), - [anon_sym_f32] = ACTIONS(1789), - [anon_sym_f64] = ACTIONS(1789), - [anon_sym_bool] = ACTIONS(1789), - [anon_sym_str] = ACTIONS(1789), - [anon_sym_char] = ACTIONS(1789), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1787), - [sym_self] = ACTIONS(1789), - [sym_super] = ACTIONS(1789), - [sym_crate] = ACTIONS(1789), - [sym_metavariable] = ACTIONS(1787), - [sym_grit_metavariable] = ACTIONS(1787), - [sym_raw_string_literal] = ACTIONS(1787), - [sym_float_literal] = ACTIONS(1787), + [ts_builtin_sym_end] = ACTIONS(1773), + [sym__primitive_identifier] = ACTIONS(1775), + [anon_sym_SEMI] = ACTIONS(1773), + [anon_sym_macro_rules_BANG] = ACTIONS(1773), + [anon_sym_LPAREN] = ACTIONS(1773), + [anon_sym_LBRACE] = ACTIONS(1773), + [anon_sym_RBRACE] = ACTIONS(1773), + [anon_sym_LBRACK] = ACTIONS(1773), + [anon_sym_STAR] = ACTIONS(1773), + [anon_sym_SQUOTE] = ACTIONS(1775), + [anon_sym_async] = ACTIONS(1775), + [anon_sym_break] = ACTIONS(1775), + [anon_sym_const] = ACTIONS(1775), + [anon_sym_continue] = ACTIONS(1775), + [anon_sym_default] = ACTIONS(1775), + [anon_sym_enum] = ACTIONS(1775), + [anon_sym_fn] = ACTIONS(1775), + [anon_sym_for] = ACTIONS(1775), + [anon_sym_if] = ACTIONS(1775), + [anon_sym_impl] = ACTIONS(1775), + [anon_sym_let] = ACTIONS(1775), + [anon_sym_loop] = ACTIONS(1775), + [anon_sym_match] = ACTIONS(1775), + [anon_sym_mod] = ACTIONS(1775), + [anon_sym_pub] = ACTIONS(1775), + [anon_sym_return] = ACTIONS(1775), + [anon_sym_static] = ACTIONS(1775), + [anon_sym_struct] = ACTIONS(1775), + [anon_sym_trait] = ACTIONS(1775), + [anon_sym_type] = ACTIONS(1775), + [anon_sym_union] = ACTIONS(1775), + [anon_sym_unsafe] = ACTIONS(1775), + [anon_sym_use] = ACTIONS(1775), + [anon_sym_while] = ACTIONS(1775), + [anon_sym_POUND] = ACTIONS(1773), + [anon_sym_BANG] = ACTIONS(1773), + [anon_sym_extern] = ACTIONS(1775), + [anon_sym_LT] = ACTIONS(1773), + [anon_sym_COLON_COLON] = ACTIONS(1773), + [anon_sym_AMP] = ACTIONS(1773), + [anon_sym_DOT_DOT] = ACTIONS(1773), + [anon_sym_DASH] = ACTIONS(1773), + [anon_sym_PIPE] = ACTIONS(1773), + [anon_sym_yield] = ACTIONS(1775), + [anon_sym_move] = ACTIONS(1775), + [sym_integer_literal] = ACTIONS(1773), + [aux_sym_string_literal_token1] = ACTIONS(1773), + [sym_char_literal] = ACTIONS(1773), + [anon_sym_true] = ACTIONS(1775), + [anon_sym_false] = ACTIONS(1775), + [anon_sym_u8] = ACTIONS(1775), + [anon_sym_i8] = ACTIONS(1775), + [anon_sym_u16] = ACTIONS(1775), + [anon_sym_i16] = ACTIONS(1775), + [anon_sym_u32] = ACTIONS(1775), + [anon_sym_i32] = ACTIONS(1775), + [anon_sym_u64] = ACTIONS(1775), + [anon_sym_i64] = ACTIONS(1775), + [anon_sym_u128] = ACTIONS(1775), + [anon_sym_i128] = ACTIONS(1775), + [anon_sym_isize] = ACTIONS(1775), + [anon_sym_usize] = ACTIONS(1775), + [anon_sym_f32] = ACTIONS(1775), + [anon_sym_f64] = ACTIONS(1775), + [anon_sym_bool] = ACTIONS(1775), + [anon_sym_str] = ACTIONS(1775), + [anon_sym_char] = ACTIONS(1775), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(1773), + [sym_self] = ACTIONS(1775), + [sym_super] = ACTIONS(1775), + [sym_crate] = ACTIONS(1775), + [sym_metavariable] = ACTIONS(1773), + [sym_grit_metavariable] = ACTIONS(1773), + [sym_raw_string_literal] = ACTIONS(1773), + [sym_float_literal] = ACTIONS(1773), [sym_block_comment] = ACTIONS(3), }, [363] = { - [ts_builtin_sym_end] = ACTIONS(1791), - [sym__primitive_identifier] = ACTIONS(1793), - [anon_sym_SEMI] = ACTIONS(1791), - [anon_sym_macro_rules_BANG] = ACTIONS(1791), - [anon_sym_LPAREN] = ACTIONS(1791), - [anon_sym_LBRACE] = ACTIONS(1791), - [anon_sym_RBRACE] = ACTIONS(1791), - [anon_sym_LBRACK] = ACTIONS(1791), - [anon_sym_STAR] = ACTIONS(1791), - [anon_sym_SQUOTE] = ACTIONS(1793), - [anon_sym_async] = ACTIONS(1793), - [anon_sym_break] = ACTIONS(1793), - [anon_sym_const] = ACTIONS(1793), - [anon_sym_continue] = ACTIONS(1793), - [anon_sym_default] = ACTIONS(1793), - [anon_sym_enum] = ACTIONS(1793), - [anon_sym_fn] = ACTIONS(1793), - [anon_sym_for] = ACTIONS(1793), - [anon_sym_if] = ACTIONS(1793), - [anon_sym_impl] = ACTIONS(1793), - [anon_sym_let] = ACTIONS(1793), - [anon_sym_loop] = ACTIONS(1793), - [anon_sym_match] = ACTIONS(1793), - [anon_sym_mod] = ACTIONS(1793), - [anon_sym_pub] = ACTIONS(1793), - [anon_sym_return] = ACTIONS(1793), - [anon_sym_static] = ACTIONS(1793), - [anon_sym_struct] = ACTIONS(1793), - [anon_sym_trait] = ACTIONS(1793), - [anon_sym_type] = ACTIONS(1793), - [anon_sym_union] = ACTIONS(1793), - [anon_sym_unsafe] = ACTIONS(1793), - [anon_sym_use] = ACTIONS(1793), - [anon_sym_while] = ACTIONS(1793), - [anon_sym_POUND] = ACTIONS(1791), - [anon_sym_BANG] = ACTIONS(1791), - [anon_sym_extern] = ACTIONS(1793), - [anon_sym_LT] = ACTIONS(1791), - [anon_sym_COLON_COLON] = ACTIONS(1791), - [anon_sym_AMP] = ACTIONS(1791), - [anon_sym_DOT_DOT] = ACTIONS(1791), - [anon_sym_DASH] = ACTIONS(1791), - [anon_sym_PIPE] = ACTIONS(1791), - [anon_sym_yield] = ACTIONS(1793), - [anon_sym_move] = ACTIONS(1793), - [sym_integer_literal] = ACTIONS(1791), - [aux_sym_string_literal_token1] = ACTIONS(1791), - [sym_char_literal] = ACTIONS(1791), - [anon_sym_true] = ACTIONS(1793), - [anon_sym_false] = ACTIONS(1793), - [anon_sym_u8] = ACTIONS(1793), - [anon_sym_i8] = ACTIONS(1793), - [anon_sym_u16] = ACTIONS(1793), - [anon_sym_i16] = ACTIONS(1793), - [anon_sym_u32] = ACTIONS(1793), - [anon_sym_i32] = ACTIONS(1793), - [anon_sym_u64] = ACTIONS(1793), - [anon_sym_i64] = ACTIONS(1793), - [anon_sym_u128] = ACTIONS(1793), - [anon_sym_i128] = ACTIONS(1793), - [anon_sym_isize] = ACTIONS(1793), - [anon_sym_usize] = ACTIONS(1793), - [anon_sym_f32] = ACTIONS(1793), - [anon_sym_f64] = ACTIONS(1793), - [anon_sym_bool] = ACTIONS(1793), - [anon_sym_str] = ACTIONS(1793), - [anon_sym_char] = ACTIONS(1793), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1791), - [sym_self] = ACTIONS(1793), - [sym_super] = ACTIONS(1793), - [sym_crate] = ACTIONS(1793), - [sym_metavariable] = ACTIONS(1791), - [sym_grit_metavariable] = ACTIONS(1791), - [sym_raw_string_literal] = ACTIONS(1791), - [sym_float_literal] = ACTIONS(1791), + [ts_builtin_sym_end] = ACTIONS(1777), + [sym__primitive_identifier] = ACTIONS(1779), + [anon_sym_SEMI] = ACTIONS(1777), + [anon_sym_macro_rules_BANG] = ACTIONS(1777), + [anon_sym_LPAREN] = ACTIONS(1777), + [anon_sym_LBRACE] = ACTIONS(1777), + [anon_sym_RBRACE] = ACTIONS(1777), + [anon_sym_LBRACK] = ACTIONS(1777), + [anon_sym_STAR] = ACTIONS(1777), + [anon_sym_SQUOTE] = ACTIONS(1779), + [anon_sym_async] = ACTIONS(1779), + [anon_sym_break] = ACTIONS(1779), + [anon_sym_const] = ACTIONS(1779), + [anon_sym_continue] = ACTIONS(1779), + [anon_sym_default] = ACTIONS(1779), + [anon_sym_enum] = ACTIONS(1779), + [anon_sym_fn] = ACTIONS(1779), + [anon_sym_for] = ACTIONS(1779), + [anon_sym_if] = ACTIONS(1779), + [anon_sym_impl] = ACTIONS(1779), + [anon_sym_let] = ACTIONS(1779), + [anon_sym_loop] = ACTIONS(1779), + [anon_sym_match] = ACTIONS(1779), + [anon_sym_mod] = ACTIONS(1779), + [anon_sym_pub] = ACTIONS(1779), + [anon_sym_return] = ACTIONS(1779), + [anon_sym_static] = ACTIONS(1779), + [anon_sym_struct] = ACTIONS(1779), + [anon_sym_trait] = ACTIONS(1779), + [anon_sym_type] = ACTIONS(1779), + [anon_sym_union] = ACTIONS(1779), + [anon_sym_unsafe] = ACTIONS(1779), + [anon_sym_use] = ACTIONS(1779), + [anon_sym_while] = ACTIONS(1779), + [anon_sym_POUND] = ACTIONS(1777), + [anon_sym_BANG] = ACTIONS(1777), + [anon_sym_extern] = ACTIONS(1779), + [anon_sym_LT] = ACTIONS(1777), + [anon_sym_COLON_COLON] = ACTIONS(1777), + [anon_sym_AMP] = ACTIONS(1777), + [anon_sym_DOT_DOT] = ACTIONS(1777), + [anon_sym_DASH] = ACTIONS(1777), + [anon_sym_PIPE] = ACTIONS(1777), + [anon_sym_yield] = ACTIONS(1779), + [anon_sym_move] = ACTIONS(1779), + [sym_integer_literal] = ACTIONS(1777), + [aux_sym_string_literal_token1] = ACTIONS(1777), + [sym_char_literal] = ACTIONS(1777), + [anon_sym_true] = ACTIONS(1779), + [anon_sym_false] = ACTIONS(1779), + [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), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(1777), + [sym_self] = ACTIONS(1779), + [sym_super] = ACTIONS(1779), + [sym_crate] = ACTIONS(1779), + [sym_metavariable] = ACTIONS(1777), + [sym_grit_metavariable] = ACTIONS(1777), + [sym_raw_string_literal] = ACTIONS(1777), + [sym_float_literal] = ACTIONS(1777), [sym_block_comment] = ACTIONS(3), }, [364] = { - [ts_builtin_sym_end] = ACTIONS(1795), - [sym__primitive_identifier] = ACTIONS(1797), - [anon_sym_SEMI] = ACTIONS(1795), - [anon_sym_macro_rules_BANG] = ACTIONS(1795), - [anon_sym_LPAREN] = ACTIONS(1795), - [anon_sym_LBRACE] = ACTIONS(1795), - [anon_sym_RBRACE] = ACTIONS(1795), - [anon_sym_LBRACK] = ACTIONS(1795), - [anon_sym_STAR] = ACTIONS(1795), - [anon_sym_SQUOTE] = ACTIONS(1797), - [anon_sym_async] = ACTIONS(1797), - [anon_sym_break] = ACTIONS(1797), - [anon_sym_const] = ACTIONS(1797), - [anon_sym_continue] = ACTIONS(1797), - [anon_sym_default] = ACTIONS(1797), - [anon_sym_enum] = ACTIONS(1797), - [anon_sym_fn] = ACTIONS(1797), - [anon_sym_for] = ACTIONS(1797), - [anon_sym_if] = ACTIONS(1797), - [anon_sym_impl] = ACTIONS(1797), - [anon_sym_let] = ACTIONS(1797), - [anon_sym_loop] = ACTIONS(1797), - [anon_sym_match] = ACTIONS(1797), - [anon_sym_mod] = ACTIONS(1797), - [anon_sym_pub] = ACTIONS(1797), - [anon_sym_return] = ACTIONS(1797), - [anon_sym_static] = ACTIONS(1797), - [anon_sym_struct] = ACTIONS(1797), - [anon_sym_trait] = ACTIONS(1797), - [anon_sym_type] = ACTIONS(1797), - [anon_sym_union] = ACTIONS(1797), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_use] = ACTIONS(1797), - [anon_sym_while] = ACTIONS(1797), - [anon_sym_POUND] = ACTIONS(1795), - [anon_sym_BANG] = ACTIONS(1795), - [anon_sym_extern] = ACTIONS(1797), - [anon_sym_LT] = ACTIONS(1795), - [anon_sym_COLON_COLON] = ACTIONS(1795), - [anon_sym_AMP] = ACTIONS(1795), - [anon_sym_DOT_DOT] = ACTIONS(1795), - [anon_sym_DASH] = ACTIONS(1795), - [anon_sym_PIPE] = ACTIONS(1795), - [anon_sym_yield] = ACTIONS(1797), - [anon_sym_move] = ACTIONS(1797), - [sym_integer_literal] = ACTIONS(1795), - [aux_sym_string_literal_token1] = ACTIONS(1795), - [sym_char_literal] = ACTIONS(1795), - [anon_sym_true] = ACTIONS(1797), - [anon_sym_false] = ACTIONS(1797), - [anon_sym_u8] = ACTIONS(1797), - [anon_sym_i8] = ACTIONS(1797), - [anon_sym_u16] = ACTIONS(1797), - [anon_sym_i16] = ACTIONS(1797), - [anon_sym_u32] = ACTIONS(1797), - [anon_sym_i32] = ACTIONS(1797), - [anon_sym_u64] = ACTIONS(1797), - [anon_sym_i64] = ACTIONS(1797), - [anon_sym_u128] = ACTIONS(1797), - [anon_sym_i128] = ACTIONS(1797), - [anon_sym_isize] = ACTIONS(1797), - [anon_sym_usize] = ACTIONS(1797), - [anon_sym_f32] = ACTIONS(1797), - [anon_sym_f64] = ACTIONS(1797), - [anon_sym_bool] = ACTIONS(1797), - [anon_sym_str] = ACTIONS(1797), - [anon_sym_char] = ACTIONS(1797), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1795), - [sym_self] = ACTIONS(1797), - [sym_super] = ACTIONS(1797), - [sym_crate] = ACTIONS(1797), - [sym_metavariable] = ACTIONS(1795), - [sym_grit_metavariable] = ACTIONS(1795), - [sym_raw_string_literal] = ACTIONS(1795), - [sym_float_literal] = ACTIONS(1795), + [ts_builtin_sym_end] = ACTIONS(1781), + [sym__primitive_identifier] = ACTIONS(1783), + [anon_sym_SEMI] = ACTIONS(1781), + [anon_sym_macro_rules_BANG] = ACTIONS(1781), + [anon_sym_LPAREN] = ACTIONS(1781), + [anon_sym_LBRACE] = ACTIONS(1781), + [anon_sym_RBRACE] = ACTIONS(1781), + [anon_sym_LBRACK] = ACTIONS(1781), + [anon_sym_STAR] = ACTIONS(1781), + [anon_sym_SQUOTE] = ACTIONS(1783), + [anon_sym_async] = ACTIONS(1783), + [anon_sym_break] = ACTIONS(1783), + [anon_sym_const] = ACTIONS(1783), + [anon_sym_continue] = ACTIONS(1783), + [anon_sym_default] = ACTIONS(1783), + [anon_sym_enum] = ACTIONS(1783), + [anon_sym_fn] = ACTIONS(1783), + [anon_sym_for] = ACTIONS(1783), + [anon_sym_if] = ACTIONS(1783), + [anon_sym_impl] = ACTIONS(1783), + [anon_sym_let] = ACTIONS(1783), + [anon_sym_loop] = ACTIONS(1783), + [anon_sym_match] = ACTIONS(1783), + [anon_sym_mod] = ACTIONS(1783), + [anon_sym_pub] = ACTIONS(1783), + [anon_sym_return] = ACTIONS(1783), + [anon_sym_static] = ACTIONS(1783), + [anon_sym_struct] = ACTIONS(1783), + [anon_sym_trait] = ACTIONS(1783), + [anon_sym_type] = ACTIONS(1783), + [anon_sym_union] = ACTIONS(1783), + [anon_sym_unsafe] = ACTIONS(1783), + [anon_sym_use] = ACTIONS(1783), + [anon_sym_while] = ACTIONS(1783), + [anon_sym_POUND] = ACTIONS(1781), + [anon_sym_BANG] = ACTIONS(1781), + [anon_sym_extern] = ACTIONS(1783), + [anon_sym_LT] = ACTIONS(1781), + [anon_sym_COLON_COLON] = ACTIONS(1781), + [anon_sym_AMP] = ACTIONS(1781), + [anon_sym_DOT_DOT] = ACTIONS(1781), + [anon_sym_DASH] = ACTIONS(1781), + [anon_sym_PIPE] = ACTIONS(1781), + [anon_sym_yield] = ACTIONS(1783), + [anon_sym_move] = ACTIONS(1783), + [sym_integer_literal] = ACTIONS(1781), + [aux_sym_string_literal_token1] = ACTIONS(1781), + [sym_char_literal] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1783), + [anon_sym_false] = ACTIONS(1783), + [anon_sym_u8] = ACTIONS(1783), + [anon_sym_i8] = ACTIONS(1783), + [anon_sym_u16] = ACTIONS(1783), + [anon_sym_i16] = ACTIONS(1783), + [anon_sym_u32] = ACTIONS(1783), + [anon_sym_i32] = ACTIONS(1783), + [anon_sym_u64] = ACTIONS(1783), + [anon_sym_i64] = ACTIONS(1783), + [anon_sym_u128] = ACTIONS(1783), + [anon_sym_i128] = ACTIONS(1783), + [anon_sym_isize] = ACTIONS(1783), + [anon_sym_usize] = ACTIONS(1783), + [anon_sym_f32] = ACTIONS(1783), + [anon_sym_f64] = ACTIONS(1783), + [anon_sym_bool] = ACTIONS(1783), + [anon_sym_str] = ACTIONS(1783), + [anon_sym_char] = ACTIONS(1783), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(1781), + [sym_self] = ACTIONS(1783), + [sym_super] = ACTIONS(1783), + [sym_crate] = ACTIONS(1783), + [sym_metavariable] = ACTIONS(1781), + [sym_grit_metavariable] = ACTIONS(1781), + [sym_raw_string_literal] = ACTIONS(1781), + [sym_float_literal] = ACTIONS(1781), [sym_block_comment] = ACTIONS(3), }, [365] = { - [ts_builtin_sym_end] = ACTIONS(1799), - [sym__primitive_identifier] = ACTIONS(1801), - [anon_sym_SEMI] = ACTIONS(1799), - [anon_sym_macro_rules_BANG] = ACTIONS(1799), - [anon_sym_LPAREN] = ACTIONS(1799), - [anon_sym_LBRACE] = ACTIONS(1799), - [anon_sym_RBRACE] = ACTIONS(1799), - [anon_sym_LBRACK] = ACTIONS(1799), - [anon_sym_STAR] = ACTIONS(1799), - [anon_sym_SQUOTE] = ACTIONS(1801), - [anon_sym_async] = ACTIONS(1801), - [anon_sym_break] = ACTIONS(1801), - [anon_sym_const] = ACTIONS(1801), - [anon_sym_continue] = ACTIONS(1801), - [anon_sym_default] = ACTIONS(1801), - [anon_sym_enum] = ACTIONS(1801), - [anon_sym_fn] = ACTIONS(1801), - [anon_sym_for] = ACTIONS(1801), - [anon_sym_if] = ACTIONS(1801), - [anon_sym_impl] = ACTIONS(1801), - [anon_sym_let] = ACTIONS(1801), - [anon_sym_loop] = ACTIONS(1801), - [anon_sym_match] = ACTIONS(1801), - [anon_sym_mod] = ACTIONS(1801), - [anon_sym_pub] = ACTIONS(1801), - [anon_sym_return] = ACTIONS(1801), - [anon_sym_static] = ACTIONS(1801), - [anon_sym_struct] = ACTIONS(1801), - [anon_sym_trait] = ACTIONS(1801), - [anon_sym_type] = ACTIONS(1801), - [anon_sym_union] = ACTIONS(1801), - [anon_sym_unsafe] = ACTIONS(1801), - [anon_sym_use] = ACTIONS(1801), - [anon_sym_while] = ACTIONS(1801), - [anon_sym_POUND] = ACTIONS(1799), - [anon_sym_BANG] = ACTIONS(1799), - [anon_sym_extern] = ACTIONS(1801), - [anon_sym_LT] = ACTIONS(1799), - [anon_sym_COLON_COLON] = ACTIONS(1799), - [anon_sym_AMP] = ACTIONS(1799), - [anon_sym_DOT_DOT] = ACTIONS(1799), - [anon_sym_DASH] = ACTIONS(1799), - [anon_sym_PIPE] = ACTIONS(1799), - [anon_sym_yield] = ACTIONS(1801), - [anon_sym_move] = ACTIONS(1801), - [sym_integer_literal] = ACTIONS(1799), - [aux_sym_string_literal_token1] = ACTIONS(1799), - [sym_char_literal] = ACTIONS(1799), - [anon_sym_true] = ACTIONS(1801), - [anon_sym_false] = ACTIONS(1801), - [anon_sym_u8] = ACTIONS(1801), - [anon_sym_i8] = ACTIONS(1801), - [anon_sym_u16] = ACTIONS(1801), - [anon_sym_i16] = ACTIONS(1801), - [anon_sym_u32] = ACTIONS(1801), - [anon_sym_i32] = ACTIONS(1801), - [anon_sym_u64] = ACTIONS(1801), - [anon_sym_i64] = ACTIONS(1801), - [anon_sym_u128] = ACTIONS(1801), - [anon_sym_i128] = ACTIONS(1801), - [anon_sym_isize] = ACTIONS(1801), - [anon_sym_usize] = ACTIONS(1801), - [anon_sym_f32] = ACTIONS(1801), - [anon_sym_f64] = ACTIONS(1801), - [anon_sym_bool] = ACTIONS(1801), - [anon_sym_str] = ACTIONS(1801), - [anon_sym_char] = ACTIONS(1801), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1799), - [sym_self] = ACTIONS(1801), - [sym_super] = ACTIONS(1801), - [sym_crate] = ACTIONS(1801), - [sym_metavariable] = ACTIONS(1799), - [sym_grit_metavariable] = ACTIONS(1799), - [sym_raw_string_literal] = ACTIONS(1799), - [sym_float_literal] = ACTIONS(1799), + [ts_builtin_sym_end] = ACTIONS(1785), + [sym__primitive_identifier] = ACTIONS(1787), + [anon_sym_SEMI] = ACTIONS(1785), + [anon_sym_macro_rules_BANG] = ACTIONS(1785), + [anon_sym_LPAREN] = ACTIONS(1785), + [anon_sym_LBRACE] = ACTIONS(1785), + [anon_sym_RBRACE] = ACTIONS(1785), + [anon_sym_LBRACK] = ACTIONS(1785), + [anon_sym_STAR] = ACTIONS(1785), + [anon_sym_SQUOTE] = ACTIONS(1787), + [anon_sym_async] = ACTIONS(1787), + [anon_sym_break] = ACTIONS(1787), + [anon_sym_const] = ACTIONS(1787), + [anon_sym_continue] = ACTIONS(1787), + [anon_sym_default] = ACTIONS(1787), + [anon_sym_enum] = ACTIONS(1787), + [anon_sym_fn] = ACTIONS(1787), + [anon_sym_for] = ACTIONS(1787), + [anon_sym_if] = ACTIONS(1787), + [anon_sym_impl] = ACTIONS(1787), + [anon_sym_let] = ACTIONS(1787), + [anon_sym_loop] = ACTIONS(1787), + [anon_sym_match] = ACTIONS(1787), + [anon_sym_mod] = ACTIONS(1787), + [anon_sym_pub] = ACTIONS(1787), + [anon_sym_return] = ACTIONS(1787), + [anon_sym_static] = ACTIONS(1787), + [anon_sym_struct] = ACTIONS(1787), + [anon_sym_trait] = ACTIONS(1787), + [anon_sym_type] = ACTIONS(1787), + [anon_sym_union] = ACTIONS(1787), + [anon_sym_unsafe] = ACTIONS(1787), + [anon_sym_use] = ACTIONS(1787), + [anon_sym_while] = ACTIONS(1787), + [anon_sym_POUND] = ACTIONS(1785), + [anon_sym_BANG] = ACTIONS(1785), + [anon_sym_extern] = ACTIONS(1787), + [anon_sym_LT] = ACTIONS(1785), + [anon_sym_COLON_COLON] = ACTIONS(1785), + [anon_sym_AMP] = ACTIONS(1785), + [anon_sym_DOT_DOT] = ACTIONS(1785), + [anon_sym_DASH] = ACTIONS(1785), + [anon_sym_PIPE] = ACTIONS(1785), + [anon_sym_yield] = ACTIONS(1787), + [anon_sym_move] = ACTIONS(1787), + [sym_integer_literal] = ACTIONS(1785), + [aux_sym_string_literal_token1] = ACTIONS(1785), + [sym_char_literal] = ACTIONS(1785), + [anon_sym_true] = ACTIONS(1787), + [anon_sym_false] = ACTIONS(1787), + [anon_sym_u8] = ACTIONS(1787), + [anon_sym_i8] = ACTIONS(1787), + [anon_sym_u16] = ACTIONS(1787), + [anon_sym_i16] = ACTIONS(1787), + [anon_sym_u32] = ACTIONS(1787), + [anon_sym_i32] = ACTIONS(1787), + [anon_sym_u64] = ACTIONS(1787), + [anon_sym_i64] = ACTIONS(1787), + [anon_sym_u128] = ACTIONS(1787), + [anon_sym_i128] = ACTIONS(1787), + [anon_sym_isize] = ACTIONS(1787), + [anon_sym_usize] = ACTIONS(1787), + [anon_sym_f32] = ACTIONS(1787), + [anon_sym_f64] = ACTIONS(1787), + [anon_sym_bool] = ACTIONS(1787), + [anon_sym_str] = ACTIONS(1787), + [anon_sym_char] = ACTIONS(1787), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(1785), + [sym_self] = ACTIONS(1787), + [sym_super] = ACTIONS(1787), + [sym_crate] = ACTIONS(1787), + [sym_metavariable] = ACTIONS(1785), + [sym_grit_metavariable] = ACTIONS(1785), + [sym_raw_string_literal] = ACTIONS(1785), + [sym_float_literal] = ACTIONS(1785), [sym_block_comment] = ACTIONS(3), }, [366] = { - [ts_builtin_sym_end] = ACTIONS(1803), - [sym__primitive_identifier] = ACTIONS(1805), - [anon_sym_SEMI] = ACTIONS(1803), - [anon_sym_macro_rules_BANG] = ACTIONS(1803), - [anon_sym_LPAREN] = ACTIONS(1803), - [anon_sym_LBRACE] = ACTIONS(1803), - [anon_sym_RBRACE] = ACTIONS(1803), - [anon_sym_LBRACK] = ACTIONS(1803), - [anon_sym_STAR] = ACTIONS(1803), - [anon_sym_SQUOTE] = ACTIONS(1805), - [anon_sym_async] = ACTIONS(1805), - [anon_sym_break] = ACTIONS(1805), - [anon_sym_const] = ACTIONS(1805), - [anon_sym_continue] = ACTIONS(1805), - [anon_sym_default] = ACTIONS(1805), - [anon_sym_enum] = ACTIONS(1805), - [anon_sym_fn] = ACTIONS(1805), - [anon_sym_for] = ACTIONS(1805), - [anon_sym_if] = ACTIONS(1805), - [anon_sym_impl] = ACTIONS(1805), - [anon_sym_let] = ACTIONS(1805), - [anon_sym_loop] = ACTIONS(1805), - [anon_sym_match] = ACTIONS(1805), - [anon_sym_mod] = ACTIONS(1805), - [anon_sym_pub] = ACTIONS(1805), - [anon_sym_return] = ACTIONS(1805), - [anon_sym_static] = ACTIONS(1805), - [anon_sym_struct] = ACTIONS(1805), - [anon_sym_trait] = ACTIONS(1805), - [anon_sym_type] = ACTIONS(1805), - [anon_sym_union] = ACTIONS(1805), - [anon_sym_unsafe] = ACTIONS(1805), - [anon_sym_use] = ACTIONS(1805), - [anon_sym_while] = ACTIONS(1805), - [anon_sym_POUND] = ACTIONS(1803), - [anon_sym_BANG] = ACTIONS(1803), - [anon_sym_extern] = ACTIONS(1805), - [anon_sym_LT] = ACTIONS(1803), - [anon_sym_COLON_COLON] = ACTIONS(1803), - [anon_sym_AMP] = ACTIONS(1803), - [anon_sym_DOT_DOT] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_PIPE] = ACTIONS(1803), - [anon_sym_yield] = ACTIONS(1805), - [anon_sym_move] = ACTIONS(1805), - [sym_integer_literal] = ACTIONS(1803), - [aux_sym_string_literal_token1] = ACTIONS(1803), - [sym_char_literal] = ACTIONS(1803), - [anon_sym_true] = ACTIONS(1805), - [anon_sym_false] = ACTIONS(1805), - [anon_sym_u8] = ACTIONS(1805), - [anon_sym_i8] = ACTIONS(1805), - [anon_sym_u16] = ACTIONS(1805), - [anon_sym_i16] = ACTIONS(1805), - [anon_sym_u32] = ACTIONS(1805), - [anon_sym_i32] = ACTIONS(1805), - [anon_sym_u64] = ACTIONS(1805), - [anon_sym_i64] = ACTIONS(1805), - [anon_sym_u128] = ACTIONS(1805), - [anon_sym_i128] = ACTIONS(1805), - [anon_sym_isize] = ACTIONS(1805), - [anon_sym_usize] = ACTIONS(1805), - [anon_sym_f32] = ACTIONS(1805), - [anon_sym_f64] = ACTIONS(1805), - [anon_sym_bool] = ACTIONS(1805), - [anon_sym_str] = ACTIONS(1805), - [anon_sym_char] = ACTIONS(1805), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1803), - [sym_self] = ACTIONS(1805), - [sym_super] = ACTIONS(1805), - [sym_crate] = ACTIONS(1805), - [sym_metavariable] = ACTIONS(1803), - [sym_grit_metavariable] = ACTIONS(1803), - [sym_raw_string_literal] = ACTIONS(1803), - [sym_float_literal] = ACTIONS(1803), + [ts_builtin_sym_end] = ACTIONS(1789), + [sym__primitive_identifier] = ACTIONS(1791), + [anon_sym_SEMI] = ACTIONS(1789), + [anon_sym_macro_rules_BANG] = ACTIONS(1789), + [anon_sym_LPAREN] = ACTIONS(1789), + [anon_sym_LBRACE] = ACTIONS(1789), + [anon_sym_RBRACE] = ACTIONS(1789), + [anon_sym_LBRACK] = ACTIONS(1789), + [anon_sym_STAR] = ACTIONS(1789), + [anon_sym_SQUOTE] = ACTIONS(1791), + [anon_sym_async] = ACTIONS(1791), + [anon_sym_break] = ACTIONS(1791), + [anon_sym_const] = ACTIONS(1791), + [anon_sym_continue] = ACTIONS(1791), + [anon_sym_default] = ACTIONS(1791), + [anon_sym_enum] = ACTIONS(1791), + [anon_sym_fn] = ACTIONS(1791), + [anon_sym_for] = ACTIONS(1791), + [anon_sym_if] = ACTIONS(1791), + [anon_sym_impl] = ACTIONS(1791), + [anon_sym_let] = ACTIONS(1791), + [anon_sym_loop] = ACTIONS(1791), + [anon_sym_match] = ACTIONS(1791), + [anon_sym_mod] = ACTIONS(1791), + [anon_sym_pub] = ACTIONS(1791), + [anon_sym_return] = ACTIONS(1791), + [anon_sym_static] = ACTIONS(1791), + [anon_sym_struct] = ACTIONS(1791), + [anon_sym_trait] = ACTIONS(1791), + [anon_sym_type] = ACTIONS(1791), + [anon_sym_union] = ACTIONS(1791), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_use] = ACTIONS(1791), + [anon_sym_while] = ACTIONS(1791), + [anon_sym_POUND] = ACTIONS(1789), + [anon_sym_BANG] = ACTIONS(1789), + [anon_sym_extern] = ACTIONS(1791), + [anon_sym_LT] = ACTIONS(1789), + [anon_sym_COLON_COLON] = ACTIONS(1789), + [anon_sym_AMP] = ACTIONS(1789), + [anon_sym_DOT_DOT] = ACTIONS(1789), + [anon_sym_DASH] = ACTIONS(1789), + [anon_sym_PIPE] = ACTIONS(1789), + [anon_sym_yield] = ACTIONS(1791), + [anon_sym_move] = ACTIONS(1791), + [sym_integer_literal] = ACTIONS(1789), + [aux_sym_string_literal_token1] = ACTIONS(1789), + [sym_char_literal] = ACTIONS(1789), + [anon_sym_true] = ACTIONS(1791), + [anon_sym_false] = ACTIONS(1791), + [anon_sym_u8] = ACTIONS(1791), + [anon_sym_i8] = ACTIONS(1791), + [anon_sym_u16] = ACTIONS(1791), + [anon_sym_i16] = ACTIONS(1791), + [anon_sym_u32] = ACTIONS(1791), + [anon_sym_i32] = ACTIONS(1791), + [anon_sym_u64] = ACTIONS(1791), + [anon_sym_i64] = ACTIONS(1791), + [anon_sym_u128] = ACTIONS(1791), + [anon_sym_i128] = ACTIONS(1791), + [anon_sym_isize] = ACTIONS(1791), + [anon_sym_usize] = ACTIONS(1791), + [anon_sym_f32] = ACTIONS(1791), + [anon_sym_f64] = ACTIONS(1791), + [anon_sym_bool] = ACTIONS(1791), + [anon_sym_str] = ACTIONS(1791), + [anon_sym_char] = ACTIONS(1791), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(1789), + [sym_self] = ACTIONS(1791), + [sym_super] = ACTIONS(1791), + [sym_crate] = ACTIONS(1791), + [sym_metavariable] = ACTIONS(1789), + [sym_grit_metavariable] = ACTIONS(1789), + [sym_raw_string_literal] = ACTIONS(1789), + [sym_float_literal] = ACTIONS(1789), [sym_block_comment] = ACTIONS(3), }, [367] = { - [ts_builtin_sym_end] = ACTIONS(1807), - [sym__primitive_identifier] = ACTIONS(1809), - [anon_sym_SEMI] = ACTIONS(1807), - [anon_sym_macro_rules_BANG] = ACTIONS(1807), - [anon_sym_LPAREN] = ACTIONS(1807), - [anon_sym_LBRACE] = ACTIONS(1807), - [anon_sym_RBRACE] = ACTIONS(1807), - [anon_sym_LBRACK] = ACTIONS(1807), - [anon_sym_STAR] = ACTIONS(1807), - [anon_sym_SQUOTE] = ACTIONS(1809), - [anon_sym_async] = ACTIONS(1809), - [anon_sym_break] = ACTIONS(1809), - [anon_sym_const] = ACTIONS(1809), - [anon_sym_continue] = ACTIONS(1809), - [anon_sym_default] = ACTIONS(1809), - [anon_sym_enum] = ACTIONS(1809), - [anon_sym_fn] = ACTIONS(1809), - [anon_sym_for] = ACTIONS(1809), - [anon_sym_if] = ACTIONS(1809), - [anon_sym_impl] = ACTIONS(1809), - [anon_sym_let] = ACTIONS(1809), - [anon_sym_loop] = ACTIONS(1809), - [anon_sym_match] = ACTIONS(1809), - [anon_sym_mod] = ACTIONS(1809), - [anon_sym_pub] = ACTIONS(1809), - [anon_sym_return] = ACTIONS(1809), - [anon_sym_static] = ACTIONS(1809), - [anon_sym_struct] = ACTIONS(1809), - [anon_sym_trait] = ACTIONS(1809), - [anon_sym_type] = ACTIONS(1809), - [anon_sym_union] = ACTIONS(1809), - [anon_sym_unsafe] = ACTIONS(1809), - [anon_sym_use] = ACTIONS(1809), - [anon_sym_while] = ACTIONS(1809), - [anon_sym_POUND] = ACTIONS(1807), - [anon_sym_BANG] = ACTIONS(1807), - [anon_sym_extern] = ACTIONS(1809), - [anon_sym_LT] = ACTIONS(1807), - [anon_sym_COLON_COLON] = ACTIONS(1807), - [anon_sym_AMP] = ACTIONS(1807), - [anon_sym_DOT_DOT] = ACTIONS(1807), - [anon_sym_DASH] = ACTIONS(1807), - [anon_sym_PIPE] = ACTIONS(1807), - [anon_sym_yield] = ACTIONS(1809), - [anon_sym_move] = ACTIONS(1809), - [sym_integer_literal] = ACTIONS(1807), - [aux_sym_string_literal_token1] = ACTIONS(1807), - [sym_char_literal] = ACTIONS(1807), - [anon_sym_true] = ACTIONS(1809), - [anon_sym_false] = ACTIONS(1809), - [anon_sym_u8] = ACTIONS(1809), - [anon_sym_i8] = ACTIONS(1809), - [anon_sym_u16] = ACTIONS(1809), - [anon_sym_i16] = ACTIONS(1809), - [anon_sym_u32] = ACTIONS(1809), - [anon_sym_i32] = ACTIONS(1809), - [anon_sym_u64] = ACTIONS(1809), - [anon_sym_i64] = ACTIONS(1809), - [anon_sym_u128] = ACTIONS(1809), - [anon_sym_i128] = ACTIONS(1809), - [anon_sym_isize] = ACTIONS(1809), - [anon_sym_usize] = ACTIONS(1809), - [anon_sym_f32] = ACTIONS(1809), - [anon_sym_f64] = ACTIONS(1809), - [anon_sym_bool] = ACTIONS(1809), - [anon_sym_str] = ACTIONS(1809), - [anon_sym_char] = ACTIONS(1809), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1807), - [sym_self] = ACTIONS(1809), - [sym_super] = ACTIONS(1809), - [sym_crate] = ACTIONS(1809), - [sym_metavariable] = ACTIONS(1807), - [sym_grit_metavariable] = ACTIONS(1807), - [sym_raw_string_literal] = ACTIONS(1807), - [sym_float_literal] = ACTIONS(1807), + [ts_builtin_sym_end] = ACTIONS(1793), + [sym__primitive_identifier] = ACTIONS(1795), + [anon_sym_SEMI] = ACTIONS(1793), + [anon_sym_macro_rules_BANG] = ACTIONS(1793), + [anon_sym_LPAREN] = ACTIONS(1793), + [anon_sym_LBRACE] = ACTIONS(1793), + [anon_sym_RBRACE] = ACTIONS(1793), + [anon_sym_LBRACK] = ACTIONS(1793), + [anon_sym_STAR] = ACTIONS(1793), + [anon_sym_SQUOTE] = ACTIONS(1795), + [anon_sym_async] = ACTIONS(1795), + [anon_sym_break] = ACTIONS(1795), + [anon_sym_const] = ACTIONS(1795), + [anon_sym_continue] = ACTIONS(1795), + [anon_sym_default] = ACTIONS(1795), + [anon_sym_enum] = ACTIONS(1795), + [anon_sym_fn] = ACTIONS(1795), + [anon_sym_for] = ACTIONS(1795), + [anon_sym_if] = ACTIONS(1795), + [anon_sym_impl] = ACTIONS(1795), + [anon_sym_let] = ACTIONS(1795), + [anon_sym_loop] = ACTIONS(1795), + [anon_sym_match] = ACTIONS(1795), + [anon_sym_mod] = ACTIONS(1795), + [anon_sym_pub] = ACTIONS(1795), + [anon_sym_return] = ACTIONS(1795), + [anon_sym_static] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(1795), + [anon_sym_trait] = ACTIONS(1795), + [anon_sym_type] = ACTIONS(1795), + [anon_sym_union] = ACTIONS(1795), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_use] = ACTIONS(1795), + [anon_sym_while] = ACTIONS(1795), + [anon_sym_POUND] = ACTIONS(1793), + [anon_sym_BANG] = ACTIONS(1793), + [anon_sym_extern] = ACTIONS(1795), + [anon_sym_LT] = ACTIONS(1793), + [anon_sym_COLON_COLON] = ACTIONS(1793), + [anon_sym_AMP] = ACTIONS(1793), + [anon_sym_DOT_DOT] = ACTIONS(1793), + [anon_sym_DASH] = ACTIONS(1793), + [anon_sym_PIPE] = ACTIONS(1793), + [anon_sym_yield] = ACTIONS(1795), + [anon_sym_move] = ACTIONS(1795), + [sym_integer_literal] = ACTIONS(1793), + [aux_sym_string_literal_token1] = ACTIONS(1793), + [sym_char_literal] = ACTIONS(1793), + [anon_sym_true] = ACTIONS(1795), + [anon_sym_false] = ACTIONS(1795), + [anon_sym_u8] = ACTIONS(1795), + [anon_sym_i8] = ACTIONS(1795), + [anon_sym_u16] = ACTIONS(1795), + [anon_sym_i16] = ACTIONS(1795), + [anon_sym_u32] = ACTIONS(1795), + [anon_sym_i32] = ACTIONS(1795), + [anon_sym_u64] = ACTIONS(1795), + [anon_sym_i64] = ACTIONS(1795), + [anon_sym_u128] = ACTIONS(1795), + [anon_sym_i128] = ACTIONS(1795), + [anon_sym_isize] = ACTIONS(1795), + [anon_sym_usize] = ACTIONS(1795), + [anon_sym_f32] = ACTIONS(1795), + [anon_sym_f64] = ACTIONS(1795), + [anon_sym_bool] = ACTIONS(1795), + [anon_sym_str] = ACTIONS(1795), + [anon_sym_char] = ACTIONS(1795), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(1793), + [sym_self] = ACTIONS(1795), + [sym_super] = ACTIONS(1795), + [sym_crate] = ACTIONS(1795), + [sym_metavariable] = ACTIONS(1793), + [sym_grit_metavariable] = ACTIONS(1793), + [sym_raw_string_literal] = ACTIONS(1793), + [sym_float_literal] = ACTIONS(1793), [sym_block_comment] = ACTIONS(3), }, [368] = { - [ts_builtin_sym_end] = ACTIONS(1811), - [sym__primitive_identifier] = ACTIONS(1813), - [anon_sym_SEMI] = ACTIONS(1811), - [anon_sym_macro_rules_BANG] = ACTIONS(1811), - [anon_sym_LPAREN] = ACTIONS(1811), - [anon_sym_LBRACE] = ACTIONS(1811), - [anon_sym_RBRACE] = ACTIONS(1811), - [anon_sym_LBRACK] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1811), - [anon_sym_SQUOTE] = ACTIONS(1813), - [anon_sym_async] = ACTIONS(1813), - [anon_sym_break] = ACTIONS(1813), - [anon_sym_const] = ACTIONS(1813), - [anon_sym_continue] = ACTIONS(1813), - [anon_sym_default] = ACTIONS(1813), - [anon_sym_enum] = ACTIONS(1813), - [anon_sym_fn] = ACTIONS(1813), - [anon_sym_for] = ACTIONS(1813), - [anon_sym_if] = ACTIONS(1813), - [anon_sym_impl] = ACTIONS(1813), - [anon_sym_let] = ACTIONS(1813), - [anon_sym_loop] = ACTIONS(1813), - [anon_sym_match] = ACTIONS(1813), - [anon_sym_mod] = ACTIONS(1813), - [anon_sym_pub] = ACTIONS(1813), - [anon_sym_return] = ACTIONS(1813), - [anon_sym_static] = ACTIONS(1813), - [anon_sym_struct] = ACTIONS(1813), - [anon_sym_trait] = ACTIONS(1813), - [anon_sym_type] = ACTIONS(1813), - [anon_sym_union] = ACTIONS(1813), - [anon_sym_unsafe] = ACTIONS(1813), - [anon_sym_use] = ACTIONS(1813), - [anon_sym_while] = ACTIONS(1813), - [anon_sym_POUND] = ACTIONS(1811), - [anon_sym_BANG] = ACTIONS(1811), - [anon_sym_extern] = ACTIONS(1813), - [anon_sym_LT] = ACTIONS(1811), - [anon_sym_COLON_COLON] = ACTIONS(1811), - [anon_sym_AMP] = ACTIONS(1811), - [anon_sym_DOT_DOT] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_PIPE] = ACTIONS(1811), - [anon_sym_yield] = ACTIONS(1813), - [anon_sym_move] = ACTIONS(1813), - [sym_integer_literal] = ACTIONS(1811), - [aux_sym_string_literal_token1] = ACTIONS(1811), - [sym_char_literal] = ACTIONS(1811), - [anon_sym_true] = ACTIONS(1813), - [anon_sym_false] = ACTIONS(1813), - [anon_sym_u8] = ACTIONS(1813), - [anon_sym_i8] = ACTIONS(1813), - [anon_sym_u16] = ACTIONS(1813), - [anon_sym_i16] = ACTIONS(1813), - [anon_sym_u32] = ACTIONS(1813), - [anon_sym_i32] = ACTIONS(1813), - [anon_sym_u64] = ACTIONS(1813), - [anon_sym_i64] = ACTIONS(1813), - [anon_sym_u128] = ACTIONS(1813), - [anon_sym_i128] = ACTIONS(1813), - [anon_sym_isize] = ACTIONS(1813), - [anon_sym_usize] = ACTIONS(1813), - [anon_sym_f32] = ACTIONS(1813), - [anon_sym_f64] = ACTIONS(1813), - [anon_sym_bool] = ACTIONS(1813), - [anon_sym_str] = ACTIONS(1813), - [anon_sym_char] = ACTIONS(1813), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1811), - [sym_self] = ACTIONS(1813), - [sym_super] = ACTIONS(1813), - [sym_crate] = ACTIONS(1813), - [sym_metavariable] = ACTIONS(1811), - [sym_grit_metavariable] = ACTIONS(1811), - [sym_raw_string_literal] = ACTIONS(1811), - [sym_float_literal] = ACTIONS(1811), + [ts_builtin_sym_end] = ACTIONS(1797), + [sym__primitive_identifier] = ACTIONS(1799), + [anon_sym_SEMI] = ACTIONS(1797), + [anon_sym_macro_rules_BANG] = ACTIONS(1797), + [anon_sym_LPAREN] = ACTIONS(1797), + [anon_sym_LBRACE] = ACTIONS(1797), + [anon_sym_RBRACE] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1797), + [anon_sym_STAR] = ACTIONS(1797), + [anon_sym_SQUOTE] = ACTIONS(1799), + [anon_sym_async] = ACTIONS(1799), + [anon_sym_break] = ACTIONS(1799), + [anon_sym_const] = ACTIONS(1799), + [anon_sym_continue] = ACTIONS(1799), + [anon_sym_default] = ACTIONS(1799), + [anon_sym_enum] = ACTIONS(1799), + [anon_sym_fn] = ACTIONS(1799), + [anon_sym_for] = ACTIONS(1799), + [anon_sym_if] = ACTIONS(1799), + [anon_sym_impl] = ACTIONS(1799), + [anon_sym_let] = ACTIONS(1799), + [anon_sym_loop] = ACTIONS(1799), + [anon_sym_match] = ACTIONS(1799), + [anon_sym_mod] = ACTIONS(1799), + [anon_sym_pub] = ACTIONS(1799), + [anon_sym_return] = ACTIONS(1799), + [anon_sym_static] = ACTIONS(1799), + [anon_sym_struct] = ACTIONS(1799), + [anon_sym_trait] = ACTIONS(1799), + [anon_sym_type] = ACTIONS(1799), + [anon_sym_union] = ACTIONS(1799), + [anon_sym_unsafe] = ACTIONS(1799), + [anon_sym_use] = ACTIONS(1799), + [anon_sym_while] = ACTIONS(1799), + [anon_sym_POUND] = ACTIONS(1797), + [anon_sym_BANG] = ACTIONS(1797), + [anon_sym_extern] = ACTIONS(1799), + [anon_sym_LT] = ACTIONS(1797), + [anon_sym_COLON_COLON] = ACTIONS(1797), + [anon_sym_AMP] = ACTIONS(1797), + [anon_sym_DOT_DOT] = ACTIONS(1797), + [anon_sym_DASH] = ACTIONS(1797), + [anon_sym_PIPE] = ACTIONS(1797), + [anon_sym_yield] = ACTIONS(1799), + [anon_sym_move] = ACTIONS(1799), + [sym_integer_literal] = ACTIONS(1797), + [aux_sym_string_literal_token1] = ACTIONS(1797), + [sym_char_literal] = ACTIONS(1797), + [anon_sym_true] = ACTIONS(1799), + [anon_sym_false] = ACTIONS(1799), + [anon_sym_u8] = ACTIONS(1799), + [anon_sym_i8] = ACTIONS(1799), + [anon_sym_u16] = ACTIONS(1799), + [anon_sym_i16] = ACTIONS(1799), + [anon_sym_u32] = ACTIONS(1799), + [anon_sym_i32] = ACTIONS(1799), + [anon_sym_u64] = ACTIONS(1799), + [anon_sym_i64] = ACTIONS(1799), + [anon_sym_u128] = ACTIONS(1799), + [anon_sym_i128] = ACTIONS(1799), + [anon_sym_isize] = ACTIONS(1799), + [anon_sym_usize] = ACTIONS(1799), + [anon_sym_f32] = ACTIONS(1799), + [anon_sym_f64] = ACTIONS(1799), + [anon_sym_bool] = ACTIONS(1799), + [anon_sym_str] = ACTIONS(1799), + [anon_sym_char] = ACTIONS(1799), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(1797), + [sym_self] = ACTIONS(1799), + [sym_super] = ACTIONS(1799), + [sym_crate] = ACTIONS(1799), + [sym_metavariable] = ACTIONS(1797), + [sym_grit_metavariable] = ACTIONS(1797), + [sym_raw_string_literal] = ACTIONS(1797), + [sym_float_literal] = ACTIONS(1797), [sym_block_comment] = ACTIONS(3), }, [369] = { - [ts_builtin_sym_end] = ACTIONS(1815), - [sym__primitive_identifier] = ACTIONS(1817), - [anon_sym_SEMI] = ACTIONS(1815), - [anon_sym_macro_rules_BANG] = ACTIONS(1815), - [anon_sym_LPAREN] = ACTIONS(1815), - [anon_sym_LBRACE] = ACTIONS(1815), - [anon_sym_RBRACE] = ACTIONS(1815), - [anon_sym_LBRACK] = ACTIONS(1815), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_SQUOTE] = ACTIONS(1817), - [anon_sym_async] = ACTIONS(1817), - [anon_sym_break] = ACTIONS(1817), - [anon_sym_const] = ACTIONS(1817), - [anon_sym_continue] = ACTIONS(1817), - [anon_sym_default] = ACTIONS(1817), - [anon_sym_enum] = ACTIONS(1817), - [anon_sym_fn] = ACTIONS(1817), - [anon_sym_for] = ACTIONS(1817), - [anon_sym_if] = ACTIONS(1817), - [anon_sym_impl] = ACTIONS(1817), - [anon_sym_let] = ACTIONS(1817), - [anon_sym_loop] = ACTIONS(1817), - [anon_sym_match] = ACTIONS(1817), - [anon_sym_mod] = ACTIONS(1817), - [anon_sym_pub] = ACTIONS(1817), - [anon_sym_return] = ACTIONS(1817), - [anon_sym_static] = ACTIONS(1817), - [anon_sym_struct] = ACTIONS(1817), - [anon_sym_trait] = ACTIONS(1817), - [anon_sym_type] = ACTIONS(1817), - [anon_sym_union] = ACTIONS(1817), - [anon_sym_unsafe] = ACTIONS(1817), - [anon_sym_use] = ACTIONS(1817), - [anon_sym_while] = ACTIONS(1817), - [anon_sym_POUND] = ACTIONS(1815), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_extern] = ACTIONS(1817), - [anon_sym_LT] = ACTIONS(1815), - [anon_sym_COLON_COLON] = ACTIONS(1815), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_DOT_DOT] = ACTIONS(1815), - [anon_sym_DASH] = ACTIONS(1815), - [anon_sym_PIPE] = ACTIONS(1815), - [anon_sym_yield] = ACTIONS(1817), - [anon_sym_move] = ACTIONS(1817), - [sym_integer_literal] = ACTIONS(1815), - [aux_sym_string_literal_token1] = ACTIONS(1815), - [sym_char_literal] = ACTIONS(1815), - [anon_sym_true] = ACTIONS(1817), - [anon_sym_false] = ACTIONS(1817), - [anon_sym_u8] = ACTIONS(1817), - [anon_sym_i8] = ACTIONS(1817), - [anon_sym_u16] = ACTIONS(1817), - [anon_sym_i16] = ACTIONS(1817), - [anon_sym_u32] = ACTIONS(1817), - [anon_sym_i32] = ACTIONS(1817), - [anon_sym_u64] = ACTIONS(1817), - [anon_sym_i64] = ACTIONS(1817), - [anon_sym_u128] = ACTIONS(1817), - [anon_sym_i128] = ACTIONS(1817), - [anon_sym_isize] = ACTIONS(1817), - [anon_sym_usize] = ACTIONS(1817), - [anon_sym_f32] = ACTIONS(1817), - [anon_sym_f64] = ACTIONS(1817), - [anon_sym_bool] = ACTIONS(1817), - [anon_sym_str] = ACTIONS(1817), - [anon_sym_char] = ACTIONS(1817), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1815), - [sym_self] = ACTIONS(1817), - [sym_super] = ACTIONS(1817), - [sym_crate] = ACTIONS(1817), - [sym_metavariable] = ACTIONS(1815), - [sym_grit_metavariable] = ACTIONS(1815), - [sym_raw_string_literal] = ACTIONS(1815), - [sym_float_literal] = ACTIONS(1815), + [ts_builtin_sym_end] = ACTIONS(1801), + [sym__primitive_identifier] = ACTIONS(1803), + [anon_sym_SEMI] = ACTIONS(1801), + [anon_sym_macro_rules_BANG] = ACTIONS(1801), + [anon_sym_LPAREN] = ACTIONS(1801), + [anon_sym_LBRACE] = ACTIONS(1801), + [anon_sym_RBRACE] = ACTIONS(1801), + [anon_sym_LBRACK] = ACTIONS(1801), + [anon_sym_STAR] = ACTIONS(1801), + [anon_sym_SQUOTE] = ACTIONS(1803), + [anon_sym_async] = ACTIONS(1803), + [anon_sym_break] = ACTIONS(1803), + [anon_sym_const] = ACTIONS(1803), + [anon_sym_continue] = ACTIONS(1803), + [anon_sym_default] = ACTIONS(1803), + [anon_sym_enum] = ACTIONS(1803), + [anon_sym_fn] = ACTIONS(1803), + [anon_sym_for] = ACTIONS(1803), + [anon_sym_if] = ACTIONS(1803), + [anon_sym_impl] = ACTIONS(1803), + [anon_sym_let] = ACTIONS(1803), + [anon_sym_loop] = ACTIONS(1803), + [anon_sym_match] = ACTIONS(1803), + [anon_sym_mod] = ACTIONS(1803), + [anon_sym_pub] = ACTIONS(1803), + [anon_sym_return] = ACTIONS(1803), + [anon_sym_static] = ACTIONS(1803), + [anon_sym_struct] = ACTIONS(1803), + [anon_sym_trait] = ACTIONS(1803), + [anon_sym_type] = ACTIONS(1803), + [anon_sym_union] = ACTIONS(1803), + [anon_sym_unsafe] = ACTIONS(1803), + [anon_sym_use] = ACTIONS(1803), + [anon_sym_while] = ACTIONS(1803), + [anon_sym_POUND] = ACTIONS(1801), + [anon_sym_BANG] = ACTIONS(1801), + [anon_sym_extern] = ACTIONS(1803), + [anon_sym_LT] = ACTIONS(1801), + [anon_sym_COLON_COLON] = ACTIONS(1801), + [anon_sym_AMP] = ACTIONS(1801), + [anon_sym_DOT_DOT] = ACTIONS(1801), + [anon_sym_DASH] = ACTIONS(1801), + [anon_sym_PIPE] = ACTIONS(1801), + [anon_sym_yield] = ACTIONS(1803), + [anon_sym_move] = ACTIONS(1803), + [sym_integer_literal] = ACTIONS(1801), + [aux_sym_string_literal_token1] = ACTIONS(1801), + [sym_char_literal] = ACTIONS(1801), + [anon_sym_true] = ACTIONS(1803), + [anon_sym_false] = ACTIONS(1803), + [anon_sym_u8] = ACTIONS(1803), + [anon_sym_i8] = ACTIONS(1803), + [anon_sym_u16] = ACTIONS(1803), + [anon_sym_i16] = ACTIONS(1803), + [anon_sym_u32] = ACTIONS(1803), + [anon_sym_i32] = ACTIONS(1803), + [anon_sym_u64] = ACTIONS(1803), + [anon_sym_i64] = ACTIONS(1803), + [anon_sym_u128] = ACTIONS(1803), + [anon_sym_i128] = ACTIONS(1803), + [anon_sym_isize] = ACTIONS(1803), + [anon_sym_usize] = ACTIONS(1803), + [anon_sym_f32] = ACTIONS(1803), + [anon_sym_f64] = ACTIONS(1803), + [anon_sym_bool] = ACTIONS(1803), + [anon_sym_str] = ACTIONS(1803), + [anon_sym_char] = ACTIONS(1803), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(1801), + [sym_self] = ACTIONS(1803), + [sym_super] = ACTIONS(1803), + [sym_crate] = ACTIONS(1803), + [sym_metavariable] = ACTIONS(1801), + [sym_grit_metavariable] = ACTIONS(1801), + [sym_raw_string_literal] = ACTIONS(1801), + [sym_float_literal] = ACTIONS(1801), [sym_block_comment] = ACTIONS(3), }, [370] = { - [ts_builtin_sym_end] = ACTIONS(1819), - [sym__primitive_identifier] = ACTIONS(1821), - [anon_sym_SEMI] = ACTIONS(1819), - [anon_sym_macro_rules_BANG] = ACTIONS(1819), - [anon_sym_LPAREN] = ACTIONS(1819), - [anon_sym_LBRACE] = ACTIONS(1819), - [anon_sym_RBRACE] = ACTIONS(1819), - [anon_sym_LBRACK] = ACTIONS(1819), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_SQUOTE] = ACTIONS(1821), - [anon_sym_async] = ACTIONS(1821), - [anon_sym_break] = ACTIONS(1821), - [anon_sym_const] = ACTIONS(1821), - [anon_sym_continue] = ACTIONS(1821), - [anon_sym_default] = ACTIONS(1821), - [anon_sym_enum] = ACTIONS(1821), - [anon_sym_fn] = ACTIONS(1821), - [anon_sym_for] = ACTIONS(1821), - [anon_sym_if] = ACTIONS(1821), - [anon_sym_impl] = ACTIONS(1821), - [anon_sym_let] = ACTIONS(1821), - [anon_sym_loop] = ACTIONS(1821), - [anon_sym_match] = ACTIONS(1821), - [anon_sym_mod] = ACTIONS(1821), - [anon_sym_pub] = ACTIONS(1821), - [anon_sym_return] = ACTIONS(1821), - [anon_sym_static] = ACTIONS(1821), - [anon_sym_struct] = ACTIONS(1821), - [anon_sym_trait] = ACTIONS(1821), - [anon_sym_type] = ACTIONS(1821), - [anon_sym_union] = ACTIONS(1821), - [anon_sym_unsafe] = ACTIONS(1821), - [anon_sym_use] = ACTIONS(1821), - [anon_sym_while] = ACTIONS(1821), - [anon_sym_POUND] = ACTIONS(1819), - [anon_sym_BANG] = ACTIONS(1819), - [anon_sym_extern] = ACTIONS(1821), - [anon_sym_LT] = ACTIONS(1819), - [anon_sym_COLON_COLON] = ACTIONS(1819), - [anon_sym_AMP] = ACTIONS(1819), - [anon_sym_DOT_DOT] = ACTIONS(1819), - [anon_sym_DASH] = ACTIONS(1819), - [anon_sym_PIPE] = ACTIONS(1819), - [anon_sym_yield] = ACTIONS(1821), - [anon_sym_move] = ACTIONS(1821), - [sym_integer_literal] = ACTIONS(1819), - [aux_sym_string_literal_token1] = ACTIONS(1819), - [sym_char_literal] = ACTIONS(1819), - [anon_sym_true] = ACTIONS(1821), - [anon_sym_false] = ACTIONS(1821), - [anon_sym_u8] = ACTIONS(1821), - [anon_sym_i8] = ACTIONS(1821), - [anon_sym_u16] = ACTIONS(1821), - [anon_sym_i16] = ACTIONS(1821), - [anon_sym_u32] = ACTIONS(1821), - [anon_sym_i32] = ACTIONS(1821), - [anon_sym_u64] = ACTIONS(1821), - [anon_sym_i64] = ACTIONS(1821), - [anon_sym_u128] = ACTIONS(1821), - [anon_sym_i128] = ACTIONS(1821), - [anon_sym_isize] = ACTIONS(1821), - [anon_sym_usize] = ACTIONS(1821), - [anon_sym_f32] = ACTIONS(1821), - [anon_sym_f64] = ACTIONS(1821), - [anon_sym_bool] = ACTIONS(1821), - [anon_sym_str] = ACTIONS(1821), - [anon_sym_char] = ACTIONS(1821), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1819), - [sym_self] = ACTIONS(1821), - [sym_super] = ACTIONS(1821), - [sym_crate] = ACTIONS(1821), - [sym_metavariable] = ACTIONS(1819), - [sym_grit_metavariable] = ACTIONS(1819), - [sym_raw_string_literal] = ACTIONS(1819), - [sym_float_literal] = ACTIONS(1819), + [ts_builtin_sym_end] = ACTIONS(1805), + [sym__primitive_identifier] = ACTIONS(1807), + [anon_sym_SEMI] = ACTIONS(1805), + [anon_sym_macro_rules_BANG] = ACTIONS(1805), + [anon_sym_LPAREN] = ACTIONS(1805), + [anon_sym_LBRACE] = ACTIONS(1805), + [anon_sym_RBRACE] = ACTIONS(1805), + [anon_sym_LBRACK] = ACTIONS(1805), + [anon_sym_STAR] = ACTIONS(1805), + [anon_sym_SQUOTE] = ACTIONS(1807), + [anon_sym_async] = ACTIONS(1807), + [anon_sym_break] = ACTIONS(1807), + [anon_sym_const] = ACTIONS(1807), + [anon_sym_continue] = ACTIONS(1807), + [anon_sym_default] = ACTIONS(1807), + [anon_sym_enum] = ACTIONS(1807), + [anon_sym_fn] = ACTIONS(1807), + [anon_sym_for] = ACTIONS(1807), + [anon_sym_if] = ACTIONS(1807), + [anon_sym_impl] = ACTIONS(1807), + [anon_sym_let] = ACTIONS(1807), + [anon_sym_loop] = ACTIONS(1807), + [anon_sym_match] = ACTIONS(1807), + [anon_sym_mod] = ACTIONS(1807), + [anon_sym_pub] = ACTIONS(1807), + [anon_sym_return] = ACTIONS(1807), + [anon_sym_static] = ACTIONS(1807), + [anon_sym_struct] = ACTIONS(1807), + [anon_sym_trait] = ACTIONS(1807), + [anon_sym_type] = ACTIONS(1807), + [anon_sym_union] = ACTIONS(1807), + [anon_sym_unsafe] = ACTIONS(1807), + [anon_sym_use] = ACTIONS(1807), + [anon_sym_while] = ACTIONS(1807), + [anon_sym_POUND] = ACTIONS(1805), + [anon_sym_BANG] = ACTIONS(1805), + [anon_sym_extern] = ACTIONS(1807), + [anon_sym_LT] = ACTIONS(1805), + [anon_sym_COLON_COLON] = ACTIONS(1805), + [anon_sym_AMP] = ACTIONS(1805), + [anon_sym_DOT_DOT] = ACTIONS(1805), + [anon_sym_DASH] = ACTIONS(1805), + [anon_sym_PIPE] = ACTIONS(1805), + [anon_sym_yield] = ACTIONS(1807), + [anon_sym_move] = ACTIONS(1807), + [sym_integer_literal] = ACTIONS(1805), + [aux_sym_string_literal_token1] = ACTIONS(1805), + [sym_char_literal] = ACTIONS(1805), + [anon_sym_true] = ACTIONS(1807), + [anon_sym_false] = ACTIONS(1807), + [anon_sym_u8] = ACTIONS(1807), + [anon_sym_i8] = ACTIONS(1807), + [anon_sym_u16] = ACTIONS(1807), + [anon_sym_i16] = ACTIONS(1807), + [anon_sym_u32] = ACTIONS(1807), + [anon_sym_i32] = ACTIONS(1807), + [anon_sym_u64] = ACTIONS(1807), + [anon_sym_i64] = ACTIONS(1807), + [anon_sym_u128] = ACTIONS(1807), + [anon_sym_i128] = ACTIONS(1807), + [anon_sym_isize] = ACTIONS(1807), + [anon_sym_usize] = ACTIONS(1807), + [anon_sym_f32] = ACTIONS(1807), + [anon_sym_f64] = ACTIONS(1807), + [anon_sym_bool] = ACTIONS(1807), + [anon_sym_str] = ACTIONS(1807), + [anon_sym_char] = ACTIONS(1807), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(1805), + [sym_self] = ACTIONS(1807), + [sym_super] = ACTIONS(1807), + [sym_crate] = ACTIONS(1807), + [sym_metavariable] = ACTIONS(1805), + [sym_grit_metavariable] = ACTIONS(1805), + [sym_raw_string_literal] = ACTIONS(1805), + [sym_float_literal] = ACTIONS(1805), [sym_block_comment] = ACTIONS(3), }, [371] = { - [ts_builtin_sym_end] = ACTIONS(1823), - [sym__primitive_identifier] = ACTIONS(1825), - [anon_sym_SEMI] = ACTIONS(1823), - [anon_sym_macro_rules_BANG] = ACTIONS(1823), - [anon_sym_LPAREN] = ACTIONS(1823), - [anon_sym_LBRACE] = ACTIONS(1823), - [anon_sym_RBRACE] = ACTIONS(1823), - [anon_sym_LBRACK] = ACTIONS(1823), - [anon_sym_STAR] = ACTIONS(1823), - [anon_sym_SQUOTE] = ACTIONS(1825), - [anon_sym_async] = ACTIONS(1825), - [anon_sym_break] = ACTIONS(1825), - [anon_sym_const] = ACTIONS(1825), - [anon_sym_continue] = ACTIONS(1825), - [anon_sym_default] = ACTIONS(1825), - [anon_sym_enum] = ACTIONS(1825), - [anon_sym_fn] = ACTIONS(1825), - [anon_sym_for] = ACTIONS(1825), - [anon_sym_if] = ACTIONS(1825), - [anon_sym_impl] = ACTIONS(1825), - [anon_sym_let] = ACTIONS(1825), - [anon_sym_loop] = ACTIONS(1825), - [anon_sym_match] = ACTIONS(1825), - [anon_sym_mod] = ACTIONS(1825), - [anon_sym_pub] = ACTIONS(1825), - [anon_sym_return] = ACTIONS(1825), - [anon_sym_static] = ACTIONS(1825), - [anon_sym_struct] = ACTIONS(1825), - [anon_sym_trait] = ACTIONS(1825), - [anon_sym_type] = ACTIONS(1825), - [anon_sym_union] = ACTIONS(1825), - [anon_sym_unsafe] = ACTIONS(1825), - [anon_sym_use] = ACTIONS(1825), - [anon_sym_while] = ACTIONS(1825), - [anon_sym_POUND] = ACTIONS(1823), - [anon_sym_BANG] = ACTIONS(1823), - [anon_sym_extern] = ACTIONS(1825), - [anon_sym_LT] = ACTIONS(1823), - [anon_sym_COLON_COLON] = ACTIONS(1823), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_DOT_DOT] = ACTIONS(1823), - [anon_sym_DASH] = ACTIONS(1823), - [anon_sym_PIPE] = ACTIONS(1823), - [anon_sym_yield] = ACTIONS(1825), - [anon_sym_move] = ACTIONS(1825), - [sym_integer_literal] = ACTIONS(1823), - [aux_sym_string_literal_token1] = ACTIONS(1823), - [sym_char_literal] = ACTIONS(1823), - [anon_sym_true] = ACTIONS(1825), - [anon_sym_false] = ACTIONS(1825), - [anon_sym_u8] = ACTIONS(1825), - [anon_sym_i8] = ACTIONS(1825), - [anon_sym_u16] = ACTIONS(1825), - [anon_sym_i16] = ACTIONS(1825), - [anon_sym_u32] = ACTIONS(1825), - [anon_sym_i32] = ACTIONS(1825), - [anon_sym_u64] = ACTIONS(1825), - [anon_sym_i64] = ACTIONS(1825), - [anon_sym_u128] = ACTIONS(1825), - [anon_sym_i128] = ACTIONS(1825), - [anon_sym_isize] = ACTIONS(1825), - [anon_sym_usize] = ACTIONS(1825), - [anon_sym_f32] = ACTIONS(1825), - [anon_sym_f64] = ACTIONS(1825), - [anon_sym_bool] = ACTIONS(1825), - [anon_sym_str] = ACTIONS(1825), - [anon_sym_char] = ACTIONS(1825), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1823), - [sym_self] = ACTIONS(1825), - [sym_super] = ACTIONS(1825), - [sym_crate] = ACTIONS(1825), - [sym_metavariable] = ACTIONS(1823), - [sym_grit_metavariable] = ACTIONS(1823), - [sym_raw_string_literal] = ACTIONS(1823), - [sym_float_literal] = ACTIONS(1823), + [ts_builtin_sym_end] = ACTIONS(1809), + [sym__primitive_identifier] = ACTIONS(1811), + [anon_sym_SEMI] = ACTIONS(1809), + [anon_sym_macro_rules_BANG] = ACTIONS(1809), + [anon_sym_LPAREN] = ACTIONS(1809), + [anon_sym_LBRACE] = ACTIONS(1809), + [anon_sym_RBRACE] = ACTIONS(1809), + [anon_sym_LBRACK] = ACTIONS(1809), + [anon_sym_STAR] = ACTIONS(1809), + [anon_sym_SQUOTE] = ACTIONS(1811), + [anon_sym_async] = ACTIONS(1811), + [anon_sym_break] = ACTIONS(1811), + [anon_sym_const] = ACTIONS(1811), + [anon_sym_continue] = ACTIONS(1811), + [anon_sym_default] = ACTIONS(1811), + [anon_sym_enum] = ACTIONS(1811), + [anon_sym_fn] = ACTIONS(1811), + [anon_sym_for] = ACTIONS(1811), + [anon_sym_if] = ACTIONS(1811), + [anon_sym_impl] = ACTIONS(1811), + [anon_sym_let] = ACTIONS(1811), + [anon_sym_loop] = ACTIONS(1811), + [anon_sym_match] = ACTIONS(1811), + [anon_sym_mod] = ACTIONS(1811), + [anon_sym_pub] = ACTIONS(1811), + [anon_sym_return] = ACTIONS(1811), + [anon_sym_static] = ACTIONS(1811), + [anon_sym_struct] = ACTIONS(1811), + [anon_sym_trait] = ACTIONS(1811), + [anon_sym_type] = ACTIONS(1811), + [anon_sym_union] = ACTIONS(1811), + [anon_sym_unsafe] = ACTIONS(1811), + [anon_sym_use] = ACTIONS(1811), + [anon_sym_while] = ACTIONS(1811), + [anon_sym_POUND] = ACTIONS(1809), + [anon_sym_BANG] = ACTIONS(1809), + [anon_sym_extern] = ACTIONS(1811), + [anon_sym_LT] = ACTIONS(1809), + [anon_sym_COLON_COLON] = ACTIONS(1809), + [anon_sym_AMP] = ACTIONS(1809), + [anon_sym_DOT_DOT] = ACTIONS(1809), + [anon_sym_DASH] = ACTIONS(1809), + [anon_sym_PIPE] = ACTIONS(1809), + [anon_sym_yield] = ACTIONS(1811), + [anon_sym_move] = ACTIONS(1811), + [sym_integer_literal] = ACTIONS(1809), + [aux_sym_string_literal_token1] = ACTIONS(1809), + [sym_char_literal] = ACTIONS(1809), + [anon_sym_true] = ACTIONS(1811), + [anon_sym_false] = ACTIONS(1811), + [anon_sym_u8] = ACTIONS(1811), + [anon_sym_i8] = ACTIONS(1811), + [anon_sym_u16] = ACTIONS(1811), + [anon_sym_i16] = ACTIONS(1811), + [anon_sym_u32] = ACTIONS(1811), + [anon_sym_i32] = ACTIONS(1811), + [anon_sym_u64] = ACTIONS(1811), + [anon_sym_i64] = ACTIONS(1811), + [anon_sym_u128] = ACTIONS(1811), + [anon_sym_i128] = ACTIONS(1811), + [anon_sym_isize] = ACTIONS(1811), + [anon_sym_usize] = ACTIONS(1811), + [anon_sym_f32] = ACTIONS(1811), + [anon_sym_f64] = ACTIONS(1811), + [anon_sym_bool] = ACTIONS(1811), + [anon_sym_str] = ACTIONS(1811), + [anon_sym_char] = ACTIONS(1811), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(1809), + [sym_self] = ACTIONS(1811), + [sym_super] = ACTIONS(1811), + [sym_crate] = ACTIONS(1811), + [sym_metavariable] = ACTIONS(1809), + [sym_grit_metavariable] = ACTIONS(1809), + [sym_raw_string_literal] = ACTIONS(1809), + [sym_float_literal] = ACTIONS(1809), [sym_block_comment] = ACTIONS(3), }, [372] = { - [ts_builtin_sym_end] = ACTIONS(1827), - [sym__primitive_identifier] = ACTIONS(1829), - [anon_sym_SEMI] = ACTIONS(1827), - [anon_sym_macro_rules_BANG] = ACTIONS(1827), - [anon_sym_LPAREN] = ACTIONS(1827), - [anon_sym_LBRACE] = ACTIONS(1827), - [anon_sym_RBRACE] = ACTIONS(1827), - [anon_sym_LBRACK] = ACTIONS(1827), - [anon_sym_STAR] = ACTIONS(1827), - [anon_sym_SQUOTE] = ACTIONS(1829), - [anon_sym_async] = ACTIONS(1829), - [anon_sym_break] = ACTIONS(1829), - [anon_sym_const] = ACTIONS(1829), - [anon_sym_continue] = ACTIONS(1829), - [anon_sym_default] = ACTIONS(1829), - [anon_sym_enum] = ACTIONS(1829), - [anon_sym_fn] = ACTIONS(1829), - [anon_sym_for] = ACTIONS(1829), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_impl] = ACTIONS(1829), - [anon_sym_let] = ACTIONS(1829), - [anon_sym_loop] = ACTIONS(1829), - [anon_sym_match] = ACTIONS(1829), - [anon_sym_mod] = ACTIONS(1829), - [anon_sym_pub] = ACTIONS(1829), - [anon_sym_return] = ACTIONS(1829), - [anon_sym_static] = ACTIONS(1829), - [anon_sym_struct] = ACTIONS(1829), - [anon_sym_trait] = ACTIONS(1829), - [anon_sym_type] = ACTIONS(1829), - [anon_sym_union] = ACTIONS(1829), - [anon_sym_unsafe] = ACTIONS(1829), - [anon_sym_use] = ACTIONS(1829), - [anon_sym_while] = ACTIONS(1829), - [anon_sym_POUND] = ACTIONS(1827), - [anon_sym_BANG] = ACTIONS(1827), - [anon_sym_extern] = ACTIONS(1829), - [anon_sym_LT] = ACTIONS(1827), - [anon_sym_COLON_COLON] = ACTIONS(1827), - [anon_sym_AMP] = ACTIONS(1827), - [anon_sym_DOT_DOT] = ACTIONS(1827), - [anon_sym_DASH] = ACTIONS(1827), - [anon_sym_PIPE] = ACTIONS(1827), - [anon_sym_yield] = ACTIONS(1829), - [anon_sym_move] = ACTIONS(1829), - [sym_integer_literal] = ACTIONS(1827), - [aux_sym_string_literal_token1] = ACTIONS(1827), - [sym_char_literal] = ACTIONS(1827), - [anon_sym_true] = ACTIONS(1829), - [anon_sym_false] = ACTIONS(1829), - [anon_sym_u8] = ACTIONS(1829), - [anon_sym_i8] = ACTIONS(1829), - [anon_sym_u16] = ACTIONS(1829), - [anon_sym_i16] = ACTIONS(1829), - [anon_sym_u32] = ACTIONS(1829), - [anon_sym_i32] = ACTIONS(1829), - [anon_sym_u64] = ACTIONS(1829), - [anon_sym_i64] = ACTIONS(1829), - [anon_sym_u128] = ACTIONS(1829), - [anon_sym_i128] = ACTIONS(1829), - [anon_sym_isize] = ACTIONS(1829), - [anon_sym_usize] = ACTIONS(1829), - [anon_sym_f32] = ACTIONS(1829), - [anon_sym_f64] = ACTIONS(1829), - [anon_sym_bool] = ACTIONS(1829), - [anon_sym_str] = ACTIONS(1829), - [anon_sym_char] = ACTIONS(1829), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1827), - [sym_self] = ACTIONS(1829), - [sym_super] = ACTIONS(1829), - [sym_crate] = ACTIONS(1829), - [sym_metavariable] = ACTIONS(1827), - [sym_grit_metavariable] = ACTIONS(1827), - [sym_raw_string_literal] = ACTIONS(1827), - [sym_float_literal] = ACTIONS(1827), + [ts_builtin_sym_end] = ACTIONS(1813), + [sym__primitive_identifier] = ACTIONS(1815), + [anon_sym_SEMI] = ACTIONS(1813), + [anon_sym_macro_rules_BANG] = ACTIONS(1813), + [anon_sym_LPAREN] = ACTIONS(1813), + [anon_sym_LBRACE] = ACTIONS(1813), + [anon_sym_RBRACE] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(1813), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_SQUOTE] = ACTIONS(1815), + [anon_sym_async] = ACTIONS(1815), + [anon_sym_break] = ACTIONS(1815), + [anon_sym_const] = ACTIONS(1815), + [anon_sym_continue] = ACTIONS(1815), + [anon_sym_default] = ACTIONS(1815), + [anon_sym_enum] = ACTIONS(1815), + [anon_sym_fn] = ACTIONS(1815), + [anon_sym_for] = ACTIONS(1815), + [anon_sym_if] = ACTIONS(1815), + [anon_sym_impl] = ACTIONS(1815), + [anon_sym_let] = ACTIONS(1815), + [anon_sym_loop] = ACTIONS(1815), + [anon_sym_match] = ACTIONS(1815), + [anon_sym_mod] = ACTIONS(1815), + [anon_sym_pub] = ACTIONS(1815), + [anon_sym_return] = ACTIONS(1815), + [anon_sym_static] = ACTIONS(1815), + [anon_sym_struct] = ACTIONS(1815), + [anon_sym_trait] = ACTIONS(1815), + [anon_sym_type] = ACTIONS(1815), + [anon_sym_union] = ACTIONS(1815), + [anon_sym_unsafe] = ACTIONS(1815), + [anon_sym_use] = ACTIONS(1815), + [anon_sym_while] = ACTIONS(1815), + [anon_sym_POUND] = ACTIONS(1813), + [anon_sym_BANG] = ACTIONS(1813), + [anon_sym_extern] = ACTIONS(1815), + [anon_sym_LT] = ACTIONS(1813), + [anon_sym_COLON_COLON] = ACTIONS(1813), + [anon_sym_AMP] = ACTIONS(1813), + [anon_sym_DOT_DOT] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(1813), + [anon_sym_PIPE] = ACTIONS(1813), + [anon_sym_yield] = ACTIONS(1815), + [anon_sym_move] = ACTIONS(1815), + [sym_integer_literal] = ACTIONS(1813), + [aux_sym_string_literal_token1] = ACTIONS(1813), + [sym_char_literal] = ACTIONS(1813), + [anon_sym_true] = ACTIONS(1815), + [anon_sym_false] = ACTIONS(1815), + [anon_sym_u8] = ACTIONS(1815), + [anon_sym_i8] = ACTIONS(1815), + [anon_sym_u16] = ACTIONS(1815), + [anon_sym_i16] = ACTIONS(1815), + [anon_sym_u32] = ACTIONS(1815), + [anon_sym_i32] = ACTIONS(1815), + [anon_sym_u64] = ACTIONS(1815), + [anon_sym_i64] = ACTIONS(1815), + [anon_sym_u128] = ACTIONS(1815), + [anon_sym_i128] = ACTIONS(1815), + [anon_sym_isize] = ACTIONS(1815), + [anon_sym_usize] = ACTIONS(1815), + [anon_sym_f32] = ACTIONS(1815), + [anon_sym_f64] = ACTIONS(1815), + [anon_sym_bool] = ACTIONS(1815), + [anon_sym_str] = ACTIONS(1815), + [anon_sym_char] = ACTIONS(1815), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(1813), + [sym_self] = ACTIONS(1815), + [sym_super] = ACTIONS(1815), + [sym_crate] = ACTIONS(1815), + [sym_metavariable] = ACTIONS(1813), + [sym_grit_metavariable] = ACTIONS(1813), + [sym_raw_string_literal] = ACTIONS(1813), + [sym_float_literal] = ACTIONS(1813), [sym_block_comment] = ACTIONS(3), }, [373] = { - [ts_builtin_sym_end] = ACTIONS(1831), - [sym__primitive_identifier] = ACTIONS(1833), - [anon_sym_SEMI] = ACTIONS(1831), - [anon_sym_macro_rules_BANG] = ACTIONS(1831), - [anon_sym_LPAREN] = ACTIONS(1831), - [anon_sym_LBRACE] = ACTIONS(1831), - [anon_sym_RBRACE] = ACTIONS(1831), - [anon_sym_LBRACK] = ACTIONS(1831), - [anon_sym_STAR] = ACTIONS(1831), - [anon_sym_SQUOTE] = ACTIONS(1833), - [anon_sym_async] = ACTIONS(1833), - [anon_sym_break] = ACTIONS(1833), - [anon_sym_const] = ACTIONS(1833), - [anon_sym_continue] = ACTIONS(1833), - [anon_sym_default] = ACTIONS(1833), - [anon_sym_enum] = ACTIONS(1833), - [anon_sym_fn] = ACTIONS(1833), - [anon_sym_for] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_impl] = ACTIONS(1833), - [anon_sym_let] = ACTIONS(1833), - [anon_sym_loop] = ACTIONS(1833), - [anon_sym_match] = ACTIONS(1833), - [anon_sym_mod] = ACTIONS(1833), - [anon_sym_pub] = ACTIONS(1833), - [anon_sym_return] = ACTIONS(1833), - [anon_sym_static] = ACTIONS(1833), - [anon_sym_struct] = ACTIONS(1833), - [anon_sym_trait] = ACTIONS(1833), - [anon_sym_type] = ACTIONS(1833), - [anon_sym_union] = ACTIONS(1833), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_use] = ACTIONS(1833), - [anon_sym_while] = ACTIONS(1833), - [anon_sym_POUND] = ACTIONS(1831), - [anon_sym_BANG] = ACTIONS(1831), - [anon_sym_extern] = ACTIONS(1833), - [anon_sym_LT] = ACTIONS(1831), - [anon_sym_COLON_COLON] = ACTIONS(1831), - [anon_sym_AMP] = ACTIONS(1831), - [anon_sym_DOT_DOT] = ACTIONS(1831), - [anon_sym_DASH] = ACTIONS(1831), - [anon_sym_PIPE] = ACTIONS(1831), - [anon_sym_yield] = ACTIONS(1833), - [anon_sym_move] = ACTIONS(1833), - [sym_integer_literal] = ACTIONS(1831), - [aux_sym_string_literal_token1] = ACTIONS(1831), - [sym_char_literal] = ACTIONS(1831), - [anon_sym_true] = ACTIONS(1833), - [anon_sym_false] = ACTIONS(1833), - [anon_sym_u8] = ACTIONS(1833), - [anon_sym_i8] = ACTIONS(1833), - [anon_sym_u16] = ACTIONS(1833), - [anon_sym_i16] = ACTIONS(1833), - [anon_sym_u32] = ACTIONS(1833), - [anon_sym_i32] = ACTIONS(1833), - [anon_sym_u64] = ACTIONS(1833), - [anon_sym_i64] = ACTIONS(1833), - [anon_sym_u128] = ACTIONS(1833), - [anon_sym_i128] = ACTIONS(1833), - [anon_sym_isize] = ACTIONS(1833), - [anon_sym_usize] = ACTIONS(1833), - [anon_sym_f32] = ACTIONS(1833), - [anon_sym_f64] = ACTIONS(1833), - [anon_sym_bool] = ACTIONS(1833), - [anon_sym_str] = ACTIONS(1833), - [anon_sym_char] = ACTIONS(1833), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1831), - [sym_self] = ACTIONS(1833), - [sym_super] = ACTIONS(1833), - [sym_crate] = ACTIONS(1833), - [sym_metavariable] = ACTIONS(1831), - [sym_grit_metavariable] = ACTIONS(1831), - [sym_raw_string_literal] = ACTIONS(1831), - [sym_float_literal] = ACTIONS(1831), + [ts_builtin_sym_end] = ACTIONS(1817), + [sym__primitive_identifier] = ACTIONS(1819), + [anon_sym_SEMI] = ACTIONS(1817), + [anon_sym_macro_rules_BANG] = ACTIONS(1817), + [anon_sym_LPAREN] = ACTIONS(1817), + [anon_sym_LBRACE] = ACTIONS(1817), + [anon_sym_RBRACE] = ACTIONS(1817), + [anon_sym_LBRACK] = ACTIONS(1817), + [anon_sym_STAR] = ACTIONS(1817), + [anon_sym_SQUOTE] = ACTIONS(1819), + [anon_sym_async] = ACTIONS(1819), + [anon_sym_break] = ACTIONS(1819), + [anon_sym_const] = ACTIONS(1819), + [anon_sym_continue] = ACTIONS(1819), + [anon_sym_default] = ACTIONS(1819), + [anon_sym_enum] = ACTIONS(1819), + [anon_sym_fn] = ACTIONS(1819), + [anon_sym_for] = ACTIONS(1819), + [anon_sym_if] = ACTIONS(1819), + [anon_sym_impl] = ACTIONS(1819), + [anon_sym_let] = ACTIONS(1819), + [anon_sym_loop] = ACTIONS(1819), + [anon_sym_match] = ACTIONS(1819), + [anon_sym_mod] = ACTIONS(1819), + [anon_sym_pub] = ACTIONS(1819), + [anon_sym_return] = ACTIONS(1819), + [anon_sym_static] = ACTIONS(1819), + [anon_sym_struct] = ACTIONS(1819), + [anon_sym_trait] = ACTIONS(1819), + [anon_sym_type] = ACTIONS(1819), + [anon_sym_union] = ACTIONS(1819), + [anon_sym_unsafe] = ACTIONS(1819), + [anon_sym_use] = ACTIONS(1819), + [anon_sym_while] = ACTIONS(1819), + [anon_sym_POUND] = ACTIONS(1817), + [anon_sym_BANG] = ACTIONS(1817), + [anon_sym_extern] = ACTIONS(1819), + [anon_sym_LT] = ACTIONS(1817), + [anon_sym_COLON_COLON] = ACTIONS(1817), + [anon_sym_AMP] = ACTIONS(1817), + [anon_sym_DOT_DOT] = ACTIONS(1817), + [anon_sym_DASH] = ACTIONS(1817), + [anon_sym_PIPE] = ACTIONS(1817), + [anon_sym_yield] = ACTIONS(1819), + [anon_sym_move] = ACTIONS(1819), + [sym_integer_literal] = ACTIONS(1817), + [aux_sym_string_literal_token1] = ACTIONS(1817), + [sym_char_literal] = ACTIONS(1817), + [anon_sym_true] = ACTIONS(1819), + [anon_sym_false] = ACTIONS(1819), + [anon_sym_u8] = ACTIONS(1819), + [anon_sym_i8] = ACTIONS(1819), + [anon_sym_u16] = ACTIONS(1819), + [anon_sym_i16] = ACTIONS(1819), + [anon_sym_u32] = ACTIONS(1819), + [anon_sym_i32] = ACTIONS(1819), + [anon_sym_u64] = ACTIONS(1819), + [anon_sym_i64] = ACTIONS(1819), + [anon_sym_u128] = ACTIONS(1819), + [anon_sym_i128] = ACTIONS(1819), + [anon_sym_isize] = ACTIONS(1819), + [anon_sym_usize] = ACTIONS(1819), + [anon_sym_f32] = ACTIONS(1819), + [anon_sym_f64] = ACTIONS(1819), + [anon_sym_bool] = ACTIONS(1819), + [anon_sym_str] = ACTIONS(1819), + [anon_sym_char] = ACTIONS(1819), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(1817), + [sym_self] = ACTIONS(1819), + [sym_super] = ACTIONS(1819), + [sym_crate] = ACTIONS(1819), + [sym_metavariable] = ACTIONS(1817), + [sym_grit_metavariable] = ACTIONS(1817), + [sym_raw_string_literal] = ACTIONS(1817), + [sym_float_literal] = ACTIONS(1817), [sym_block_comment] = ACTIONS(3), }, [374] = { - [ts_builtin_sym_end] = ACTIONS(1835), - [sym__primitive_identifier] = ACTIONS(1837), - [anon_sym_SEMI] = ACTIONS(1835), - [anon_sym_macro_rules_BANG] = ACTIONS(1835), - [anon_sym_LPAREN] = ACTIONS(1835), - [anon_sym_LBRACE] = ACTIONS(1835), - [anon_sym_RBRACE] = ACTIONS(1835), - [anon_sym_LBRACK] = ACTIONS(1835), - [anon_sym_STAR] = ACTIONS(1835), - [anon_sym_SQUOTE] = ACTIONS(1837), - [anon_sym_async] = ACTIONS(1837), - [anon_sym_break] = ACTIONS(1837), - [anon_sym_const] = ACTIONS(1837), - [anon_sym_continue] = ACTIONS(1837), - [anon_sym_default] = ACTIONS(1837), - [anon_sym_enum] = ACTIONS(1837), - [anon_sym_fn] = ACTIONS(1837), - [anon_sym_for] = ACTIONS(1837), - [anon_sym_if] = ACTIONS(1837), - [anon_sym_impl] = ACTIONS(1837), - [anon_sym_let] = ACTIONS(1837), - [anon_sym_loop] = ACTIONS(1837), - [anon_sym_match] = ACTIONS(1837), - [anon_sym_mod] = ACTIONS(1837), - [anon_sym_pub] = ACTIONS(1837), - [anon_sym_return] = ACTIONS(1837), - [anon_sym_static] = ACTIONS(1837), - [anon_sym_struct] = ACTIONS(1837), - [anon_sym_trait] = ACTIONS(1837), - [anon_sym_type] = ACTIONS(1837), - [anon_sym_union] = ACTIONS(1837), - [anon_sym_unsafe] = ACTIONS(1837), - [anon_sym_use] = ACTIONS(1837), - [anon_sym_while] = ACTIONS(1837), - [anon_sym_POUND] = ACTIONS(1835), - [anon_sym_BANG] = ACTIONS(1835), - [anon_sym_extern] = ACTIONS(1837), - [anon_sym_LT] = ACTIONS(1835), - [anon_sym_COLON_COLON] = ACTIONS(1835), - [anon_sym_AMP] = ACTIONS(1835), - [anon_sym_DOT_DOT] = ACTIONS(1835), - [anon_sym_DASH] = ACTIONS(1835), - [anon_sym_PIPE] = ACTIONS(1835), - [anon_sym_yield] = ACTIONS(1837), - [anon_sym_move] = ACTIONS(1837), - [sym_integer_literal] = ACTIONS(1835), - [aux_sym_string_literal_token1] = ACTIONS(1835), - [sym_char_literal] = ACTIONS(1835), - [anon_sym_true] = ACTIONS(1837), - [anon_sym_false] = ACTIONS(1837), - [anon_sym_u8] = ACTIONS(1837), - [anon_sym_i8] = ACTIONS(1837), - [anon_sym_u16] = ACTIONS(1837), - [anon_sym_i16] = ACTIONS(1837), - [anon_sym_u32] = ACTIONS(1837), - [anon_sym_i32] = ACTIONS(1837), - [anon_sym_u64] = ACTIONS(1837), - [anon_sym_i64] = ACTIONS(1837), - [anon_sym_u128] = ACTIONS(1837), - [anon_sym_i128] = ACTIONS(1837), - [anon_sym_isize] = ACTIONS(1837), - [anon_sym_usize] = ACTIONS(1837), - [anon_sym_f32] = ACTIONS(1837), - [anon_sym_f64] = ACTIONS(1837), - [anon_sym_bool] = ACTIONS(1837), - [anon_sym_str] = ACTIONS(1837), - [anon_sym_char] = ACTIONS(1837), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1835), - [sym_self] = ACTIONS(1837), - [sym_super] = ACTIONS(1837), - [sym_crate] = ACTIONS(1837), - [sym_metavariable] = ACTIONS(1835), - [sym_grit_metavariable] = ACTIONS(1835), - [sym_raw_string_literal] = ACTIONS(1835), - [sym_float_literal] = ACTIONS(1835), + [ts_builtin_sym_end] = ACTIONS(1821), + [sym__primitive_identifier] = ACTIONS(1823), + [anon_sym_SEMI] = ACTIONS(1821), + [anon_sym_macro_rules_BANG] = ACTIONS(1821), + [anon_sym_LPAREN] = ACTIONS(1821), + [anon_sym_LBRACE] = ACTIONS(1821), + [anon_sym_RBRACE] = ACTIONS(1821), + [anon_sym_LBRACK] = ACTIONS(1821), + [anon_sym_STAR] = ACTIONS(1821), + [anon_sym_SQUOTE] = ACTIONS(1823), + [anon_sym_async] = ACTIONS(1823), + [anon_sym_break] = ACTIONS(1823), + [anon_sym_const] = ACTIONS(1823), + [anon_sym_continue] = ACTIONS(1823), + [anon_sym_default] = ACTIONS(1823), + [anon_sym_enum] = ACTIONS(1823), + [anon_sym_fn] = ACTIONS(1823), + [anon_sym_for] = ACTIONS(1823), + [anon_sym_if] = ACTIONS(1823), + [anon_sym_impl] = ACTIONS(1823), + [anon_sym_let] = ACTIONS(1823), + [anon_sym_loop] = ACTIONS(1823), + [anon_sym_match] = ACTIONS(1823), + [anon_sym_mod] = ACTIONS(1823), + [anon_sym_pub] = ACTIONS(1823), + [anon_sym_return] = ACTIONS(1823), + [anon_sym_static] = ACTIONS(1823), + [anon_sym_struct] = ACTIONS(1823), + [anon_sym_trait] = ACTIONS(1823), + [anon_sym_type] = ACTIONS(1823), + [anon_sym_union] = ACTIONS(1823), + [anon_sym_unsafe] = ACTIONS(1823), + [anon_sym_use] = ACTIONS(1823), + [anon_sym_while] = ACTIONS(1823), + [anon_sym_POUND] = ACTIONS(1821), + [anon_sym_BANG] = ACTIONS(1821), + [anon_sym_extern] = ACTIONS(1823), + [anon_sym_LT] = ACTIONS(1821), + [anon_sym_COLON_COLON] = ACTIONS(1821), + [anon_sym_AMP] = ACTIONS(1821), + [anon_sym_DOT_DOT] = ACTIONS(1821), + [anon_sym_DASH] = ACTIONS(1821), + [anon_sym_PIPE] = ACTIONS(1821), + [anon_sym_yield] = ACTIONS(1823), + [anon_sym_move] = ACTIONS(1823), + [sym_integer_literal] = ACTIONS(1821), + [aux_sym_string_literal_token1] = ACTIONS(1821), + [sym_char_literal] = ACTIONS(1821), + [anon_sym_true] = ACTIONS(1823), + [anon_sym_false] = ACTIONS(1823), + [anon_sym_u8] = ACTIONS(1823), + [anon_sym_i8] = ACTIONS(1823), + [anon_sym_u16] = ACTIONS(1823), + [anon_sym_i16] = ACTIONS(1823), + [anon_sym_u32] = ACTIONS(1823), + [anon_sym_i32] = ACTIONS(1823), + [anon_sym_u64] = ACTIONS(1823), + [anon_sym_i64] = ACTIONS(1823), + [anon_sym_u128] = ACTIONS(1823), + [anon_sym_i128] = ACTIONS(1823), + [anon_sym_isize] = ACTIONS(1823), + [anon_sym_usize] = ACTIONS(1823), + [anon_sym_f32] = ACTIONS(1823), + [anon_sym_f64] = ACTIONS(1823), + [anon_sym_bool] = ACTIONS(1823), + [anon_sym_str] = ACTIONS(1823), + [anon_sym_char] = ACTIONS(1823), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(1821), + [sym_self] = ACTIONS(1823), + [sym_super] = ACTIONS(1823), + [sym_crate] = ACTIONS(1823), + [sym_metavariable] = ACTIONS(1821), + [sym_grit_metavariable] = ACTIONS(1821), + [sym_raw_string_literal] = ACTIONS(1821), + [sym_float_literal] = ACTIONS(1821), [sym_block_comment] = ACTIONS(3), }, [375] = { - [ts_builtin_sym_end] = ACTIONS(1839), - [sym__primitive_identifier] = ACTIONS(1841), - [anon_sym_SEMI] = ACTIONS(1839), - [anon_sym_macro_rules_BANG] = ACTIONS(1839), - [anon_sym_LPAREN] = ACTIONS(1839), - [anon_sym_LBRACE] = ACTIONS(1839), - [anon_sym_RBRACE] = ACTIONS(1839), - [anon_sym_LBRACK] = ACTIONS(1839), - [anon_sym_STAR] = ACTIONS(1839), - [anon_sym_SQUOTE] = ACTIONS(1841), - [anon_sym_async] = ACTIONS(1841), - [anon_sym_break] = ACTIONS(1841), - [anon_sym_const] = ACTIONS(1841), - [anon_sym_continue] = ACTIONS(1841), - [anon_sym_default] = ACTIONS(1841), - [anon_sym_enum] = ACTIONS(1841), - [anon_sym_fn] = ACTIONS(1841), - [anon_sym_for] = ACTIONS(1841), - [anon_sym_if] = ACTIONS(1841), - [anon_sym_impl] = ACTIONS(1841), - [anon_sym_let] = ACTIONS(1841), - [anon_sym_loop] = ACTIONS(1841), - [anon_sym_match] = ACTIONS(1841), - [anon_sym_mod] = ACTIONS(1841), - [anon_sym_pub] = ACTIONS(1841), - [anon_sym_return] = ACTIONS(1841), - [anon_sym_static] = ACTIONS(1841), - [anon_sym_struct] = ACTIONS(1841), - [anon_sym_trait] = ACTIONS(1841), - [anon_sym_type] = ACTIONS(1841), - [anon_sym_union] = ACTIONS(1841), - [anon_sym_unsafe] = ACTIONS(1841), - [anon_sym_use] = ACTIONS(1841), - [anon_sym_while] = ACTIONS(1841), - [anon_sym_POUND] = ACTIONS(1839), - [anon_sym_BANG] = ACTIONS(1839), - [anon_sym_extern] = ACTIONS(1841), - [anon_sym_LT] = ACTIONS(1839), - [anon_sym_COLON_COLON] = ACTIONS(1839), - [anon_sym_AMP] = ACTIONS(1839), - [anon_sym_DOT_DOT] = ACTIONS(1839), - [anon_sym_DASH] = ACTIONS(1839), - [anon_sym_PIPE] = ACTIONS(1839), - [anon_sym_yield] = ACTIONS(1841), - [anon_sym_move] = ACTIONS(1841), - [sym_integer_literal] = ACTIONS(1839), - [aux_sym_string_literal_token1] = ACTIONS(1839), - [sym_char_literal] = ACTIONS(1839), - [anon_sym_true] = ACTIONS(1841), - [anon_sym_false] = ACTIONS(1841), - [anon_sym_u8] = ACTIONS(1841), - [anon_sym_i8] = ACTIONS(1841), - [anon_sym_u16] = ACTIONS(1841), - [anon_sym_i16] = ACTIONS(1841), - [anon_sym_u32] = ACTIONS(1841), - [anon_sym_i32] = ACTIONS(1841), - [anon_sym_u64] = ACTIONS(1841), - [anon_sym_i64] = ACTIONS(1841), - [anon_sym_u128] = ACTIONS(1841), - [anon_sym_i128] = ACTIONS(1841), - [anon_sym_isize] = ACTIONS(1841), - [anon_sym_usize] = ACTIONS(1841), - [anon_sym_f32] = ACTIONS(1841), - [anon_sym_f64] = ACTIONS(1841), - [anon_sym_bool] = ACTIONS(1841), - [anon_sym_str] = ACTIONS(1841), - [anon_sym_char] = ACTIONS(1841), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1839), - [sym_self] = ACTIONS(1841), - [sym_super] = ACTIONS(1841), - [sym_crate] = ACTIONS(1841), - [sym_metavariable] = ACTIONS(1839), - [sym_grit_metavariable] = ACTIONS(1839), - [sym_raw_string_literal] = ACTIONS(1839), - [sym_float_literal] = ACTIONS(1839), + [ts_builtin_sym_end] = ACTIONS(1825), + [sym__primitive_identifier] = ACTIONS(1827), + [anon_sym_SEMI] = ACTIONS(1825), + [anon_sym_macro_rules_BANG] = ACTIONS(1825), + [anon_sym_LPAREN] = ACTIONS(1825), + [anon_sym_LBRACE] = ACTIONS(1825), + [anon_sym_RBRACE] = ACTIONS(1825), + [anon_sym_LBRACK] = ACTIONS(1825), + [anon_sym_STAR] = ACTIONS(1825), + [anon_sym_SQUOTE] = ACTIONS(1827), + [anon_sym_async] = ACTIONS(1827), + [anon_sym_break] = ACTIONS(1827), + [anon_sym_const] = ACTIONS(1827), + [anon_sym_continue] = ACTIONS(1827), + [anon_sym_default] = ACTIONS(1827), + [anon_sym_enum] = ACTIONS(1827), + [anon_sym_fn] = ACTIONS(1827), + [anon_sym_for] = ACTIONS(1827), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_impl] = ACTIONS(1827), + [anon_sym_let] = ACTIONS(1827), + [anon_sym_loop] = ACTIONS(1827), + [anon_sym_match] = ACTIONS(1827), + [anon_sym_mod] = ACTIONS(1827), + [anon_sym_pub] = ACTIONS(1827), + [anon_sym_return] = ACTIONS(1827), + [anon_sym_static] = ACTIONS(1827), + [anon_sym_struct] = ACTIONS(1827), + [anon_sym_trait] = ACTIONS(1827), + [anon_sym_type] = ACTIONS(1827), + [anon_sym_union] = ACTIONS(1827), + [anon_sym_unsafe] = ACTIONS(1827), + [anon_sym_use] = ACTIONS(1827), + [anon_sym_while] = ACTIONS(1827), + [anon_sym_POUND] = ACTIONS(1825), + [anon_sym_BANG] = ACTIONS(1825), + [anon_sym_extern] = ACTIONS(1827), + [anon_sym_LT] = ACTIONS(1825), + [anon_sym_COLON_COLON] = ACTIONS(1825), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_DOT_DOT] = ACTIONS(1825), + [anon_sym_DASH] = ACTIONS(1825), + [anon_sym_PIPE] = ACTIONS(1825), + [anon_sym_yield] = ACTIONS(1827), + [anon_sym_move] = ACTIONS(1827), + [sym_integer_literal] = ACTIONS(1825), + [aux_sym_string_literal_token1] = ACTIONS(1825), + [sym_char_literal] = ACTIONS(1825), + [anon_sym_true] = ACTIONS(1827), + [anon_sym_false] = ACTIONS(1827), + [anon_sym_u8] = ACTIONS(1827), + [anon_sym_i8] = ACTIONS(1827), + [anon_sym_u16] = ACTIONS(1827), + [anon_sym_i16] = ACTIONS(1827), + [anon_sym_u32] = ACTIONS(1827), + [anon_sym_i32] = ACTIONS(1827), + [anon_sym_u64] = ACTIONS(1827), + [anon_sym_i64] = ACTIONS(1827), + [anon_sym_u128] = ACTIONS(1827), + [anon_sym_i128] = ACTIONS(1827), + [anon_sym_isize] = ACTIONS(1827), + [anon_sym_usize] = ACTIONS(1827), + [anon_sym_f32] = ACTIONS(1827), + [anon_sym_f64] = ACTIONS(1827), + [anon_sym_bool] = ACTIONS(1827), + [anon_sym_str] = ACTIONS(1827), + [anon_sym_char] = ACTIONS(1827), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(1825), + [sym_self] = ACTIONS(1827), + [sym_super] = ACTIONS(1827), + [sym_crate] = ACTIONS(1827), + [sym_metavariable] = ACTIONS(1825), + [sym_grit_metavariable] = ACTIONS(1825), + [sym_raw_string_literal] = ACTIONS(1825), + [sym_float_literal] = ACTIONS(1825), [sym_block_comment] = ACTIONS(3), }, [376] = { - [ts_builtin_sym_end] = ACTIONS(1843), - [sym__primitive_identifier] = ACTIONS(1845), - [anon_sym_SEMI] = ACTIONS(1843), - [anon_sym_macro_rules_BANG] = ACTIONS(1843), - [anon_sym_LPAREN] = ACTIONS(1843), - [anon_sym_LBRACE] = ACTIONS(1843), - [anon_sym_RBRACE] = ACTIONS(1843), - [anon_sym_LBRACK] = ACTIONS(1843), - [anon_sym_STAR] = ACTIONS(1843), - [anon_sym_SQUOTE] = ACTIONS(1845), - [anon_sym_async] = ACTIONS(1845), - [anon_sym_break] = ACTIONS(1845), - [anon_sym_const] = ACTIONS(1845), - [anon_sym_continue] = ACTIONS(1845), - [anon_sym_default] = ACTIONS(1845), - [anon_sym_enum] = ACTIONS(1845), - [anon_sym_fn] = ACTIONS(1845), - [anon_sym_for] = ACTIONS(1845), - [anon_sym_if] = ACTIONS(1845), - [anon_sym_impl] = ACTIONS(1845), - [anon_sym_let] = ACTIONS(1845), - [anon_sym_loop] = ACTIONS(1845), - [anon_sym_match] = ACTIONS(1845), - [anon_sym_mod] = ACTIONS(1845), - [anon_sym_pub] = ACTIONS(1845), - [anon_sym_return] = ACTIONS(1845), - [anon_sym_static] = ACTIONS(1845), - [anon_sym_struct] = ACTIONS(1845), - [anon_sym_trait] = ACTIONS(1845), - [anon_sym_type] = ACTIONS(1845), - [anon_sym_union] = ACTIONS(1845), - [anon_sym_unsafe] = ACTIONS(1845), - [anon_sym_use] = ACTIONS(1845), - [anon_sym_while] = ACTIONS(1845), - [anon_sym_POUND] = ACTIONS(1843), - [anon_sym_BANG] = ACTIONS(1843), - [anon_sym_extern] = ACTIONS(1845), - [anon_sym_LT] = ACTIONS(1843), - [anon_sym_COLON_COLON] = ACTIONS(1843), - [anon_sym_AMP] = ACTIONS(1843), - [anon_sym_DOT_DOT] = ACTIONS(1843), - [anon_sym_DASH] = ACTIONS(1843), - [anon_sym_PIPE] = ACTIONS(1843), - [anon_sym_yield] = ACTIONS(1845), - [anon_sym_move] = ACTIONS(1845), - [sym_integer_literal] = ACTIONS(1843), - [aux_sym_string_literal_token1] = ACTIONS(1843), - [sym_char_literal] = ACTIONS(1843), - [anon_sym_true] = ACTIONS(1845), - [anon_sym_false] = ACTIONS(1845), - [anon_sym_u8] = ACTIONS(1845), - [anon_sym_i8] = ACTIONS(1845), - [anon_sym_u16] = ACTIONS(1845), - [anon_sym_i16] = ACTIONS(1845), - [anon_sym_u32] = ACTIONS(1845), - [anon_sym_i32] = ACTIONS(1845), - [anon_sym_u64] = ACTIONS(1845), - [anon_sym_i64] = ACTIONS(1845), - [anon_sym_u128] = ACTIONS(1845), - [anon_sym_i128] = ACTIONS(1845), - [anon_sym_isize] = ACTIONS(1845), - [anon_sym_usize] = ACTIONS(1845), - [anon_sym_f32] = ACTIONS(1845), - [anon_sym_f64] = ACTIONS(1845), - [anon_sym_bool] = ACTIONS(1845), - [anon_sym_str] = ACTIONS(1845), - [anon_sym_char] = ACTIONS(1845), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1843), - [sym_self] = ACTIONS(1845), - [sym_super] = ACTIONS(1845), - [sym_crate] = ACTIONS(1845), - [sym_metavariable] = ACTIONS(1843), - [sym_grit_metavariable] = ACTIONS(1843), - [sym_raw_string_literal] = ACTIONS(1843), - [sym_float_literal] = ACTIONS(1843), + [ts_builtin_sym_end] = ACTIONS(1829), + [sym__primitive_identifier] = ACTIONS(1831), + [anon_sym_SEMI] = ACTIONS(1829), + [anon_sym_macro_rules_BANG] = ACTIONS(1829), + [anon_sym_LPAREN] = ACTIONS(1829), + [anon_sym_LBRACE] = ACTIONS(1829), + [anon_sym_RBRACE] = ACTIONS(1829), + [anon_sym_LBRACK] = ACTIONS(1829), + [anon_sym_STAR] = ACTIONS(1829), + [anon_sym_SQUOTE] = ACTIONS(1831), + [anon_sym_async] = ACTIONS(1831), + [anon_sym_break] = ACTIONS(1831), + [anon_sym_const] = ACTIONS(1831), + [anon_sym_continue] = ACTIONS(1831), + [anon_sym_default] = ACTIONS(1831), + [anon_sym_enum] = ACTIONS(1831), + [anon_sym_fn] = ACTIONS(1831), + [anon_sym_for] = ACTIONS(1831), + [anon_sym_if] = ACTIONS(1831), + [anon_sym_impl] = ACTIONS(1831), + [anon_sym_let] = ACTIONS(1831), + [anon_sym_loop] = ACTIONS(1831), + [anon_sym_match] = ACTIONS(1831), + [anon_sym_mod] = ACTIONS(1831), + [anon_sym_pub] = ACTIONS(1831), + [anon_sym_return] = ACTIONS(1831), + [anon_sym_static] = ACTIONS(1831), + [anon_sym_struct] = ACTIONS(1831), + [anon_sym_trait] = ACTIONS(1831), + [anon_sym_type] = ACTIONS(1831), + [anon_sym_union] = ACTIONS(1831), + [anon_sym_unsafe] = ACTIONS(1831), + [anon_sym_use] = ACTIONS(1831), + [anon_sym_while] = ACTIONS(1831), + [anon_sym_POUND] = ACTIONS(1829), + [anon_sym_BANG] = ACTIONS(1829), + [anon_sym_extern] = ACTIONS(1831), + [anon_sym_LT] = ACTIONS(1829), + [anon_sym_COLON_COLON] = ACTIONS(1829), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_DOT_DOT] = ACTIONS(1829), + [anon_sym_DASH] = ACTIONS(1829), + [anon_sym_PIPE] = ACTIONS(1829), + [anon_sym_yield] = ACTIONS(1831), + [anon_sym_move] = ACTIONS(1831), + [sym_integer_literal] = ACTIONS(1829), + [aux_sym_string_literal_token1] = ACTIONS(1829), + [sym_char_literal] = ACTIONS(1829), + [anon_sym_true] = ACTIONS(1831), + [anon_sym_false] = ACTIONS(1831), + [anon_sym_u8] = ACTIONS(1831), + [anon_sym_i8] = ACTIONS(1831), + [anon_sym_u16] = ACTIONS(1831), + [anon_sym_i16] = ACTIONS(1831), + [anon_sym_u32] = ACTIONS(1831), + [anon_sym_i32] = ACTIONS(1831), + [anon_sym_u64] = ACTIONS(1831), + [anon_sym_i64] = ACTIONS(1831), + [anon_sym_u128] = ACTIONS(1831), + [anon_sym_i128] = ACTIONS(1831), + [anon_sym_isize] = ACTIONS(1831), + [anon_sym_usize] = ACTIONS(1831), + [anon_sym_f32] = ACTIONS(1831), + [anon_sym_f64] = ACTIONS(1831), + [anon_sym_bool] = ACTIONS(1831), + [anon_sym_str] = ACTIONS(1831), + [anon_sym_char] = ACTIONS(1831), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(1829), + [sym_self] = ACTIONS(1831), + [sym_super] = ACTIONS(1831), + [sym_crate] = ACTIONS(1831), + [sym_metavariable] = ACTIONS(1829), + [sym_grit_metavariable] = ACTIONS(1829), + [sym_raw_string_literal] = ACTIONS(1829), + [sym_float_literal] = ACTIONS(1829), [sym_block_comment] = ACTIONS(3), }, [377] = { - [ts_builtin_sym_end] = ACTIONS(1847), - [sym__primitive_identifier] = ACTIONS(1849), - [anon_sym_SEMI] = ACTIONS(1847), - [anon_sym_macro_rules_BANG] = ACTIONS(1847), - [anon_sym_LPAREN] = ACTIONS(1847), - [anon_sym_LBRACE] = ACTIONS(1847), - [anon_sym_RBRACE] = ACTIONS(1847), - [anon_sym_LBRACK] = ACTIONS(1847), - [anon_sym_STAR] = ACTIONS(1847), - [anon_sym_SQUOTE] = ACTIONS(1849), - [anon_sym_async] = ACTIONS(1849), - [anon_sym_break] = ACTIONS(1849), - [anon_sym_const] = ACTIONS(1849), - [anon_sym_continue] = ACTIONS(1849), - [anon_sym_default] = ACTIONS(1849), - [anon_sym_enum] = ACTIONS(1849), - [anon_sym_fn] = ACTIONS(1849), - [anon_sym_for] = ACTIONS(1849), - [anon_sym_if] = ACTIONS(1849), - [anon_sym_impl] = ACTIONS(1849), - [anon_sym_let] = ACTIONS(1849), - [anon_sym_loop] = ACTIONS(1849), - [anon_sym_match] = ACTIONS(1849), - [anon_sym_mod] = ACTIONS(1849), - [anon_sym_pub] = ACTIONS(1849), - [anon_sym_return] = ACTIONS(1849), - [anon_sym_static] = ACTIONS(1849), - [anon_sym_struct] = ACTIONS(1849), - [anon_sym_trait] = ACTIONS(1849), - [anon_sym_type] = ACTIONS(1849), - [anon_sym_union] = ACTIONS(1849), - [anon_sym_unsafe] = ACTIONS(1849), - [anon_sym_use] = ACTIONS(1849), - [anon_sym_while] = ACTIONS(1849), - [anon_sym_POUND] = ACTIONS(1847), - [anon_sym_BANG] = ACTIONS(1847), - [anon_sym_extern] = ACTIONS(1849), - [anon_sym_LT] = ACTIONS(1847), - [anon_sym_COLON_COLON] = ACTIONS(1847), - [anon_sym_AMP] = ACTIONS(1847), - [anon_sym_DOT_DOT] = ACTIONS(1847), - [anon_sym_DASH] = ACTIONS(1847), - [anon_sym_PIPE] = ACTIONS(1847), - [anon_sym_yield] = ACTIONS(1849), - [anon_sym_move] = ACTIONS(1849), - [sym_integer_literal] = ACTIONS(1847), - [aux_sym_string_literal_token1] = ACTIONS(1847), - [sym_char_literal] = ACTIONS(1847), - [anon_sym_true] = ACTIONS(1849), - [anon_sym_false] = ACTIONS(1849), - [anon_sym_u8] = ACTIONS(1849), - [anon_sym_i8] = ACTIONS(1849), - [anon_sym_u16] = ACTIONS(1849), - [anon_sym_i16] = ACTIONS(1849), - [anon_sym_u32] = ACTIONS(1849), - [anon_sym_i32] = ACTIONS(1849), - [anon_sym_u64] = ACTIONS(1849), - [anon_sym_i64] = ACTIONS(1849), - [anon_sym_u128] = ACTIONS(1849), - [anon_sym_i128] = ACTIONS(1849), - [anon_sym_isize] = ACTIONS(1849), - [anon_sym_usize] = ACTIONS(1849), - [anon_sym_f32] = ACTIONS(1849), - [anon_sym_f64] = ACTIONS(1849), - [anon_sym_bool] = ACTIONS(1849), - [anon_sym_str] = ACTIONS(1849), - [anon_sym_char] = ACTIONS(1849), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1847), - [sym_self] = ACTIONS(1849), - [sym_super] = ACTIONS(1849), - [sym_crate] = ACTIONS(1849), - [sym_metavariable] = ACTIONS(1847), - [sym_grit_metavariable] = ACTIONS(1847), - [sym_raw_string_literal] = ACTIONS(1847), - [sym_float_literal] = ACTIONS(1847), + [ts_builtin_sym_end] = ACTIONS(1833), + [sym__primitive_identifier] = ACTIONS(1835), + [anon_sym_SEMI] = ACTIONS(1833), + [anon_sym_macro_rules_BANG] = ACTIONS(1833), + [anon_sym_LPAREN] = ACTIONS(1833), + [anon_sym_LBRACE] = ACTIONS(1833), + [anon_sym_RBRACE] = ACTIONS(1833), + [anon_sym_LBRACK] = ACTIONS(1833), + [anon_sym_STAR] = ACTIONS(1833), + [anon_sym_SQUOTE] = ACTIONS(1835), + [anon_sym_async] = ACTIONS(1835), + [anon_sym_break] = ACTIONS(1835), + [anon_sym_const] = ACTIONS(1835), + [anon_sym_continue] = ACTIONS(1835), + [anon_sym_default] = ACTIONS(1835), + [anon_sym_enum] = ACTIONS(1835), + [anon_sym_fn] = ACTIONS(1835), + [anon_sym_for] = ACTIONS(1835), + [anon_sym_if] = ACTIONS(1835), + [anon_sym_impl] = ACTIONS(1835), + [anon_sym_let] = ACTIONS(1835), + [anon_sym_loop] = ACTIONS(1835), + [anon_sym_match] = ACTIONS(1835), + [anon_sym_mod] = ACTIONS(1835), + [anon_sym_pub] = ACTIONS(1835), + [anon_sym_return] = ACTIONS(1835), + [anon_sym_static] = ACTIONS(1835), + [anon_sym_struct] = ACTIONS(1835), + [anon_sym_trait] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_union] = ACTIONS(1835), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_use] = ACTIONS(1835), + [anon_sym_while] = ACTIONS(1835), + [anon_sym_POUND] = ACTIONS(1833), + [anon_sym_BANG] = ACTIONS(1833), + [anon_sym_extern] = ACTIONS(1835), + [anon_sym_LT] = ACTIONS(1833), + [anon_sym_COLON_COLON] = ACTIONS(1833), + [anon_sym_AMP] = ACTIONS(1833), + [anon_sym_DOT_DOT] = ACTIONS(1833), + [anon_sym_DASH] = ACTIONS(1833), + [anon_sym_PIPE] = ACTIONS(1833), + [anon_sym_yield] = ACTIONS(1835), + [anon_sym_move] = ACTIONS(1835), + [sym_integer_literal] = ACTIONS(1833), + [aux_sym_string_literal_token1] = ACTIONS(1833), + [sym_char_literal] = ACTIONS(1833), + [anon_sym_true] = ACTIONS(1835), + [anon_sym_false] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u128] = ACTIONS(1835), + [anon_sym_i128] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_str] = ACTIONS(1835), + [anon_sym_char] = ACTIONS(1835), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(1833), + [sym_self] = ACTIONS(1835), + [sym_super] = ACTIONS(1835), + [sym_crate] = ACTIONS(1835), + [sym_metavariable] = ACTIONS(1833), + [sym_grit_metavariable] = ACTIONS(1833), + [sym_raw_string_literal] = ACTIONS(1833), + [sym_float_literal] = ACTIONS(1833), [sym_block_comment] = ACTIONS(3), }, [378] = { - [ts_builtin_sym_end] = ACTIONS(1851), - [sym__primitive_identifier] = ACTIONS(1853), - [anon_sym_SEMI] = ACTIONS(1851), - [anon_sym_macro_rules_BANG] = ACTIONS(1851), - [anon_sym_LPAREN] = ACTIONS(1851), - [anon_sym_LBRACE] = ACTIONS(1851), - [anon_sym_RBRACE] = ACTIONS(1851), - [anon_sym_LBRACK] = ACTIONS(1851), - [anon_sym_STAR] = ACTIONS(1851), - [anon_sym_SQUOTE] = ACTIONS(1853), - [anon_sym_async] = ACTIONS(1853), - [anon_sym_break] = ACTIONS(1853), - [anon_sym_const] = ACTIONS(1853), - [anon_sym_continue] = ACTIONS(1853), - [anon_sym_default] = ACTIONS(1853), - [anon_sym_enum] = ACTIONS(1853), - [anon_sym_fn] = ACTIONS(1853), - [anon_sym_for] = ACTIONS(1853), - [anon_sym_if] = ACTIONS(1853), - [anon_sym_impl] = ACTIONS(1853), - [anon_sym_let] = ACTIONS(1853), - [anon_sym_loop] = ACTIONS(1853), - [anon_sym_match] = ACTIONS(1853), - [anon_sym_mod] = ACTIONS(1853), - [anon_sym_pub] = ACTIONS(1853), - [anon_sym_return] = ACTIONS(1853), - [anon_sym_static] = ACTIONS(1853), - [anon_sym_struct] = ACTIONS(1853), - [anon_sym_trait] = ACTIONS(1853), - [anon_sym_type] = ACTIONS(1853), - [anon_sym_union] = ACTIONS(1853), - [anon_sym_unsafe] = ACTIONS(1853), - [anon_sym_use] = ACTIONS(1853), - [anon_sym_while] = ACTIONS(1853), - [anon_sym_POUND] = ACTIONS(1851), - [anon_sym_BANG] = ACTIONS(1851), - [anon_sym_extern] = ACTIONS(1853), - [anon_sym_LT] = ACTIONS(1851), - [anon_sym_COLON_COLON] = ACTIONS(1851), - [anon_sym_AMP] = ACTIONS(1851), - [anon_sym_DOT_DOT] = ACTIONS(1851), - [anon_sym_DASH] = ACTIONS(1851), - [anon_sym_PIPE] = ACTIONS(1851), - [anon_sym_yield] = ACTIONS(1853), - [anon_sym_move] = ACTIONS(1853), - [sym_integer_literal] = ACTIONS(1851), - [aux_sym_string_literal_token1] = ACTIONS(1851), - [sym_char_literal] = ACTIONS(1851), - [anon_sym_true] = ACTIONS(1853), - [anon_sym_false] = ACTIONS(1853), - [anon_sym_u8] = ACTIONS(1853), - [anon_sym_i8] = ACTIONS(1853), - [anon_sym_u16] = ACTIONS(1853), - [anon_sym_i16] = ACTIONS(1853), - [anon_sym_u32] = ACTIONS(1853), - [anon_sym_i32] = ACTIONS(1853), - [anon_sym_u64] = ACTIONS(1853), - [anon_sym_i64] = ACTIONS(1853), - [anon_sym_u128] = ACTIONS(1853), - [anon_sym_i128] = ACTIONS(1853), - [anon_sym_isize] = ACTIONS(1853), - [anon_sym_usize] = ACTIONS(1853), - [anon_sym_f32] = ACTIONS(1853), - [anon_sym_f64] = ACTIONS(1853), - [anon_sym_bool] = ACTIONS(1853), - [anon_sym_str] = ACTIONS(1853), - [anon_sym_char] = ACTIONS(1853), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1851), - [sym_self] = ACTIONS(1853), - [sym_super] = ACTIONS(1853), - [sym_crate] = ACTIONS(1853), - [sym_metavariable] = ACTIONS(1851), - [sym_grit_metavariable] = ACTIONS(1851), - [sym_raw_string_literal] = ACTIONS(1851), - [sym_float_literal] = ACTIONS(1851), + [ts_builtin_sym_end] = ACTIONS(1837), + [sym__primitive_identifier] = ACTIONS(1839), + [anon_sym_SEMI] = ACTIONS(1837), + [anon_sym_macro_rules_BANG] = ACTIONS(1837), + [anon_sym_LPAREN] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1837), + [anon_sym_RBRACE] = ACTIONS(1837), + [anon_sym_LBRACK] = ACTIONS(1837), + [anon_sym_STAR] = ACTIONS(1837), + [anon_sym_SQUOTE] = ACTIONS(1839), + [anon_sym_async] = ACTIONS(1839), + [anon_sym_break] = ACTIONS(1839), + [anon_sym_const] = ACTIONS(1839), + [anon_sym_continue] = ACTIONS(1839), + [anon_sym_default] = ACTIONS(1839), + [anon_sym_enum] = ACTIONS(1839), + [anon_sym_fn] = ACTIONS(1839), + [anon_sym_for] = ACTIONS(1839), + [anon_sym_if] = ACTIONS(1839), + [anon_sym_impl] = ACTIONS(1839), + [anon_sym_let] = ACTIONS(1839), + [anon_sym_loop] = ACTIONS(1839), + [anon_sym_match] = ACTIONS(1839), + [anon_sym_mod] = ACTIONS(1839), + [anon_sym_pub] = ACTIONS(1839), + [anon_sym_return] = ACTIONS(1839), + [anon_sym_static] = ACTIONS(1839), + [anon_sym_struct] = ACTIONS(1839), + [anon_sym_trait] = ACTIONS(1839), + [anon_sym_type] = ACTIONS(1839), + [anon_sym_union] = ACTIONS(1839), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_use] = ACTIONS(1839), + [anon_sym_while] = ACTIONS(1839), + [anon_sym_POUND] = ACTIONS(1837), + [anon_sym_BANG] = ACTIONS(1837), + [anon_sym_extern] = ACTIONS(1839), + [anon_sym_LT] = ACTIONS(1837), + [anon_sym_COLON_COLON] = ACTIONS(1837), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_DOT_DOT] = ACTIONS(1837), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_PIPE] = ACTIONS(1837), + [anon_sym_yield] = ACTIONS(1839), + [anon_sym_move] = ACTIONS(1839), + [sym_integer_literal] = ACTIONS(1837), + [aux_sym_string_literal_token1] = ACTIONS(1837), + [sym_char_literal] = ACTIONS(1837), + [anon_sym_true] = ACTIONS(1839), + [anon_sym_false] = ACTIONS(1839), + [anon_sym_u8] = ACTIONS(1839), + [anon_sym_i8] = ACTIONS(1839), + [anon_sym_u16] = ACTIONS(1839), + [anon_sym_i16] = ACTIONS(1839), + [anon_sym_u32] = ACTIONS(1839), + [anon_sym_i32] = ACTIONS(1839), + [anon_sym_u64] = ACTIONS(1839), + [anon_sym_i64] = ACTIONS(1839), + [anon_sym_u128] = ACTIONS(1839), + [anon_sym_i128] = ACTIONS(1839), + [anon_sym_isize] = ACTIONS(1839), + [anon_sym_usize] = ACTIONS(1839), + [anon_sym_f32] = ACTIONS(1839), + [anon_sym_f64] = ACTIONS(1839), + [anon_sym_bool] = ACTIONS(1839), + [anon_sym_str] = ACTIONS(1839), + [anon_sym_char] = ACTIONS(1839), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(1837), + [sym_self] = ACTIONS(1839), + [sym_super] = ACTIONS(1839), + [sym_crate] = ACTIONS(1839), + [sym_metavariable] = ACTIONS(1837), + [sym_grit_metavariable] = ACTIONS(1837), + [sym_raw_string_literal] = ACTIONS(1837), + [sym_float_literal] = ACTIONS(1837), [sym_block_comment] = ACTIONS(3), }, [379] = { - [ts_builtin_sym_end] = ACTIONS(1855), - [sym__primitive_identifier] = ACTIONS(1857), - [anon_sym_SEMI] = ACTIONS(1855), - [anon_sym_macro_rules_BANG] = ACTIONS(1855), - [anon_sym_LPAREN] = ACTIONS(1855), - [anon_sym_LBRACE] = ACTIONS(1855), - [anon_sym_RBRACE] = ACTIONS(1855), - [anon_sym_LBRACK] = ACTIONS(1855), - [anon_sym_STAR] = ACTIONS(1855), - [anon_sym_SQUOTE] = ACTIONS(1857), - [anon_sym_async] = ACTIONS(1857), - [anon_sym_break] = ACTIONS(1857), - [anon_sym_const] = ACTIONS(1857), - [anon_sym_continue] = ACTIONS(1857), - [anon_sym_default] = ACTIONS(1857), - [anon_sym_enum] = ACTIONS(1857), - [anon_sym_fn] = ACTIONS(1857), - [anon_sym_for] = ACTIONS(1857), - [anon_sym_if] = ACTIONS(1857), - [anon_sym_impl] = ACTIONS(1857), - [anon_sym_let] = ACTIONS(1857), - [anon_sym_loop] = ACTIONS(1857), - [anon_sym_match] = ACTIONS(1857), - [anon_sym_mod] = ACTIONS(1857), - [anon_sym_pub] = ACTIONS(1857), - [anon_sym_return] = ACTIONS(1857), - [anon_sym_static] = ACTIONS(1857), - [anon_sym_struct] = ACTIONS(1857), - [anon_sym_trait] = ACTIONS(1857), - [anon_sym_type] = ACTIONS(1857), - [anon_sym_union] = ACTIONS(1857), - [anon_sym_unsafe] = ACTIONS(1857), - [anon_sym_use] = ACTIONS(1857), - [anon_sym_while] = ACTIONS(1857), - [anon_sym_POUND] = ACTIONS(1855), - [anon_sym_BANG] = ACTIONS(1855), - [anon_sym_extern] = ACTIONS(1857), - [anon_sym_LT] = ACTIONS(1855), - [anon_sym_COLON_COLON] = ACTIONS(1855), - [anon_sym_AMP] = ACTIONS(1855), - [anon_sym_DOT_DOT] = ACTIONS(1855), - [anon_sym_DASH] = ACTIONS(1855), - [anon_sym_PIPE] = ACTIONS(1855), - [anon_sym_yield] = ACTIONS(1857), - [anon_sym_move] = ACTIONS(1857), - [sym_integer_literal] = ACTIONS(1855), - [aux_sym_string_literal_token1] = ACTIONS(1855), - [sym_char_literal] = ACTIONS(1855), - [anon_sym_true] = ACTIONS(1857), - [anon_sym_false] = ACTIONS(1857), - [anon_sym_u8] = ACTIONS(1857), - [anon_sym_i8] = ACTIONS(1857), - [anon_sym_u16] = ACTIONS(1857), - [anon_sym_i16] = ACTIONS(1857), - [anon_sym_u32] = ACTIONS(1857), - [anon_sym_i32] = ACTIONS(1857), - [anon_sym_u64] = ACTIONS(1857), - [anon_sym_i64] = ACTIONS(1857), - [anon_sym_u128] = ACTIONS(1857), - [anon_sym_i128] = ACTIONS(1857), - [anon_sym_isize] = ACTIONS(1857), - [anon_sym_usize] = ACTIONS(1857), - [anon_sym_f32] = ACTIONS(1857), - [anon_sym_f64] = ACTIONS(1857), - [anon_sym_bool] = ACTIONS(1857), - [anon_sym_str] = ACTIONS(1857), - [anon_sym_char] = ACTIONS(1857), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1855), - [sym_self] = ACTIONS(1857), - [sym_super] = ACTIONS(1857), - [sym_crate] = ACTIONS(1857), - [sym_metavariable] = ACTIONS(1855), - [sym_grit_metavariable] = ACTIONS(1855), - [sym_raw_string_literal] = ACTIONS(1855), - [sym_float_literal] = ACTIONS(1855), + [ts_builtin_sym_end] = ACTIONS(1841), + [sym__primitive_identifier] = ACTIONS(1843), + [anon_sym_SEMI] = ACTIONS(1841), + [anon_sym_macro_rules_BANG] = ACTIONS(1841), + [anon_sym_LPAREN] = ACTIONS(1841), + [anon_sym_LBRACE] = ACTIONS(1841), + [anon_sym_RBRACE] = ACTIONS(1841), + [anon_sym_LBRACK] = ACTIONS(1841), + [anon_sym_STAR] = ACTIONS(1841), + [anon_sym_SQUOTE] = ACTIONS(1843), + [anon_sym_async] = ACTIONS(1843), + [anon_sym_break] = ACTIONS(1843), + [anon_sym_const] = ACTIONS(1843), + [anon_sym_continue] = ACTIONS(1843), + [anon_sym_default] = ACTIONS(1843), + [anon_sym_enum] = ACTIONS(1843), + [anon_sym_fn] = ACTIONS(1843), + [anon_sym_for] = ACTIONS(1843), + [anon_sym_if] = ACTIONS(1843), + [anon_sym_impl] = ACTIONS(1843), + [anon_sym_let] = ACTIONS(1843), + [anon_sym_loop] = ACTIONS(1843), + [anon_sym_match] = ACTIONS(1843), + [anon_sym_mod] = ACTIONS(1843), + [anon_sym_pub] = ACTIONS(1843), + [anon_sym_return] = ACTIONS(1843), + [anon_sym_static] = ACTIONS(1843), + [anon_sym_struct] = ACTIONS(1843), + [anon_sym_trait] = ACTIONS(1843), + [anon_sym_type] = ACTIONS(1843), + [anon_sym_union] = ACTIONS(1843), + [anon_sym_unsafe] = ACTIONS(1843), + [anon_sym_use] = ACTIONS(1843), + [anon_sym_while] = ACTIONS(1843), + [anon_sym_POUND] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1841), + [anon_sym_extern] = ACTIONS(1843), + [anon_sym_LT] = ACTIONS(1841), + [anon_sym_COLON_COLON] = ACTIONS(1841), + [anon_sym_AMP] = ACTIONS(1841), + [anon_sym_DOT_DOT] = ACTIONS(1841), + [anon_sym_DASH] = ACTIONS(1841), + [anon_sym_PIPE] = ACTIONS(1841), + [anon_sym_yield] = ACTIONS(1843), + [anon_sym_move] = ACTIONS(1843), + [sym_integer_literal] = ACTIONS(1841), + [aux_sym_string_literal_token1] = ACTIONS(1841), + [sym_char_literal] = ACTIONS(1841), + [anon_sym_true] = ACTIONS(1843), + [anon_sym_false] = ACTIONS(1843), + [anon_sym_u8] = ACTIONS(1843), + [anon_sym_i8] = ACTIONS(1843), + [anon_sym_u16] = ACTIONS(1843), + [anon_sym_i16] = ACTIONS(1843), + [anon_sym_u32] = ACTIONS(1843), + [anon_sym_i32] = ACTIONS(1843), + [anon_sym_u64] = ACTIONS(1843), + [anon_sym_i64] = ACTIONS(1843), + [anon_sym_u128] = ACTIONS(1843), + [anon_sym_i128] = ACTIONS(1843), + [anon_sym_isize] = ACTIONS(1843), + [anon_sym_usize] = ACTIONS(1843), + [anon_sym_f32] = ACTIONS(1843), + [anon_sym_f64] = ACTIONS(1843), + [anon_sym_bool] = ACTIONS(1843), + [anon_sym_str] = ACTIONS(1843), + [anon_sym_char] = ACTIONS(1843), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(1841), + [sym_self] = ACTIONS(1843), + [sym_super] = ACTIONS(1843), + [sym_crate] = ACTIONS(1843), + [sym_metavariable] = ACTIONS(1841), + [sym_grit_metavariable] = ACTIONS(1841), + [sym_raw_string_literal] = ACTIONS(1841), + [sym_float_literal] = ACTIONS(1841), [sym_block_comment] = ACTIONS(3), }, [380] = { - [ts_builtin_sym_end] = ACTIONS(1859), - [sym__primitive_identifier] = ACTIONS(1861), - [anon_sym_SEMI] = ACTIONS(1859), - [anon_sym_macro_rules_BANG] = ACTIONS(1859), - [anon_sym_LPAREN] = ACTIONS(1859), - [anon_sym_LBRACE] = ACTIONS(1859), - [anon_sym_RBRACE] = ACTIONS(1859), - [anon_sym_LBRACK] = ACTIONS(1859), - [anon_sym_STAR] = ACTIONS(1859), - [anon_sym_SQUOTE] = ACTIONS(1861), - [anon_sym_async] = ACTIONS(1861), - [anon_sym_break] = ACTIONS(1861), - [anon_sym_const] = ACTIONS(1861), - [anon_sym_continue] = ACTIONS(1861), - [anon_sym_default] = ACTIONS(1861), - [anon_sym_enum] = ACTIONS(1861), - [anon_sym_fn] = ACTIONS(1861), - [anon_sym_for] = ACTIONS(1861), - [anon_sym_if] = ACTIONS(1861), - [anon_sym_impl] = ACTIONS(1861), - [anon_sym_let] = ACTIONS(1861), - [anon_sym_loop] = ACTIONS(1861), - [anon_sym_match] = ACTIONS(1861), - [anon_sym_mod] = ACTIONS(1861), - [anon_sym_pub] = ACTIONS(1861), - [anon_sym_return] = ACTIONS(1861), - [anon_sym_static] = ACTIONS(1861), - [anon_sym_struct] = ACTIONS(1861), - [anon_sym_trait] = ACTIONS(1861), - [anon_sym_type] = ACTIONS(1861), - [anon_sym_union] = ACTIONS(1861), - [anon_sym_unsafe] = ACTIONS(1861), - [anon_sym_use] = ACTIONS(1861), - [anon_sym_while] = ACTIONS(1861), - [anon_sym_POUND] = ACTIONS(1859), - [anon_sym_BANG] = ACTIONS(1859), - [anon_sym_extern] = ACTIONS(1861), - [anon_sym_LT] = ACTIONS(1859), - [anon_sym_COLON_COLON] = ACTIONS(1859), - [anon_sym_AMP] = ACTIONS(1859), - [anon_sym_DOT_DOT] = ACTIONS(1859), - [anon_sym_DASH] = ACTIONS(1859), - [anon_sym_PIPE] = ACTIONS(1859), - [anon_sym_yield] = ACTIONS(1861), - [anon_sym_move] = ACTIONS(1861), - [sym_integer_literal] = ACTIONS(1859), - [aux_sym_string_literal_token1] = ACTIONS(1859), - [sym_char_literal] = ACTIONS(1859), - [anon_sym_true] = ACTIONS(1861), - [anon_sym_false] = ACTIONS(1861), - [anon_sym_u8] = ACTIONS(1861), - [anon_sym_i8] = ACTIONS(1861), - [anon_sym_u16] = ACTIONS(1861), - [anon_sym_i16] = ACTIONS(1861), - [anon_sym_u32] = ACTIONS(1861), - [anon_sym_i32] = ACTIONS(1861), - [anon_sym_u64] = ACTIONS(1861), - [anon_sym_i64] = ACTIONS(1861), - [anon_sym_u128] = ACTIONS(1861), - [anon_sym_i128] = ACTIONS(1861), - [anon_sym_isize] = ACTIONS(1861), - [anon_sym_usize] = ACTIONS(1861), - [anon_sym_f32] = ACTIONS(1861), - [anon_sym_f64] = ACTIONS(1861), - [anon_sym_bool] = ACTIONS(1861), - [anon_sym_str] = ACTIONS(1861), - [anon_sym_char] = ACTIONS(1861), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1859), - [sym_self] = ACTIONS(1861), - [sym_super] = ACTIONS(1861), - [sym_crate] = ACTIONS(1861), - [sym_metavariable] = ACTIONS(1859), - [sym_grit_metavariable] = ACTIONS(1859), - [sym_raw_string_literal] = ACTIONS(1859), - [sym_float_literal] = ACTIONS(1859), + [ts_builtin_sym_end] = ACTIONS(1845), + [sym__primitive_identifier] = ACTIONS(1847), + [anon_sym_SEMI] = ACTIONS(1845), + [anon_sym_macro_rules_BANG] = ACTIONS(1845), + [anon_sym_LPAREN] = ACTIONS(1845), + [anon_sym_LBRACE] = ACTIONS(1845), + [anon_sym_RBRACE] = ACTIONS(1845), + [anon_sym_LBRACK] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1845), + [anon_sym_SQUOTE] = ACTIONS(1847), + [anon_sym_async] = ACTIONS(1847), + [anon_sym_break] = ACTIONS(1847), + [anon_sym_const] = ACTIONS(1847), + [anon_sym_continue] = ACTIONS(1847), + [anon_sym_default] = ACTIONS(1847), + [anon_sym_enum] = ACTIONS(1847), + [anon_sym_fn] = ACTIONS(1847), + [anon_sym_for] = ACTIONS(1847), + [anon_sym_if] = ACTIONS(1847), + [anon_sym_impl] = ACTIONS(1847), + [anon_sym_let] = ACTIONS(1847), + [anon_sym_loop] = ACTIONS(1847), + [anon_sym_match] = ACTIONS(1847), + [anon_sym_mod] = ACTIONS(1847), + [anon_sym_pub] = ACTIONS(1847), + [anon_sym_return] = ACTIONS(1847), + [anon_sym_static] = ACTIONS(1847), + [anon_sym_struct] = ACTIONS(1847), + [anon_sym_trait] = ACTIONS(1847), + [anon_sym_type] = ACTIONS(1847), + [anon_sym_union] = ACTIONS(1847), + [anon_sym_unsafe] = ACTIONS(1847), + [anon_sym_use] = ACTIONS(1847), + [anon_sym_while] = ACTIONS(1847), + [anon_sym_POUND] = ACTIONS(1845), + [anon_sym_BANG] = ACTIONS(1845), + [anon_sym_extern] = ACTIONS(1847), + [anon_sym_LT] = ACTIONS(1845), + [anon_sym_COLON_COLON] = ACTIONS(1845), + [anon_sym_AMP] = ACTIONS(1845), + [anon_sym_DOT_DOT] = ACTIONS(1845), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_PIPE] = ACTIONS(1845), + [anon_sym_yield] = ACTIONS(1847), + [anon_sym_move] = ACTIONS(1847), + [sym_integer_literal] = ACTIONS(1845), + [aux_sym_string_literal_token1] = ACTIONS(1845), + [sym_char_literal] = ACTIONS(1845), + [anon_sym_true] = ACTIONS(1847), + [anon_sym_false] = ACTIONS(1847), + [anon_sym_u8] = ACTIONS(1847), + [anon_sym_i8] = ACTIONS(1847), + [anon_sym_u16] = ACTIONS(1847), + [anon_sym_i16] = ACTIONS(1847), + [anon_sym_u32] = ACTIONS(1847), + [anon_sym_i32] = ACTIONS(1847), + [anon_sym_u64] = ACTIONS(1847), + [anon_sym_i64] = ACTIONS(1847), + [anon_sym_u128] = ACTIONS(1847), + [anon_sym_i128] = ACTIONS(1847), + [anon_sym_isize] = ACTIONS(1847), + [anon_sym_usize] = ACTIONS(1847), + [anon_sym_f32] = ACTIONS(1847), + [anon_sym_f64] = ACTIONS(1847), + [anon_sym_bool] = ACTIONS(1847), + [anon_sym_str] = ACTIONS(1847), + [anon_sym_char] = ACTIONS(1847), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(1845), + [sym_self] = ACTIONS(1847), + [sym_super] = ACTIONS(1847), + [sym_crate] = ACTIONS(1847), + [sym_metavariable] = ACTIONS(1845), + [sym_grit_metavariable] = ACTIONS(1845), + [sym_raw_string_literal] = ACTIONS(1845), + [sym_float_literal] = ACTIONS(1845), [sym_block_comment] = ACTIONS(3), }, [381] = { - [ts_builtin_sym_end] = ACTIONS(1863), - [sym__primitive_identifier] = ACTIONS(1865), - [anon_sym_SEMI] = ACTIONS(1863), - [anon_sym_macro_rules_BANG] = ACTIONS(1863), - [anon_sym_LPAREN] = ACTIONS(1863), - [anon_sym_LBRACE] = ACTIONS(1863), - [anon_sym_RBRACE] = ACTIONS(1863), - [anon_sym_LBRACK] = ACTIONS(1863), - [anon_sym_STAR] = ACTIONS(1863), - [anon_sym_SQUOTE] = ACTIONS(1865), - [anon_sym_async] = ACTIONS(1865), - [anon_sym_break] = ACTIONS(1865), - [anon_sym_const] = ACTIONS(1865), - [anon_sym_continue] = ACTIONS(1865), - [anon_sym_default] = ACTIONS(1865), - [anon_sym_enum] = ACTIONS(1865), - [anon_sym_fn] = ACTIONS(1865), - [anon_sym_for] = ACTIONS(1865), - [anon_sym_if] = ACTIONS(1865), - [anon_sym_impl] = ACTIONS(1865), - [anon_sym_let] = ACTIONS(1865), - [anon_sym_loop] = ACTIONS(1865), - [anon_sym_match] = ACTIONS(1865), - [anon_sym_mod] = ACTIONS(1865), - [anon_sym_pub] = ACTIONS(1865), - [anon_sym_return] = ACTIONS(1865), - [anon_sym_static] = ACTIONS(1865), - [anon_sym_struct] = ACTIONS(1865), - [anon_sym_trait] = ACTIONS(1865), - [anon_sym_type] = ACTIONS(1865), - [anon_sym_union] = ACTIONS(1865), - [anon_sym_unsafe] = ACTIONS(1865), - [anon_sym_use] = ACTIONS(1865), - [anon_sym_while] = ACTIONS(1865), - [anon_sym_POUND] = ACTIONS(1863), - [anon_sym_BANG] = ACTIONS(1863), - [anon_sym_extern] = ACTIONS(1865), - [anon_sym_LT] = ACTIONS(1863), - [anon_sym_COLON_COLON] = ACTIONS(1863), - [anon_sym_AMP] = ACTIONS(1863), - [anon_sym_DOT_DOT] = ACTIONS(1863), - [anon_sym_DASH] = ACTIONS(1863), - [anon_sym_PIPE] = ACTIONS(1863), - [anon_sym_yield] = ACTIONS(1865), - [anon_sym_move] = ACTIONS(1865), - [sym_integer_literal] = ACTIONS(1863), - [aux_sym_string_literal_token1] = ACTIONS(1863), - [sym_char_literal] = ACTIONS(1863), - [anon_sym_true] = ACTIONS(1865), - [anon_sym_false] = ACTIONS(1865), - [anon_sym_u8] = ACTIONS(1865), - [anon_sym_i8] = ACTIONS(1865), - [anon_sym_u16] = ACTIONS(1865), - [anon_sym_i16] = ACTIONS(1865), - [anon_sym_u32] = ACTIONS(1865), - [anon_sym_i32] = ACTIONS(1865), - [anon_sym_u64] = ACTIONS(1865), - [anon_sym_i64] = ACTIONS(1865), - [anon_sym_u128] = ACTIONS(1865), - [anon_sym_i128] = ACTIONS(1865), - [anon_sym_isize] = ACTIONS(1865), - [anon_sym_usize] = ACTIONS(1865), - [anon_sym_f32] = ACTIONS(1865), - [anon_sym_f64] = ACTIONS(1865), - [anon_sym_bool] = ACTIONS(1865), - [anon_sym_str] = ACTIONS(1865), - [anon_sym_char] = ACTIONS(1865), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1863), - [sym_self] = ACTIONS(1865), - [sym_super] = ACTIONS(1865), - [sym_crate] = ACTIONS(1865), - [sym_metavariable] = ACTIONS(1863), - [sym_grit_metavariable] = ACTIONS(1863), - [sym_raw_string_literal] = ACTIONS(1863), - [sym_float_literal] = ACTIONS(1863), + [ts_builtin_sym_end] = ACTIONS(1849), + [sym__primitive_identifier] = ACTIONS(1851), + [anon_sym_SEMI] = ACTIONS(1849), + [anon_sym_macro_rules_BANG] = ACTIONS(1849), + [anon_sym_LPAREN] = ACTIONS(1849), + [anon_sym_LBRACE] = ACTIONS(1849), + [anon_sym_RBRACE] = ACTIONS(1849), + [anon_sym_LBRACK] = ACTIONS(1849), + [anon_sym_STAR] = ACTIONS(1849), + [anon_sym_SQUOTE] = ACTIONS(1851), + [anon_sym_async] = ACTIONS(1851), + [anon_sym_break] = ACTIONS(1851), + [anon_sym_const] = ACTIONS(1851), + [anon_sym_continue] = ACTIONS(1851), + [anon_sym_default] = ACTIONS(1851), + [anon_sym_enum] = ACTIONS(1851), + [anon_sym_fn] = ACTIONS(1851), + [anon_sym_for] = ACTIONS(1851), + [anon_sym_if] = ACTIONS(1851), + [anon_sym_impl] = ACTIONS(1851), + [anon_sym_let] = ACTIONS(1851), + [anon_sym_loop] = ACTIONS(1851), + [anon_sym_match] = ACTIONS(1851), + [anon_sym_mod] = ACTIONS(1851), + [anon_sym_pub] = ACTIONS(1851), + [anon_sym_return] = ACTIONS(1851), + [anon_sym_static] = ACTIONS(1851), + [anon_sym_struct] = ACTIONS(1851), + [anon_sym_trait] = ACTIONS(1851), + [anon_sym_type] = ACTIONS(1851), + [anon_sym_union] = ACTIONS(1851), + [anon_sym_unsafe] = ACTIONS(1851), + [anon_sym_use] = ACTIONS(1851), + [anon_sym_while] = ACTIONS(1851), + [anon_sym_POUND] = ACTIONS(1849), + [anon_sym_BANG] = ACTIONS(1849), + [anon_sym_extern] = ACTIONS(1851), + [anon_sym_LT] = ACTIONS(1849), + [anon_sym_COLON_COLON] = ACTIONS(1849), + [anon_sym_AMP] = ACTIONS(1849), + [anon_sym_DOT_DOT] = ACTIONS(1849), + [anon_sym_DASH] = ACTIONS(1849), + [anon_sym_PIPE] = ACTIONS(1849), + [anon_sym_yield] = ACTIONS(1851), + [anon_sym_move] = ACTIONS(1851), + [sym_integer_literal] = ACTIONS(1849), + [aux_sym_string_literal_token1] = ACTIONS(1849), + [sym_char_literal] = ACTIONS(1849), + [anon_sym_true] = ACTIONS(1851), + [anon_sym_false] = ACTIONS(1851), + [anon_sym_u8] = ACTIONS(1851), + [anon_sym_i8] = ACTIONS(1851), + [anon_sym_u16] = ACTIONS(1851), + [anon_sym_i16] = ACTIONS(1851), + [anon_sym_u32] = ACTIONS(1851), + [anon_sym_i32] = ACTIONS(1851), + [anon_sym_u64] = ACTIONS(1851), + [anon_sym_i64] = ACTIONS(1851), + [anon_sym_u128] = ACTIONS(1851), + [anon_sym_i128] = ACTIONS(1851), + [anon_sym_isize] = ACTIONS(1851), + [anon_sym_usize] = ACTIONS(1851), + [anon_sym_f32] = ACTIONS(1851), + [anon_sym_f64] = ACTIONS(1851), + [anon_sym_bool] = ACTIONS(1851), + [anon_sym_str] = ACTIONS(1851), + [anon_sym_char] = ACTIONS(1851), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(1849), + [sym_self] = ACTIONS(1851), + [sym_super] = ACTIONS(1851), + [sym_crate] = ACTIONS(1851), + [sym_metavariable] = ACTIONS(1849), + [sym_grit_metavariable] = ACTIONS(1849), + [sym_raw_string_literal] = ACTIONS(1849), + [sym_float_literal] = ACTIONS(1849), [sym_block_comment] = ACTIONS(3), }, [382] = { - [ts_builtin_sym_end] = ACTIONS(1867), - [sym__primitive_identifier] = ACTIONS(1869), - [anon_sym_SEMI] = ACTIONS(1867), - [anon_sym_macro_rules_BANG] = ACTIONS(1867), - [anon_sym_LPAREN] = ACTIONS(1867), - [anon_sym_LBRACE] = ACTIONS(1867), - [anon_sym_RBRACE] = ACTIONS(1867), - [anon_sym_LBRACK] = ACTIONS(1867), - [anon_sym_STAR] = ACTIONS(1867), - [anon_sym_SQUOTE] = ACTIONS(1869), - [anon_sym_async] = ACTIONS(1869), - [anon_sym_break] = ACTIONS(1869), - [anon_sym_const] = ACTIONS(1869), - [anon_sym_continue] = ACTIONS(1869), - [anon_sym_default] = ACTIONS(1869), - [anon_sym_enum] = ACTIONS(1869), - [anon_sym_fn] = ACTIONS(1869), - [anon_sym_for] = ACTIONS(1869), - [anon_sym_if] = ACTIONS(1869), - [anon_sym_impl] = ACTIONS(1869), - [anon_sym_let] = ACTIONS(1869), - [anon_sym_loop] = ACTIONS(1869), - [anon_sym_match] = ACTIONS(1869), - [anon_sym_mod] = ACTIONS(1869), - [anon_sym_pub] = ACTIONS(1869), - [anon_sym_return] = ACTIONS(1869), - [anon_sym_static] = ACTIONS(1869), - [anon_sym_struct] = ACTIONS(1869), - [anon_sym_trait] = ACTIONS(1869), - [anon_sym_type] = ACTIONS(1869), - [anon_sym_union] = ACTIONS(1869), - [anon_sym_unsafe] = ACTIONS(1869), - [anon_sym_use] = ACTIONS(1869), - [anon_sym_while] = ACTIONS(1869), - [anon_sym_POUND] = ACTIONS(1867), - [anon_sym_BANG] = ACTIONS(1867), - [anon_sym_extern] = ACTIONS(1869), - [anon_sym_LT] = ACTIONS(1867), - [anon_sym_COLON_COLON] = ACTIONS(1867), - [anon_sym_AMP] = ACTIONS(1867), - [anon_sym_DOT_DOT] = ACTIONS(1867), - [anon_sym_DASH] = ACTIONS(1867), - [anon_sym_PIPE] = ACTIONS(1867), - [anon_sym_yield] = ACTIONS(1869), - [anon_sym_move] = ACTIONS(1869), - [sym_integer_literal] = ACTIONS(1867), - [aux_sym_string_literal_token1] = ACTIONS(1867), - [sym_char_literal] = ACTIONS(1867), - [anon_sym_true] = ACTIONS(1869), - [anon_sym_false] = ACTIONS(1869), - [anon_sym_u8] = ACTIONS(1869), - [anon_sym_i8] = ACTIONS(1869), - [anon_sym_u16] = ACTIONS(1869), - [anon_sym_i16] = ACTIONS(1869), - [anon_sym_u32] = ACTIONS(1869), - [anon_sym_i32] = ACTIONS(1869), - [anon_sym_u64] = ACTIONS(1869), - [anon_sym_i64] = ACTIONS(1869), - [anon_sym_u128] = ACTIONS(1869), - [anon_sym_i128] = ACTIONS(1869), - [anon_sym_isize] = ACTIONS(1869), - [anon_sym_usize] = ACTIONS(1869), - [anon_sym_f32] = ACTIONS(1869), - [anon_sym_f64] = ACTIONS(1869), - [anon_sym_bool] = ACTIONS(1869), - [anon_sym_str] = ACTIONS(1869), - [anon_sym_char] = ACTIONS(1869), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1867), - [sym_self] = ACTIONS(1869), - [sym_super] = ACTIONS(1869), - [sym_crate] = ACTIONS(1869), - [sym_metavariable] = ACTIONS(1867), - [sym_grit_metavariable] = ACTIONS(1867), - [sym_raw_string_literal] = ACTIONS(1867), - [sym_float_literal] = ACTIONS(1867), + [ts_builtin_sym_end] = ACTIONS(1853), + [sym__primitive_identifier] = ACTIONS(1855), + [anon_sym_SEMI] = ACTIONS(1853), + [anon_sym_macro_rules_BANG] = ACTIONS(1853), + [anon_sym_LPAREN] = ACTIONS(1853), + [anon_sym_LBRACE] = ACTIONS(1853), + [anon_sym_RBRACE] = ACTIONS(1853), + [anon_sym_LBRACK] = ACTIONS(1853), + [anon_sym_STAR] = ACTIONS(1853), + [anon_sym_SQUOTE] = ACTIONS(1855), + [anon_sym_async] = ACTIONS(1855), + [anon_sym_break] = ACTIONS(1855), + [anon_sym_const] = ACTIONS(1855), + [anon_sym_continue] = ACTIONS(1855), + [anon_sym_default] = ACTIONS(1855), + [anon_sym_enum] = ACTIONS(1855), + [anon_sym_fn] = ACTIONS(1855), + [anon_sym_for] = ACTIONS(1855), + [anon_sym_if] = ACTIONS(1855), + [anon_sym_impl] = ACTIONS(1855), + [anon_sym_let] = ACTIONS(1855), + [anon_sym_loop] = ACTIONS(1855), + [anon_sym_match] = ACTIONS(1855), + [anon_sym_mod] = ACTIONS(1855), + [anon_sym_pub] = ACTIONS(1855), + [anon_sym_return] = ACTIONS(1855), + [anon_sym_static] = ACTIONS(1855), + [anon_sym_struct] = ACTIONS(1855), + [anon_sym_trait] = ACTIONS(1855), + [anon_sym_type] = ACTIONS(1855), + [anon_sym_union] = ACTIONS(1855), + [anon_sym_unsafe] = ACTIONS(1855), + [anon_sym_use] = ACTIONS(1855), + [anon_sym_while] = ACTIONS(1855), + [anon_sym_POUND] = ACTIONS(1853), + [anon_sym_BANG] = ACTIONS(1853), + [anon_sym_extern] = ACTIONS(1855), + [anon_sym_LT] = ACTIONS(1853), + [anon_sym_COLON_COLON] = ACTIONS(1853), + [anon_sym_AMP] = ACTIONS(1853), + [anon_sym_DOT_DOT] = ACTIONS(1853), + [anon_sym_DASH] = ACTIONS(1853), + [anon_sym_PIPE] = ACTIONS(1853), + [anon_sym_yield] = ACTIONS(1855), + [anon_sym_move] = ACTIONS(1855), + [sym_integer_literal] = ACTIONS(1853), + [aux_sym_string_literal_token1] = ACTIONS(1853), + [sym_char_literal] = ACTIONS(1853), + [anon_sym_true] = ACTIONS(1855), + [anon_sym_false] = ACTIONS(1855), + [anon_sym_u8] = ACTIONS(1855), + [anon_sym_i8] = ACTIONS(1855), + [anon_sym_u16] = ACTIONS(1855), + [anon_sym_i16] = ACTIONS(1855), + [anon_sym_u32] = ACTIONS(1855), + [anon_sym_i32] = ACTIONS(1855), + [anon_sym_u64] = ACTIONS(1855), + [anon_sym_i64] = ACTIONS(1855), + [anon_sym_u128] = ACTIONS(1855), + [anon_sym_i128] = ACTIONS(1855), + [anon_sym_isize] = ACTIONS(1855), + [anon_sym_usize] = ACTIONS(1855), + [anon_sym_f32] = ACTIONS(1855), + [anon_sym_f64] = ACTIONS(1855), + [anon_sym_bool] = ACTIONS(1855), + [anon_sym_str] = ACTIONS(1855), + [anon_sym_char] = ACTIONS(1855), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(1853), + [sym_self] = ACTIONS(1855), + [sym_super] = ACTIONS(1855), + [sym_crate] = ACTIONS(1855), + [sym_metavariable] = ACTIONS(1853), + [sym_grit_metavariable] = ACTIONS(1853), + [sym_raw_string_literal] = ACTIONS(1853), + [sym_float_literal] = ACTIONS(1853), [sym_block_comment] = ACTIONS(3), }, [383] = { - [ts_builtin_sym_end] = ACTIONS(1871), - [sym__primitive_identifier] = ACTIONS(1873), - [anon_sym_SEMI] = ACTIONS(1871), - [anon_sym_macro_rules_BANG] = ACTIONS(1871), - [anon_sym_LPAREN] = ACTIONS(1871), - [anon_sym_LBRACE] = ACTIONS(1871), - [anon_sym_RBRACE] = ACTIONS(1871), - [anon_sym_LBRACK] = ACTIONS(1871), - [anon_sym_STAR] = ACTIONS(1871), - [anon_sym_SQUOTE] = ACTIONS(1873), - [anon_sym_async] = ACTIONS(1873), - [anon_sym_break] = ACTIONS(1873), - [anon_sym_const] = ACTIONS(1873), - [anon_sym_continue] = ACTIONS(1873), - [anon_sym_default] = ACTIONS(1873), - [anon_sym_enum] = ACTIONS(1873), - [anon_sym_fn] = ACTIONS(1873), - [anon_sym_for] = ACTIONS(1873), - [anon_sym_if] = ACTIONS(1873), - [anon_sym_impl] = ACTIONS(1873), - [anon_sym_let] = ACTIONS(1873), - [anon_sym_loop] = ACTIONS(1873), - [anon_sym_match] = ACTIONS(1873), - [anon_sym_mod] = ACTIONS(1873), - [anon_sym_pub] = ACTIONS(1873), - [anon_sym_return] = ACTIONS(1873), - [anon_sym_static] = ACTIONS(1873), - [anon_sym_struct] = ACTIONS(1873), - [anon_sym_trait] = ACTIONS(1873), - [anon_sym_type] = ACTIONS(1873), - [anon_sym_union] = ACTIONS(1873), - [anon_sym_unsafe] = ACTIONS(1873), - [anon_sym_use] = ACTIONS(1873), - [anon_sym_while] = ACTIONS(1873), - [anon_sym_POUND] = ACTIONS(1871), - [anon_sym_BANG] = ACTIONS(1871), - [anon_sym_extern] = ACTIONS(1873), - [anon_sym_LT] = ACTIONS(1871), - [anon_sym_COLON_COLON] = ACTIONS(1871), - [anon_sym_AMP] = ACTIONS(1871), - [anon_sym_DOT_DOT] = ACTIONS(1871), - [anon_sym_DASH] = ACTIONS(1871), - [anon_sym_PIPE] = ACTIONS(1871), - [anon_sym_yield] = ACTIONS(1873), - [anon_sym_move] = ACTIONS(1873), - [sym_integer_literal] = ACTIONS(1871), - [aux_sym_string_literal_token1] = ACTIONS(1871), - [sym_char_literal] = ACTIONS(1871), - [anon_sym_true] = ACTIONS(1873), - [anon_sym_false] = ACTIONS(1873), - [anon_sym_u8] = ACTIONS(1873), - [anon_sym_i8] = ACTIONS(1873), - [anon_sym_u16] = ACTIONS(1873), - [anon_sym_i16] = ACTIONS(1873), - [anon_sym_u32] = ACTIONS(1873), - [anon_sym_i32] = ACTIONS(1873), - [anon_sym_u64] = ACTIONS(1873), - [anon_sym_i64] = ACTIONS(1873), - [anon_sym_u128] = ACTIONS(1873), - [anon_sym_i128] = ACTIONS(1873), - [anon_sym_isize] = ACTIONS(1873), - [anon_sym_usize] = ACTIONS(1873), - [anon_sym_f32] = ACTIONS(1873), - [anon_sym_f64] = ACTIONS(1873), - [anon_sym_bool] = ACTIONS(1873), - [anon_sym_str] = ACTIONS(1873), - [anon_sym_char] = ACTIONS(1873), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1871), - [sym_self] = ACTIONS(1873), - [sym_super] = ACTIONS(1873), - [sym_crate] = ACTIONS(1873), - [sym_metavariable] = ACTIONS(1871), - [sym_grit_metavariable] = ACTIONS(1871), - [sym_raw_string_literal] = ACTIONS(1871), - [sym_float_literal] = ACTIONS(1871), - [sym_block_comment] = ACTIONS(3), - }, - [384] = { - [ts_builtin_sym_end] = ACTIONS(1875), - [sym__primitive_identifier] = ACTIONS(1877), - [anon_sym_SEMI] = ACTIONS(1875), - [anon_sym_macro_rules_BANG] = ACTIONS(1875), - [anon_sym_LPAREN] = ACTIONS(1875), - [anon_sym_LBRACE] = ACTIONS(1875), - [anon_sym_RBRACE] = ACTIONS(1875), - [anon_sym_LBRACK] = ACTIONS(1875), - [anon_sym_STAR] = ACTIONS(1875), - [anon_sym_SQUOTE] = ACTIONS(1877), - [anon_sym_async] = ACTIONS(1877), - [anon_sym_break] = ACTIONS(1877), - [anon_sym_const] = ACTIONS(1877), - [anon_sym_continue] = ACTIONS(1877), - [anon_sym_default] = ACTIONS(1877), - [anon_sym_enum] = ACTIONS(1877), - [anon_sym_fn] = ACTIONS(1877), - [anon_sym_for] = ACTIONS(1877), - [anon_sym_if] = ACTIONS(1877), - [anon_sym_impl] = ACTIONS(1877), - [anon_sym_let] = ACTIONS(1877), - [anon_sym_loop] = ACTIONS(1877), - [anon_sym_match] = ACTIONS(1877), - [anon_sym_mod] = ACTIONS(1877), - [anon_sym_pub] = ACTIONS(1877), - [anon_sym_return] = ACTIONS(1877), - [anon_sym_static] = ACTIONS(1877), - [anon_sym_struct] = ACTIONS(1877), - [anon_sym_trait] = ACTIONS(1877), - [anon_sym_type] = ACTIONS(1877), - [anon_sym_union] = ACTIONS(1877), - [anon_sym_unsafe] = ACTIONS(1877), - [anon_sym_use] = ACTIONS(1877), - [anon_sym_while] = ACTIONS(1877), + [sym_attribute_item] = STATE(582), + [sym_bracketed_type] = STATE(2684), + [sym_generic_type] = STATE(2683), + [sym_generic_type_with_turbofish] = STATE(2682), + [sym_macro_invocation] = STATE(1615), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier] = STATE(2202), + [sym_match_arm] = STATE(383), + [sym_match_pattern] = STATE(2613), + [sym_const_block] = STATE(1615), + [sym_pattern] = STATE(2353), + [sym_tuple_pattern] = STATE(1615), + [sym_slice_pattern] = STATE(1615), + [sym_tuple_struct_pattern] = STATE(1615), + [sym_struct_pattern] = STATE(1615), + [sym_remaining_field_pattern] = STATE(1615), + [sym_mut_pattern] = STATE(1615), + [sym_range_pattern] = STATE(1615), + [sym_ref_pattern] = STATE(1615), + [sym_captured_pattern] = STATE(1615), + [sym_reference_pattern] = STATE(1615), + [sym_or_pattern] = STATE(1615), + [sym__literal_pattern] = STATE(1492), + [sym_negative_literal] = STATE(1521), + [sym_string_literal] = STATE(1521), + [sym_boolean_literal] = STATE(1521), + [sym_primitive_type] = STATE(1479), + [sym_identifier] = STATE(1432), + [aux_sym_enum_variant_list_repeat1] = STATE(582), + [aux_sym_match_block_repeat1] = STATE(383), + [sym__primitive_identifier] = ACTIONS(1857), + [sym_underscore] = ACTIONS(1860), + [anon_sym_LPAREN] = ACTIONS(1863), + [anon_sym_LBRACK] = ACTIONS(1866), + [anon_sym_const] = ACTIONS(1869), + [anon_sym_default] = ACTIONS(1872), + [anon_sym_union] = ACTIONS(1872), [anon_sym_POUND] = ACTIONS(1875), - [anon_sym_BANG] = ACTIONS(1875), - [anon_sym_extern] = ACTIONS(1877), - [anon_sym_LT] = ACTIONS(1875), - [anon_sym_COLON_COLON] = ACTIONS(1875), - [anon_sym_AMP] = ACTIONS(1875), - [anon_sym_DOT_DOT] = ACTIONS(1875), - [anon_sym_DASH] = ACTIONS(1875), - [anon_sym_PIPE] = ACTIONS(1875), - [anon_sym_yield] = ACTIONS(1877), - [anon_sym_move] = ACTIONS(1877), - [sym_integer_literal] = ACTIONS(1875), - [aux_sym_string_literal_token1] = ACTIONS(1875), - [sym_char_literal] = ACTIONS(1875), - [anon_sym_true] = ACTIONS(1877), - [anon_sym_false] = ACTIONS(1877), - [anon_sym_u8] = ACTIONS(1877), - [anon_sym_i8] = ACTIONS(1877), - [anon_sym_u16] = ACTIONS(1877), - [anon_sym_i16] = ACTIONS(1877), - [anon_sym_u32] = ACTIONS(1877), - [anon_sym_i32] = ACTIONS(1877), - [anon_sym_u64] = ACTIONS(1877), - [anon_sym_i64] = ACTIONS(1877), - [anon_sym_u128] = ACTIONS(1877), - [anon_sym_i128] = ACTIONS(1877), - [anon_sym_isize] = ACTIONS(1877), - [anon_sym_usize] = ACTIONS(1877), - [anon_sym_f32] = ACTIONS(1877), - [anon_sym_f64] = ACTIONS(1877), - [anon_sym_bool] = ACTIONS(1877), - [anon_sym_str] = ACTIONS(1877), - [anon_sym_char] = ACTIONS(1877), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1875), - [sym_self] = ACTIONS(1877), - [sym_super] = ACTIONS(1877), - [sym_crate] = ACTIONS(1877), - [sym_metavariable] = ACTIONS(1875), - [sym_grit_metavariable] = ACTIONS(1875), - [sym_raw_string_literal] = ACTIONS(1875), - [sym_float_literal] = ACTIONS(1875), - [sym_block_comment] = ACTIONS(3), - }, - [385] = { - [ts_builtin_sym_end] = ACTIONS(1879), - [sym__primitive_identifier] = ACTIONS(1881), - [anon_sym_SEMI] = ACTIONS(1879), - [anon_sym_macro_rules_BANG] = ACTIONS(1879), - [anon_sym_LPAREN] = ACTIONS(1879), - [anon_sym_LBRACE] = ACTIONS(1879), - [anon_sym_RBRACE] = ACTIONS(1879), - [anon_sym_LBRACK] = ACTIONS(1879), - [anon_sym_STAR] = ACTIONS(1879), - [anon_sym_SQUOTE] = ACTIONS(1881), - [anon_sym_async] = ACTIONS(1881), - [anon_sym_break] = ACTIONS(1881), - [anon_sym_const] = ACTIONS(1881), - [anon_sym_continue] = ACTIONS(1881), - [anon_sym_default] = ACTIONS(1881), - [anon_sym_enum] = ACTIONS(1881), - [anon_sym_fn] = ACTIONS(1881), - [anon_sym_for] = ACTIONS(1881), - [anon_sym_if] = ACTIONS(1881), - [anon_sym_impl] = ACTIONS(1881), - [anon_sym_let] = ACTIONS(1881), - [anon_sym_loop] = ACTIONS(1881), - [anon_sym_match] = ACTIONS(1881), - [anon_sym_mod] = ACTIONS(1881), - [anon_sym_pub] = ACTIONS(1881), - [anon_sym_return] = ACTIONS(1881), - [anon_sym_static] = ACTIONS(1881), - [anon_sym_struct] = ACTIONS(1881), - [anon_sym_trait] = ACTIONS(1881), - [anon_sym_type] = ACTIONS(1881), - [anon_sym_union] = ACTIONS(1881), - [anon_sym_unsafe] = ACTIONS(1881), - [anon_sym_use] = ACTIONS(1881), - [anon_sym_while] = ACTIONS(1881), - [anon_sym_POUND] = ACTIONS(1879), - [anon_sym_BANG] = ACTIONS(1879), - [anon_sym_extern] = ACTIONS(1881), - [anon_sym_LT] = ACTIONS(1879), - [anon_sym_COLON_COLON] = ACTIONS(1879), - [anon_sym_AMP] = ACTIONS(1879), - [anon_sym_DOT_DOT] = ACTIONS(1879), - [anon_sym_DASH] = ACTIONS(1879), - [anon_sym_PIPE] = ACTIONS(1879), - [anon_sym_yield] = ACTIONS(1881), - [anon_sym_move] = ACTIONS(1881), - [sym_integer_literal] = ACTIONS(1879), - [aux_sym_string_literal_token1] = ACTIONS(1879), - [sym_char_literal] = ACTIONS(1879), - [anon_sym_true] = ACTIONS(1881), - [anon_sym_false] = ACTIONS(1881), - [anon_sym_u8] = ACTIONS(1881), - [anon_sym_i8] = ACTIONS(1881), - [anon_sym_u16] = ACTIONS(1881), - [anon_sym_i16] = ACTIONS(1881), - [anon_sym_u32] = ACTIONS(1881), - [anon_sym_i32] = ACTIONS(1881), - [anon_sym_u64] = ACTIONS(1881), - [anon_sym_i64] = ACTIONS(1881), - [anon_sym_u128] = ACTIONS(1881), - [anon_sym_i128] = ACTIONS(1881), - [anon_sym_isize] = ACTIONS(1881), - [anon_sym_usize] = ACTIONS(1881), - [anon_sym_f32] = ACTIONS(1881), - [anon_sym_f64] = ACTIONS(1881), - [anon_sym_bool] = ACTIONS(1881), - [anon_sym_str] = ACTIONS(1881), - [anon_sym_char] = ACTIONS(1881), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1879), - [sym_self] = ACTIONS(1881), - [sym_super] = ACTIONS(1881), - [sym_crate] = ACTIONS(1881), - [sym_metavariable] = ACTIONS(1879), - [sym_grit_metavariable] = ACTIONS(1879), - [sym_raw_string_literal] = ACTIONS(1879), - [sym_float_literal] = ACTIONS(1879), - [sym_block_comment] = ACTIONS(3), - }, - [386] = { - [ts_builtin_sym_end] = ACTIONS(1883), - [sym__primitive_identifier] = ACTIONS(1885), - [anon_sym_SEMI] = ACTIONS(1883), - [anon_sym_macro_rules_BANG] = ACTIONS(1883), - [anon_sym_LPAREN] = ACTIONS(1883), - [anon_sym_LBRACE] = ACTIONS(1883), - [anon_sym_RBRACE] = ACTIONS(1883), - [anon_sym_LBRACK] = ACTIONS(1883), - [anon_sym_STAR] = ACTIONS(1883), - [anon_sym_SQUOTE] = ACTIONS(1885), - [anon_sym_async] = ACTIONS(1885), - [anon_sym_break] = ACTIONS(1885), - [anon_sym_const] = ACTIONS(1885), - [anon_sym_continue] = ACTIONS(1885), - [anon_sym_default] = ACTIONS(1885), - [anon_sym_enum] = ACTIONS(1885), - [anon_sym_fn] = ACTIONS(1885), - [anon_sym_for] = ACTIONS(1885), - [anon_sym_if] = ACTIONS(1885), - [anon_sym_impl] = ACTIONS(1885), - [anon_sym_let] = ACTIONS(1885), - [anon_sym_loop] = ACTIONS(1885), - [anon_sym_match] = ACTIONS(1885), - [anon_sym_mod] = ACTIONS(1885), - [anon_sym_pub] = ACTIONS(1885), - [anon_sym_return] = ACTIONS(1885), - [anon_sym_static] = ACTIONS(1885), - [anon_sym_struct] = ACTIONS(1885), - [anon_sym_trait] = ACTIONS(1885), - [anon_sym_type] = ACTIONS(1885), - [anon_sym_union] = ACTIONS(1885), - [anon_sym_unsafe] = ACTIONS(1885), - [anon_sym_use] = ACTIONS(1885), - [anon_sym_while] = ACTIONS(1885), - [anon_sym_POUND] = ACTIONS(1883), - [anon_sym_BANG] = ACTIONS(1883), - [anon_sym_extern] = ACTIONS(1885), - [anon_sym_LT] = ACTIONS(1883), - [anon_sym_COLON_COLON] = ACTIONS(1883), - [anon_sym_AMP] = ACTIONS(1883), - [anon_sym_DOT_DOT] = ACTIONS(1883), - [anon_sym_DASH] = ACTIONS(1883), - [anon_sym_PIPE] = ACTIONS(1883), - [anon_sym_yield] = ACTIONS(1885), - [anon_sym_move] = ACTIONS(1885), - [sym_integer_literal] = ACTIONS(1883), - [aux_sym_string_literal_token1] = ACTIONS(1883), - [sym_char_literal] = ACTIONS(1883), - [anon_sym_true] = ACTIONS(1885), - [anon_sym_false] = ACTIONS(1885), - [anon_sym_u8] = ACTIONS(1885), - [anon_sym_i8] = ACTIONS(1885), - [anon_sym_u16] = ACTIONS(1885), - [anon_sym_i16] = ACTIONS(1885), - [anon_sym_u32] = ACTIONS(1885), - [anon_sym_i32] = ACTIONS(1885), - [anon_sym_u64] = ACTIONS(1885), - [anon_sym_i64] = ACTIONS(1885), - [anon_sym_u128] = ACTIONS(1885), - [anon_sym_i128] = ACTIONS(1885), - [anon_sym_isize] = ACTIONS(1885), - [anon_sym_usize] = ACTIONS(1885), - [anon_sym_f32] = ACTIONS(1885), - [anon_sym_f64] = ACTIONS(1885), - [anon_sym_bool] = ACTIONS(1885), - [anon_sym_str] = ACTIONS(1885), - [anon_sym_char] = ACTIONS(1885), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1883), - [sym_self] = ACTIONS(1885), - [sym_super] = ACTIONS(1885), - [sym_crate] = ACTIONS(1885), - [sym_metavariable] = ACTIONS(1883), - [sym_grit_metavariable] = ACTIONS(1883), - [sym_raw_string_literal] = ACTIONS(1883), - [sym_float_literal] = ACTIONS(1883), - [sym_block_comment] = ACTIONS(3), - }, - [387] = { - [ts_builtin_sym_end] = ACTIONS(1887), - [sym__primitive_identifier] = ACTIONS(1889), - [anon_sym_SEMI] = ACTIONS(1887), - [anon_sym_macro_rules_BANG] = ACTIONS(1887), - [anon_sym_LPAREN] = ACTIONS(1887), - [anon_sym_LBRACE] = ACTIONS(1887), - [anon_sym_RBRACE] = ACTIONS(1887), - [anon_sym_LBRACK] = ACTIONS(1887), - [anon_sym_STAR] = ACTIONS(1887), - [anon_sym_SQUOTE] = ACTIONS(1889), - [anon_sym_async] = ACTIONS(1889), - [anon_sym_break] = ACTIONS(1889), - [anon_sym_const] = ACTIONS(1889), - [anon_sym_continue] = ACTIONS(1889), - [anon_sym_default] = ACTIONS(1889), - [anon_sym_enum] = ACTIONS(1889), - [anon_sym_fn] = ACTIONS(1889), - [anon_sym_for] = ACTIONS(1889), - [anon_sym_if] = ACTIONS(1889), - [anon_sym_impl] = ACTIONS(1889), - [anon_sym_let] = ACTIONS(1889), - [anon_sym_loop] = ACTIONS(1889), - [anon_sym_match] = ACTIONS(1889), - [anon_sym_mod] = ACTIONS(1889), - [anon_sym_pub] = ACTIONS(1889), - [anon_sym_return] = ACTIONS(1889), - [anon_sym_static] = ACTIONS(1889), - [anon_sym_struct] = ACTIONS(1889), - [anon_sym_trait] = ACTIONS(1889), - [anon_sym_type] = ACTIONS(1889), - [anon_sym_union] = ACTIONS(1889), - [anon_sym_unsafe] = ACTIONS(1889), - [anon_sym_use] = ACTIONS(1889), - [anon_sym_while] = ACTIONS(1889), - [anon_sym_POUND] = ACTIONS(1887), - [anon_sym_BANG] = ACTIONS(1887), - [anon_sym_extern] = ACTIONS(1889), - [anon_sym_LT] = ACTIONS(1887), - [anon_sym_COLON_COLON] = ACTIONS(1887), + [anon_sym_ref] = ACTIONS(1878), + [anon_sym_LT] = ACTIONS(1881), + [anon_sym_COLON_COLON] = ACTIONS(1884), [anon_sym_AMP] = ACTIONS(1887), - [anon_sym_DOT_DOT] = ACTIONS(1887), - [anon_sym_DASH] = ACTIONS(1887), - [anon_sym_PIPE] = ACTIONS(1887), - [anon_sym_yield] = ACTIONS(1889), - [anon_sym_move] = ACTIONS(1889), - [sym_integer_literal] = ACTIONS(1887), - [aux_sym_string_literal_token1] = ACTIONS(1887), - [sym_char_literal] = ACTIONS(1887), - [anon_sym_true] = ACTIONS(1889), - [anon_sym_false] = ACTIONS(1889), - [anon_sym_u8] = ACTIONS(1889), - [anon_sym_i8] = ACTIONS(1889), - [anon_sym_u16] = ACTIONS(1889), - [anon_sym_i16] = ACTIONS(1889), - [anon_sym_u32] = ACTIONS(1889), - [anon_sym_i32] = ACTIONS(1889), - [anon_sym_u64] = ACTIONS(1889), - [anon_sym_i64] = ACTIONS(1889), - [anon_sym_u128] = ACTIONS(1889), - [anon_sym_i128] = ACTIONS(1889), - [anon_sym_isize] = ACTIONS(1889), - [anon_sym_usize] = ACTIONS(1889), - [anon_sym_f32] = ACTIONS(1889), - [anon_sym_f64] = ACTIONS(1889), - [anon_sym_bool] = ACTIONS(1889), - [anon_sym_str] = ACTIONS(1889), - [anon_sym_char] = ACTIONS(1889), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1887), - [sym_self] = ACTIONS(1889), - [sym_super] = ACTIONS(1889), - [sym_crate] = ACTIONS(1889), - [sym_metavariable] = ACTIONS(1887), - [sym_grit_metavariable] = ACTIONS(1887), - [sym_raw_string_literal] = ACTIONS(1887), - [sym_float_literal] = ACTIONS(1887), - [sym_block_comment] = ACTIONS(3), - }, - [388] = { - [ts_builtin_sym_end] = ACTIONS(1891), - [sym__primitive_identifier] = ACTIONS(1893), - [anon_sym_SEMI] = ACTIONS(1891), - [anon_sym_macro_rules_BANG] = ACTIONS(1891), - [anon_sym_LPAREN] = ACTIONS(1891), - [anon_sym_LBRACE] = ACTIONS(1891), - [anon_sym_RBRACE] = ACTIONS(1891), - [anon_sym_LBRACK] = ACTIONS(1891), - [anon_sym_STAR] = ACTIONS(1891), - [anon_sym_SQUOTE] = ACTIONS(1893), - [anon_sym_async] = ACTIONS(1893), - [anon_sym_break] = ACTIONS(1893), - [anon_sym_const] = ACTIONS(1893), - [anon_sym_continue] = ACTIONS(1893), - [anon_sym_default] = ACTIONS(1893), - [anon_sym_enum] = ACTIONS(1893), - [anon_sym_fn] = ACTIONS(1893), - [anon_sym_for] = ACTIONS(1893), - [anon_sym_if] = ACTIONS(1893), - [anon_sym_impl] = ACTIONS(1893), - [anon_sym_let] = ACTIONS(1893), - [anon_sym_loop] = ACTIONS(1893), - [anon_sym_match] = ACTIONS(1893), - [anon_sym_mod] = ACTIONS(1893), - [anon_sym_pub] = ACTIONS(1893), - [anon_sym_return] = ACTIONS(1893), - [anon_sym_static] = ACTIONS(1893), - [anon_sym_struct] = ACTIONS(1893), - [anon_sym_trait] = ACTIONS(1893), - [anon_sym_type] = ACTIONS(1893), - [anon_sym_union] = ACTIONS(1893), - [anon_sym_unsafe] = ACTIONS(1893), - [anon_sym_use] = ACTIONS(1893), - [anon_sym_while] = ACTIONS(1893), - [anon_sym_POUND] = ACTIONS(1891), - [anon_sym_BANG] = ACTIONS(1891), - [anon_sym_extern] = ACTIONS(1893), - [anon_sym_LT] = ACTIONS(1891), - [anon_sym_COLON_COLON] = ACTIONS(1891), - [anon_sym_AMP] = ACTIONS(1891), - [anon_sym_DOT_DOT] = ACTIONS(1891), - [anon_sym_DASH] = ACTIONS(1891), - [anon_sym_PIPE] = ACTIONS(1891), - [anon_sym_yield] = ACTIONS(1893), - [anon_sym_move] = ACTIONS(1893), - [sym_integer_literal] = ACTIONS(1891), - [aux_sym_string_literal_token1] = ACTIONS(1891), - [sym_char_literal] = ACTIONS(1891), - [anon_sym_true] = ACTIONS(1893), - [anon_sym_false] = ACTIONS(1893), - [anon_sym_u8] = ACTIONS(1893), - [anon_sym_i8] = ACTIONS(1893), - [anon_sym_u16] = ACTIONS(1893), - [anon_sym_i16] = ACTIONS(1893), - [anon_sym_u32] = ACTIONS(1893), - [anon_sym_i32] = ACTIONS(1893), - [anon_sym_u64] = ACTIONS(1893), - [anon_sym_i64] = ACTIONS(1893), - [anon_sym_u128] = ACTIONS(1893), - [anon_sym_i128] = ACTIONS(1893), - [anon_sym_isize] = ACTIONS(1893), - [anon_sym_usize] = ACTIONS(1893), - [anon_sym_f32] = ACTIONS(1893), - [anon_sym_f64] = ACTIONS(1893), - [anon_sym_bool] = ACTIONS(1893), - [anon_sym_str] = ACTIONS(1893), - [anon_sym_char] = ACTIONS(1893), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1891), - [sym_self] = ACTIONS(1893), - [sym_super] = ACTIONS(1893), - [sym_crate] = ACTIONS(1893), - [sym_metavariable] = ACTIONS(1891), - [sym_grit_metavariable] = ACTIONS(1891), - [sym_raw_string_literal] = ACTIONS(1891), - [sym_float_literal] = ACTIONS(1891), - [sym_block_comment] = ACTIONS(3), - }, - [389] = { - [ts_builtin_sym_end] = ACTIONS(1895), - [sym__primitive_identifier] = ACTIONS(1897), - [anon_sym_SEMI] = ACTIONS(1895), - [anon_sym_macro_rules_BANG] = ACTIONS(1895), - [anon_sym_LPAREN] = ACTIONS(1895), - [anon_sym_LBRACE] = ACTIONS(1895), - [anon_sym_RBRACE] = ACTIONS(1895), - [anon_sym_LBRACK] = ACTIONS(1895), - [anon_sym_STAR] = ACTIONS(1895), - [anon_sym_SQUOTE] = ACTIONS(1897), - [anon_sym_async] = ACTIONS(1897), - [anon_sym_break] = ACTIONS(1897), - [anon_sym_const] = ACTIONS(1897), - [anon_sym_continue] = ACTIONS(1897), - [anon_sym_default] = ACTIONS(1897), - [anon_sym_enum] = ACTIONS(1897), - [anon_sym_fn] = ACTIONS(1897), - [anon_sym_for] = ACTIONS(1897), - [anon_sym_if] = ACTIONS(1897), - [anon_sym_impl] = ACTIONS(1897), - [anon_sym_let] = ACTIONS(1897), - [anon_sym_loop] = ACTIONS(1897), - [anon_sym_match] = ACTIONS(1897), - [anon_sym_mod] = ACTIONS(1897), - [anon_sym_pub] = ACTIONS(1897), - [anon_sym_return] = ACTIONS(1897), - [anon_sym_static] = ACTIONS(1897), - [anon_sym_struct] = ACTIONS(1897), - [anon_sym_trait] = ACTIONS(1897), - [anon_sym_type] = ACTIONS(1897), - [anon_sym_union] = ACTIONS(1897), - [anon_sym_unsafe] = ACTIONS(1897), - [anon_sym_use] = ACTIONS(1897), - [anon_sym_while] = ACTIONS(1897), - [anon_sym_POUND] = ACTIONS(1895), - [anon_sym_BANG] = ACTIONS(1895), - [anon_sym_extern] = ACTIONS(1897), - [anon_sym_LT] = ACTIONS(1895), - [anon_sym_COLON_COLON] = ACTIONS(1895), - [anon_sym_AMP] = ACTIONS(1895), - [anon_sym_DOT_DOT] = ACTIONS(1895), - [anon_sym_DASH] = ACTIONS(1895), - [anon_sym_PIPE] = ACTIONS(1895), - [anon_sym_yield] = ACTIONS(1897), - [anon_sym_move] = ACTIONS(1897), - [sym_integer_literal] = ACTIONS(1895), - [aux_sym_string_literal_token1] = ACTIONS(1895), - [sym_char_literal] = ACTIONS(1895), - [anon_sym_true] = ACTIONS(1897), - [anon_sym_false] = ACTIONS(1897), - [anon_sym_u8] = ACTIONS(1897), - [anon_sym_i8] = ACTIONS(1897), - [anon_sym_u16] = ACTIONS(1897), - [anon_sym_i16] = ACTIONS(1897), - [anon_sym_u32] = ACTIONS(1897), - [anon_sym_i32] = ACTIONS(1897), - [anon_sym_u64] = ACTIONS(1897), - [anon_sym_i64] = ACTIONS(1897), - [anon_sym_u128] = ACTIONS(1897), - [anon_sym_i128] = ACTIONS(1897), - [anon_sym_isize] = ACTIONS(1897), - [anon_sym_usize] = ACTIONS(1897), - [anon_sym_f32] = ACTIONS(1897), - [anon_sym_f64] = ACTIONS(1897), - [anon_sym_bool] = ACTIONS(1897), - [anon_sym_str] = ACTIONS(1897), - [anon_sym_char] = ACTIONS(1897), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1895), - [sym_self] = ACTIONS(1897), - [sym_super] = ACTIONS(1897), - [sym_crate] = ACTIONS(1897), - [sym_metavariable] = ACTIONS(1895), - [sym_grit_metavariable] = ACTIONS(1895), - [sym_raw_string_literal] = ACTIONS(1895), - [sym_float_literal] = ACTIONS(1895), - [sym_block_comment] = ACTIONS(3), - }, - [390] = { - [ts_builtin_sym_end] = ACTIONS(1899), - [sym__primitive_identifier] = ACTIONS(1901), - [anon_sym_SEMI] = ACTIONS(1899), - [anon_sym_macro_rules_BANG] = ACTIONS(1899), - [anon_sym_LPAREN] = ACTIONS(1899), - [anon_sym_LBRACE] = ACTIONS(1899), - [anon_sym_RBRACE] = ACTIONS(1899), - [anon_sym_LBRACK] = ACTIONS(1899), - [anon_sym_STAR] = ACTIONS(1899), - [anon_sym_SQUOTE] = ACTIONS(1901), - [anon_sym_async] = ACTIONS(1901), - [anon_sym_break] = ACTIONS(1901), - [anon_sym_const] = ACTIONS(1901), - [anon_sym_continue] = ACTIONS(1901), - [anon_sym_default] = ACTIONS(1901), - [anon_sym_enum] = ACTIONS(1901), - [anon_sym_fn] = ACTIONS(1901), - [anon_sym_for] = ACTIONS(1901), - [anon_sym_if] = ACTIONS(1901), - [anon_sym_impl] = ACTIONS(1901), - [anon_sym_let] = ACTIONS(1901), - [anon_sym_loop] = ACTIONS(1901), - [anon_sym_match] = ACTIONS(1901), - [anon_sym_mod] = ACTIONS(1901), - [anon_sym_pub] = ACTIONS(1901), - [anon_sym_return] = ACTIONS(1901), - [anon_sym_static] = ACTIONS(1901), - [anon_sym_struct] = ACTIONS(1901), - [anon_sym_trait] = ACTIONS(1901), - [anon_sym_type] = ACTIONS(1901), - [anon_sym_union] = ACTIONS(1901), - [anon_sym_unsafe] = ACTIONS(1901), - [anon_sym_use] = ACTIONS(1901), - [anon_sym_while] = ACTIONS(1901), - [anon_sym_POUND] = ACTIONS(1899), - [anon_sym_BANG] = ACTIONS(1899), - [anon_sym_extern] = ACTIONS(1901), - [anon_sym_LT] = ACTIONS(1899), - [anon_sym_COLON_COLON] = ACTIONS(1899), - [anon_sym_AMP] = ACTIONS(1899), - [anon_sym_DOT_DOT] = ACTIONS(1899), - [anon_sym_DASH] = ACTIONS(1899), - [anon_sym_PIPE] = ACTIONS(1899), - [anon_sym_yield] = ACTIONS(1901), - [anon_sym_move] = ACTIONS(1901), + [sym_mutable_specifier] = ACTIONS(1890), + [anon_sym_DOT_DOT] = ACTIONS(1893), + [anon_sym_DASH] = ACTIONS(1896), [sym_integer_literal] = ACTIONS(1899), - [aux_sym_string_literal_token1] = ACTIONS(1899), + [aux_sym_string_literal_token1] = ACTIONS(1902), [sym_char_literal] = ACTIONS(1899), - [anon_sym_true] = ACTIONS(1901), - [anon_sym_false] = ACTIONS(1901), - [anon_sym_u8] = ACTIONS(1901), - [anon_sym_i8] = ACTIONS(1901), - [anon_sym_u16] = ACTIONS(1901), - [anon_sym_i16] = ACTIONS(1901), - [anon_sym_u32] = ACTIONS(1901), - [anon_sym_i32] = ACTIONS(1901), - [anon_sym_u64] = ACTIONS(1901), - [anon_sym_i64] = ACTIONS(1901), - [anon_sym_u128] = ACTIONS(1901), - [anon_sym_i128] = ACTIONS(1901), - [anon_sym_isize] = ACTIONS(1901), - [anon_sym_usize] = ACTIONS(1901), - [anon_sym_f32] = ACTIONS(1901), - [anon_sym_f64] = ACTIONS(1901), - [anon_sym_bool] = ACTIONS(1901), - [anon_sym_str] = ACTIONS(1901), - [anon_sym_char] = ACTIONS(1901), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1899), - [sym_self] = ACTIONS(1901), - [sym_super] = ACTIONS(1901), - [sym_crate] = ACTIONS(1901), - [sym_metavariable] = ACTIONS(1899), - [sym_grit_metavariable] = ACTIONS(1899), - [sym_raw_string_literal] = ACTIONS(1899), - [sym_float_literal] = ACTIONS(1899), - [sym_block_comment] = ACTIONS(3), - }, - [391] = { - [ts_builtin_sym_end] = ACTIONS(1903), - [sym__primitive_identifier] = ACTIONS(1905), - [anon_sym_SEMI] = ACTIONS(1903), - [anon_sym_macro_rules_BANG] = ACTIONS(1903), - [anon_sym_LPAREN] = ACTIONS(1903), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_RBRACE] = ACTIONS(1903), - [anon_sym_LBRACK] = ACTIONS(1903), - [anon_sym_STAR] = ACTIONS(1903), - [anon_sym_SQUOTE] = ACTIONS(1905), - [anon_sym_async] = ACTIONS(1905), - [anon_sym_break] = ACTIONS(1905), - [anon_sym_const] = ACTIONS(1905), - [anon_sym_continue] = ACTIONS(1905), - [anon_sym_default] = ACTIONS(1905), - [anon_sym_enum] = ACTIONS(1905), - [anon_sym_fn] = ACTIONS(1905), - [anon_sym_for] = ACTIONS(1905), - [anon_sym_if] = ACTIONS(1905), - [anon_sym_impl] = ACTIONS(1905), - [anon_sym_let] = ACTIONS(1905), - [anon_sym_loop] = ACTIONS(1905), - [anon_sym_match] = ACTIONS(1905), - [anon_sym_mod] = ACTIONS(1905), - [anon_sym_pub] = ACTIONS(1905), - [anon_sym_return] = ACTIONS(1905), - [anon_sym_static] = ACTIONS(1905), - [anon_sym_struct] = ACTIONS(1905), - [anon_sym_trait] = ACTIONS(1905), - [anon_sym_type] = ACTIONS(1905), - [anon_sym_union] = ACTIONS(1905), - [anon_sym_unsafe] = ACTIONS(1905), - [anon_sym_use] = ACTIONS(1905), - [anon_sym_while] = ACTIONS(1905), - [anon_sym_POUND] = ACTIONS(1903), - [anon_sym_BANG] = ACTIONS(1903), - [anon_sym_extern] = ACTIONS(1905), - [anon_sym_LT] = ACTIONS(1903), - [anon_sym_COLON_COLON] = ACTIONS(1903), - [anon_sym_AMP] = ACTIONS(1903), - [anon_sym_DOT_DOT] = ACTIONS(1903), - [anon_sym_DASH] = ACTIONS(1903), - [anon_sym_PIPE] = ACTIONS(1903), - [anon_sym_yield] = ACTIONS(1905), - [anon_sym_move] = ACTIONS(1905), - [sym_integer_literal] = ACTIONS(1903), - [aux_sym_string_literal_token1] = ACTIONS(1903), - [sym_char_literal] = ACTIONS(1903), [anon_sym_true] = ACTIONS(1905), [anon_sym_false] = ACTIONS(1905), - [anon_sym_u8] = ACTIONS(1905), - [anon_sym_i8] = ACTIONS(1905), - [anon_sym_u16] = ACTIONS(1905), - [anon_sym_i16] = ACTIONS(1905), - [anon_sym_u32] = ACTIONS(1905), - [anon_sym_i32] = ACTIONS(1905), - [anon_sym_u64] = ACTIONS(1905), - [anon_sym_i64] = ACTIONS(1905), - [anon_sym_u128] = ACTIONS(1905), - [anon_sym_i128] = ACTIONS(1905), - [anon_sym_isize] = ACTIONS(1905), - [anon_sym_usize] = ACTIONS(1905), - [anon_sym_f32] = ACTIONS(1905), - [anon_sym_f64] = ACTIONS(1905), - [anon_sym_bool] = ACTIONS(1905), - [anon_sym_str] = ACTIONS(1905), - [anon_sym_char] = ACTIONS(1905), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1903), - [sym_self] = ACTIONS(1905), - [sym_super] = ACTIONS(1905), - [sym_crate] = ACTIONS(1905), - [sym_metavariable] = ACTIONS(1903), - [sym_grit_metavariable] = ACTIONS(1903), - [sym_raw_string_literal] = ACTIONS(1903), - [sym_float_literal] = ACTIONS(1903), - [sym_block_comment] = ACTIONS(3), - }, - [392] = { - [ts_builtin_sym_end] = ACTIONS(1907), - [sym__primitive_identifier] = ACTIONS(1909), - [anon_sym_SEMI] = ACTIONS(1907), - [anon_sym_macro_rules_BANG] = ACTIONS(1907), - [anon_sym_LPAREN] = ACTIONS(1907), - [anon_sym_LBRACE] = ACTIONS(1907), - [anon_sym_RBRACE] = ACTIONS(1907), - [anon_sym_LBRACK] = ACTIONS(1907), - [anon_sym_STAR] = ACTIONS(1907), - [anon_sym_SQUOTE] = ACTIONS(1909), - [anon_sym_async] = ACTIONS(1909), - [anon_sym_break] = ACTIONS(1909), - [anon_sym_const] = ACTIONS(1909), - [anon_sym_continue] = ACTIONS(1909), - [anon_sym_default] = ACTIONS(1909), - [anon_sym_enum] = ACTIONS(1909), - [anon_sym_fn] = ACTIONS(1909), - [anon_sym_for] = ACTIONS(1909), - [anon_sym_if] = ACTIONS(1909), - [anon_sym_impl] = ACTIONS(1909), - [anon_sym_let] = ACTIONS(1909), - [anon_sym_loop] = ACTIONS(1909), - [anon_sym_match] = ACTIONS(1909), - [anon_sym_mod] = ACTIONS(1909), - [anon_sym_pub] = ACTIONS(1909), - [anon_sym_return] = ACTIONS(1909), - [anon_sym_static] = ACTIONS(1909), - [anon_sym_struct] = ACTIONS(1909), - [anon_sym_trait] = ACTIONS(1909), - [anon_sym_type] = ACTIONS(1909), - [anon_sym_union] = ACTIONS(1909), - [anon_sym_unsafe] = ACTIONS(1909), - [anon_sym_use] = ACTIONS(1909), - [anon_sym_while] = ACTIONS(1909), - [anon_sym_POUND] = ACTIONS(1907), - [anon_sym_BANG] = ACTIONS(1907), - [anon_sym_extern] = ACTIONS(1909), - [anon_sym_LT] = ACTIONS(1907), - [anon_sym_COLON_COLON] = ACTIONS(1907), - [anon_sym_AMP] = ACTIONS(1907), - [anon_sym_DOT_DOT] = ACTIONS(1907), - [anon_sym_DASH] = ACTIONS(1907), - [anon_sym_PIPE] = ACTIONS(1907), - [anon_sym_yield] = ACTIONS(1909), - [anon_sym_move] = ACTIONS(1909), - [sym_integer_literal] = ACTIONS(1907), - [aux_sym_string_literal_token1] = ACTIONS(1907), - [sym_char_literal] = ACTIONS(1907), - [anon_sym_true] = ACTIONS(1909), - [anon_sym_false] = ACTIONS(1909), - [anon_sym_u8] = ACTIONS(1909), - [anon_sym_i8] = ACTIONS(1909), - [anon_sym_u16] = ACTIONS(1909), - [anon_sym_i16] = ACTIONS(1909), - [anon_sym_u32] = ACTIONS(1909), - [anon_sym_i32] = ACTIONS(1909), - [anon_sym_u64] = ACTIONS(1909), - [anon_sym_i64] = ACTIONS(1909), - [anon_sym_u128] = ACTIONS(1909), - [anon_sym_i128] = ACTIONS(1909), - [anon_sym_isize] = ACTIONS(1909), - [anon_sym_usize] = ACTIONS(1909), - [anon_sym_f32] = ACTIONS(1909), - [anon_sym_f64] = ACTIONS(1909), - [anon_sym_bool] = ACTIONS(1909), - [anon_sym_str] = ACTIONS(1909), - [anon_sym_char] = ACTIONS(1909), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1907), - [sym_self] = ACTIONS(1909), - [sym_super] = ACTIONS(1909), - [sym_crate] = ACTIONS(1909), - [sym_metavariable] = ACTIONS(1907), - [sym_grit_metavariable] = ACTIONS(1907), - [sym_raw_string_literal] = ACTIONS(1907), - [sym_float_literal] = ACTIONS(1907), - [sym_block_comment] = ACTIONS(3), - }, - [393] = { - [ts_builtin_sym_end] = ACTIONS(1911), - [sym__primitive_identifier] = ACTIONS(1913), - [anon_sym_SEMI] = ACTIONS(1911), - [anon_sym_macro_rules_BANG] = ACTIONS(1911), - [anon_sym_LPAREN] = ACTIONS(1911), - [anon_sym_LBRACE] = ACTIONS(1911), - [anon_sym_RBRACE] = ACTIONS(1911), - [anon_sym_LBRACK] = ACTIONS(1911), - [anon_sym_STAR] = ACTIONS(1911), - [anon_sym_SQUOTE] = ACTIONS(1913), - [anon_sym_async] = ACTIONS(1913), - [anon_sym_break] = ACTIONS(1913), - [anon_sym_const] = ACTIONS(1913), - [anon_sym_continue] = ACTIONS(1913), - [anon_sym_default] = ACTIONS(1913), - [anon_sym_enum] = ACTIONS(1913), - [anon_sym_fn] = ACTIONS(1913), - [anon_sym_for] = ACTIONS(1913), - [anon_sym_if] = ACTIONS(1913), - [anon_sym_impl] = ACTIONS(1913), - [anon_sym_let] = ACTIONS(1913), - [anon_sym_loop] = ACTIONS(1913), - [anon_sym_match] = ACTIONS(1913), - [anon_sym_mod] = ACTIONS(1913), - [anon_sym_pub] = ACTIONS(1913), - [anon_sym_return] = ACTIONS(1913), - [anon_sym_static] = ACTIONS(1913), - [anon_sym_struct] = ACTIONS(1913), - [anon_sym_trait] = ACTIONS(1913), - [anon_sym_type] = ACTIONS(1913), - [anon_sym_union] = ACTIONS(1913), - [anon_sym_unsafe] = ACTIONS(1913), - [anon_sym_use] = ACTIONS(1913), - [anon_sym_while] = ACTIONS(1913), - [anon_sym_POUND] = ACTIONS(1911), - [anon_sym_BANG] = ACTIONS(1911), - [anon_sym_extern] = ACTIONS(1913), - [anon_sym_LT] = ACTIONS(1911), - [anon_sym_COLON_COLON] = ACTIONS(1911), - [anon_sym_AMP] = ACTIONS(1911), - [anon_sym_DOT_DOT] = ACTIONS(1911), - [anon_sym_DASH] = ACTIONS(1911), - [anon_sym_PIPE] = ACTIONS(1911), - [anon_sym_yield] = ACTIONS(1913), - [anon_sym_move] = ACTIONS(1913), - [sym_integer_literal] = ACTIONS(1911), - [aux_sym_string_literal_token1] = ACTIONS(1911), - [sym_char_literal] = ACTIONS(1911), - [anon_sym_true] = ACTIONS(1913), - [anon_sym_false] = ACTIONS(1913), - [anon_sym_u8] = ACTIONS(1913), - [anon_sym_i8] = ACTIONS(1913), - [anon_sym_u16] = ACTIONS(1913), - [anon_sym_i16] = ACTIONS(1913), - [anon_sym_u32] = ACTIONS(1913), - [anon_sym_i32] = ACTIONS(1913), - [anon_sym_u64] = ACTIONS(1913), - [anon_sym_i64] = ACTIONS(1913), - [anon_sym_u128] = ACTIONS(1913), - [anon_sym_i128] = ACTIONS(1913), - [anon_sym_isize] = ACTIONS(1913), - [anon_sym_usize] = ACTIONS(1913), - [anon_sym_f32] = ACTIONS(1913), - [anon_sym_f64] = ACTIONS(1913), - [anon_sym_bool] = ACTIONS(1913), - [anon_sym_str] = ACTIONS(1913), - [anon_sym_char] = ACTIONS(1913), + [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), [sym_line_comment] = ACTIONS(3), [sym__raw_identifier] = ACTIONS(1911), - [sym_self] = ACTIONS(1913), - [sym_super] = ACTIONS(1913), - [sym_crate] = ACTIONS(1913), - [sym_metavariable] = ACTIONS(1911), - [sym_grit_metavariable] = ACTIONS(1911), - [sym_raw_string_literal] = ACTIONS(1911), - [sym_float_literal] = ACTIONS(1911), - [sym_block_comment] = ACTIONS(3), - }, - [394] = { - [ts_builtin_sym_end] = ACTIONS(1915), - [sym__primitive_identifier] = ACTIONS(1917), - [anon_sym_SEMI] = ACTIONS(1915), - [anon_sym_macro_rules_BANG] = ACTIONS(1915), - [anon_sym_LPAREN] = ACTIONS(1915), - [anon_sym_LBRACE] = ACTIONS(1915), - [anon_sym_RBRACE] = ACTIONS(1915), - [anon_sym_LBRACK] = ACTIONS(1915), - [anon_sym_STAR] = ACTIONS(1915), - [anon_sym_SQUOTE] = ACTIONS(1917), - [anon_sym_async] = ACTIONS(1917), - [anon_sym_break] = ACTIONS(1917), - [anon_sym_const] = ACTIONS(1917), - [anon_sym_continue] = ACTIONS(1917), - [anon_sym_default] = ACTIONS(1917), - [anon_sym_enum] = ACTIONS(1917), - [anon_sym_fn] = ACTIONS(1917), - [anon_sym_for] = ACTIONS(1917), - [anon_sym_if] = ACTIONS(1917), - [anon_sym_impl] = ACTIONS(1917), - [anon_sym_let] = ACTIONS(1917), - [anon_sym_loop] = ACTIONS(1917), - [anon_sym_match] = ACTIONS(1917), - [anon_sym_mod] = ACTIONS(1917), - [anon_sym_pub] = ACTIONS(1917), - [anon_sym_return] = ACTIONS(1917), - [anon_sym_static] = ACTIONS(1917), - [anon_sym_struct] = ACTIONS(1917), - [anon_sym_trait] = ACTIONS(1917), - [anon_sym_type] = ACTIONS(1917), - [anon_sym_union] = ACTIONS(1917), - [anon_sym_unsafe] = ACTIONS(1917), - [anon_sym_use] = ACTIONS(1917), - [anon_sym_while] = ACTIONS(1917), - [anon_sym_POUND] = ACTIONS(1915), - [anon_sym_BANG] = ACTIONS(1915), - [anon_sym_extern] = ACTIONS(1917), - [anon_sym_LT] = ACTIONS(1915), - [anon_sym_COLON_COLON] = ACTIONS(1915), - [anon_sym_AMP] = ACTIONS(1915), - [anon_sym_DOT_DOT] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [anon_sym_PIPE] = ACTIONS(1915), - [anon_sym_yield] = ACTIONS(1917), - [anon_sym_move] = ACTIONS(1917), - [sym_integer_literal] = ACTIONS(1915), - [aux_sym_string_literal_token1] = ACTIONS(1915), - [sym_char_literal] = ACTIONS(1915), - [anon_sym_true] = ACTIONS(1917), - [anon_sym_false] = ACTIONS(1917), - [anon_sym_u8] = ACTIONS(1917), - [anon_sym_i8] = ACTIONS(1917), - [anon_sym_u16] = ACTIONS(1917), - [anon_sym_i16] = ACTIONS(1917), - [anon_sym_u32] = ACTIONS(1917), - [anon_sym_i32] = ACTIONS(1917), - [anon_sym_u64] = ACTIONS(1917), - [anon_sym_i64] = ACTIONS(1917), - [anon_sym_u128] = ACTIONS(1917), - [anon_sym_i128] = ACTIONS(1917), - [anon_sym_isize] = ACTIONS(1917), - [anon_sym_usize] = ACTIONS(1917), - [anon_sym_f32] = ACTIONS(1917), - [anon_sym_f64] = ACTIONS(1917), - [anon_sym_bool] = ACTIONS(1917), - [anon_sym_str] = ACTIONS(1917), - [anon_sym_char] = ACTIONS(1917), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1915), - [sym_self] = ACTIONS(1917), - [sym_super] = ACTIONS(1917), - [sym_crate] = ACTIONS(1917), - [sym_metavariable] = ACTIONS(1915), - [sym_grit_metavariable] = ACTIONS(1915), - [sym_raw_string_literal] = ACTIONS(1915), - [sym_float_literal] = ACTIONS(1915), - [sym_block_comment] = ACTIONS(3), - }, - [395] = { - [ts_builtin_sym_end] = ACTIONS(1919), - [sym__primitive_identifier] = ACTIONS(1921), - [anon_sym_SEMI] = ACTIONS(1919), - [anon_sym_macro_rules_BANG] = ACTIONS(1919), - [anon_sym_LPAREN] = ACTIONS(1919), - [anon_sym_LBRACE] = ACTIONS(1919), - [anon_sym_RBRACE] = ACTIONS(1919), - [anon_sym_LBRACK] = ACTIONS(1919), - [anon_sym_STAR] = ACTIONS(1919), - [anon_sym_SQUOTE] = ACTIONS(1921), - [anon_sym_async] = ACTIONS(1921), - [anon_sym_break] = ACTIONS(1921), - [anon_sym_const] = ACTIONS(1921), - [anon_sym_continue] = ACTIONS(1921), - [anon_sym_default] = ACTIONS(1921), - [anon_sym_enum] = ACTIONS(1921), - [anon_sym_fn] = ACTIONS(1921), - [anon_sym_for] = ACTIONS(1921), - [anon_sym_if] = ACTIONS(1921), - [anon_sym_impl] = ACTIONS(1921), - [anon_sym_let] = ACTIONS(1921), - [anon_sym_loop] = ACTIONS(1921), - [anon_sym_match] = ACTIONS(1921), - [anon_sym_mod] = ACTIONS(1921), - [anon_sym_pub] = ACTIONS(1921), - [anon_sym_return] = ACTIONS(1921), - [anon_sym_static] = ACTIONS(1921), - [anon_sym_struct] = ACTIONS(1921), - [anon_sym_trait] = ACTIONS(1921), - [anon_sym_type] = ACTIONS(1921), - [anon_sym_union] = ACTIONS(1921), - [anon_sym_unsafe] = ACTIONS(1921), - [anon_sym_use] = ACTIONS(1921), - [anon_sym_while] = ACTIONS(1921), - [anon_sym_POUND] = ACTIONS(1919), - [anon_sym_BANG] = ACTIONS(1919), - [anon_sym_extern] = ACTIONS(1921), - [anon_sym_LT] = ACTIONS(1919), - [anon_sym_COLON_COLON] = ACTIONS(1919), - [anon_sym_AMP] = ACTIONS(1919), - [anon_sym_DOT_DOT] = ACTIONS(1919), - [anon_sym_DASH] = ACTIONS(1919), - [anon_sym_PIPE] = ACTIONS(1919), - [anon_sym_yield] = ACTIONS(1921), - [anon_sym_move] = ACTIONS(1921), - [sym_integer_literal] = ACTIONS(1919), - [aux_sym_string_literal_token1] = ACTIONS(1919), - [sym_char_literal] = ACTIONS(1919), - [anon_sym_true] = ACTIONS(1921), - [anon_sym_false] = ACTIONS(1921), - [anon_sym_u8] = ACTIONS(1921), - [anon_sym_i8] = ACTIONS(1921), - [anon_sym_u16] = ACTIONS(1921), - [anon_sym_i16] = ACTIONS(1921), - [anon_sym_u32] = ACTIONS(1921), - [anon_sym_i32] = ACTIONS(1921), - [anon_sym_u64] = ACTIONS(1921), - [anon_sym_i64] = ACTIONS(1921), - [anon_sym_u128] = ACTIONS(1921), - [anon_sym_i128] = ACTIONS(1921), - [anon_sym_isize] = ACTIONS(1921), - [anon_sym_usize] = ACTIONS(1921), - [anon_sym_f32] = ACTIONS(1921), - [anon_sym_f64] = ACTIONS(1921), - [anon_sym_bool] = ACTIONS(1921), - [anon_sym_str] = ACTIONS(1921), - [anon_sym_char] = ACTIONS(1921), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(1919), - [sym_self] = ACTIONS(1921), - [sym_super] = ACTIONS(1921), - [sym_crate] = ACTIONS(1921), - [sym_metavariable] = ACTIONS(1919), - [sym_grit_metavariable] = ACTIONS(1919), - [sym_raw_string_literal] = ACTIONS(1919), - [sym_float_literal] = ACTIONS(1919), + [sym_self] = ACTIONS(1914), + [sym_super] = ACTIONS(1914), + [sym_crate] = ACTIONS(1914), + [sym_metavariable] = ACTIONS(1917), + [sym_grit_metavariable] = ACTIONS(1920), + [sym_raw_string_literal] = ACTIONS(1899), + [sym_float_literal] = ACTIONS(1899), [sym_block_comment] = ACTIONS(3), }, - [396] = { + [384] = { [ts_builtin_sym_end] = ACTIONS(1923), [sym__primitive_identifier] = ACTIONS(1925), [anon_sym_SEMI] = ACTIONS(1923), @@ -59043,7 +58163,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1923), [sym_block_comment] = ACTIONS(3), }, - [397] = { + [385] = { [ts_builtin_sym_end] = ACTIONS(1927), [sym__primitive_identifier] = ACTIONS(1929), [anon_sym_SEMI] = ACTIONS(1927), @@ -59122,7 +58242,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1927), [sym_block_comment] = ACTIONS(3), }, - [398] = { + [386] = { [ts_builtin_sym_end] = ACTIONS(1931), [sym__primitive_identifier] = ACTIONS(1933), [anon_sym_SEMI] = ACTIONS(1931), @@ -59201,7 +58321,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1931), [sym_block_comment] = ACTIONS(3), }, - [399] = { + [387] = { [ts_builtin_sym_end] = ACTIONS(1935), [sym__primitive_identifier] = ACTIONS(1937), [anon_sym_SEMI] = ACTIONS(1935), @@ -59280,7 +58400,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1935), [sym_block_comment] = ACTIONS(3), }, - [400] = { + [388] = { [ts_builtin_sym_end] = ACTIONS(1939), [sym__primitive_identifier] = ACTIONS(1941), [anon_sym_SEMI] = ACTIONS(1939), @@ -59359,7 +58479,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1939), [sym_block_comment] = ACTIONS(3), }, - [401] = { + [389] = { [ts_builtin_sym_end] = ACTIONS(1943), [sym__primitive_identifier] = ACTIONS(1945), [anon_sym_SEMI] = ACTIONS(1943), @@ -59438,7 +58558,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1943), [sym_block_comment] = ACTIONS(3), }, - [402] = { + [390] = { [ts_builtin_sym_end] = ACTIONS(1947), [sym__primitive_identifier] = ACTIONS(1949), [anon_sym_SEMI] = ACTIONS(1947), @@ -59517,7 +58637,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1947), [sym_block_comment] = ACTIONS(3), }, - [403] = { + [391] = { [ts_builtin_sym_end] = ACTIONS(1951), [sym__primitive_identifier] = ACTIONS(1953), [anon_sym_SEMI] = ACTIONS(1951), @@ -59596,7 +58716,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1951), [sym_block_comment] = ACTIONS(3), }, - [404] = { + [392] = { [ts_builtin_sym_end] = ACTIONS(1955), [sym__primitive_identifier] = ACTIONS(1957), [anon_sym_SEMI] = ACTIONS(1955), @@ -59675,7 +58795,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1955), [sym_block_comment] = ACTIONS(3), }, - [405] = { + [393] = { [ts_builtin_sym_end] = ACTIONS(1959), [sym__primitive_identifier] = ACTIONS(1961), [anon_sym_SEMI] = ACTIONS(1959), @@ -59754,7 +58874,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1959), [sym_block_comment] = ACTIONS(3), }, - [406] = { + [394] = { [ts_builtin_sym_end] = ACTIONS(1963), [sym__primitive_identifier] = ACTIONS(1965), [anon_sym_SEMI] = ACTIONS(1963), @@ -59833,7 +58953,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1963), [sym_block_comment] = ACTIONS(3), }, - [407] = { + [395] = { [ts_builtin_sym_end] = ACTIONS(1967), [sym__primitive_identifier] = ACTIONS(1969), [anon_sym_SEMI] = ACTIONS(1967), @@ -59912,7 +59032,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1967), [sym_block_comment] = ACTIONS(3), }, - [408] = { + [396] = { [ts_builtin_sym_end] = ACTIONS(1971), [sym__primitive_identifier] = ACTIONS(1973), [anon_sym_SEMI] = ACTIONS(1971), @@ -59991,7 +59111,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1971), [sym_block_comment] = ACTIONS(3), }, - [409] = { + [397] = { [ts_builtin_sym_end] = ACTIONS(1975), [sym__primitive_identifier] = ACTIONS(1977), [anon_sym_SEMI] = ACTIONS(1975), @@ -60070,7 +59190,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1975), [sym_block_comment] = ACTIONS(3), }, - [410] = { + [398] = { [ts_builtin_sym_end] = ACTIONS(1979), [sym__primitive_identifier] = ACTIONS(1981), [anon_sym_SEMI] = ACTIONS(1979), @@ -60149,7 +59269,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1979), [sym_block_comment] = ACTIONS(3), }, - [411] = { + [399] = { [ts_builtin_sym_end] = ACTIONS(1983), [sym__primitive_identifier] = ACTIONS(1985), [anon_sym_SEMI] = ACTIONS(1983), @@ -60228,7 +59348,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1983), [sym_block_comment] = ACTIONS(3), }, - [412] = { + [400] = { [ts_builtin_sym_end] = ACTIONS(1987), [sym__primitive_identifier] = ACTIONS(1989), [anon_sym_SEMI] = ACTIONS(1987), @@ -60307,7 +59427,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1987), [sym_block_comment] = ACTIONS(3), }, - [413] = { + [401] = { [ts_builtin_sym_end] = ACTIONS(1991), [sym__primitive_identifier] = ACTIONS(1993), [anon_sym_SEMI] = ACTIONS(1991), @@ -60386,7 +59506,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1991), [sym_block_comment] = ACTIONS(3), }, - [414] = { + [402] = { [ts_builtin_sym_end] = ACTIONS(1995), [sym__primitive_identifier] = ACTIONS(1997), [anon_sym_SEMI] = ACTIONS(1995), @@ -60465,7 +59585,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1995), [sym_block_comment] = ACTIONS(3), }, - [415] = { + [403] = { [ts_builtin_sym_end] = ACTIONS(1999), [sym__primitive_identifier] = ACTIONS(2001), [anon_sym_SEMI] = ACTIONS(1999), @@ -60544,7 +59664,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1999), [sym_block_comment] = ACTIONS(3), }, - [416] = { + [404] = { [ts_builtin_sym_end] = ACTIONS(2003), [sym__primitive_identifier] = ACTIONS(2005), [anon_sym_SEMI] = ACTIONS(2003), @@ -60623,7 +59743,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2003), [sym_block_comment] = ACTIONS(3), }, - [417] = { + [405] = { [ts_builtin_sym_end] = ACTIONS(2007), [sym__primitive_identifier] = ACTIONS(2009), [anon_sym_SEMI] = ACTIONS(2007), @@ -60702,7 +59822,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2007), [sym_block_comment] = ACTIONS(3), }, - [418] = { + [406] = { [ts_builtin_sym_end] = ACTIONS(2011), [sym__primitive_identifier] = ACTIONS(2013), [anon_sym_SEMI] = ACTIONS(2011), @@ -60781,7 +59901,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2011), [sym_block_comment] = ACTIONS(3), }, - [419] = { + [407] = { [ts_builtin_sym_end] = ACTIONS(2015), [sym__primitive_identifier] = ACTIONS(2017), [anon_sym_SEMI] = ACTIONS(2015), @@ -60860,7 +59980,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2015), [sym_block_comment] = ACTIONS(3), }, - [420] = { + [408] = { [ts_builtin_sym_end] = ACTIONS(2019), [sym__primitive_identifier] = ACTIONS(2021), [anon_sym_SEMI] = ACTIONS(2019), @@ -60939,7 +60059,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2019), [sym_block_comment] = ACTIONS(3), }, - [421] = { + [409] = { [ts_builtin_sym_end] = ACTIONS(2023), [sym__primitive_identifier] = ACTIONS(2025), [anon_sym_SEMI] = ACTIONS(2023), @@ -61018,7 +60138,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2023), [sym_block_comment] = ACTIONS(3), }, - [422] = { + [410] = { [ts_builtin_sym_end] = ACTIONS(2027), [sym__primitive_identifier] = ACTIONS(2029), [anon_sym_SEMI] = ACTIONS(2027), @@ -61097,7 +60217,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2027), [sym_block_comment] = ACTIONS(3), }, - [423] = { + [411] = { [ts_builtin_sym_end] = ACTIONS(2031), [sym__primitive_identifier] = ACTIONS(2033), [anon_sym_SEMI] = ACTIONS(2031), @@ -61176,7 +60296,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2031), [sym_block_comment] = ACTIONS(3), }, - [424] = { + [412] = { [ts_builtin_sym_end] = ACTIONS(2035), [sym__primitive_identifier] = ACTIONS(2037), [anon_sym_SEMI] = ACTIONS(2035), @@ -61255,7 +60375,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2035), [sym_block_comment] = ACTIONS(3), }, - [425] = { + [413] = { [ts_builtin_sym_end] = ACTIONS(2039), [sym__primitive_identifier] = ACTIONS(2041), [anon_sym_SEMI] = ACTIONS(2039), @@ -61334,7 +60454,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2039), [sym_block_comment] = ACTIONS(3), }, - [426] = { + [414] = { [ts_builtin_sym_end] = ACTIONS(2043), [sym__primitive_identifier] = ACTIONS(2045), [anon_sym_SEMI] = ACTIONS(2043), @@ -61413,7 +60533,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2043), [sym_block_comment] = ACTIONS(3), }, - [427] = { + [415] = { [ts_builtin_sym_end] = ACTIONS(2047), [sym__primitive_identifier] = ACTIONS(2049), [anon_sym_SEMI] = ACTIONS(2047), @@ -61492,7 +60612,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2047), [sym_block_comment] = ACTIONS(3), }, - [428] = { + [416] = { [ts_builtin_sym_end] = ACTIONS(2051), [sym__primitive_identifier] = ACTIONS(2053), [anon_sym_SEMI] = ACTIONS(2051), @@ -61571,7 +60691,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2051), [sym_block_comment] = ACTIONS(3), }, - [429] = { + [417] = { [ts_builtin_sym_end] = ACTIONS(2055), [sym__primitive_identifier] = ACTIONS(2057), [anon_sym_SEMI] = ACTIONS(2055), @@ -61650,7 +60770,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2055), [sym_block_comment] = ACTIONS(3), }, - [430] = { + [418] = { [ts_builtin_sym_end] = ACTIONS(2059), [sym__primitive_identifier] = ACTIONS(2061), [anon_sym_SEMI] = ACTIONS(2059), @@ -61729,7 +60849,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2059), [sym_block_comment] = ACTIONS(3), }, - [431] = { + [419] = { [ts_builtin_sym_end] = ACTIONS(2063), [sym__primitive_identifier] = ACTIONS(2065), [anon_sym_SEMI] = ACTIONS(2063), @@ -61808,7 +60928,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2063), [sym_block_comment] = ACTIONS(3), }, - [432] = { + [420] = { [ts_builtin_sym_end] = ACTIONS(2067), [sym__primitive_identifier] = ACTIONS(2069), [anon_sym_SEMI] = ACTIONS(2067), @@ -61887,7 +61007,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2067), [sym_block_comment] = ACTIONS(3), }, - [433] = { + [421] = { [ts_builtin_sym_end] = ACTIONS(2071), [sym__primitive_identifier] = ACTIONS(2073), [anon_sym_SEMI] = ACTIONS(2071), @@ -61966,7 +61086,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2071), [sym_block_comment] = ACTIONS(3), }, - [434] = { + [422] = { [ts_builtin_sym_end] = ACTIONS(2075), [sym__primitive_identifier] = ACTIONS(2077), [anon_sym_SEMI] = ACTIONS(2075), @@ -62045,7 +61165,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2075), [sym_block_comment] = ACTIONS(3), }, - [435] = { + [423] = { [ts_builtin_sym_end] = ACTIONS(2079), [sym__primitive_identifier] = ACTIONS(2081), [anon_sym_SEMI] = ACTIONS(2079), @@ -62124,7 +61244,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2079), [sym_block_comment] = ACTIONS(3), }, - [436] = { + [424] = { [ts_builtin_sym_end] = ACTIONS(2083), [sym__primitive_identifier] = ACTIONS(2085), [anon_sym_SEMI] = ACTIONS(2083), @@ -62203,7 +61323,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2083), [sym_block_comment] = ACTIONS(3), }, - [437] = { + [425] = { [ts_builtin_sym_end] = ACTIONS(2087), [sym__primitive_identifier] = ACTIONS(2089), [anon_sym_SEMI] = ACTIONS(2087), @@ -62282,7 +61402,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2087), [sym_block_comment] = ACTIONS(3), }, - [438] = { + [426] = { [ts_builtin_sym_end] = ACTIONS(2091), [sym__primitive_identifier] = ACTIONS(2093), [anon_sym_SEMI] = ACTIONS(2091), @@ -62361,7 +61481,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2091), [sym_block_comment] = ACTIONS(3), }, - [439] = { + [427] = { [ts_builtin_sym_end] = ACTIONS(2095), [sym__primitive_identifier] = ACTIONS(2097), [anon_sym_SEMI] = ACTIONS(2095), @@ -62440,7 +61560,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2095), [sym_block_comment] = ACTIONS(3), }, - [440] = { + [428] = { [ts_builtin_sym_end] = ACTIONS(2099), [sym__primitive_identifier] = ACTIONS(2101), [anon_sym_SEMI] = ACTIONS(2099), @@ -62519,7 +61639,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2099), [sym_block_comment] = ACTIONS(3), }, - [441] = { + [429] = { [ts_builtin_sym_end] = ACTIONS(2103), [sym__primitive_identifier] = ACTIONS(2105), [anon_sym_SEMI] = ACTIONS(2103), @@ -62598,7 +61718,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2103), [sym_block_comment] = ACTIONS(3), }, - [442] = { + [430] = { [ts_builtin_sym_end] = ACTIONS(2107), [sym__primitive_identifier] = ACTIONS(2109), [anon_sym_SEMI] = ACTIONS(2107), @@ -62677,7 +61797,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2107), [sym_block_comment] = ACTIONS(3), }, - [443] = { + [431] = { [ts_builtin_sym_end] = ACTIONS(2111), [sym__primitive_identifier] = ACTIONS(2113), [anon_sym_SEMI] = ACTIONS(2111), @@ -62756,7 +61876,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2111), [sym_block_comment] = ACTIONS(3), }, - [444] = { + [432] = { [ts_builtin_sym_end] = ACTIONS(2115), [sym__primitive_identifier] = ACTIONS(2117), [anon_sym_SEMI] = ACTIONS(2115), @@ -62835,7 +61955,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2115), [sym_block_comment] = ACTIONS(3), }, - [445] = { + [433] = { [ts_builtin_sym_end] = ACTIONS(2119), [sym__primitive_identifier] = ACTIONS(2121), [anon_sym_SEMI] = ACTIONS(2119), @@ -62914,7 +62034,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2119), [sym_block_comment] = ACTIONS(3), }, - [446] = { + [434] = { [ts_builtin_sym_end] = ACTIONS(2123), [sym__primitive_identifier] = ACTIONS(2125), [anon_sym_SEMI] = ACTIONS(2123), @@ -62993,7 +62113,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2123), [sym_block_comment] = ACTIONS(3), }, - [447] = { + [435] = { [ts_builtin_sym_end] = ACTIONS(2127), [sym__primitive_identifier] = ACTIONS(2129), [anon_sym_SEMI] = ACTIONS(2127), @@ -63072,7 +62192,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2127), [sym_block_comment] = ACTIONS(3), }, - [448] = { + [436] = { [ts_builtin_sym_end] = ACTIONS(2131), [sym__primitive_identifier] = ACTIONS(2133), [anon_sym_SEMI] = ACTIONS(2131), @@ -63151,7 +62271,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2131), [sym_block_comment] = ACTIONS(3), }, - [449] = { + [437] = { [ts_builtin_sym_end] = ACTIONS(2135), [sym__primitive_identifier] = ACTIONS(2137), [anon_sym_SEMI] = ACTIONS(2135), @@ -63230,7 +62350,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2135), [sym_block_comment] = ACTIONS(3), }, - [450] = { + [438] = { [ts_builtin_sym_end] = ACTIONS(2139), [sym__primitive_identifier] = ACTIONS(2141), [anon_sym_SEMI] = ACTIONS(2139), @@ -63309,7 +62429,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2139), [sym_block_comment] = ACTIONS(3), }, - [451] = { + [439] = { [ts_builtin_sym_end] = ACTIONS(2143), [sym__primitive_identifier] = ACTIONS(2145), [anon_sym_SEMI] = ACTIONS(2143), @@ -63388,7 +62508,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2143), [sym_block_comment] = ACTIONS(3), }, - [452] = { + [440] = { [ts_builtin_sym_end] = ACTIONS(2147), [sym__primitive_identifier] = ACTIONS(2149), [anon_sym_SEMI] = ACTIONS(2147), @@ -63467,7 +62587,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2147), [sym_block_comment] = ACTIONS(3), }, - [453] = { + [441] = { [ts_builtin_sym_end] = ACTIONS(2151), [sym__primitive_identifier] = ACTIONS(2153), [anon_sym_SEMI] = ACTIONS(2151), @@ -63546,7 +62666,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2151), [sym_block_comment] = ACTIONS(3), }, - [454] = { + [442] = { [ts_builtin_sym_end] = ACTIONS(2155), [sym__primitive_identifier] = ACTIONS(2157), [anon_sym_SEMI] = ACTIONS(2155), @@ -63625,7 +62745,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2155), [sym_block_comment] = ACTIONS(3), }, - [455] = { + [443] = { [ts_builtin_sym_end] = ACTIONS(2159), [sym__primitive_identifier] = ACTIONS(2161), [anon_sym_SEMI] = ACTIONS(2159), @@ -63704,7 +62824,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2159), [sym_block_comment] = ACTIONS(3), }, - [456] = { + [444] = { [ts_builtin_sym_end] = ACTIONS(2163), [sym__primitive_identifier] = ACTIONS(2165), [anon_sym_SEMI] = ACTIONS(2163), @@ -63783,7 +62903,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2163), [sym_block_comment] = ACTIONS(3), }, - [457] = { + [445] = { [ts_builtin_sym_end] = ACTIONS(2167), [sym__primitive_identifier] = ACTIONS(2169), [anon_sym_SEMI] = ACTIONS(2167), @@ -63862,7 +62982,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2167), [sym_block_comment] = ACTIONS(3), }, - [458] = { + [446] = { [ts_builtin_sym_end] = ACTIONS(2171), [sym__primitive_identifier] = ACTIONS(2173), [anon_sym_SEMI] = ACTIONS(2171), @@ -63941,7 +63061,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2171), [sym_block_comment] = ACTIONS(3), }, - [459] = { + [447] = { [ts_builtin_sym_end] = ACTIONS(2175), [sym__primitive_identifier] = ACTIONS(2177), [anon_sym_SEMI] = ACTIONS(2175), @@ -64020,7 +63140,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2175), [sym_block_comment] = ACTIONS(3), }, - [460] = { + [448] = { [ts_builtin_sym_end] = ACTIONS(2179), [sym__primitive_identifier] = ACTIONS(2181), [anon_sym_SEMI] = ACTIONS(2179), @@ -64099,7 +63219,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2179), [sym_block_comment] = ACTIONS(3), }, - [461] = { + [449] = { [ts_builtin_sym_end] = ACTIONS(2183), [sym__primitive_identifier] = ACTIONS(2185), [anon_sym_SEMI] = ACTIONS(2183), @@ -64178,7 +63298,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2183), [sym_block_comment] = ACTIONS(3), }, - [462] = { + [450] = { [ts_builtin_sym_end] = ACTIONS(2187), [sym__primitive_identifier] = ACTIONS(2189), [anon_sym_SEMI] = ACTIONS(2187), @@ -64257,7 +63377,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2187), [sym_block_comment] = ACTIONS(3), }, - [463] = { + [451] = { [ts_builtin_sym_end] = ACTIONS(2191), [sym__primitive_identifier] = ACTIONS(2193), [anon_sym_SEMI] = ACTIONS(2191), @@ -64336,7 +63456,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2191), [sym_block_comment] = ACTIONS(3), }, - [464] = { + [452] = { [ts_builtin_sym_end] = ACTIONS(2195), [sym__primitive_identifier] = ACTIONS(2197), [anon_sym_SEMI] = ACTIONS(2195), @@ -64415,7 +63535,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2195), [sym_block_comment] = ACTIONS(3), }, - [465] = { + [453] = { [ts_builtin_sym_end] = ACTIONS(2199), [sym__primitive_identifier] = ACTIONS(2201), [anon_sym_SEMI] = ACTIONS(2199), @@ -64494,7 +63614,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2199), [sym_block_comment] = ACTIONS(3), }, - [466] = { + [454] = { [ts_builtin_sym_end] = ACTIONS(2203), [sym__primitive_identifier] = ACTIONS(2205), [anon_sym_SEMI] = ACTIONS(2203), @@ -64573,7 +63693,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2203), [sym_block_comment] = ACTIONS(3), }, - [467] = { + [455] = { [ts_builtin_sym_end] = ACTIONS(2207), [sym__primitive_identifier] = ACTIONS(2209), [anon_sym_SEMI] = ACTIONS(2207), @@ -64652,5782 +63772,7042 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2207), [sym_block_comment] = ACTIONS(3), }, - [468] = { - [sym_attribute_item] = STATE(582), - [sym_bracketed_type] = STATE(2658), - [sym_generic_type] = STATE(2655), - [sym_generic_type_with_turbofish] = STATE(2638), - [sym_macro_invocation] = STATE(1616), - [sym_scoped_identifier] = STATE(1451), - [sym_scoped_type_identifier] = STATE(2231), - [sym_match_arm] = STATE(468), - [sym_match_pattern] = STATE(2610), - [sym_const_block] = STATE(1616), - [sym_pattern] = STATE(2278), - [sym_tuple_pattern] = STATE(1616), - [sym_slice_pattern] = STATE(1616), - [sym_tuple_struct_pattern] = STATE(1616), - [sym_struct_pattern] = STATE(1616), - [sym_remaining_field_pattern] = STATE(1616), - [sym_mut_pattern] = STATE(1616), - [sym_range_pattern] = STATE(1616), - [sym_ref_pattern] = STATE(1616), - [sym_captured_pattern] = STATE(1616), - [sym_reference_pattern] = STATE(1616), - [sym_or_pattern] = STATE(1616), - [sym__literal_pattern] = STATE(1496), - [sym_negative_literal] = STATE(1513), - [sym_string_literal] = STATE(1513), - [sym_boolean_literal] = STATE(1513), - [sym_primitive_type] = STATE(1471), - [sym_identifier] = STATE(1428), - [aux_sym_enum_variant_list_repeat1] = STATE(582), - [aux_sym_match_block_repeat1] = STATE(468), - [sym__primitive_identifier] = ACTIONS(2211), - [sym_underscore] = ACTIONS(2214), - [anon_sym_LPAREN] = ACTIONS(2217), - [anon_sym_LBRACK] = ACTIONS(2220), - [anon_sym_const] = ACTIONS(2223), - [anon_sym_default] = ACTIONS(2226), - [anon_sym_union] = ACTIONS(2226), - [anon_sym_POUND] = ACTIONS(2229), - [anon_sym_ref] = ACTIONS(2232), + [456] = { + [ts_builtin_sym_end] = ACTIONS(2211), + [sym__primitive_identifier] = ACTIONS(2213), + [anon_sym_SEMI] = ACTIONS(2211), + [anon_sym_macro_rules_BANG] = ACTIONS(2211), + [anon_sym_LPAREN] = ACTIONS(2211), + [anon_sym_LBRACE] = ACTIONS(2211), + [anon_sym_RBRACE] = ACTIONS(2211), + [anon_sym_LBRACK] = ACTIONS(2211), + [anon_sym_STAR] = ACTIONS(2211), + [anon_sym_SQUOTE] = ACTIONS(2213), + [anon_sym_async] = ACTIONS(2213), + [anon_sym_break] = ACTIONS(2213), + [anon_sym_const] = ACTIONS(2213), + [anon_sym_continue] = ACTIONS(2213), + [anon_sym_default] = ACTIONS(2213), + [anon_sym_enum] = ACTIONS(2213), + [anon_sym_fn] = ACTIONS(2213), + [anon_sym_for] = ACTIONS(2213), + [anon_sym_if] = ACTIONS(2213), + [anon_sym_impl] = ACTIONS(2213), + [anon_sym_let] = ACTIONS(2213), + [anon_sym_loop] = ACTIONS(2213), + [anon_sym_match] = ACTIONS(2213), + [anon_sym_mod] = ACTIONS(2213), + [anon_sym_pub] = ACTIONS(2213), + [anon_sym_return] = ACTIONS(2213), + [anon_sym_static] = ACTIONS(2213), + [anon_sym_struct] = ACTIONS(2213), + [anon_sym_trait] = ACTIONS(2213), + [anon_sym_type] = ACTIONS(2213), + [anon_sym_union] = ACTIONS(2213), + [anon_sym_unsafe] = ACTIONS(2213), + [anon_sym_use] = ACTIONS(2213), + [anon_sym_while] = ACTIONS(2213), + [anon_sym_POUND] = ACTIONS(2211), + [anon_sym_BANG] = ACTIONS(2211), + [anon_sym_extern] = ACTIONS(2213), + [anon_sym_LT] = ACTIONS(2211), + [anon_sym_COLON_COLON] = ACTIONS(2211), + [anon_sym_AMP] = ACTIONS(2211), + [anon_sym_DOT_DOT] = ACTIONS(2211), + [anon_sym_DASH] = ACTIONS(2211), + [anon_sym_PIPE] = ACTIONS(2211), + [anon_sym_yield] = ACTIONS(2213), + [anon_sym_move] = ACTIONS(2213), + [sym_integer_literal] = ACTIONS(2211), + [aux_sym_string_literal_token1] = ACTIONS(2211), + [sym_char_literal] = ACTIONS(2211), + [anon_sym_true] = ACTIONS(2213), + [anon_sym_false] = ACTIONS(2213), + [anon_sym_u8] = ACTIONS(2213), + [anon_sym_i8] = ACTIONS(2213), + [anon_sym_u16] = ACTIONS(2213), + [anon_sym_i16] = ACTIONS(2213), + [anon_sym_u32] = ACTIONS(2213), + [anon_sym_i32] = ACTIONS(2213), + [anon_sym_u64] = ACTIONS(2213), + [anon_sym_i64] = ACTIONS(2213), + [anon_sym_u128] = ACTIONS(2213), + [anon_sym_i128] = ACTIONS(2213), + [anon_sym_isize] = ACTIONS(2213), + [anon_sym_usize] = ACTIONS(2213), + [anon_sym_f32] = ACTIONS(2213), + [anon_sym_f64] = ACTIONS(2213), + [anon_sym_bool] = ACTIONS(2213), + [anon_sym_str] = ACTIONS(2213), + [anon_sym_char] = ACTIONS(2213), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(2211), + [sym_self] = ACTIONS(2213), + [sym_super] = ACTIONS(2213), + [sym_crate] = ACTIONS(2213), + [sym_metavariable] = ACTIONS(2211), + [sym_grit_metavariable] = ACTIONS(2211), + [sym_raw_string_literal] = ACTIONS(2211), + [sym_float_literal] = ACTIONS(2211), + [sym_block_comment] = ACTIONS(3), + }, + [457] = { + [ts_builtin_sym_end] = ACTIONS(2215), + [sym__primitive_identifier] = ACTIONS(2217), + [anon_sym_SEMI] = ACTIONS(2215), + [anon_sym_macro_rules_BANG] = ACTIONS(2215), + [anon_sym_LPAREN] = ACTIONS(2215), + [anon_sym_LBRACE] = ACTIONS(2215), + [anon_sym_RBRACE] = ACTIONS(2215), + [anon_sym_LBRACK] = ACTIONS(2215), + [anon_sym_STAR] = ACTIONS(2215), + [anon_sym_SQUOTE] = ACTIONS(2217), + [anon_sym_async] = ACTIONS(2217), + [anon_sym_break] = ACTIONS(2217), + [anon_sym_const] = ACTIONS(2217), + [anon_sym_continue] = ACTIONS(2217), + [anon_sym_default] = ACTIONS(2217), + [anon_sym_enum] = ACTIONS(2217), + [anon_sym_fn] = ACTIONS(2217), + [anon_sym_for] = ACTIONS(2217), + [anon_sym_if] = ACTIONS(2217), + [anon_sym_impl] = ACTIONS(2217), + [anon_sym_let] = ACTIONS(2217), + [anon_sym_loop] = ACTIONS(2217), + [anon_sym_match] = ACTIONS(2217), + [anon_sym_mod] = ACTIONS(2217), + [anon_sym_pub] = ACTIONS(2217), + [anon_sym_return] = ACTIONS(2217), + [anon_sym_static] = ACTIONS(2217), + [anon_sym_struct] = ACTIONS(2217), + [anon_sym_trait] = ACTIONS(2217), + [anon_sym_type] = ACTIONS(2217), + [anon_sym_union] = ACTIONS(2217), + [anon_sym_unsafe] = ACTIONS(2217), + [anon_sym_use] = ACTIONS(2217), + [anon_sym_while] = ACTIONS(2217), + [anon_sym_POUND] = ACTIONS(2215), + [anon_sym_BANG] = ACTIONS(2215), + [anon_sym_extern] = ACTIONS(2217), + [anon_sym_LT] = ACTIONS(2215), + [anon_sym_COLON_COLON] = ACTIONS(2215), + [anon_sym_AMP] = ACTIONS(2215), + [anon_sym_DOT_DOT] = ACTIONS(2215), + [anon_sym_DASH] = ACTIONS(2215), + [anon_sym_PIPE] = ACTIONS(2215), + [anon_sym_yield] = ACTIONS(2217), + [anon_sym_move] = ACTIONS(2217), + [sym_integer_literal] = ACTIONS(2215), + [aux_sym_string_literal_token1] = ACTIONS(2215), + [sym_char_literal] = ACTIONS(2215), + [anon_sym_true] = ACTIONS(2217), + [anon_sym_false] = ACTIONS(2217), + [anon_sym_u8] = ACTIONS(2217), + [anon_sym_i8] = ACTIONS(2217), + [anon_sym_u16] = ACTIONS(2217), + [anon_sym_i16] = ACTIONS(2217), + [anon_sym_u32] = ACTIONS(2217), + [anon_sym_i32] = ACTIONS(2217), + [anon_sym_u64] = ACTIONS(2217), + [anon_sym_i64] = ACTIONS(2217), + [anon_sym_u128] = ACTIONS(2217), + [anon_sym_i128] = ACTIONS(2217), + [anon_sym_isize] = ACTIONS(2217), + [anon_sym_usize] = ACTIONS(2217), + [anon_sym_f32] = ACTIONS(2217), + [anon_sym_f64] = ACTIONS(2217), + [anon_sym_bool] = ACTIONS(2217), + [anon_sym_str] = ACTIONS(2217), + [anon_sym_char] = ACTIONS(2217), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(2215), + [sym_self] = ACTIONS(2217), + [sym_super] = ACTIONS(2217), + [sym_crate] = ACTIONS(2217), + [sym_metavariable] = ACTIONS(2215), + [sym_grit_metavariable] = ACTIONS(2215), + [sym_raw_string_literal] = ACTIONS(2215), + [sym_float_literal] = ACTIONS(2215), + [sym_block_comment] = ACTIONS(3), + }, + [458] = { + [ts_builtin_sym_end] = ACTIONS(2219), + [sym__primitive_identifier] = ACTIONS(2221), + [anon_sym_SEMI] = ACTIONS(2219), + [anon_sym_macro_rules_BANG] = ACTIONS(2219), + [anon_sym_LPAREN] = ACTIONS(2219), + [anon_sym_LBRACE] = ACTIONS(2219), + [anon_sym_RBRACE] = ACTIONS(2219), + [anon_sym_LBRACK] = ACTIONS(2219), + [anon_sym_STAR] = ACTIONS(2219), + [anon_sym_SQUOTE] = ACTIONS(2221), + [anon_sym_async] = ACTIONS(2221), + [anon_sym_break] = ACTIONS(2221), + [anon_sym_const] = ACTIONS(2221), + [anon_sym_continue] = ACTIONS(2221), + [anon_sym_default] = ACTIONS(2221), + [anon_sym_enum] = ACTIONS(2221), + [anon_sym_fn] = ACTIONS(2221), + [anon_sym_for] = ACTIONS(2221), + [anon_sym_if] = ACTIONS(2221), + [anon_sym_impl] = ACTIONS(2221), + [anon_sym_let] = ACTIONS(2221), + [anon_sym_loop] = ACTIONS(2221), + [anon_sym_match] = ACTIONS(2221), + [anon_sym_mod] = ACTIONS(2221), + [anon_sym_pub] = ACTIONS(2221), + [anon_sym_return] = ACTIONS(2221), + [anon_sym_static] = ACTIONS(2221), + [anon_sym_struct] = ACTIONS(2221), + [anon_sym_trait] = ACTIONS(2221), + [anon_sym_type] = ACTIONS(2221), + [anon_sym_union] = ACTIONS(2221), + [anon_sym_unsafe] = ACTIONS(2221), + [anon_sym_use] = ACTIONS(2221), + [anon_sym_while] = ACTIONS(2221), + [anon_sym_POUND] = ACTIONS(2219), + [anon_sym_BANG] = ACTIONS(2219), + [anon_sym_extern] = ACTIONS(2221), + [anon_sym_LT] = ACTIONS(2219), + [anon_sym_COLON_COLON] = ACTIONS(2219), + [anon_sym_AMP] = ACTIONS(2219), + [anon_sym_DOT_DOT] = ACTIONS(2219), + [anon_sym_DASH] = ACTIONS(2219), + [anon_sym_PIPE] = ACTIONS(2219), + [anon_sym_yield] = ACTIONS(2221), + [anon_sym_move] = ACTIONS(2221), + [sym_integer_literal] = ACTIONS(2219), + [aux_sym_string_literal_token1] = ACTIONS(2219), + [sym_char_literal] = ACTIONS(2219), + [anon_sym_true] = ACTIONS(2221), + [anon_sym_false] = ACTIONS(2221), + [anon_sym_u8] = ACTIONS(2221), + [anon_sym_i8] = ACTIONS(2221), + [anon_sym_u16] = ACTIONS(2221), + [anon_sym_i16] = ACTIONS(2221), + [anon_sym_u32] = ACTIONS(2221), + [anon_sym_i32] = ACTIONS(2221), + [anon_sym_u64] = ACTIONS(2221), + [anon_sym_i64] = ACTIONS(2221), + [anon_sym_u128] = ACTIONS(2221), + [anon_sym_i128] = ACTIONS(2221), + [anon_sym_isize] = ACTIONS(2221), + [anon_sym_usize] = ACTIONS(2221), + [anon_sym_f32] = ACTIONS(2221), + [anon_sym_f64] = ACTIONS(2221), + [anon_sym_bool] = ACTIONS(2221), + [anon_sym_str] = ACTIONS(2221), + [anon_sym_char] = ACTIONS(2221), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(2219), + [sym_self] = ACTIONS(2221), + [sym_super] = ACTIONS(2221), + [sym_crate] = ACTIONS(2221), + [sym_metavariable] = ACTIONS(2219), + [sym_grit_metavariable] = ACTIONS(2219), + [sym_raw_string_literal] = ACTIONS(2219), + [sym_float_literal] = ACTIONS(2219), + [sym_block_comment] = ACTIONS(3), + }, + [459] = { + [ts_builtin_sym_end] = ACTIONS(2223), + [sym__primitive_identifier] = ACTIONS(2225), + [anon_sym_SEMI] = ACTIONS(2223), + [anon_sym_macro_rules_BANG] = ACTIONS(2223), + [anon_sym_LPAREN] = ACTIONS(2223), + [anon_sym_LBRACE] = ACTIONS(2223), + [anon_sym_RBRACE] = ACTIONS(2223), + [anon_sym_LBRACK] = ACTIONS(2223), + [anon_sym_STAR] = ACTIONS(2223), + [anon_sym_SQUOTE] = ACTIONS(2225), + [anon_sym_async] = ACTIONS(2225), + [anon_sym_break] = ACTIONS(2225), + [anon_sym_const] = ACTIONS(2225), + [anon_sym_continue] = ACTIONS(2225), + [anon_sym_default] = ACTIONS(2225), + [anon_sym_enum] = ACTIONS(2225), + [anon_sym_fn] = ACTIONS(2225), + [anon_sym_for] = ACTIONS(2225), + [anon_sym_if] = ACTIONS(2225), + [anon_sym_impl] = ACTIONS(2225), + [anon_sym_let] = ACTIONS(2225), + [anon_sym_loop] = ACTIONS(2225), + [anon_sym_match] = ACTIONS(2225), + [anon_sym_mod] = ACTIONS(2225), + [anon_sym_pub] = ACTIONS(2225), + [anon_sym_return] = ACTIONS(2225), + [anon_sym_static] = ACTIONS(2225), + [anon_sym_struct] = ACTIONS(2225), + [anon_sym_trait] = ACTIONS(2225), + [anon_sym_type] = ACTIONS(2225), + [anon_sym_union] = ACTIONS(2225), + [anon_sym_unsafe] = ACTIONS(2225), + [anon_sym_use] = ACTIONS(2225), + [anon_sym_while] = ACTIONS(2225), + [anon_sym_POUND] = ACTIONS(2223), + [anon_sym_BANG] = ACTIONS(2223), + [anon_sym_extern] = ACTIONS(2225), + [anon_sym_LT] = ACTIONS(2223), + [anon_sym_COLON_COLON] = ACTIONS(2223), + [anon_sym_AMP] = ACTIONS(2223), + [anon_sym_DOT_DOT] = ACTIONS(2223), + [anon_sym_DASH] = ACTIONS(2223), + [anon_sym_PIPE] = ACTIONS(2223), + [anon_sym_yield] = ACTIONS(2225), + [anon_sym_move] = ACTIONS(2225), + [sym_integer_literal] = ACTIONS(2223), + [aux_sym_string_literal_token1] = ACTIONS(2223), + [sym_char_literal] = ACTIONS(2223), + [anon_sym_true] = ACTIONS(2225), + [anon_sym_false] = ACTIONS(2225), + [anon_sym_u8] = ACTIONS(2225), + [anon_sym_i8] = ACTIONS(2225), + [anon_sym_u16] = ACTIONS(2225), + [anon_sym_i16] = ACTIONS(2225), + [anon_sym_u32] = ACTIONS(2225), + [anon_sym_i32] = ACTIONS(2225), + [anon_sym_u64] = ACTIONS(2225), + [anon_sym_i64] = ACTIONS(2225), + [anon_sym_u128] = ACTIONS(2225), + [anon_sym_i128] = ACTIONS(2225), + [anon_sym_isize] = ACTIONS(2225), + [anon_sym_usize] = ACTIONS(2225), + [anon_sym_f32] = ACTIONS(2225), + [anon_sym_f64] = ACTIONS(2225), + [anon_sym_bool] = ACTIONS(2225), + [anon_sym_str] = ACTIONS(2225), + [anon_sym_char] = ACTIONS(2225), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(2223), + [sym_self] = ACTIONS(2225), + [sym_super] = ACTIONS(2225), + [sym_crate] = ACTIONS(2225), + [sym_metavariable] = ACTIONS(2223), + [sym_grit_metavariable] = ACTIONS(2223), + [sym_raw_string_literal] = ACTIONS(2223), + [sym_float_literal] = ACTIONS(2223), + [sym_block_comment] = ACTIONS(3), + }, + [460] = { + [ts_builtin_sym_end] = ACTIONS(2227), + [sym__primitive_identifier] = ACTIONS(2229), + [anon_sym_SEMI] = ACTIONS(2227), + [anon_sym_macro_rules_BANG] = ACTIONS(2227), + [anon_sym_LPAREN] = ACTIONS(2227), + [anon_sym_LBRACE] = ACTIONS(2227), + [anon_sym_RBRACE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(2227), + [anon_sym_STAR] = ACTIONS(2227), + [anon_sym_SQUOTE] = ACTIONS(2229), + [anon_sym_async] = ACTIONS(2229), + [anon_sym_break] = ACTIONS(2229), + [anon_sym_const] = ACTIONS(2229), + [anon_sym_continue] = ACTIONS(2229), + [anon_sym_default] = ACTIONS(2229), + [anon_sym_enum] = ACTIONS(2229), + [anon_sym_fn] = ACTIONS(2229), + [anon_sym_for] = ACTIONS(2229), + [anon_sym_if] = ACTIONS(2229), + [anon_sym_impl] = ACTIONS(2229), + [anon_sym_let] = ACTIONS(2229), + [anon_sym_loop] = ACTIONS(2229), + [anon_sym_match] = ACTIONS(2229), + [anon_sym_mod] = ACTIONS(2229), + [anon_sym_pub] = ACTIONS(2229), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_static] = ACTIONS(2229), + [anon_sym_struct] = ACTIONS(2229), + [anon_sym_trait] = ACTIONS(2229), + [anon_sym_type] = ACTIONS(2229), + [anon_sym_union] = ACTIONS(2229), + [anon_sym_unsafe] = ACTIONS(2229), + [anon_sym_use] = ACTIONS(2229), + [anon_sym_while] = ACTIONS(2229), + [anon_sym_POUND] = ACTIONS(2227), + [anon_sym_BANG] = ACTIONS(2227), + [anon_sym_extern] = ACTIONS(2229), + [anon_sym_LT] = ACTIONS(2227), + [anon_sym_COLON_COLON] = ACTIONS(2227), + [anon_sym_AMP] = ACTIONS(2227), + [anon_sym_DOT_DOT] = ACTIONS(2227), + [anon_sym_DASH] = ACTIONS(2227), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_yield] = ACTIONS(2229), + [anon_sym_move] = ACTIONS(2229), + [sym_integer_literal] = ACTIONS(2227), + [aux_sym_string_literal_token1] = ACTIONS(2227), + [sym_char_literal] = ACTIONS(2227), + [anon_sym_true] = ACTIONS(2229), + [anon_sym_false] = ACTIONS(2229), + [anon_sym_u8] = ACTIONS(2229), + [anon_sym_i8] = ACTIONS(2229), + [anon_sym_u16] = ACTIONS(2229), + [anon_sym_i16] = ACTIONS(2229), + [anon_sym_u32] = ACTIONS(2229), + [anon_sym_i32] = ACTIONS(2229), + [anon_sym_u64] = ACTIONS(2229), + [anon_sym_i64] = ACTIONS(2229), + [anon_sym_u128] = ACTIONS(2229), + [anon_sym_i128] = ACTIONS(2229), + [anon_sym_isize] = ACTIONS(2229), + [anon_sym_usize] = ACTIONS(2229), + [anon_sym_f32] = ACTIONS(2229), + [anon_sym_f64] = ACTIONS(2229), + [anon_sym_bool] = ACTIONS(2229), + [anon_sym_str] = ACTIONS(2229), + [anon_sym_char] = ACTIONS(2229), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(2227), + [sym_self] = ACTIONS(2229), + [sym_super] = ACTIONS(2229), + [sym_crate] = ACTIONS(2229), + [sym_metavariable] = ACTIONS(2227), + [sym_grit_metavariable] = ACTIONS(2227), + [sym_raw_string_literal] = ACTIONS(2227), + [sym_float_literal] = ACTIONS(2227), + [sym_block_comment] = ACTIONS(3), + }, + [461] = { + [ts_builtin_sym_end] = ACTIONS(2231), + [sym__primitive_identifier] = ACTIONS(2233), + [anon_sym_SEMI] = ACTIONS(2231), + [anon_sym_macro_rules_BANG] = ACTIONS(2231), + [anon_sym_LPAREN] = ACTIONS(2231), + [anon_sym_LBRACE] = ACTIONS(2231), + [anon_sym_RBRACE] = ACTIONS(2231), + [anon_sym_LBRACK] = ACTIONS(2231), + [anon_sym_STAR] = ACTIONS(2231), + [anon_sym_SQUOTE] = ACTIONS(2233), + [anon_sym_async] = ACTIONS(2233), + [anon_sym_break] = ACTIONS(2233), + [anon_sym_const] = ACTIONS(2233), + [anon_sym_continue] = ACTIONS(2233), + [anon_sym_default] = ACTIONS(2233), + [anon_sym_enum] = ACTIONS(2233), + [anon_sym_fn] = ACTIONS(2233), + [anon_sym_for] = ACTIONS(2233), + [anon_sym_if] = ACTIONS(2233), + [anon_sym_impl] = ACTIONS(2233), + [anon_sym_let] = ACTIONS(2233), + [anon_sym_loop] = ACTIONS(2233), + [anon_sym_match] = ACTIONS(2233), + [anon_sym_mod] = ACTIONS(2233), + [anon_sym_pub] = ACTIONS(2233), + [anon_sym_return] = ACTIONS(2233), + [anon_sym_static] = ACTIONS(2233), + [anon_sym_struct] = ACTIONS(2233), + [anon_sym_trait] = ACTIONS(2233), + [anon_sym_type] = ACTIONS(2233), + [anon_sym_union] = ACTIONS(2233), + [anon_sym_unsafe] = ACTIONS(2233), + [anon_sym_use] = ACTIONS(2233), + [anon_sym_while] = ACTIONS(2233), + [anon_sym_POUND] = ACTIONS(2231), + [anon_sym_BANG] = ACTIONS(2231), + [anon_sym_extern] = ACTIONS(2233), + [anon_sym_LT] = ACTIONS(2231), + [anon_sym_COLON_COLON] = ACTIONS(2231), + [anon_sym_AMP] = ACTIONS(2231), + [anon_sym_DOT_DOT] = ACTIONS(2231), + [anon_sym_DASH] = ACTIONS(2231), + [anon_sym_PIPE] = ACTIONS(2231), + [anon_sym_yield] = ACTIONS(2233), + [anon_sym_move] = ACTIONS(2233), + [sym_integer_literal] = ACTIONS(2231), + [aux_sym_string_literal_token1] = ACTIONS(2231), + [sym_char_literal] = ACTIONS(2231), + [anon_sym_true] = ACTIONS(2233), + [anon_sym_false] = ACTIONS(2233), + [anon_sym_u8] = ACTIONS(2233), + [anon_sym_i8] = ACTIONS(2233), + [anon_sym_u16] = ACTIONS(2233), + [anon_sym_i16] = ACTIONS(2233), + [anon_sym_u32] = ACTIONS(2233), + [anon_sym_i32] = ACTIONS(2233), + [anon_sym_u64] = ACTIONS(2233), + [anon_sym_i64] = ACTIONS(2233), + [anon_sym_u128] = ACTIONS(2233), + [anon_sym_i128] = ACTIONS(2233), + [anon_sym_isize] = ACTIONS(2233), + [anon_sym_usize] = ACTIONS(2233), + [anon_sym_f32] = ACTIONS(2233), + [anon_sym_f64] = ACTIONS(2233), + [anon_sym_bool] = ACTIONS(2233), + [anon_sym_str] = ACTIONS(2233), + [anon_sym_char] = ACTIONS(2233), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(2231), + [sym_self] = ACTIONS(2233), + [sym_super] = ACTIONS(2233), + [sym_crate] = ACTIONS(2233), + [sym_metavariable] = ACTIONS(2231), + [sym_grit_metavariable] = ACTIONS(2231), + [sym_raw_string_literal] = ACTIONS(2231), + [sym_float_literal] = ACTIONS(2231), + [sym_block_comment] = ACTIONS(3), + }, + [462] = { + [ts_builtin_sym_end] = ACTIONS(2235), + [sym__primitive_identifier] = ACTIONS(2237), + [anon_sym_SEMI] = ACTIONS(2235), + [anon_sym_macro_rules_BANG] = ACTIONS(2235), + [anon_sym_LPAREN] = ACTIONS(2235), + [anon_sym_LBRACE] = ACTIONS(2235), + [anon_sym_RBRACE] = ACTIONS(2235), + [anon_sym_LBRACK] = ACTIONS(2235), + [anon_sym_STAR] = ACTIONS(2235), + [anon_sym_SQUOTE] = ACTIONS(2237), + [anon_sym_async] = ACTIONS(2237), + [anon_sym_break] = ACTIONS(2237), + [anon_sym_const] = ACTIONS(2237), + [anon_sym_continue] = ACTIONS(2237), + [anon_sym_default] = ACTIONS(2237), + [anon_sym_enum] = ACTIONS(2237), + [anon_sym_fn] = ACTIONS(2237), + [anon_sym_for] = ACTIONS(2237), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_impl] = ACTIONS(2237), + [anon_sym_let] = ACTIONS(2237), + [anon_sym_loop] = ACTIONS(2237), + [anon_sym_match] = ACTIONS(2237), + [anon_sym_mod] = ACTIONS(2237), + [anon_sym_pub] = ACTIONS(2237), + [anon_sym_return] = ACTIONS(2237), + [anon_sym_static] = ACTIONS(2237), + [anon_sym_struct] = ACTIONS(2237), + [anon_sym_trait] = ACTIONS(2237), + [anon_sym_type] = ACTIONS(2237), + [anon_sym_union] = ACTIONS(2237), + [anon_sym_unsafe] = ACTIONS(2237), + [anon_sym_use] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(2237), + [anon_sym_POUND] = ACTIONS(2235), + [anon_sym_BANG] = ACTIONS(2235), + [anon_sym_extern] = ACTIONS(2237), [anon_sym_LT] = ACTIONS(2235), - [anon_sym_COLON_COLON] = ACTIONS(2238), - [anon_sym_AMP] = ACTIONS(2241), - [sym_mutable_specifier] = ACTIONS(2244), + [anon_sym_COLON_COLON] = ACTIONS(2235), + [anon_sym_AMP] = ACTIONS(2235), + [anon_sym_DOT_DOT] = ACTIONS(2235), + [anon_sym_DASH] = ACTIONS(2235), + [anon_sym_PIPE] = ACTIONS(2235), + [anon_sym_yield] = ACTIONS(2237), + [anon_sym_move] = ACTIONS(2237), + [sym_integer_literal] = ACTIONS(2235), + [aux_sym_string_literal_token1] = ACTIONS(2235), + [sym_char_literal] = ACTIONS(2235), + [anon_sym_true] = ACTIONS(2237), + [anon_sym_false] = ACTIONS(2237), + [anon_sym_u8] = ACTIONS(2237), + [anon_sym_i8] = ACTIONS(2237), + [anon_sym_u16] = ACTIONS(2237), + [anon_sym_i16] = ACTIONS(2237), + [anon_sym_u32] = ACTIONS(2237), + [anon_sym_i32] = ACTIONS(2237), + [anon_sym_u64] = ACTIONS(2237), + [anon_sym_i64] = ACTIONS(2237), + [anon_sym_u128] = ACTIONS(2237), + [anon_sym_i128] = ACTIONS(2237), + [anon_sym_isize] = ACTIONS(2237), + [anon_sym_usize] = ACTIONS(2237), + [anon_sym_f32] = ACTIONS(2237), + [anon_sym_f64] = ACTIONS(2237), + [anon_sym_bool] = ACTIONS(2237), + [anon_sym_str] = ACTIONS(2237), + [anon_sym_char] = ACTIONS(2237), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(2235), + [sym_self] = ACTIONS(2237), + [sym_super] = ACTIONS(2237), + [sym_crate] = ACTIONS(2237), + [sym_metavariable] = ACTIONS(2235), + [sym_grit_metavariable] = ACTIONS(2235), + [sym_raw_string_literal] = ACTIONS(2235), + [sym_float_literal] = ACTIONS(2235), + [sym_block_comment] = ACTIONS(3), + }, + [463] = { + [ts_builtin_sym_end] = ACTIONS(2239), + [sym__primitive_identifier] = ACTIONS(2241), + [anon_sym_SEMI] = ACTIONS(2239), + [anon_sym_macro_rules_BANG] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(2239), + [anon_sym_LBRACE] = ACTIONS(2239), + [anon_sym_RBRACE] = ACTIONS(2239), + [anon_sym_LBRACK] = ACTIONS(2239), + [anon_sym_STAR] = ACTIONS(2239), + [anon_sym_SQUOTE] = ACTIONS(2241), + [anon_sym_async] = ACTIONS(2241), + [anon_sym_break] = ACTIONS(2241), + [anon_sym_const] = ACTIONS(2241), + [anon_sym_continue] = ACTIONS(2241), + [anon_sym_default] = ACTIONS(2241), + [anon_sym_enum] = ACTIONS(2241), + [anon_sym_fn] = ACTIONS(2241), + [anon_sym_for] = ACTIONS(2241), + [anon_sym_if] = ACTIONS(2241), + [anon_sym_impl] = ACTIONS(2241), + [anon_sym_let] = ACTIONS(2241), + [anon_sym_loop] = ACTIONS(2241), + [anon_sym_match] = ACTIONS(2241), + [anon_sym_mod] = ACTIONS(2241), + [anon_sym_pub] = ACTIONS(2241), + [anon_sym_return] = ACTIONS(2241), + [anon_sym_static] = ACTIONS(2241), + [anon_sym_struct] = ACTIONS(2241), + [anon_sym_trait] = ACTIONS(2241), + [anon_sym_type] = ACTIONS(2241), + [anon_sym_union] = ACTIONS(2241), + [anon_sym_unsafe] = ACTIONS(2241), + [anon_sym_use] = ACTIONS(2241), + [anon_sym_while] = ACTIONS(2241), + [anon_sym_POUND] = ACTIONS(2239), + [anon_sym_BANG] = ACTIONS(2239), + [anon_sym_extern] = ACTIONS(2241), + [anon_sym_LT] = ACTIONS(2239), + [anon_sym_COLON_COLON] = ACTIONS(2239), + [anon_sym_AMP] = ACTIONS(2239), + [anon_sym_DOT_DOT] = ACTIONS(2239), + [anon_sym_DASH] = ACTIONS(2239), + [anon_sym_PIPE] = ACTIONS(2239), + [anon_sym_yield] = ACTIONS(2241), + [anon_sym_move] = ACTIONS(2241), + [sym_integer_literal] = ACTIONS(2239), + [aux_sym_string_literal_token1] = ACTIONS(2239), + [sym_char_literal] = ACTIONS(2239), + [anon_sym_true] = ACTIONS(2241), + [anon_sym_false] = ACTIONS(2241), + [anon_sym_u8] = ACTIONS(2241), + [anon_sym_i8] = ACTIONS(2241), + [anon_sym_u16] = ACTIONS(2241), + [anon_sym_i16] = ACTIONS(2241), + [anon_sym_u32] = ACTIONS(2241), + [anon_sym_i32] = ACTIONS(2241), + [anon_sym_u64] = ACTIONS(2241), + [anon_sym_i64] = ACTIONS(2241), + [anon_sym_u128] = ACTIONS(2241), + [anon_sym_i128] = ACTIONS(2241), + [anon_sym_isize] = ACTIONS(2241), + [anon_sym_usize] = ACTIONS(2241), + [anon_sym_f32] = ACTIONS(2241), + [anon_sym_f64] = ACTIONS(2241), + [anon_sym_bool] = ACTIONS(2241), + [anon_sym_str] = ACTIONS(2241), + [anon_sym_char] = ACTIONS(2241), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(2239), + [sym_self] = ACTIONS(2241), + [sym_super] = ACTIONS(2241), + [sym_crate] = ACTIONS(2241), + [sym_metavariable] = ACTIONS(2239), + [sym_grit_metavariable] = ACTIONS(2239), + [sym_raw_string_literal] = ACTIONS(2239), + [sym_float_literal] = ACTIONS(2239), + [sym_block_comment] = ACTIONS(3), + }, + [464] = { + [ts_builtin_sym_end] = ACTIONS(2243), + [sym__primitive_identifier] = ACTIONS(2245), + [anon_sym_SEMI] = ACTIONS(2243), + [anon_sym_macro_rules_BANG] = ACTIONS(2243), + [anon_sym_LPAREN] = ACTIONS(2243), + [anon_sym_LBRACE] = ACTIONS(2243), + [anon_sym_RBRACE] = ACTIONS(2243), + [anon_sym_LBRACK] = ACTIONS(2243), + [anon_sym_STAR] = ACTIONS(2243), + [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_async] = ACTIONS(2245), + [anon_sym_break] = ACTIONS(2245), + [anon_sym_const] = ACTIONS(2245), + [anon_sym_continue] = ACTIONS(2245), + [anon_sym_default] = ACTIONS(2245), + [anon_sym_enum] = ACTIONS(2245), + [anon_sym_fn] = ACTIONS(2245), + [anon_sym_for] = ACTIONS(2245), + [anon_sym_if] = ACTIONS(2245), + [anon_sym_impl] = ACTIONS(2245), + [anon_sym_let] = ACTIONS(2245), + [anon_sym_loop] = ACTIONS(2245), + [anon_sym_match] = ACTIONS(2245), + [anon_sym_mod] = ACTIONS(2245), + [anon_sym_pub] = ACTIONS(2245), + [anon_sym_return] = ACTIONS(2245), + [anon_sym_static] = ACTIONS(2245), + [anon_sym_struct] = ACTIONS(2245), + [anon_sym_trait] = ACTIONS(2245), + [anon_sym_type] = ACTIONS(2245), + [anon_sym_union] = ACTIONS(2245), + [anon_sym_unsafe] = ACTIONS(2245), + [anon_sym_use] = ACTIONS(2245), + [anon_sym_while] = ACTIONS(2245), + [anon_sym_POUND] = ACTIONS(2243), + [anon_sym_BANG] = ACTIONS(2243), + [anon_sym_extern] = ACTIONS(2245), + [anon_sym_LT] = ACTIONS(2243), + [anon_sym_COLON_COLON] = ACTIONS(2243), + [anon_sym_AMP] = ACTIONS(2243), + [anon_sym_DOT_DOT] = ACTIONS(2243), + [anon_sym_DASH] = ACTIONS(2243), + [anon_sym_PIPE] = ACTIONS(2243), + [anon_sym_yield] = ACTIONS(2245), + [anon_sym_move] = ACTIONS(2245), + [sym_integer_literal] = ACTIONS(2243), + [aux_sym_string_literal_token1] = ACTIONS(2243), + [sym_char_literal] = ACTIONS(2243), + [anon_sym_true] = ACTIONS(2245), + [anon_sym_false] = ACTIONS(2245), + [anon_sym_u8] = ACTIONS(2245), + [anon_sym_i8] = ACTIONS(2245), + [anon_sym_u16] = ACTIONS(2245), + [anon_sym_i16] = ACTIONS(2245), + [anon_sym_u32] = ACTIONS(2245), + [anon_sym_i32] = ACTIONS(2245), + [anon_sym_u64] = ACTIONS(2245), + [anon_sym_i64] = ACTIONS(2245), + [anon_sym_u128] = ACTIONS(2245), + [anon_sym_i128] = ACTIONS(2245), + [anon_sym_isize] = ACTIONS(2245), + [anon_sym_usize] = ACTIONS(2245), + [anon_sym_f32] = ACTIONS(2245), + [anon_sym_f64] = ACTIONS(2245), + [anon_sym_bool] = ACTIONS(2245), + [anon_sym_str] = ACTIONS(2245), + [anon_sym_char] = ACTIONS(2245), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(2243), + [sym_self] = ACTIONS(2245), + [sym_super] = ACTIONS(2245), + [sym_crate] = ACTIONS(2245), + [sym_metavariable] = ACTIONS(2243), + [sym_grit_metavariable] = ACTIONS(2243), + [sym_raw_string_literal] = ACTIONS(2243), + [sym_float_literal] = ACTIONS(2243), + [sym_block_comment] = ACTIONS(3), + }, + [465] = { + [ts_builtin_sym_end] = ACTIONS(2247), + [sym__primitive_identifier] = ACTIONS(2249), + [anon_sym_SEMI] = ACTIONS(2247), + [anon_sym_macro_rules_BANG] = ACTIONS(2247), + [anon_sym_LPAREN] = ACTIONS(2247), + [anon_sym_LBRACE] = ACTIONS(2247), + [anon_sym_RBRACE] = ACTIONS(2247), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_STAR] = ACTIONS(2247), + [anon_sym_SQUOTE] = ACTIONS(2249), + [anon_sym_async] = ACTIONS(2249), + [anon_sym_break] = ACTIONS(2249), + [anon_sym_const] = ACTIONS(2249), + [anon_sym_continue] = ACTIONS(2249), + [anon_sym_default] = ACTIONS(2249), + [anon_sym_enum] = ACTIONS(2249), + [anon_sym_fn] = ACTIONS(2249), + [anon_sym_for] = ACTIONS(2249), + [anon_sym_if] = ACTIONS(2249), + [anon_sym_impl] = ACTIONS(2249), + [anon_sym_let] = ACTIONS(2249), + [anon_sym_loop] = ACTIONS(2249), + [anon_sym_match] = ACTIONS(2249), + [anon_sym_mod] = ACTIONS(2249), + [anon_sym_pub] = ACTIONS(2249), + [anon_sym_return] = ACTIONS(2249), + [anon_sym_static] = ACTIONS(2249), + [anon_sym_struct] = ACTIONS(2249), + [anon_sym_trait] = ACTIONS(2249), + [anon_sym_type] = ACTIONS(2249), + [anon_sym_union] = ACTIONS(2249), + [anon_sym_unsafe] = ACTIONS(2249), + [anon_sym_use] = ACTIONS(2249), + [anon_sym_while] = ACTIONS(2249), + [anon_sym_POUND] = ACTIONS(2247), + [anon_sym_BANG] = ACTIONS(2247), + [anon_sym_extern] = ACTIONS(2249), + [anon_sym_LT] = ACTIONS(2247), + [anon_sym_COLON_COLON] = ACTIONS(2247), + [anon_sym_AMP] = ACTIONS(2247), [anon_sym_DOT_DOT] = ACTIONS(2247), - [anon_sym_DASH] = ACTIONS(2250), - [sym_integer_literal] = ACTIONS(2253), - [aux_sym_string_literal_token1] = ACTIONS(2256), - [sym_char_literal] = ACTIONS(2253), - [anon_sym_true] = ACTIONS(2259), - [anon_sym_false] = ACTIONS(2259), - [anon_sym_u8] = ACTIONS(2262), - [anon_sym_i8] = ACTIONS(2262), - [anon_sym_u16] = ACTIONS(2262), - [anon_sym_i16] = ACTIONS(2262), - [anon_sym_u32] = ACTIONS(2262), - [anon_sym_i32] = ACTIONS(2262), - [anon_sym_u64] = ACTIONS(2262), - [anon_sym_i64] = ACTIONS(2262), - [anon_sym_u128] = ACTIONS(2262), - [anon_sym_i128] = ACTIONS(2262), - [anon_sym_isize] = ACTIONS(2262), - [anon_sym_usize] = ACTIONS(2262), - [anon_sym_f32] = ACTIONS(2262), - [anon_sym_f64] = ACTIONS(2262), - [anon_sym_bool] = ACTIONS(2262), - [anon_sym_str] = ACTIONS(2262), - [anon_sym_char] = ACTIONS(2262), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(2265), - [sym_self] = ACTIONS(2268), - [sym_super] = ACTIONS(2268), - [sym_crate] = ACTIONS(2268), - [sym_metavariable] = ACTIONS(2271), - [sym_grit_metavariable] = ACTIONS(2274), - [sym_raw_string_literal] = ACTIONS(2253), - [sym_float_literal] = ACTIONS(2253), + [anon_sym_DASH] = ACTIONS(2247), + [anon_sym_PIPE] = ACTIONS(2247), + [anon_sym_yield] = ACTIONS(2249), + [anon_sym_move] = ACTIONS(2249), + [sym_integer_literal] = ACTIONS(2247), + [aux_sym_string_literal_token1] = ACTIONS(2247), + [sym_char_literal] = ACTIONS(2247), + [anon_sym_true] = ACTIONS(2249), + [anon_sym_false] = ACTIONS(2249), + [anon_sym_u8] = ACTIONS(2249), + [anon_sym_i8] = ACTIONS(2249), + [anon_sym_u16] = ACTIONS(2249), + [anon_sym_i16] = ACTIONS(2249), + [anon_sym_u32] = ACTIONS(2249), + [anon_sym_i32] = ACTIONS(2249), + [anon_sym_u64] = ACTIONS(2249), + [anon_sym_i64] = ACTIONS(2249), + [anon_sym_u128] = ACTIONS(2249), + [anon_sym_i128] = ACTIONS(2249), + [anon_sym_isize] = ACTIONS(2249), + [anon_sym_usize] = ACTIONS(2249), + [anon_sym_f32] = ACTIONS(2249), + [anon_sym_f64] = ACTIONS(2249), + [anon_sym_bool] = ACTIONS(2249), + [anon_sym_str] = ACTIONS(2249), + [anon_sym_char] = ACTIONS(2249), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(2247), + [sym_self] = ACTIONS(2249), + [sym_super] = ACTIONS(2249), + [sym_crate] = ACTIONS(2249), + [sym_metavariable] = ACTIONS(2247), + [sym_grit_metavariable] = ACTIONS(2247), + [sym_raw_string_literal] = ACTIONS(2247), + [sym_float_literal] = ACTIONS(2247), + [sym_block_comment] = ACTIONS(3), + }, + [466] = { + [ts_builtin_sym_end] = ACTIONS(2251), + [sym__primitive_identifier] = ACTIONS(2253), + [anon_sym_SEMI] = ACTIONS(2251), + [anon_sym_macro_rules_BANG] = ACTIONS(2251), + [anon_sym_LPAREN] = ACTIONS(2251), + [anon_sym_LBRACE] = ACTIONS(2251), + [anon_sym_RBRACE] = ACTIONS(2251), + [anon_sym_LBRACK] = ACTIONS(2251), + [anon_sym_STAR] = ACTIONS(2251), + [anon_sym_SQUOTE] = ACTIONS(2253), + [anon_sym_async] = ACTIONS(2253), + [anon_sym_break] = ACTIONS(2253), + [anon_sym_const] = ACTIONS(2253), + [anon_sym_continue] = ACTIONS(2253), + [anon_sym_default] = ACTIONS(2253), + [anon_sym_enum] = ACTIONS(2253), + [anon_sym_fn] = ACTIONS(2253), + [anon_sym_for] = ACTIONS(2253), + [anon_sym_if] = ACTIONS(2253), + [anon_sym_impl] = ACTIONS(2253), + [anon_sym_let] = ACTIONS(2253), + [anon_sym_loop] = ACTIONS(2253), + [anon_sym_match] = ACTIONS(2253), + [anon_sym_mod] = ACTIONS(2253), + [anon_sym_pub] = ACTIONS(2253), + [anon_sym_return] = ACTIONS(2253), + [anon_sym_static] = ACTIONS(2253), + [anon_sym_struct] = ACTIONS(2253), + [anon_sym_trait] = ACTIONS(2253), + [anon_sym_type] = ACTIONS(2253), + [anon_sym_union] = ACTIONS(2253), + [anon_sym_unsafe] = ACTIONS(2253), + [anon_sym_use] = ACTIONS(2253), + [anon_sym_while] = ACTIONS(2253), + [anon_sym_POUND] = ACTIONS(2251), + [anon_sym_BANG] = ACTIONS(2251), + [anon_sym_extern] = ACTIONS(2253), + [anon_sym_LT] = ACTIONS(2251), + [anon_sym_COLON_COLON] = ACTIONS(2251), + [anon_sym_AMP] = ACTIONS(2251), + [anon_sym_DOT_DOT] = ACTIONS(2251), + [anon_sym_DASH] = ACTIONS(2251), + [anon_sym_PIPE] = ACTIONS(2251), + [anon_sym_yield] = ACTIONS(2253), + [anon_sym_move] = ACTIONS(2253), + [sym_integer_literal] = ACTIONS(2251), + [aux_sym_string_literal_token1] = ACTIONS(2251), + [sym_char_literal] = ACTIONS(2251), + [anon_sym_true] = ACTIONS(2253), + [anon_sym_false] = ACTIONS(2253), + [anon_sym_u8] = ACTIONS(2253), + [anon_sym_i8] = ACTIONS(2253), + [anon_sym_u16] = ACTIONS(2253), + [anon_sym_i16] = ACTIONS(2253), + [anon_sym_u32] = ACTIONS(2253), + [anon_sym_i32] = ACTIONS(2253), + [anon_sym_u64] = ACTIONS(2253), + [anon_sym_i64] = ACTIONS(2253), + [anon_sym_u128] = ACTIONS(2253), + [anon_sym_i128] = ACTIONS(2253), + [anon_sym_isize] = ACTIONS(2253), + [anon_sym_usize] = ACTIONS(2253), + [anon_sym_f32] = ACTIONS(2253), + [anon_sym_f64] = ACTIONS(2253), + [anon_sym_bool] = ACTIONS(2253), + [anon_sym_str] = ACTIONS(2253), + [anon_sym_char] = ACTIONS(2253), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(2251), + [sym_self] = ACTIONS(2253), + [sym_super] = ACTIONS(2253), + [sym_crate] = ACTIONS(2253), + [sym_metavariable] = ACTIONS(2251), + [sym_grit_metavariable] = ACTIONS(2251), + [sym_raw_string_literal] = ACTIONS(2251), + [sym_float_literal] = ACTIONS(2251), + [sym_block_comment] = ACTIONS(3), + }, + [467] = { + [ts_builtin_sym_end] = ACTIONS(2255), + [sym__primitive_identifier] = ACTIONS(2257), + [anon_sym_SEMI] = ACTIONS(2255), + [anon_sym_macro_rules_BANG] = ACTIONS(2255), + [anon_sym_LPAREN] = ACTIONS(2255), + [anon_sym_LBRACE] = ACTIONS(2255), + [anon_sym_RBRACE] = ACTIONS(2255), + [anon_sym_LBRACK] = ACTIONS(2255), + [anon_sym_STAR] = ACTIONS(2255), + [anon_sym_SQUOTE] = ACTIONS(2257), + [anon_sym_async] = ACTIONS(2257), + [anon_sym_break] = ACTIONS(2257), + [anon_sym_const] = ACTIONS(2257), + [anon_sym_continue] = ACTIONS(2257), + [anon_sym_default] = ACTIONS(2257), + [anon_sym_enum] = ACTIONS(2257), + [anon_sym_fn] = ACTIONS(2257), + [anon_sym_for] = ACTIONS(2257), + [anon_sym_if] = ACTIONS(2257), + [anon_sym_impl] = ACTIONS(2257), + [anon_sym_let] = ACTIONS(2257), + [anon_sym_loop] = ACTIONS(2257), + [anon_sym_match] = ACTIONS(2257), + [anon_sym_mod] = ACTIONS(2257), + [anon_sym_pub] = ACTIONS(2257), + [anon_sym_return] = ACTIONS(2257), + [anon_sym_static] = ACTIONS(2257), + [anon_sym_struct] = ACTIONS(2257), + [anon_sym_trait] = ACTIONS(2257), + [anon_sym_type] = ACTIONS(2257), + [anon_sym_union] = ACTIONS(2257), + [anon_sym_unsafe] = ACTIONS(2257), + [anon_sym_use] = ACTIONS(2257), + [anon_sym_while] = ACTIONS(2257), + [anon_sym_POUND] = ACTIONS(2255), + [anon_sym_BANG] = ACTIONS(2255), + [anon_sym_extern] = ACTIONS(2257), + [anon_sym_LT] = ACTIONS(2255), + [anon_sym_COLON_COLON] = ACTIONS(2255), + [anon_sym_AMP] = ACTIONS(2255), + [anon_sym_DOT_DOT] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_PIPE] = ACTIONS(2255), + [anon_sym_yield] = ACTIONS(2257), + [anon_sym_move] = ACTIONS(2257), + [sym_integer_literal] = ACTIONS(2255), + [aux_sym_string_literal_token1] = ACTIONS(2255), + [sym_char_literal] = ACTIONS(2255), + [anon_sym_true] = ACTIONS(2257), + [anon_sym_false] = ACTIONS(2257), + [anon_sym_u8] = ACTIONS(2257), + [anon_sym_i8] = ACTIONS(2257), + [anon_sym_u16] = ACTIONS(2257), + [anon_sym_i16] = ACTIONS(2257), + [anon_sym_u32] = ACTIONS(2257), + [anon_sym_i32] = ACTIONS(2257), + [anon_sym_u64] = ACTIONS(2257), + [anon_sym_i64] = ACTIONS(2257), + [anon_sym_u128] = ACTIONS(2257), + [anon_sym_i128] = ACTIONS(2257), + [anon_sym_isize] = ACTIONS(2257), + [anon_sym_usize] = ACTIONS(2257), + [anon_sym_f32] = ACTIONS(2257), + [anon_sym_f64] = ACTIONS(2257), + [anon_sym_bool] = ACTIONS(2257), + [anon_sym_str] = ACTIONS(2257), + [anon_sym_char] = ACTIONS(2257), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(2255), + [sym_self] = ACTIONS(2257), + [sym_super] = ACTIONS(2257), + [sym_crate] = ACTIONS(2257), + [sym_metavariable] = ACTIONS(2255), + [sym_grit_metavariable] = ACTIONS(2255), + [sym_raw_string_literal] = ACTIONS(2255), + [sym_float_literal] = ACTIONS(2255), + [sym_block_comment] = ACTIONS(3), + }, + [468] = { + [ts_builtin_sym_end] = ACTIONS(2259), + [sym__primitive_identifier] = ACTIONS(2261), + [anon_sym_SEMI] = ACTIONS(2259), + [anon_sym_macro_rules_BANG] = ACTIONS(2259), + [anon_sym_LPAREN] = ACTIONS(2259), + [anon_sym_LBRACE] = ACTIONS(2259), + [anon_sym_RBRACE] = ACTIONS(2259), + [anon_sym_LBRACK] = ACTIONS(2259), + [anon_sym_STAR] = ACTIONS(2259), + [anon_sym_SQUOTE] = ACTIONS(2261), + [anon_sym_async] = ACTIONS(2261), + [anon_sym_break] = ACTIONS(2261), + [anon_sym_const] = ACTIONS(2261), + [anon_sym_continue] = ACTIONS(2261), + [anon_sym_default] = ACTIONS(2261), + [anon_sym_enum] = ACTIONS(2261), + [anon_sym_fn] = ACTIONS(2261), + [anon_sym_for] = ACTIONS(2261), + [anon_sym_if] = ACTIONS(2261), + [anon_sym_impl] = ACTIONS(2261), + [anon_sym_let] = ACTIONS(2261), + [anon_sym_loop] = ACTIONS(2261), + [anon_sym_match] = ACTIONS(2261), + [anon_sym_mod] = ACTIONS(2261), + [anon_sym_pub] = ACTIONS(2261), + [anon_sym_return] = ACTIONS(2261), + [anon_sym_static] = ACTIONS(2261), + [anon_sym_struct] = ACTIONS(2261), + [anon_sym_trait] = ACTIONS(2261), + [anon_sym_type] = ACTIONS(2261), + [anon_sym_union] = ACTIONS(2261), + [anon_sym_unsafe] = ACTIONS(2261), + [anon_sym_use] = ACTIONS(2261), + [anon_sym_while] = ACTIONS(2261), + [anon_sym_POUND] = ACTIONS(2259), + [anon_sym_BANG] = ACTIONS(2259), + [anon_sym_extern] = ACTIONS(2261), + [anon_sym_LT] = ACTIONS(2259), + [anon_sym_COLON_COLON] = ACTIONS(2259), + [anon_sym_AMP] = ACTIONS(2259), + [anon_sym_DOT_DOT] = ACTIONS(2259), + [anon_sym_DASH] = ACTIONS(2259), + [anon_sym_PIPE] = ACTIONS(2259), + [anon_sym_yield] = ACTIONS(2261), + [anon_sym_move] = ACTIONS(2261), + [sym_integer_literal] = ACTIONS(2259), + [aux_sym_string_literal_token1] = ACTIONS(2259), + [sym_char_literal] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(2261), + [anon_sym_false] = ACTIONS(2261), + [anon_sym_u8] = ACTIONS(2261), + [anon_sym_i8] = ACTIONS(2261), + [anon_sym_u16] = ACTIONS(2261), + [anon_sym_i16] = ACTIONS(2261), + [anon_sym_u32] = ACTIONS(2261), + [anon_sym_i32] = ACTIONS(2261), + [anon_sym_u64] = ACTIONS(2261), + [anon_sym_i64] = ACTIONS(2261), + [anon_sym_u128] = ACTIONS(2261), + [anon_sym_i128] = ACTIONS(2261), + [anon_sym_isize] = ACTIONS(2261), + [anon_sym_usize] = ACTIONS(2261), + [anon_sym_f32] = ACTIONS(2261), + [anon_sym_f64] = ACTIONS(2261), + [anon_sym_bool] = ACTIONS(2261), + [anon_sym_str] = ACTIONS(2261), + [anon_sym_char] = ACTIONS(2261), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(2259), + [sym_self] = ACTIONS(2261), + [sym_super] = ACTIONS(2261), + [sym_crate] = ACTIONS(2261), + [sym_metavariable] = ACTIONS(2259), + [sym_grit_metavariable] = ACTIONS(2259), + [sym_raw_string_literal] = ACTIONS(2259), + [sym_float_literal] = ACTIONS(2259), [sym_block_comment] = ACTIONS(3), }, [469] = { - [ts_builtin_sym_end] = ACTIONS(2277), - [sym__primitive_identifier] = ACTIONS(2279), - [anon_sym_SEMI] = ACTIONS(2277), - [anon_sym_macro_rules_BANG] = ACTIONS(2277), - [anon_sym_LPAREN] = ACTIONS(2277), - [anon_sym_LBRACE] = ACTIONS(2277), - [anon_sym_RBRACE] = ACTIONS(2277), - [anon_sym_LBRACK] = ACTIONS(2277), - [anon_sym_STAR] = ACTIONS(2277), - [anon_sym_SQUOTE] = ACTIONS(2279), - [anon_sym_async] = ACTIONS(2279), - [anon_sym_break] = ACTIONS(2279), - [anon_sym_const] = ACTIONS(2279), - [anon_sym_continue] = ACTIONS(2279), - [anon_sym_default] = ACTIONS(2279), - [anon_sym_enum] = ACTIONS(2279), - [anon_sym_fn] = ACTIONS(2279), - [anon_sym_for] = ACTIONS(2279), - [anon_sym_if] = ACTIONS(2279), - [anon_sym_impl] = ACTIONS(2279), - [anon_sym_let] = ACTIONS(2279), - [anon_sym_loop] = ACTIONS(2279), - [anon_sym_match] = ACTIONS(2279), - [anon_sym_mod] = ACTIONS(2279), - [anon_sym_pub] = ACTIONS(2279), - [anon_sym_return] = ACTIONS(2279), - [anon_sym_static] = ACTIONS(2279), - [anon_sym_struct] = ACTIONS(2279), - [anon_sym_trait] = ACTIONS(2279), - [anon_sym_type] = ACTIONS(2279), - [anon_sym_union] = ACTIONS(2279), - [anon_sym_unsafe] = ACTIONS(2279), - [anon_sym_use] = ACTIONS(2279), - [anon_sym_while] = ACTIONS(2279), - [anon_sym_POUND] = ACTIONS(2277), - [anon_sym_BANG] = ACTIONS(2277), - [anon_sym_extern] = ACTIONS(2279), - [anon_sym_LT] = ACTIONS(2277), - [anon_sym_COLON_COLON] = ACTIONS(2277), - [anon_sym_AMP] = ACTIONS(2277), - [anon_sym_DOT_DOT] = ACTIONS(2277), - [anon_sym_DASH] = ACTIONS(2277), - [anon_sym_PIPE] = ACTIONS(2277), - [anon_sym_yield] = ACTIONS(2279), - [anon_sym_move] = ACTIONS(2279), - [sym_integer_literal] = ACTIONS(2277), - [aux_sym_string_literal_token1] = ACTIONS(2277), - [sym_char_literal] = ACTIONS(2277), - [anon_sym_true] = ACTIONS(2279), - [anon_sym_false] = ACTIONS(2279), - [anon_sym_u8] = ACTIONS(2279), - [anon_sym_i8] = ACTIONS(2279), - [anon_sym_u16] = ACTIONS(2279), - [anon_sym_i16] = ACTIONS(2279), - [anon_sym_u32] = ACTIONS(2279), - [anon_sym_i32] = ACTIONS(2279), - [anon_sym_u64] = ACTIONS(2279), - [anon_sym_i64] = ACTIONS(2279), - [anon_sym_u128] = ACTIONS(2279), - [anon_sym_i128] = ACTIONS(2279), - [anon_sym_isize] = ACTIONS(2279), - [anon_sym_usize] = ACTIONS(2279), - [anon_sym_f32] = ACTIONS(2279), - [anon_sym_f64] = ACTIONS(2279), - [anon_sym_bool] = ACTIONS(2279), - [anon_sym_str] = ACTIONS(2279), - [anon_sym_char] = ACTIONS(2279), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(2277), - [sym_self] = ACTIONS(2279), - [sym_super] = ACTIONS(2279), - [sym_crate] = ACTIONS(2279), - [sym_metavariable] = ACTIONS(2277), - [sym_grit_metavariable] = ACTIONS(2277), - [sym_raw_string_literal] = ACTIONS(2277), - [sym_float_literal] = ACTIONS(2277), + [ts_builtin_sym_end] = ACTIONS(2263), + [sym__primitive_identifier] = ACTIONS(2265), + [anon_sym_SEMI] = ACTIONS(2263), + [anon_sym_macro_rules_BANG] = ACTIONS(2263), + [anon_sym_LPAREN] = ACTIONS(2263), + [anon_sym_LBRACE] = ACTIONS(2263), + [anon_sym_RBRACE] = ACTIONS(2263), + [anon_sym_LBRACK] = ACTIONS(2263), + [anon_sym_STAR] = ACTIONS(2263), + [anon_sym_SQUOTE] = ACTIONS(2265), + [anon_sym_async] = ACTIONS(2265), + [anon_sym_break] = ACTIONS(2265), + [anon_sym_const] = ACTIONS(2265), + [anon_sym_continue] = ACTIONS(2265), + [anon_sym_default] = ACTIONS(2265), + [anon_sym_enum] = ACTIONS(2265), + [anon_sym_fn] = ACTIONS(2265), + [anon_sym_for] = ACTIONS(2265), + [anon_sym_if] = ACTIONS(2265), + [anon_sym_impl] = ACTIONS(2265), + [anon_sym_let] = ACTIONS(2265), + [anon_sym_loop] = ACTIONS(2265), + [anon_sym_match] = ACTIONS(2265), + [anon_sym_mod] = ACTIONS(2265), + [anon_sym_pub] = ACTIONS(2265), + [anon_sym_return] = ACTIONS(2265), + [anon_sym_static] = ACTIONS(2265), + [anon_sym_struct] = ACTIONS(2265), + [anon_sym_trait] = ACTIONS(2265), + [anon_sym_type] = ACTIONS(2265), + [anon_sym_union] = ACTIONS(2265), + [anon_sym_unsafe] = ACTIONS(2265), + [anon_sym_use] = ACTIONS(2265), + [anon_sym_while] = ACTIONS(2265), + [anon_sym_POUND] = ACTIONS(2263), + [anon_sym_BANG] = ACTIONS(2263), + [anon_sym_extern] = ACTIONS(2265), + [anon_sym_LT] = ACTIONS(2263), + [anon_sym_COLON_COLON] = ACTIONS(2263), + [anon_sym_AMP] = ACTIONS(2263), + [anon_sym_DOT_DOT] = ACTIONS(2263), + [anon_sym_DASH] = ACTIONS(2263), + [anon_sym_PIPE] = ACTIONS(2263), + [anon_sym_yield] = ACTIONS(2265), + [anon_sym_move] = ACTIONS(2265), + [sym_integer_literal] = ACTIONS(2263), + [aux_sym_string_literal_token1] = ACTIONS(2263), + [sym_char_literal] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(2265), + [anon_sym_false] = ACTIONS(2265), + [anon_sym_u8] = ACTIONS(2265), + [anon_sym_i8] = ACTIONS(2265), + [anon_sym_u16] = ACTIONS(2265), + [anon_sym_i16] = ACTIONS(2265), + [anon_sym_u32] = ACTIONS(2265), + [anon_sym_i32] = ACTIONS(2265), + [anon_sym_u64] = ACTIONS(2265), + [anon_sym_i64] = ACTIONS(2265), + [anon_sym_u128] = ACTIONS(2265), + [anon_sym_i128] = ACTIONS(2265), + [anon_sym_isize] = ACTIONS(2265), + [anon_sym_usize] = ACTIONS(2265), + [anon_sym_f32] = ACTIONS(2265), + [anon_sym_f64] = ACTIONS(2265), + [anon_sym_bool] = ACTIONS(2265), + [anon_sym_str] = ACTIONS(2265), + [anon_sym_char] = ACTIONS(2265), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(2263), + [sym_self] = ACTIONS(2265), + [sym_super] = ACTIONS(2265), + [sym_crate] = ACTIONS(2265), + [sym_metavariable] = ACTIONS(2263), + [sym_grit_metavariable] = ACTIONS(2263), + [sym_raw_string_literal] = ACTIONS(2263), + [sym_float_literal] = ACTIONS(2263), [sym_block_comment] = ACTIONS(3), }, [470] = { - [ts_builtin_sym_end] = ACTIONS(2281), - [sym__primitive_identifier] = ACTIONS(2283), - [anon_sym_SEMI] = ACTIONS(2281), - [anon_sym_macro_rules_BANG] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(2281), - [anon_sym_LBRACE] = ACTIONS(2281), - [anon_sym_RBRACE] = ACTIONS(2281), - [anon_sym_LBRACK] = ACTIONS(2281), - [anon_sym_STAR] = ACTIONS(2281), - [anon_sym_SQUOTE] = ACTIONS(2283), - [anon_sym_async] = ACTIONS(2283), - [anon_sym_break] = ACTIONS(2283), - [anon_sym_const] = ACTIONS(2283), - [anon_sym_continue] = ACTIONS(2283), - [anon_sym_default] = ACTIONS(2283), - [anon_sym_enum] = ACTIONS(2283), - [anon_sym_fn] = ACTIONS(2283), - [anon_sym_for] = ACTIONS(2283), - [anon_sym_if] = ACTIONS(2283), - [anon_sym_impl] = ACTIONS(2283), - [anon_sym_let] = ACTIONS(2283), - [anon_sym_loop] = ACTIONS(2283), - [anon_sym_match] = ACTIONS(2283), - [anon_sym_mod] = ACTIONS(2283), - [anon_sym_pub] = ACTIONS(2283), - [anon_sym_return] = ACTIONS(2283), - [anon_sym_static] = ACTIONS(2283), - [anon_sym_struct] = ACTIONS(2283), - [anon_sym_trait] = ACTIONS(2283), - [anon_sym_type] = ACTIONS(2283), - [anon_sym_union] = ACTIONS(2283), - [anon_sym_unsafe] = ACTIONS(2283), - [anon_sym_use] = ACTIONS(2283), - [anon_sym_while] = ACTIONS(2283), - [anon_sym_POUND] = ACTIONS(2281), - [anon_sym_BANG] = ACTIONS(2281), - [anon_sym_extern] = ACTIONS(2283), - [anon_sym_LT] = ACTIONS(2281), - [anon_sym_COLON_COLON] = ACTIONS(2281), - [anon_sym_AMP] = ACTIONS(2281), - [anon_sym_DOT_DOT] = ACTIONS(2281), - [anon_sym_DASH] = ACTIONS(2281), - [anon_sym_PIPE] = ACTIONS(2281), - [anon_sym_yield] = ACTIONS(2283), - [anon_sym_move] = ACTIONS(2283), - [sym_integer_literal] = ACTIONS(2281), - [aux_sym_string_literal_token1] = ACTIONS(2281), - [sym_char_literal] = ACTIONS(2281), - [anon_sym_true] = ACTIONS(2283), - [anon_sym_false] = ACTIONS(2283), - [anon_sym_u8] = ACTIONS(2283), - [anon_sym_i8] = ACTIONS(2283), - [anon_sym_u16] = ACTIONS(2283), - [anon_sym_i16] = ACTIONS(2283), - [anon_sym_u32] = ACTIONS(2283), - [anon_sym_i32] = ACTIONS(2283), - [anon_sym_u64] = ACTIONS(2283), - [anon_sym_i64] = ACTIONS(2283), - [anon_sym_u128] = ACTIONS(2283), - [anon_sym_i128] = ACTIONS(2283), - [anon_sym_isize] = ACTIONS(2283), - [anon_sym_usize] = ACTIONS(2283), - [anon_sym_f32] = ACTIONS(2283), - [anon_sym_f64] = ACTIONS(2283), - [anon_sym_bool] = ACTIONS(2283), - [anon_sym_str] = ACTIONS(2283), - [anon_sym_char] = ACTIONS(2283), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(2281), - [sym_self] = ACTIONS(2283), - [sym_super] = ACTIONS(2283), - [sym_crate] = ACTIONS(2283), - [sym_metavariable] = ACTIONS(2281), - [sym_grit_metavariable] = ACTIONS(2281), - [sym_raw_string_literal] = ACTIONS(2281), - [sym_float_literal] = ACTIONS(2281), + [ts_builtin_sym_end] = ACTIONS(2267), + [sym__primitive_identifier] = ACTIONS(2269), + [anon_sym_SEMI] = ACTIONS(2267), + [anon_sym_macro_rules_BANG] = ACTIONS(2267), + [anon_sym_LPAREN] = ACTIONS(2267), + [anon_sym_LBRACE] = ACTIONS(2267), + [anon_sym_RBRACE] = ACTIONS(2267), + [anon_sym_LBRACK] = ACTIONS(2267), + [anon_sym_STAR] = ACTIONS(2267), + [anon_sym_SQUOTE] = ACTIONS(2269), + [anon_sym_async] = ACTIONS(2269), + [anon_sym_break] = ACTIONS(2269), + [anon_sym_const] = ACTIONS(2269), + [anon_sym_continue] = ACTIONS(2269), + [anon_sym_default] = ACTIONS(2269), + [anon_sym_enum] = ACTIONS(2269), + [anon_sym_fn] = ACTIONS(2269), + [anon_sym_for] = ACTIONS(2269), + [anon_sym_if] = ACTIONS(2269), + [anon_sym_impl] = ACTIONS(2269), + [anon_sym_let] = ACTIONS(2269), + [anon_sym_loop] = ACTIONS(2269), + [anon_sym_match] = ACTIONS(2269), + [anon_sym_mod] = ACTIONS(2269), + [anon_sym_pub] = ACTIONS(2269), + [anon_sym_return] = ACTIONS(2269), + [anon_sym_static] = ACTIONS(2269), + [anon_sym_struct] = ACTIONS(2269), + [anon_sym_trait] = ACTIONS(2269), + [anon_sym_type] = ACTIONS(2269), + [anon_sym_union] = ACTIONS(2269), + [anon_sym_unsafe] = ACTIONS(2269), + [anon_sym_use] = ACTIONS(2269), + [anon_sym_while] = ACTIONS(2269), + [anon_sym_POUND] = ACTIONS(2267), + [anon_sym_BANG] = ACTIONS(2267), + [anon_sym_extern] = ACTIONS(2269), + [anon_sym_LT] = ACTIONS(2267), + [anon_sym_COLON_COLON] = ACTIONS(2267), + [anon_sym_AMP] = ACTIONS(2267), + [anon_sym_DOT_DOT] = ACTIONS(2267), + [anon_sym_DASH] = ACTIONS(2267), + [anon_sym_PIPE] = ACTIONS(2267), + [anon_sym_yield] = ACTIONS(2269), + [anon_sym_move] = ACTIONS(2269), + [sym_integer_literal] = ACTIONS(2267), + [aux_sym_string_literal_token1] = ACTIONS(2267), + [sym_char_literal] = ACTIONS(2267), + [anon_sym_true] = ACTIONS(2269), + [anon_sym_false] = ACTIONS(2269), + [anon_sym_u8] = ACTIONS(2269), + [anon_sym_i8] = ACTIONS(2269), + [anon_sym_u16] = ACTIONS(2269), + [anon_sym_i16] = ACTIONS(2269), + [anon_sym_u32] = ACTIONS(2269), + [anon_sym_i32] = ACTIONS(2269), + [anon_sym_u64] = ACTIONS(2269), + [anon_sym_i64] = ACTIONS(2269), + [anon_sym_u128] = ACTIONS(2269), + [anon_sym_i128] = ACTIONS(2269), + [anon_sym_isize] = ACTIONS(2269), + [anon_sym_usize] = ACTIONS(2269), + [anon_sym_f32] = ACTIONS(2269), + [anon_sym_f64] = ACTIONS(2269), + [anon_sym_bool] = ACTIONS(2269), + [anon_sym_str] = ACTIONS(2269), + [anon_sym_char] = ACTIONS(2269), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(2267), + [sym_self] = ACTIONS(2269), + [sym_super] = ACTIONS(2269), + [sym_crate] = ACTIONS(2269), + [sym_metavariable] = ACTIONS(2267), + [sym_grit_metavariable] = ACTIONS(2267), + [sym_raw_string_literal] = ACTIONS(2267), + [sym_float_literal] = ACTIONS(2267), [sym_block_comment] = ACTIONS(3), }, [471] = { - [ts_builtin_sym_end] = ACTIONS(2285), - [sym__primitive_identifier] = ACTIONS(2287), - [anon_sym_SEMI] = ACTIONS(2285), - [anon_sym_macro_rules_BANG] = ACTIONS(2285), - [anon_sym_LPAREN] = ACTIONS(2285), - [anon_sym_LBRACE] = ACTIONS(2285), - [anon_sym_RBRACE] = ACTIONS(2285), - [anon_sym_LBRACK] = ACTIONS(2285), - [anon_sym_STAR] = ACTIONS(2285), - [anon_sym_SQUOTE] = ACTIONS(2287), - [anon_sym_async] = ACTIONS(2287), - [anon_sym_break] = ACTIONS(2287), - [anon_sym_const] = ACTIONS(2287), - [anon_sym_continue] = ACTIONS(2287), - [anon_sym_default] = ACTIONS(2287), - [anon_sym_enum] = ACTIONS(2287), - [anon_sym_fn] = ACTIONS(2287), - [anon_sym_for] = ACTIONS(2287), - [anon_sym_if] = ACTIONS(2287), - [anon_sym_impl] = ACTIONS(2287), - [anon_sym_let] = ACTIONS(2287), - [anon_sym_loop] = ACTIONS(2287), - [anon_sym_match] = ACTIONS(2287), - [anon_sym_mod] = ACTIONS(2287), - [anon_sym_pub] = ACTIONS(2287), - [anon_sym_return] = ACTIONS(2287), - [anon_sym_static] = ACTIONS(2287), - [anon_sym_struct] = ACTIONS(2287), - [anon_sym_trait] = ACTIONS(2287), - [anon_sym_type] = ACTIONS(2287), - [anon_sym_union] = ACTIONS(2287), - [anon_sym_unsafe] = ACTIONS(2287), - [anon_sym_use] = ACTIONS(2287), - [anon_sym_while] = ACTIONS(2287), - [anon_sym_POUND] = ACTIONS(2285), - [anon_sym_BANG] = ACTIONS(2285), - [anon_sym_extern] = ACTIONS(2287), - [anon_sym_LT] = ACTIONS(2285), - [anon_sym_COLON_COLON] = ACTIONS(2285), - [anon_sym_AMP] = ACTIONS(2285), - [anon_sym_DOT_DOT] = ACTIONS(2285), - [anon_sym_DASH] = ACTIONS(2285), - [anon_sym_PIPE] = ACTIONS(2285), - [anon_sym_yield] = ACTIONS(2287), - [anon_sym_move] = ACTIONS(2287), - [sym_integer_literal] = ACTIONS(2285), - [aux_sym_string_literal_token1] = ACTIONS(2285), - [sym_char_literal] = ACTIONS(2285), - [anon_sym_true] = ACTIONS(2287), - [anon_sym_false] = ACTIONS(2287), - [anon_sym_u8] = ACTIONS(2287), - [anon_sym_i8] = ACTIONS(2287), - [anon_sym_u16] = ACTIONS(2287), - [anon_sym_i16] = ACTIONS(2287), - [anon_sym_u32] = ACTIONS(2287), - [anon_sym_i32] = ACTIONS(2287), - [anon_sym_u64] = ACTIONS(2287), - [anon_sym_i64] = ACTIONS(2287), - [anon_sym_u128] = ACTIONS(2287), - [anon_sym_i128] = ACTIONS(2287), - [anon_sym_isize] = ACTIONS(2287), - [anon_sym_usize] = ACTIONS(2287), - [anon_sym_f32] = ACTIONS(2287), - [anon_sym_f64] = ACTIONS(2287), - [anon_sym_bool] = ACTIONS(2287), - [anon_sym_str] = ACTIONS(2287), - [anon_sym_char] = ACTIONS(2287), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(2285), - [sym_self] = ACTIONS(2287), - [sym_super] = ACTIONS(2287), - [sym_crate] = ACTIONS(2287), - [sym_metavariable] = ACTIONS(2285), - [sym_grit_metavariable] = ACTIONS(2285), - [sym_raw_string_literal] = ACTIONS(2285), - [sym_float_literal] = ACTIONS(2285), + [ts_builtin_sym_end] = ACTIONS(2271), + [sym__primitive_identifier] = ACTIONS(2273), + [anon_sym_SEMI] = ACTIONS(2271), + [anon_sym_macro_rules_BANG] = ACTIONS(2271), + [anon_sym_LPAREN] = ACTIONS(2271), + [anon_sym_LBRACE] = ACTIONS(2271), + [anon_sym_RBRACE] = ACTIONS(2271), + [anon_sym_LBRACK] = ACTIONS(2271), + [anon_sym_STAR] = ACTIONS(2271), + [anon_sym_SQUOTE] = ACTIONS(2273), + [anon_sym_async] = ACTIONS(2273), + [anon_sym_break] = ACTIONS(2273), + [anon_sym_const] = ACTIONS(2273), + [anon_sym_continue] = ACTIONS(2273), + [anon_sym_default] = ACTIONS(2273), + [anon_sym_enum] = ACTIONS(2273), + [anon_sym_fn] = ACTIONS(2273), + [anon_sym_for] = ACTIONS(2273), + [anon_sym_if] = ACTIONS(2273), + [anon_sym_impl] = ACTIONS(2273), + [anon_sym_let] = ACTIONS(2273), + [anon_sym_loop] = ACTIONS(2273), + [anon_sym_match] = ACTIONS(2273), + [anon_sym_mod] = ACTIONS(2273), + [anon_sym_pub] = ACTIONS(2273), + [anon_sym_return] = ACTIONS(2273), + [anon_sym_static] = ACTIONS(2273), + [anon_sym_struct] = ACTIONS(2273), + [anon_sym_trait] = ACTIONS(2273), + [anon_sym_type] = ACTIONS(2273), + [anon_sym_union] = ACTIONS(2273), + [anon_sym_unsafe] = ACTIONS(2273), + [anon_sym_use] = ACTIONS(2273), + [anon_sym_while] = ACTIONS(2273), + [anon_sym_POUND] = ACTIONS(2271), + [anon_sym_BANG] = ACTIONS(2271), + [anon_sym_extern] = ACTIONS(2273), + [anon_sym_LT] = ACTIONS(2271), + [anon_sym_COLON_COLON] = ACTIONS(2271), + [anon_sym_AMP] = ACTIONS(2271), + [anon_sym_DOT_DOT] = ACTIONS(2271), + [anon_sym_DASH] = ACTIONS(2271), + [anon_sym_PIPE] = ACTIONS(2271), + [anon_sym_yield] = ACTIONS(2273), + [anon_sym_move] = ACTIONS(2273), + [sym_integer_literal] = ACTIONS(2271), + [aux_sym_string_literal_token1] = ACTIONS(2271), + [sym_char_literal] = ACTIONS(2271), + [anon_sym_true] = ACTIONS(2273), + [anon_sym_false] = ACTIONS(2273), + [anon_sym_u8] = ACTIONS(2273), + [anon_sym_i8] = ACTIONS(2273), + [anon_sym_u16] = ACTIONS(2273), + [anon_sym_i16] = ACTIONS(2273), + [anon_sym_u32] = ACTIONS(2273), + [anon_sym_i32] = ACTIONS(2273), + [anon_sym_u64] = ACTIONS(2273), + [anon_sym_i64] = ACTIONS(2273), + [anon_sym_u128] = ACTIONS(2273), + [anon_sym_i128] = ACTIONS(2273), + [anon_sym_isize] = ACTIONS(2273), + [anon_sym_usize] = ACTIONS(2273), + [anon_sym_f32] = ACTIONS(2273), + [anon_sym_f64] = ACTIONS(2273), + [anon_sym_bool] = ACTIONS(2273), + [anon_sym_str] = ACTIONS(2273), + [anon_sym_char] = ACTIONS(2273), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(2271), + [sym_self] = ACTIONS(2273), + [sym_super] = ACTIONS(2273), + [sym_crate] = ACTIONS(2273), + [sym_metavariable] = ACTIONS(2271), + [sym_grit_metavariable] = ACTIONS(2271), + [sym_raw_string_literal] = ACTIONS(2271), + [sym_float_literal] = ACTIONS(2271), [sym_block_comment] = ACTIONS(3), }, [472] = { - [ts_builtin_sym_end] = ACTIONS(2289), - [sym__primitive_identifier] = ACTIONS(2291), - [anon_sym_SEMI] = ACTIONS(2289), - [anon_sym_macro_rules_BANG] = ACTIONS(2289), - [anon_sym_LPAREN] = ACTIONS(2289), - [anon_sym_LBRACE] = ACTIONS(2289), - [anon_sym_RBRACE] = ACTIONS(2289), - [anon_sym_LBRACK] = ACTIONS(2289), - [anon_sym_STAR] = ACTIONS(2289), - [anon_sym_SQUOTE] = ACTIONS(2291), - [anon_sym_async] = ACTIONS(2291), - [anon_sym_break] = ACTIONS(2291), - [anon_sym_const] = ACTIONS(2291), - [anon_sym_continue] = ACTIONS(2291), - [anon_sym_default] = ACTIONS(2291), - [anon_sym_enum] = ACTIONS(2291), - [anon_sym_fn] = ACTIONS(2291), - [anon_sym_for] = ACTIONS(2291), - [anon_sym_if] = ACTIONS(2291), - [anon_sym_impl] = ACTIONS(2291), - [anon_sym_let] = ACTIONS(2291), - [anon_sym_loop] = ACTIONS(2291), - [anon_sym_match] = ACTIONS(2291), - [anon_sym_mod] = ACTIONS(2291), - [anon_sym_pub] = ACTIONS(2291), - [anon_sym_return] = ACTIONS(2291), - [anon_sym_static] = ACTIONS(2291), - [anon_sym_struct] = ACTIONS(2291), - [anon_sym_trait] = ACTIONS(2291), - [anon_sym_type] = ACTIONS(2291), - [anon_sym_union] = ACTIONS(2291), - [anon_sym_unsafe] = ACTIONS(2291), - [anon_sym_use] = ACTIONS(2291), - [anon_sym_while] = ACTIONS(2291), - [anon_sym_POUND] = ACTIONS(2289), - [anon_sym_BANG] = ACTIONS(2289), - [anon_sym_extern] = ACTIONS(2291), - [anon_sym_LT] = ACTIONS(2289), - [anon_sym_COLON_COLON] = ACTIONS(2289), - [anon_sym_AMP] = ACTIONS(2289), - [anon_sym_DOT_DOT] = ACTIONS(2289), - [anon_sym_DASH] = ACTIONS(2289), - [anon_sym_PIPE] = ACTIONS(2289), - [anon_sym_yield] = ACTIONS(2291), - [anon_sym_move] = ACTIONS(2291), - [sym_integer_literal] = ACTIONS(2289), - [aux_sym_string_literal_token1] = ACTIONS(2289), - [sym_char_literal] = ACTIONS(2289), - [anon_sym_true] = ACTIONS(2291), - [anon_sym_false] = ACTIONS(2291), - [anon_sym_u8] = ACTIONS(2291), - [anon_sym_i8] = ACTIONS(2291), - [anon_sym_u16] = ACTIONS(2291), - [anon_sym_i16] = ACTIONS(2291), - [anon_sym_u32] = ACTIONS(2291), - [anon_sym_i32] = ACTIONS(2291), - [anon_sym_u64] = ACTIONS(2291), - [anon_sym_i64] = ACTIONS(2291), - [anon_sym_u128] = ACTIONS(2291), - [anon_sym_i128] = ACTIONS(2291), - [anon_sym_isize] = ACTIONS(2291), - [anon_sym_usize] = ACTIONS(2291), - [anon_sym_f32] = ACTIONS(2291), - [anon_sym_f64] = ACTIONS(2291), - [anon_sym_bool] = ACTIONS(2291), - [anon_sym_str] = ACTIONS(2291), - [anon_sym_char] = ACTIONS(2291), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(2289), - [sym_self] = ACTIONS(2291), - [sym_super] = ACTIONS(2291), - [sym_crate] = ACTIONS(2291), - [sym_metavariable] = ACTIONS(2289), - [sym_grit_metavariable] = ACTIONS(2289), - [sym_raw_string_literal] = ACTIONS(2289), - [sym_float_literal] = ACTIONS(2289), + [ts_builtin_sym_end] = ACTIONS(2275), + [sym__primitive_identifier] = ACTIONS(2277), + [anon_sym_SEMI] = ACTIONS(2275), + [anon_sym_macro_rules_BANG] = ACTIONS(2275), + [anon_sym_LPAREN] = ACTIONS(2275), + [anon_sym_LBRACE] = ACTIONS(2275), + [anon_sym_RBRACE] = ACTIONS(2275), + [anon_sym_LBRACK] = ACTIONS(2275), + [anon_sym_STAR] = ACTIONS(2275), + [anon_sym_SQUOTE] = ACTIONS(2277), + [anon_sym_async] = ACTIONS(2277), + [anon_sym_break] = ACTIONS(2277), + [anon_sym_const] = ACTIONS(2277), + [anon_sym_continue] = ACTIONS(2277), + [anon_sym_default] = ACTIONS(2277), + [anon_sym_enum] = ACTIONS(2277), + [anon_sym_fn] = ACTIONS(2277), + [anon_sym_for] = ACTIONS(2277), + [anon_sym_if] = ACTIONS(2277), + [anon_sym_impl] = ACTIONS(2277), + [anon_sym_let] = ACTIONS(2277), + [anon_sym_loop] = ACTIONS(2277), + [anon_sym_match] = ACTIONS(2277), + [anon_sym_mod] = ACTIONS(2277), + [anon_sym_pub] = ACTIONS(2277), + [anon_sym_return] = ACTIONS(2277), + [anon_sym_static] = ACTIONS(2277), + [anon_sym_struct] = ACTIONS(2277), + [anon_sym_trait] = ACTIONS(2277), + [anon_sym_type] = ACTIONS(2277), + [anon_sym_union] = ACTIONS(2277), + [anon_sym_unsafe] = ACTIONS(2277), + [anon_sym_use] = ACTIONS(2277), + [anon_sym_while] = ACTIONS(2277), + [anon_sym_POUND] = ACTIONS(2275), + [anon_sym_BANG] = ACTIONS(2275), + [anon_sym_extern] = ACTIONS(2277), + [anon_sym_LT] = ACTIONS(2275), + [anon_sym_COLON_COLON] = ACTIONS(2275), + [anon_sym_AMP] = ACTIONS(2275), + [anon_sym_DOT_DOT] = ACTIONS(2275), + [anon_sym_DASH] = ACTIONS(2275), + [anon_sym_PIPE] = ACTIONS(2275), + [anon_sym_yield] = ACTIONS(2277), + [anon_sym_move] = ACTIONS(2277), + [sym_integer_literal] = ACTIONS(2275), + [aux_sym_string_literal_token1] = ACTIONS(2275), + [sym_char_literal] = ACTIONS(2275), + [anon_sym_true] = ACTIONS(2277), + [anon_sym_false] = ACTIONS(2277), + [anon_sym_u8] = ACTIONS(2277), + [anon_sym_i8] = ACTIONS(2277), + [anon_sym_u16] = ACTIONS(2277), + [anon_sym_i16] = ACTIONS(2277), + [anon_sym_u32] = ACTIONS(2277), + [anon_sym_i32] = ACTIONS(2277), + [anon_sym_u64] = ACTIONS(2277), + [anon_sym_i64] = ACTIONS(2277), + [anon_sym_u128] = ACTIONS(2277), + [anon_sym_i128] = ACTIONS(2277), + [anon_sym_isize] = ACTIONS(2277), + [anon_sym_usize] = ACTIONS(2277), + [anon_sym_f32] = ACTIONS(2277), + [anon_sym_f64] = ACTIONS(2277), + [anon_sym_bool] = ACTIONS(2277), + [anon_sym_str] = ACTIONS(2277), + [anon_sym_char] = ACTIONS(2277), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(2275), + [sym_self] = ACTIONS(2277), + [sym_super] = ACTIONS(2277), + [sym_crate] = ACTIONS(2277), + [sym_metavariable] = ACTIONS(2275), + [sym_grit_metavariable] = ACTIONS(2275), + [sym_raw_string_literal] = ACTIONS(2275), + [sym_float_literal] = ACTIONS(2275), [sym_block_comment] = ACTIONS(3), }, [473] = { - [ts_builtin_sym_end] = ACTIONS(2293), - [sym__primitive_identifier] = ACTIONS(2295), - [anon_sym_SEMI] = ACTIONS(2293), - [anon_sym_macro_rules_BANG] = ACTIONS(2293), - [anon_sym_LPAREN] = ACTIONS(2293), - [anon_sym_LBRACE] = ACTIONS(2293), - [anon_sym_RBRACE] = ACTIONS(2293), - [anon_sym_LBRACK] = ACTIONS(2293), - [anon_sym_STAR] = ACTIONS(2293), - [anon_sym_SQUOTE] = ACTIONS(2295), - [anon_sym_async] = ACTIONS(2295), - [anon_sym_break] = ACTIONS(2295), - [anon_sym_const] = ACTIONS(2295), - [anon_sym_continue] = ACTIONS(2295), - [anon_sym_default] = ACTIONS(2295), - [anon_sym_enum] = ACTIONS(2295), - [anon_sym_fn] = ACTIONS(2295), - [anon_sym_for] = ACTIONS(2295), - [anon_sym_if] = ACTIONS(2295), - [anon_sym_impl] = ACTIONS(2295), - [anon_sym_let] = ACTIONS(2295), - [anon_sym_loop] = ACTIONS(2295), - [anon_sym_match] = ACTIONS(2295), - [anon_sym_mod] = ACTIONS(2295), - [anon_sym_pub] = ACTIONS(2295), - [anon_sym_return] = ACTIONS(2295), - [anon_sym_static] = ACTIONS(2295), - [anon_sym_struct] = ACTIONS(2295), - [anon_sym_trait] = ACTIONS(2295), - [anon_sym_type] = ACTIONS(2295), - [anon_sym_union] = ACTIONS(2295), - [anon_sym_unsafe] = ACTIONS(2295), - [anon_sym_use] = ACTIONS(2295), - [anon_sym_while] = ACTIONS(2295), - [anon_sym_POUND] = ACTIONS(2293), - [anon_sym_BANG] = ACTIONS(2293), - [anon_sym_extern] = ACTIONS(2295), - [anon_sym_LT] = ACTIONS(2293), - [anon_sym_COLON_COLON] = ACTIONS(2293), - [anon_sym_AMP] = ACTIONS(2293), - [anon_sym_DOT_DOT] = ACTIONS(2293), - [anon_sym_DASH] = ACTIONS(2293), - [anon_sym_PIPE] = ACTIONS(2293), - [anon_sym_yield] = ACTIONS(2295), - [anon_sym_move] = ACTIONS(2295), - [sym_integer_literal] = ACTIONS(2293), - [aux_sym_string_literal_token1] = ACTIONS(2293), - [sym_char_literal] = ACTIONS(2293), - [anon_sym_true] = ACTIONS(2295), - [anon_sym_false] = ACTIONS(2295), - [anon_sym_u8] = ACTIONS(2295), - [anon_sym_i8] = ACTIONS(2295), - [anon_sym_u16] = ACTIONS(2295), - [anon_sym_i16] = ACTIONS(2295), - [anon_sym_u32] = ACTIONS(2295), - [anon_sym_i32] = ACTIONS(2295), - [anon_sym_u64] = ACTIONS(2295), - [anon_sym_i64] = ACTIONS(2295), - [anon_sym_u128] = ACTIONS(2295), - [anon_sym_i128] = ACTIONS(2295), - [anon_sym_isize] = ACTIONS(2295), - [anon_sym_usize] = ACTIONS(2295), - [anon_sym_f32] = ACTIONS(2295), - [anon_sym_f64] = ACTIONS(2295), - [anon_sym_bool] = ACTIONS(2295), - [anon_sym_str] = ACTIONS(2295), - [anon_sym_char] = ACTIONS(2295), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(2293), - [sym_self] = ACTIONS(2295), - [sym_super] = ACTIONS(2295), - [sym_crate] = ACTIONS(2295), - [sym_metavariable] = ACTIONS(2293), - [sym_grit_metavariable] = ACTIONS(2293), - [sym_raw_string_literal] = ACTIONS(2293), - [sym_float_literal] = ACTIONS(2293), + [ts_builtin_sym_end] = ACTIONS(2279), + [sym__primitive_identifier] = ACTIONS(2281), + [anon_sym_SEMI] = ACTIONS(2279), + [anon_sym_macro_rules_BANG] = ACTIONS(2279), + [anon_sym_LPAREN] = ACTIONS(2279), + [anon_sym_LBRACE] = ACTIONS(2279), + [anon_sym_RBRACE] = ACTIONS(2279), + [anon_sym_LBRACK] = ACTIONS(2279), + [anon_sym_STAR] = ACTIONS(2279), + [anon_sym_SQUOTE] = ACTIONS(2281), + [anon_sym_async] = ACTIONS(2281), + [anon_sym_break] = ACTIONS(2281), + [anon_sym_const] = ACTIONS(2281), + [anon_sym_continue] = ACTIONS(2281), + [anon_sym_default] = ACTIONS(2281), + [anon_sym_enum] = ACTIONS(2281), + [anon_sym_fn] = ACTIONS(2281), + [anon_sym_for] = ACTIONS(2281), + [anon_sym_if] = ACTIONS(2281), + [anon_sym_impl] = ACTIONS(2281), + [anon_sym_let] = ACTIONS(2281), + [anon_sym_loop] = ACTIONS(2281), + [anon_sym_match] = ACTIONS(2281), + [anon_sym_mod] = ACTIONS(2281), + [anon_sym_pub] = ACTIONS(2281), + [anon_sym_return] = ACTIONS(2281), + [anon_sym_static] = ACTIONS(2281), + [anon_sym_struct] = ACTIONS(2281), + [anon_sym_trait] = ACTIONS(2281), + [anon_sym_type] = ACTIONS(2281), + [anon_sym_union] = ACTIONS(2281), + [anon_sym_unsafe] = ACTIONS(2281), + [anon_sym_use] = ACTIONS(2281), + [anon_sym_while] = ACTIONS(2281), + [anon_sym_POUND] = ACTIONS(2279), + [anon_sym_BANG] = ACTIONS(2279), + [anon_sym_extern] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(2279), + [anon_sym_COLON_COLON] = ACTIONS(2279), + [anon_sym_AMP] = ACTIONS(2279), + [anon_sym_DOT_DOT] = ACTIONS(2279), + [anon_sym_DASH] = ACTIONS(2279), + [anon_sym_PIPE] = ACTIONS(2279), + [anon_sym_yield] = ACTIONS(2281), + [anon_sym_move] = ACTIONS(2281), + [sym_integer_literal] = ACTIONS(2279), + [aux_sym_string_literal_token1] = ACTIONS(2279), + [sym_char_literal] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(2281), + [anon_sym_false] = ACTIONS(2281), + [anon_sym_u8] = ACTIONS(2281), + [anon_sym_i8] = ACTIONS(2281), + [anon_sym_u16] = ACTIONS(2281), + [anon_sym_i16] = ACTIONS(2281), + [anon_sym_u32] = ACTIONS(2281), + [anon_sym_i32] = ACTIONS(2281), + [anon_sym_u64] = ACTIONS(2281), + [anon_sym_i64] = ACTIONS(2281), + [anon_sym_u128] = ACTIONS(2281), + [anon_sym_i128] = ACTIONS(2281), + [anon_sym_isize] = ACTIONS(2281), + [anon_sym_usize] = ACTIONS(2281), + [anon_sym_f32] = ACTIONS(2281), + [anon_sym_f64] = ACTIONS(2281), + [anon_sym_bool] = ACTIONS(2281), + [anon_sym_str] = ACTIONS(2281), + [anon_sym_char] = ACTIONS(2281), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(2279), + [sym_self] = ACTIONS(2281), + [sym_super] = ACTIONS(2281), + [sym_crate] = ACTIONS(2281), + [sym_metavariable] = ACTIONS(2279), + [sym_grit_metavariable] = ACTIONS(2279), + [sym_raw_string_literal] = ACTIONS(2279), + [sym_float_literal] = ACTIONS(2279), [sym_block_comment] = ACTIONS(3), }, [474] = { - [ts_builtin_sym_end] = ACTIONS(2297), - [sym__primitive_identifier] = ACTIONS(2299), - [anon_sym_SEMI] = ACTIONS(2297), - [anon_sym_macro_rules_BANG] = ACTIONS(2297), - [anon_sym_LPAREN] = ACTIONS(2297), - [anon_sym_LBRACE] = ACTIONS(2297), - [anon_sym_RBRACE] = ACTIONS(2297), - [anon_sym_LBRACK] = ACTIONS(2297), - [anon_sym_STAR] = ACTIONS(2297), - [anon_sym_SQUOTE] = ACTIONS(2299), - [anon_sym_async] = ACTIONS(2299), - [anon_sym_break] = ACTIONS(2299), - [anon_sym_const] = ACTIONS(2299), - [anon_sym_continue] = ACTIONS(2299), - [anon_sym_default] = ACTIONS(2299), - [anon_sym_enum] = ACTIONS(2299), - [anon_sym_fn] = ACTIONS(2299), - [anon_sym_for] = ACTIONS(2299), - [anon_sym_if] = ACTIONS(2299), - [anon_sym_impl] = ACTIONS(2299), - [anon_sym_let] = ACTIONS(2299), - [anon_sym_loop] = ACTIONS(2299), - [anon_sym_match] = ACTIONS(2299), - [anon_sym_mod] = ACTIONS(2299), - [anon_sym_pub] = ACTIONS(2299), - [anon_sym_return] = ACTIONS(2299), - [anon_sym_static] = ACTIONS(2299), - [anon_sym_struct] = ACTIONS(2299), - [anon_sym_trait] = ACTIONS(2299), - [anon_sym_type] = ACTIONS(2299), - [anon_sym_union] = ACTIONS(2299), - [anon_sym_unsafe] = ACTIONS(2299), - [anon_sym_use] = ACTIONS(2299), - [anon_sym_while] = ACTIONS(2299), - [anon_sym_POUND] = ACTIONS(2297), - [anon_sym_BANG] = ACTIONS(2297), - [anon_sym_extern] = ACTIONS(2299), - [anon_sym_LT] = ACTIONS(2297), - [anon_sym_COLON_COLON] = ACTIONS(2297), - [anon_sym_AMP] = ACTIONS(2297), - [anon_sym_DOT_DOT] = ACTIONS(2297), - [anon_sym_DASH] = ACTIONS(2297), - [anon_sym_PIPE] = ACTIONS(2297), - [anon_sym_yield] = ACTIONS(2299), - [anon_sym_move] = ACTIONS(2299), - [sym_integer_literal] = ACTIONS(2297), - [aux_sym_string_literal_token1] = ACTIONS(2297), - [sym_char_literal] = ACTIONS(2297), - [anon_sym_true] = ACTIONS(2299), - [anon_sym_false] = ACTIONS(2299), - [anon_sym_u8] = ACTIONS(2299), - [anon_sym_i8] = ACTIONS(2299), - [anon_sym_u16] = ACTIONS(2299), - [anon_sym_i16] = ACTIONS(2299), - [anon_sym_u32] = ACTIONS(2299), - [anon_sym_i32] = ACTIONS(2299), - [anon_sym_u64] = ACTIONS(2299), - [anon_sym_i64] = ACTIONS(2299), - [anon_sym_u128] = ACTIONS(2299), - [anon_sym_i128] = ACTIONS(2299), - [anon_sym_isize] = ACTIONS(2299), - [anon_sym_usize] = ACTIONS(2299), - [anon_sym_f32] = ACTIONS(2299), - [anon_sym_f64] = ACTIONS(2299), - [anon_sym_bool] = ACTIONS(2299), - [anon_sym_str] = ACTIONS(2299), - [anon_sym_char] = ACTIONS(2299), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(2297), - [sym_self] = ACTIONS(2299), - [sym_super] = ACTIONS(2299), - [sym_crate] = ACTIONS(2299), - [sym_metavariable] = ACTIONS(2297), - [sym_grit_metavariable] = ACTIONS(2297), - [sym_raw_string_literal] = ACTIONS(2297), - [sym_float_literal] = ACTIONS(2297), + [ts_builtin_sym_end] = ACTIONS(2283), + [sym__primitive_identifier] = ACTIONS(2285), + [anon_sym_SEMI] = ACTIONS(2283), + [anon_sym_macro_rules_BANG] = ACTIONS(2283), + [anon_sym_LPAREN] = ACTIONS(2283), + [anon_sym_LBRACE] = ACTIONS(2283), + [anon_sym_RBRACE] = ACTIONS(2283), + [anon_sym_LBRACK] = ACTIONS(2283), + [anon_sym_STAR] = ACTIONS(2283), + [anon_sym_SQUOTE] = ACTIONS(2285), + [anon_sym_async] = ACTIONS(2285), + [anon_sym_break] = ACTIONS(2285), + [anon_sym_const] = ACTIONS(2285), + [anon_sym_continue] = ACTIONS(2285), + [anon_sym_default] = ACTIONS(2285), + [anon_sym_enum] = ACTIONS(2285), + [anon_sym_fn] = ACTIONS(2285), + [anon_sym_for] = ACTIONS(2285), + [anon_sym_if] = ACTIONS(2285), + [anon_sym_impl] = ACTIONS(2285), + [anon_sym_let] = ACTIONS(2285), + [anon_sym_loop] = ACTIONS(2285), + [anon_sym_match] = ACTIONS(2285), + [anon_sym_mod] = ACTIONS(2285), + [anon_sym_pub] = ACTIONS(2285), + [anon_sym_return] = ACTIONS(2285), + [anon_sym_static] = ACTIONS(2285), + [anon_sym_struct] = ACTIONS(2285), + [anon_sym_trait] = ACTIONS(2285), + [anon_sym_type] = ACTIONS(2285), + [anon_sym_union] = ACTIONS(2285), + [anon_sym_unsafe] = ACTIONS(2285), + [anon_sym_use] = ACTIONS(2285), + [anon_sym_while] = ACTIONS(2285), + [anon_sym_POUND] = ACTIONS(2283), + [anon_sym_BANG] = ACTIONS(2283), + [anon_sym_extern] = ACTIONS(2285), + [anon_sym_LT] = ACTIONS(2283), + [anon_sym_COLON_COLON] = ACTIONS(2283), + [anon_sym_AMP] = ACTIONS(2283), + [anon_sym_DOT_DOT] = ACTIONS(2283), + [anon_sym_DASH] = ACTIONS(2283), + [anon_sym_PIPE] = ACTIONS(2283), + [anon_sym_yield] = ACTIONS(2285), + [anon_sym_move] = ACTIONS(2285), + [sym_integer_literal] = ACTIONS(2283), + [aux_sym_string_literal_token1] = ACTIONS(2283), + [sym_char_literal] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(2285), + [anon_sym_false] = ACTIONS(2285), + [anon_sym_u8] = ACTIONS(2285), + [anon_sym_i8] = ACTIONS(2285), + [anon_sym_u16] = ACTIONS(2285), + [anon_sym_i16] = ACTIONS(2285), + [anon_sym_u32] = ACTIONS(2285), + [anon_sym_i32] = ACTIONS(2285), + [anon_sym_u64] = ACTIONS(2285), + [anon_sym_i64] = ACTIONS(2285), + [anon_sym_u128] = ACTIONS(2285), + [anon_sym_i128] = ACTIONS(2285), + [anon_sym_isize] = ACTIONS(2285), + [anon_sym_usize] = ACTIONS(2285), + [anon_sym_f32] = ACTIONS(2285), + [anon_sym_f64] = ACTIONS(2285), + [anon_sym_bool] = ACTIONS(2285), + [anon_sym_str] = ACTIONS(2285), + [anon_sym_char] = ACTIONS(2285), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(2283), + [sym_self] = ACTIONS(2285), + [sym_super] = ACTIONS(2285), + [sym_crate] = ACTIONS(2285), + [sym_metavariable] = ACTIONS(2283), + [sym_grit_metavariable] = ACTIONS(2283), + [sym_raw_string_literal] = ACTIONS(2283), + [sym_float_literal] = ACTIONS(2283), [sym_block_comment] = ACTIONS(3), }, [475] = { - [ts_builtin_sym_end] = ACTIONS(2301), - [sym__primitive_identifier] = ACTIONS(2303), - [anon_sym_SEMI] = ACTIONS(2301), - [anon_sym_macro_rules_BANG] = ACTIONS(2301), - [anon_sym_LPAREN] = ACTIONS(2301), - [anon_sym_LBRACE] = ACTIONS(2301), - [anon_sym_RBRACE] = ACTIONS(2301), - [anon_sym_LBRACK] = ACTIONS(2301), - [anon_sym_STAR] = ACTIONS(2301), - [anon_sym_SQUOTE] = ACTIONS(2303), - [anon_sym_async] = ACTIONS(2303), - [anon_sym_break] = ACTIONS(2303), - [anon_sym_const] = ACTIONS(2303), - [anon_sym_continue] = ACTIONS(2303), - [anon_sym_default] = ACTIONS(2303), - [anon_sym_enum] = ACTIONS(2303), - [anon_sym_fn] = ACTIONS(2303), - [anon_sym_for] = ACTIONS(2303), - [anon_sym_if] = ACTIONS(2303), - [anon_sym_impl] = ACTIONS(2303), - [anon_sym_let] = ACTIONS(2303), - [anon_sym_loop] = ACTIONS(2303), - [anon_sym_match] = ACTIONS(2303), - [anon_sym_mod] = ACTIONS(2303), - [anon_sym_pub] = ACTIONS(2303), - [anon_sym_return] = ACTIONS(2303), - [anon_sym_static] = ACTIONS(2303), - [anon_sym_struct] = ACTIONS(2303), - [anon_sym_trait] = ACTIONS(2303), - [anon_sym_type] = ACTIONS(2303), - [anon_sym_union] = ACTIONS(2303), - [anon_sym_unsafe] = ACTIONS(2303), - [anon_sym_use] = ACTIONS(2303), - [anon_sym_while] = ACTIONS(2303), - [anon_sym_POUND] = ACTIONS(2301), - [anon_sym_BANG] = ACTIONS(2301), - [anon_sym_extern] = ACTIONS(2303), - [anon_sym_LT] = ACTIONS(2301), - [anon_sym_COLON_COLON] = ACTIONS(2301), - [anon_sym_AMP] = ACTIONS(2301), - [anon_sym_DOT_DOT] = ACTIONS(2301), - [anon_sym_DASH] = ACTIONS(2301), - [anon_sym_PIPE] = ACTIONS(2301), - [anon_sym_yield] = ACTIONS(2303), - [anon_sym_move] = ACTIONS(2303), - [sym_integer_literal] = ACTIONS(2301), - [aux_sym_string_literal_token1] = ACTIONS(2301), - [sym_char_literal] = ACTIONS(2301), - [anon_sym_true] = ACTIONS(2303), - [anon_sym_false] = ACTIONS(2303), - [anon_sym_u8] = ACTIONS(2303), - [anon_sym_i8] = ACTIONS(2303), - [anon_sym_u16] = ACTIONS(2303), - [anon_sym_i16] = ACTIONS(2303), - [anon_sym_u32] = ACTIONS(2303), - [anon_sym_i32] = ACTIONS(2303), - [anon_sym_u64] = ACTIONS(2303), - [anon_sym_i64] = ACTIONS(2303), - [anon_sym_u128] = ACTIONS(2303), - [anon_sym_i128] = ACTIONS(2303), - [anon_sym_isize] = ACTIONS(2303), - [anon_sym_usize] = ACTIONS(2303), - [anon_sym_f32] = ACTIONS(2303), - [anon_sym_f64] = ACTIONS(2303), - [anon_sym_bool] = ACTIONS(2303), - [anon_sym_str] = ACTIONS(2303), - [anon_sym_char] = ACTIONS(2303), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(2301), - [sym_self] = ACTIONS(2303), - [sym_super] = ACTIONS(2303), - [sym_crate] = ACTIONS(2303), - [sym_metavariable] = ACTIONS(2301), - [sym_grit_metavariable] = ACTIONS(2301), - [sym_raw_string_literal] = ACTIONS(2301), - [sym_float_literal] = ACTIONS(2301), + [ts_builtin_sym_end] = ACTIONS(2287), + [sym__primitive_identifier] = ACTIONS(2289), + [anon_sym_SEMI] = ACTIONS(2287), + [anon_sym_macro_rules_BANG] = ACTIONS(2287), + [anon_sym_LPAREN] = ACTIONS(2287), + [anon_sym_LBRACE] = ACTIONS(2287), + [anon_sym_RBRACE] = ACTIONS(2287), + [anon_sym_LBRACK] = ACTIONS(2287), + [anon_sym_STAR] = ACTIONS(2287), + [anon_sym_SQUOTE] = ACTIONS(2289), + [anon_sym_async] = ACTIONS(2289), + [anon_sym_break] = ACTIONS(2289), + [anon_sym_const] = ACTIONS(2289), + [anon_sym_continue] = ACTIONS(2289), + [anon_sym_default] = ACTIONS(2289), + [anon_sym_enum] = ACTIONS(2289), + [anon_sym_fn] = ACTIONS(2289), + [anon_sym_for] = ACTIONS(2289), + [anon_sym_if] = ACTIONS(2289), + [anon_sym_impl] = ACTIONS(2289), + [anon_sym_let] = ACTIONS(2289), + [anon_sym_loop] = ACTIONS(2289), + [anon_sym_match] = ACTIONS(2289), + [anon_sym_mod] = ACTIONS(2289), + [anon_sym_pub] = ACTIONS(2289), + [anon_sym_return] = ACTIONS(2289), + [anon_sym_static] = ACTIONS(2289), + [anon_sym_struct] = ACTIONS(2289), + [anon_sym_trait] = ACTIONS(2289), + [anon_sym_type] = ACTIONS(2289), + [anon_sym_union] = ACTIONS(2289), + [anon_sym_unsafe] = ACTIONS(2289), + [anon_sym_use] = ACTIONS(2289), + [anon_sym_while] = ACTIONS(2289), + [anon_sym_POUND] = ACTIONS(2287), + [anon_sym_BANG] = ACTIONS(2287), + [anon_sym_extern] = ACTIONS(2289), + [anon_sym_LT] = ACTIONS(2287), + [anon_sym_COLON_COLON] = ACTIONS(2287), + [anon_sym_AMP] = ACTIONS(2287), + [anon_sym_DOT_DOT] = ACTIONS(2287), + [anon_sym_DASH] = ACTIONS(2287), + [anon_sym_PIPE] = ACTIONS(2287), + [anon_sym_yield] = ACTIONS(2289), + [anon_sym_move] = ACTIONS(2289), + [sym_integer_literal] = ACTIONS(2287), + [aux_sym_string_literal_token1] = ACTIONS(2287), + [sym_char_literal] = ACTIONS(2287), + [anon_sym_true] = ACTIONS(2289), + [anon_sym_false] = ACTIONS(2289), + [anon_sym_u8] = ACTIONS(2289), + [anon_sym_i8] = ACTIONS(2289), + [anon_sym_u16] = ACTIONS(2289), + [anon_sym_i16] = ACTIONS(2289), + [anon_sym_u32] = ACTIONS(2289), + [anon_sym_i32] = ACTIONS(2289), + [anon_sym_u64] = ACTIONS(2289), + [anon_sym_i64] = ACTIONS(2289), + [anon_sym_u128] = ACTIONS(2289), + [anon_sym_i128] = ACTIONS(2289), + [anon_sym_isize] = ACTIONS(2289), + [anon_sym_usize] = ACTIONS(2289), + [anon_sym_f32] = ACTIONS(2289), + [anon_sym_f64] = ACTIONS(2289), + [anon_sym_bool] = ACTIONS(2289), + [anon_sym_str] = ACTIONS(2289), + [anon_sym_char] = ACTIONS(2289), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(2287), + [sym_self] = ACTIONS(2289), + [sym_super] = ACTIONS(2289), + [sym_crate] = ACTIONS(2289), + [sym_metavariable] = ACTIONS(2287), + [sym_grit_metavariable] = ACTIONS(2287), + [sym_raw_string_literal] = ACTIONS(2287), + [sym_float_literal] = ACTIONS(2287), [sym_block_comment] = ACTIONS(3), }, [476] = { - [ts_builtin_sym_end] = ACTIONS(2305), - [sym__primitive_identifier] = ACTIONS(2307), - [anon_sym_SEMI] = ACTIONS(2305), - [anon_sym_macro_rules_BANG] = ACTIONS(2305), - [anon_sym_LPAREN] = ACTIONS(2305), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_RBRACE] = ACTIONS(2305), - [anon_sym_LBRACK] = ACTIONS(2305), - [anon_sym_STAR] = ACTIONS(2305), - [anon_sym_SQUOTE] = ACTIONS(2307), - [anon_sym_async] = ACTIONS(2307), - [anon_sym_break] = ACTIONS(2307), - [anon_sym_const] = ACTIONS(2307), - [anon_sym_continue] = ACTIONS(2307), - [anon_sym_default] = ACTIONS(2307), - [anon_sym_enum] = ACTIONS(2307), - [anon_sym_fn] = ACTIONS(2307), - [anon_sym_for] = ACTIONS(2307), - [anon_sym_if] = ACTIONS(2307), - [anon_sym_impl] = ACTIONS(2307), - [anon_sym_let] = ACTIONS(2307), - [anon_sym_loop] = ACTIONS(2307), - [anon_sym_match] = ACTIONS(2307), - [anon_sym_mod] = ACTIONS(2307), - [anon_sym_pub] = ACTIONS(2307), - [anon_sym_return] = ACTIONS(2307), - [anon_sym_static] = ACTIONS(2307), - [anon_sym_struct] = ACTIONS(2307), - [anon_sym_trait] = ACTIONS(2307), - [anon_sym_type] = ACTIONS(2307), - [anon_sym_union] = ACTIONS(2307), - [anon_sym_unsafe] = ACTIONS(2307), - [anon_sym_use] = ACTIONS(2307), - [anon_sym_while] = ACTIONS(2307), - [anon_sym_POUND] = ACTIONS(2305), - [anon_sym_BANG] = ACTIONS(2305), - [anon_sym_extern] = ACTIONS(2307), - [anon_sym_LT] = ACTIONS(2305), - [anon_sym_COLON_COLON] = ACTIONS(2305), - [anon_sym_AMP] = ACTIONS(2305), - [anon_sym_DOT_DOT] = ACTIONS(2305), - [anon_sym_DASH] = ACTIONS(2305), - [anon_sym_PIPE] = ACTIONS(2305), - [anon_sym_yield] = ACTIONS(2307), - [anon_sym_move] = ACTIONS(2307), - [sym_integer_literal] = ACTIONS(2305), - [aux_sym_string_literal_token1] = ACTIONS(2305), - [sym_char_literal] = ACTIONS(2305), - [anon_sym_true] = ACTIONS(2307), - [anon_sym_false] = ACTIONS(2307), - [anon_sym_u8] = ACTIONS(2307), - [anon_sym_i8] = ACTIONS(2307), - [anon_sym_u16] = ACTIONS(2307), - [anon_sym_i16] = ACTIONS(2307), - [anon_sym_u32] = ACTIONS(2307), - [anon_sym_i32] = ACTIONS(2307), - [anon_sym_u64] = ACTIONS(2307), - [anon_sym_i64] = ACTIONS(2307), - [anon_sym_u128] = ACTIONS(2307), - [anon_sym_i128] = ACTIONS(2307), - [anon_sym_isize] = ACTIONS(2307), - [anon_sym_usize] = ACTIONS(2307), - [anon_sym_f32] = ACTIONS(2307), - [anon_sym_f64] = ACTIONS(2307), - [anon_sym_bool] = ACTIONS(2307), - [anon_sym_str] = ACTIONS(2307), - [anon_sym_char] = ACTIONS(2307), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(2305), - [sym_self] = ACTIONS(2307), - [sym_super] = ACTIONS(2307), - [sym_crate] = ACTIONS(2307), - [sym_metavariable] = ACTIONS(2305), - [sym_grit_metavariable] = ACTIONS(2305), - [sym_raw_string_literal] = ACTIONS(2305), - [sym_float_literal] = ACTIONS(2305), + [ts_builtin_sym_end] = ACTIONS(2291), + [sym__primitive_identifier] = ACTIONS(2293), + [anon_sym_SEMI] = ACTIONS(2291), + [anon_sym_macro_rules_BANG] = ACTIONS(2291), + [anon_sym_LPAREN] = ACTIONS(2291), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_RBRACE] = ACTIONS(2291), + [anon_sym_LBRACK] = ACTIONS(2291), + [anon_sym_STAR] = ACTIONS(2291), + [anon_sym_SQUOTE] = ACTIONS(2293), + [anon_sym_async] = ACTIONS(2293), + [anon_sym_break] = ACTIONS(2293), + [anon_sym_const] = ACTIONS(2293), + [anon_sym_continue] = ACTIONS(2293), + [anon_sym_default] = ACTIONS(2293), + [anon_sym_enum] = ACTIONS(2293), + [anon_sym_fn] = ACTIONS(2293), + [anon_sym_for] = ACTIONS(2293), + [anon_sym_if] = ACTIONS(2293), + [anon_sym_impl] = ACTIONS(2293), + [anon_sym_let] = ACTIONS(2293), + [anon_sym_loop] = ACTIONS(2293), + [anon_sym_match] = ACTIONS(2293), + [anon_sym_mod] = ACTIONS(2293), + [anon_sym_pub] = ACTIONS(2293), + [anon_sym_return] = ACTIONS(2293), + [anon_sym_static] = ACTIONS(2293), + [anon_sym_struct] = ACTIONS(2293), + [anon_sym_trait] = ACTIONS(2293), + [anon_sym_type] = ACTIONS(2293), + [anon_sym_union] = ACTIONS(2293), + [anon_sym_unsafe] = ACTIONS(2293), + [anon_sym_use] = ACTIONS(2293), + [anon_sym_while] = ACTIONS(2293), + [anon_sym_POUND] = ACTIONS(2291), + [anon_sym_BANG] = ACTIONS(2291), + [anon_sym_extern] = ACTIONS(2293), + [anon_sym_LT] = ACTIONS(2291), + [anon_sym_COLON_COLON] = ACTIONS(2291), + [anon_sym_AMP] = ACTIONS(2291), + [anon_sym_DOT_DOT] = ACTIONS(2291), + [anon_sym_DASH] = ACTIONS(2291), + [anon_sym_PIPE] = ACTIONS(2291), + [anon_sym_yield] = ACTIONS(2293), + [anon_sym_move] = ACTIONS(2293), + [sym_integer_literal] = ACTIONS(2291), + [aux_sym_string_literal_token1] = ACTIONS(2291), + [sym_char_literal] = ACTIONS(2291), + [anon_sym_true] = ACTIONS(2293), + [anon_sym_false] = ACTIONS(2293), + [anon_sym_u8] = ACTIONS(2293), + [anon_sym_i8] = ACTIONS(2293), + [anon_sym_u16] = ACTIONS(2293), + [anon_sym_i16] = ACTIONS(2293), + [anon_sym_u32] = ACTIONS(2293), + [anon_sym_i32] = ACTIONS(2293), + [anon_sym_u64] = ACTIONS(2293), + [anon_sym_i64] = ACTIONS(2293), + [anon_sym_u128] = ACTIONS(2293), + [anon_sym_i128] = ACTIONS(2293), + [anon_sym_isize] = ACTIONS(2293), + [anon_sym_usize] = ACTIONS(2293), + [anon_sym_f32] = ACTIONS(2293), + [anon_sym_f64] = ACTIONS(2293), + [anon_sym_bool] = ACTIONS(2293), + [anon_sym_str] = ACTIONS(2293), + [anon_sym_char] = ACTIONS(2293), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(2291), + [sym_self] = ACTIONS(2293), + [sym_super] = ACTIONS(2293), + [sym_crate] = ACTIONS(2293), + [sym_metavariable] = ACTIONS(2291), + [sym_grit_metavariable] = ACTIONS(2291), + [sym_raw_string_literal] = ACTIONS(2291), + [sym_float_literal] = ACTIONS(2291), [sym_block_comment] = ACTIONS(3), }, [477] = { - [ts_builtin_sym_end] = ACTIONS(2309), - [sym__primitive_identifier] = ACTIONS(2311), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_macro_rules_BANG] = ACTIONS(2309), - [anon_sym_LPAREN] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_RBRACE] = ACTIONS(2309), - [anon_sym_LBRACK] = ACTIONS(2309), - [anon_sym_STAR] = ACTIONS(2309), - [anon_sym_SQUOTE] = ACTIONS(2311), - [anon_sym_async] = ACTIONS(2311), - [anon_sym_break] = ACTIONS(2311), - [anon_sym_const] = ACTIONS(2311), - [anon_sym_continue] = ACTIONS(2311), - [anon_sym_default] = ACTIONS(2311), - [anon_sym_enum] = ACTIONS(2311), - [anon_sym_fn] = ACTIONS(2311), - [anon_sym_for] = ACTIONS(2311), - [anon_sym_if] = ACTIONS(2311), - [anon_sym_impl] = ACTIONS(2311), - [anon_sym_let] = ACTIONS(2311), - [anon_sym_loop] = ACTIONS(2311), - [anon_sym_match] = ACTIONS(2311), - [anon_sym_mod] = ACTIONS(2311), - [anon_sym_pub] = ACTIONS(2311), - [anon_sym_return] = ACTIONS(2311), - [anon_sym_static] = ACTIONS(2311), - [anon_sym_struct] = ACTIONS(2311), - [anon_sym_trait] = ACTIONS(2311), - [anon_sym_type] = ACTIONS(2311), - [anon_sym_union] = ACTIONS(2311), - [anon_sym_unsafe] = ACTIONS(2311), - [anon_sym_use] = ACTIONS(2311), - [anon_sym_while] = ACTIONS(2311), - [anon_sym_POUND] = ACTIONS(2309), - [anon_sym_BANG] = ACTIONS(2309), - [anon_sym_extern] = ACTIONS(2311), - [anon_sym_LT] = ACTIONS(2309), - [anon_sym_COLON_COLON] = ACTIONS(2309), - [anon_sym_AMP] = ACTIONS(2309), - [anon_sym_DOT_DOT] = ACTIONS(2309), - [anon_sym_DASH] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_yield] = ACTIONS(2311), - [anon_sym_move] = ACTIONS(2311), - [sym_integer_literal] = ACTIONS(2309), - [aux_sym_string_literal_token1] = ACTIONS(2309), - [sym_char_literal] = ACTIONS(2309), - [anon_sym_true] = ACTIONS(2311), - [anon_sym_false] = ACTIONS(2311), - [anon_sym_u8] = ACTIONS(2311), - [anon_sym_i8] = ACTIONS(2311), - [anon_sym_u16] = ACTIONS(2311), - [anon_sym_i16] = ACTIONS(2311), - [anon_sym_u32] = ACTIONS(2311), - [anon_sym_i32] = ACTIONS(2311), - [anon_sym_u64] = ACTIONS(2311), - [anon_sym_i64] = ACTIONS(2311), - [anon_sym_u128] = ACTIONS(2311), - [anon_sym_i128] = ACTIONS(2311), - [anon_sym_isize] = ACTIONS(2311), - [anon_sym_usize] = ACTIONS(2311), - [anon_sym_f32] = ACTIONS(2311), - [anon_sym_f64] = ACTIONS(2311), - [anon_sym_bool] = ACTIONS(2311), - [anon_sym_str] = ACTIONS(2311), - [anon_sym_char] = ACTIONS(2311), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(2309), - [sym_self] = ACTIONS(2311), - [sym_super] = ACTIONS(2311), - [sym_crate] = ACTIONS(2311), - [sym_metavariable] = ACTIONS(2309), - [sym_grit_metavariable] = ACTIONS(2309), - [sym_raw_string_literal] = ACTIONS(2309), - [sym_float_literal] = ACTIONS(2309), + [ts_builtin_sym_end] = ACTIONS(2295), + [sym__primitive_identifier] = ACTIONS(2297), + [anon_sym_SEMI] = ACTIONS(2295), + [anon_sym_macro_rules_BANG] = ACTIONS(2295), + [anon_sym_LPAREN] = ACTIONS(2295), + [anon_sym_LBRACE] = ACTIONS(2295), + [anon_sym_RBRACE] = ACTIONS(2295), + [anon_sym_LBRACK] = ACTIONS(2295), + [anon_sym_STAR] = ACTIONS(2295), + [anon_sym_SQUOTE] = ACTIONS(2297), + [anon_sym_async] = ACTIONS(2297), + [anon_sym_break] = ACTIONS(2297), + [anon_sym_const] = ACTIONS(2297), + [anon_sym_continue] = ACTIONS(2297), + [anon_sym_default] = ACTIONS(2297), + [anon_sym_enum] = ACTIONS(2297), + [anon_sym_fn] = ACTIONS(2297), + [anon_sym_for] = ACTIONS(2297), + [anon_sym_if] = ACTIONS(2297), + [anon_sym_impl] = ACTIONS(2297), + [anon_sym_let] = ACTIONS(2297), + [anon_sym_loop] = ACTIONS(2297), + [anon_sym_match] = ACTIONS(2297), + [anon_sym_mod] = ACTIONS(2297), + [anon_sym_pub] = ACTIONS(2297), + [anon_sym_return] = ACTIONS(2297), + [anon_sym_static] = ACTIONS(2297), + [anon_sym_struct] = ACTIONS(2297), + [anon_sym_trait] = ACTIONS(2297), + [anon_sym_type] = ACTIONS(2297), + [anon_sym_union] = ACTIONS(2297), + [anon_sym_unsafe] = ACTIONS(2297), + [anon_sym_use] = ACTIONS(2297), + [anon_sym_while] = ACTIONS(2297), + [anon_sym_POUND] = ACTIONS(2295), + [anon_sym_BANG] = ACTIONS(2295), + [anon_sym_extern] = ACTIONS(2297), + [anon_sym_LT] = ACTIONS(2295), + [anon_sym_COLON_COLON] = ACTIONS(2295), + [anon_sym_AMP] = ACTIONS(2295), + [anon_sym_DOT_DOT] = ACTIONS(2295), + [anon_sym_DASH] = ACTIONS(2295), + [anon_sym_PIPE] = ACTIONS(2295), + [anon_sym_yield] = ACTIONS(2297), + [anon_sym_move] = ACTIONS(2297), + [sym_integer_literal] = ACTIONS(2295), + [aux_sym_string_literal_token1] = ACTIONS(2295), + [sym_char_literal] = ACTIONS(2295), + [anon_sym_true] = ACTIONS(2297), + [anon_sym_false] = ACTIONS(2297), + [anon_sym_u8] = ACTIONS(2297), + [anon_sym_i8] = ACTIONS(2297), + [anon_sym_u16] = ACTIONS(2297), + [anon_sym_i16] = ACTIONS(2297), + [anon_sym_u32] = ACTIONS(2297), + [anon_sym_i32] = ACTIONS(2297), + [anon_sym_u64] = ACTIONS(2297), + [anon_sym_i64] = ACTIONS(2297), + [anon_sym_u128] = ACTIONS(2297), + [anon_sym_i128] = ACTIONS(2297), + [anon_sym_isize] = ACTIONS(2297), + [anon_sym_usize] = ACTIONS(2297), + [anon_sym_f32] = ACTIONS(2297), + [anon_sym_f64] = ACTIONS(2297), + [anon_sym_bool] = ACTIONS(2297), + [anon_sym_str] = ACTIONS(2297), + [anon_sym_char] = ACTIONS(2297), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(2295), + [sym_self] = ACTIONS(2297), + [sym_super] = ACTIONS(2297), + [sym_crate] = ACTIONS(2297), + [sym_metavariable] = ACTIONS(2295), + [sym_grit_metavariable] = ACTIONS(2295), + [sym_raw_string_literal] = ACTIONS(2295), + [sym_float_literal] = ACTIONS(2295), [sym_block_comment] = ACTIONS(3), }, [478] = { - [ts_builtin_sym_end] = ACTIONS(2313), - [sym__primitive_identifier] = ACTIONS(2315), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_macro_rules_BANG] = ACTIONS(2313), - [anon_sym_LPAREN] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_RBRACE] = ACTIONS(2313), - [anon_sym_LBRACK] = ACTIONS(2313), - [anon_sym_STAR] = ACTIONS(2313), - [anon_sym_SQUOTE] = ACTIONS(2315), - [anon_sym_async] = ACTIONS(2315), - [anon_sym_break] = ACTIONS(2315), - [anon_sym_const] = ACTIONS(2315), - [anon_sym_continue] = ACTIONS(2315), - [anon_sym_default] = ACTIONS(2315), - [anon_sym_enum] = ACTIONS(2315), - [anon_sym_fn] = ACTIONS(2315), - [anon_sym_for] = ACTIONS(2315), - [anon_sym_if] = ACTIONS(2315), - [anon_sym_impl] = ACTIONS(2315), - [anon_sym_let] = ACTIONS(2315), - [anon_sym_loop] = ACTIONS(2315), - [anon_sym_match] = ACTIONS(2315), - [anon_sym_mod] = ACTIONS(2315), - [anon_sym_pub] = ACTIONS(2315), - [anon_sym_return] = ACTIONS(2315), - [anon_sym_static] = ACTIONS(2315), - [anon_sym_struct] = ACTIONS(2315), - [anon_sym_trait] = ACTIONS(2315), - [anon_sym_type] = ACTIONS(2315), - [anon_sym_union] = ACTIONS(2315), - [anon_sym_unsafe] = ACTIONS(2315), - [anon_sym_use] = ACTIONS(2315), - [anon_sym_while] = ACTIONS(2315), - [anon_sym_POUND] = ACTIONS(2313), - [anon_sym_BANG] = ACTIONS(2313), - [anon_sym_extern] = ACTIONS(2315), - [anon_sym_LT] = ACTIONS(2313), - [anon_sym_COLON_COLON] = ACTIONS(2313), - [anon_sym_AMP] = ACTIONS(2313), - [anon_sym_DOT_DOT] = ACTIONS(2313), - [anon_sym_DASH] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_yield] = ACTIONS(2315), - [anon_sym_move] = ACTIONS(2315), - [sym_integer_literal] = ACTIONS(2313), - [aux_sym_string_literal_token1] = ACTIONS(2313), - [sym_char_literal] = ACTIONS(2313), - [anon_sym_true] = ACTIONS(2315), - [anon_sym_false] = ACTIONS(2315), - [anon_sym_u8] = ACTIONS(2315), - [anon_sym_i8] = ACTIONS(2315), - [anon_sym_u16] = ACTIONS(2315), - [anon_sym_i16] = ACTIONS(2315), - [anon_sym_u32] = ACTIONS(2315), - [anon_sym_i32] = ACTIONS(2315), - [anon_sym_u64] = ACTIONS(2315), - [anon_sym_i64] = ACTIONS(2315), - [anon_sym_u128] = ACTIONS(2315), - [anon_sym_i128] = ACTIONS(2315), - [anon_sym_isize] = ACTIONS(2315), - [anon_sym_usize] = ACTIONS(2315), - [anon_sym_f32] = ACTIONS(2315), - [anon_sym_f64] = ACTIONS(2315), - [anon_sym_bool] = ACTIONS(2315), - [anon_sym_str] = ACTIONS(2315), - [anon_sym_char] = ACTIONS(2315), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(2313), - [sym_self] = ACTIONS(2315), - [sym_super] = ACTIONS(2315), - [sym_crate] = ACTIONS(2315), - [sym_metavariable] = ACTIONS(2313), - [sym_grit_metavariable] = ACTIONS(2313), - [sym_raw_string_literal] = ACTIONS(2313), - [sym_float_literal] = ACTIONS(2313), + [ts_builtin_sym_end] = ACTIONS(2299), + [sym__primitive_identifier] = ACTIONS(2301), + [anon_sym_SEMI] = ACTIONS(2299), + [anon_sym_macro_rules_BANG] = ACTIONS(2299), + [anon_sym_LPAREN] = ACTIONS(2299), + [anon_sym_LBRACE] = ACTIONS(2299), + [anon_sym_RBRACE] = ACTIONS(2299), + [anon_sym_LBRACK] = ACTIONS(2299), + [anon_sym_STAR] = ACTIONS(2299), + [anon_sym_SQUOTE] = ACTIONS(2301), + [anon_sym_async] = ACTIONS(2301), + [anon_sym_break] = ACTIONS(2301), + [anon_sym_const] = ACTIONS(2301), + [anon_sym_continue] = ACTIONS(2301), + [anon_sym_default] = ACTIONS(2301), + [anon_sym_enum] = ACTIONS(2301), + [anon_sym_fn] = ACTIONS(2301), + [anon_sym_for] = ACTIONS(2301), + [anon_sym_if] = ACTIONS(2301), + [anon_sym_impl] = ACTIONS(2301), + [anon_sym_let] = ACTIONS(2301), + [anon_sym_loop] = ACTIONS(2301), + [anon_sym_match] = ACTIONS(2301), + [anon_sym_mod] = ACTIONS(2301), + [anon_sym_pub] = ACTIONS(2301), + [anon_sym_return] = ACTIONS(2301), + [anon_sym_static] = ACTIONS(2301), + [anon_sym_struct] = ACTIONS(2301), + [anon_sym_trait] = ACTIONS(2301), + [anon_sym_type] = ACTIONS(2301), + [anon_sym_union] = ACTIONS(2301), + [anon_sym_unsafe] = ACTIONS(2301), + [anon_sym_use] = ACTIONS(2301), + [anon_sym_while] = ACTIONS(2301), + [anon_sym_POUND] = ACTIONS(2299), + [anon_sym_BANG] = ACTIONS(2299), + [anon_sym_extern] = ACTIONS(2301), + [anon_sym_LT] = ACTIONS(2299), + [anon_sym_COLON_COLON] = ACTIONS(2299), + [anon_sym_AMP] = ACTIONS(2299), + [anon_sym_DOT_DOT] = ACTIONS(2299), + [anon_sym_DASH] = ACTIONS(2299), + [anon_sym_PIPE] = ACTIONS(2299), + [anon_sym_yield] = ACTIONS(2301), + [anon_sym_move] = ACTIONS(2301), + [sym_integer_literal] = ACTIONS(2299), + [aux_sym_string_literal_token1] = ACTIONS(2299), + [sym_char_literal] = ACTIONS(2299), + [anon_sym_true] = ACTIONS(2301), + [anon_sym_false] = ACTIONS(2301), + [anon_sym_u8] = ACTIONS(2301), + [anon_sym_i8] = ACTIONS(2301), + [anon_sym_u16] = ACTIONS(2301), + [anon_sym_i16] = ACTIONS(2301), + [anon_sym_u32] = ACTIONS(2301), + [anon_sym_i32] = ACTIONS(2301), + [anon_sym_u64] = ACTIONS(2301), + [anon_sym_i64] = ACTIONS(2301), + [anon_sym_u128] = ACTIONS(2301), + [anon_sym_i128] = ACTIONS(2301), + [anon_sym_isize] = ACTIONS(2301), + [anon_sym_usize] = ACTIONS(2301), + [anon_sym_f32] = ACTIONS(2301), + [anon_sym_f64] = ACTIONS(2301), + [anon_sym_bool] = ACTIONS(2301), + [anon_sym_str] = ACTIONS(2301), + [anon_sym_char] = ACTIONS(2301), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(2299), + [sym_self] = ACTIONS(2301), + [sym_super] = ACTIONS(2301), + [sym_crate] = ACTIONS(2301), + [sym_metavariable] = ACTIONS(2299), + [sym_grit_metavariable] = ACTIONS(2299), + [sym_raw_string_literal] = ACTIONS(2299), + [sym_float_literal] = ACTIONS(2299), [sym_block_comment] = ACTIONS(3), }, [479] = { - [ts_builtin_sym_end] = ACTIONS(2317), - [sym__primitive_identifier] = ACTIONS(2319), - [anon_sym_SEMI] = ACTIONS(2317), - [anon_sym_macro_rules_BANG] = ACTIONS(2317), - [anon_sym_LPAREN] = ACTIONS(2317), - [anon_sym_LBRACE] = ACTIONS(2317), - [anon_sym_RBRACE] = ACTIONS(2317), - [anon_sym_LBRACK] = ACTIONS(2317), - [anon_sym_STAR] = ACTIONS(2317), - [anon_sym_SQUOTE] = ACTIONS(2319), - [anon_sym_async] = ACTIONS(2319), - [anon_sym_break] = ACTIONS(2319), - [anon_sym_const] = ACTIONS(2319), - [anon_sym_continue] = ACTIONS(2319), - [anon_sym_default] = ACTIONS(2319), - [anon_sym_enum] = ACTIONS(2319), - [anon_sym_fn] = ACTIONS(2319), - [anon_sym_for] = ACTIONS(2319), - [anon_sym_if] = ACTIONS(2319), - [anon_sym_impl] = ACTIONS(2319), - [anon_sym_let] = ACTIONS(2319), - [anon_sym_loop] = ACTIONS(2319), - [anon_sym_match] = ACTIONS(2319), - [anon_sym_mod] = ACTIONS(2319), - [anon_sym_pub] = ACTIONS(2319), - [anon_sym_return] = ACTIONS(2319), - [anon_sym_static] = ACTIONS(2319), - [anon_sym_struct] = ACTIONS(2319), - [anon_sym_trait] = ACTIONS(2319), - [anon_sym_type] = ACTIONS(2319), - [anon_sym_union] = ACTIONS(2319), - [anon_sym_unsafe] = ACTIONS(2319), - [anon_sym_use] = ACTIONS(2319), - [anon_sym_while] = ACTIONS(2319), - [anon_sym_POUND] = ACTIONS(2317), - [anon_sym_BANG] = ACTIONS(2317), - [anon_sym_extern] = ACTIONS(2319), - [anon_sym_LT] = ACTIONS(2317), - [anon_sym_COLON_COLON] = ACTIONS(2317), - [anon_sym_AMP] = ACTIONS(2317), - [anon_sym_DOT_DOT] = ACTIONS(2317), - [anon_sym_DASH] = ACTIONS(2317), - [anon_sym_PIPE] = ACTIONS(2317), - [anon_sym_yield] = ACTIONS(2319), - [anon_sym_move] = ACTIONS(2319), - [sym_integer_literal] = ACTIONS(2317), - [aux_sym_string_literal_token1] = ACTIONS(2317), - [sym_char_literal] = ACTIONS(2317), - [anon_sym_true] = ACTIONS(2319), - [anon_sym_false] = ACTIONS(2319), - [anon_sym_u8] = ACTIONS(2319), - [anon_sym_i8] = ACTIONS(2319), - [anon_sym_u16] = ACTIONS(2319), - [anon_sym_i16] = ACTIONS(2319), - [anon_sym_u32] = ACTIONS(2319), - [anon_sym_i32] = ACTIONS(2319), - [anon_sym_u64] = ACTIONS(2319), - [anon_sym_i64] = ACTIONS(2319), - [anon_sym_u128] = ACTIONS(2319), - [anon_sym_i128] = ACTIONS(2319), - [anon_sym_isize] = ACTIONS(2319), - [anon_sym_usize] = ACTIONS(2319), - [anon_sym_f32] = ACTIONS(2319), - [anon_sym_f64] = ACTIONS(2319), - [anon_sym_bool] = ACTIONS(2319), - [anon_sym_str] = ACTIONS(2319), - [anon_sym_char] = ACTIONS(2319), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(2317), - [sym_self] = ACTIONS(2319), - [sym_super] = ACTIONS(2319), - [sym_crate] = ACTIONS(2319), - [sym_metavariable] = ACTIONS(2317), - [sym_grit_metavariable] = ACTIONS(2317), - [sym_raw_string_literal] = ACTIONS(2317), - [sym_float_literal] = ACTIONS(2317), + [ts_builtin_sym_end] = ACTIONS(2303), + [sym__primitive_identifier] = ACTIONS(2305), + [anon_sym_SEMI] = ACTIONS(2303), + [anon_sym_macro_rules_BANG] = ACTIONS(2303), + [anon_sym_LPAREN] = ACTIONS(2303), + [anon_sym_LBRACE] = ACTIONS(2303), + [anon_sym_RBRACE] = ACTIONS(2303), + [anon_sym_LBRACK] = ACTIONS(2303), + [anon_sym_STAR] = ACTIONS(2303), + [anon_sym_SQUOTE] = ACTIONS(2305), + [anon_sym_async] = ACTIONS(2305), + [anon_sym_break] = ACTIONS(2305), + [anon_sym_const] = ACTIONS(2305), + [anon_sym_continue] = ACTIONS(2305), + [anon_sym_default] = ACTIONS(2305), + [anon_sym_enum] = ACTIONS(2305), + [anon_sym_fn] = ACTIONS(2305), + [anon_sym_for] = ACTIONS(2305), + [anon_sym_if] = ACTIONS(2305), + [anon_sym_impl] = ACTIONS(2305), + [anon_sym_let] = ACTIONS(2305), + [anon_sym_loop] = ACTIONS(2305), + [anon_sym_match] = ACTIONS(2305), + [anon_sym_mod] = ACTIONS(2305), + [anon_sym_pub] = ACTIONS(2305), + [anon_sym_return] = ACTIONS(2305), + [anon_sym_static] = ACTIONS(2305), + [anon_sym_struct] = ACTIONS(2305), + [anon_sym_trait] = ACTIONS(2305), + [anon_sym_type] = ACTIONS(2305), + [anon_sym_union] = ACTIONS(2305), + [anon_sym_unsafe] = ACTIONS(2305), + [anon_sym_use] = ACTIONS(2305), + [anon_sym_while] = ACTIONS(2305), + [anon_sym_POUND] = ACTIONS(2303), + [anon_sym_BANG] = ACTIONS(2303), + [anon_sym_extern] = ACTIONS(2305), + [anon_sym_LT] = ACTIONS(2303), + [anon_sym_COLON_COLON] = ACTIONS(2303), + [anon_sym_AMP] = ACTIONS(2303), + [anon_sym_DOT_DOT] = ACTIONS(2303), + [anon_sym_DASH] = ACTIONS(2303), + [anon_sym_PIPE] = ACTIONS(2303), + [anon_sym_yield] = ACTIONS(2305), + [anon_sym_move] = ACTIONS(2305), + [sym_integer_literal] = ACTIONS(2303), + [aux_sym_string_literal_token1] = ACTIONS(2303), + [sym_char_literal] = ACTIONS(2303), + [anon_sym_true] = ACTIONS(2305), + [anon_sym_false] = ACTIONS(2305), + [anon_sym_u8] = ACTIONS(2305), + [anon_sym_i8] = ACTIONS(2305), + [anon_sym_u16] = ACTIONS(2305), + [anon_sym_i16] = ACTIONS(2305), + [anon_sym_u32] = ACTIONS(2305), + [anon_sym_i32] = ACTIONS(2305), + [anon_sym_u64] = ACTIONS(2305), + [anon_sym_i64] = ACTIONS(2305), + [anon_sym_u128] = ACTIONS(2305), + [anon_sym_i128] = ACTIONS(2305), + [anon_sym_isize] = ACTIONS(2305), + [anon_sym_usize] = ACTIONS(2305), + [anon_sym_f32] = ACTIONS(2305), + [anon_sym_f64] = ACTIONS(2305), + [anon_sym_bool] = ACTIONS(2305), + [anon_sym_str] = ACTIONS(2305), + [anon_sym_char] = ACTIONS(2305), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(2303), + [sym_self] = ACTIONS(2305), + [sym_super] = ACTIONS(2305), + [sym_crate] = ACTIONS(2305), + [sym_metavariable] = ACTIONS(2303), + [sym_grit_metavariable] = ACTIONS(2303), + [sym_raw_string_literal] = ACTIONS(2303), + [sym_float_literal] = ACTIONS(2303), [sym_block_comment] = ACTIONS(3), }, [480] = { - [ts_builtin_sym_end] = ACTIONS(2321), - [sym__primitive_identifier] = ACTIONS(2323), - [anon_sym_SEMI] = ACTIONS(2321), - [anon_sym_macro_rules_BANG] = ACTIONS(2321), - [anon_sym_LPAREN] = ACTIONS(2321), - [anon_sym_LBRACE] = ACTIONS(2321), - [anon_sym_RBRACE] = ACTIONS(2321), - [anon_sym_LBRACK] = ACTIONS(2321), - [anon_sym_STAR] = ACTIONS(2321), - [anon_sym_SQUOTE] = ACTIONS(2323), - [anon_sym_async] = ACTIONS(2323), - [anon_sym_break] = ACTIONS(2323), - [anon_sym_const] = ACTIONS(2323), - [anon_sym_continue] = ACTIONS(2323), - [anon_sym_default] = ACTIONS(2323), - [anon_sym_enum] = ACTIONS(2323), - [anon_sym_fn] = ACTIONS(2323), - [anon_sym_for] = ACTIONS(2323), - [anon_sym_if] = ACTIONS(2323), - [anon_sym_impl] = ACTIONS(2323), - [anon_sym_let] = ACTIONS(2323), - [anon_sym_loop] = ACTIONS(2323), - [anon_sym_match] = ACTIONS(2323), - [anon_sym_mod] = ACTIONS(2323), - [anon_sym_pub] = ACTIONS(2323), - [anon_sym_return] = ACTIONS(2323), - [anon_sym_static] = ACTIONS(2323), - [anon_sym_struct] = ACTIONS(2323), - [anon_sym_trait] = ACTIONS(2323), - [anon_sym_type] = ACTIONS(2323), - [anon_sym_union] = ACTIONS(2323), - [anon_sym_unsafe] = ACTIONS(2323), - [anon_sym_use] = ACTIONS(2323), - [anon_sym_while] = ACTIONS(2323), - [anon_sym_POUND] = ACTIONS(2321), - [anon_sym_BANG] = ACTIONS(2321), - [anon_sym_extern] = ACTIONS(2323), - [anon_sym_LT] = ACTIONS(2321), - [anon_sym_COLON_COLON] = ACTIONS(2321), - [anon_sym_AMP] = ACTIONS(2321), - [anon_sym_DOT_DOT] = ACTIONS(2321), - [anon_sym_DASH] = ACTIONS(2321), - [anon_sym_PIPE] = ACTIONS(2321), - [anon_sym_yield] = ACTIONS(2323), - [anon_sym_move] = ACTIONS(2323), - [sym_integer_literal] = ACTIONS(2321), - [aux_sym_string_literal_token1] = ACTIONS(2321), - [sym_char_literal] = ACTIONS(2321), - [anon_sym_true] = ACTIONS(2323), - [anon_sym_false] = ACTIONS(2323), - [anon_sym_u8] = ACTIONS(2323), - [anon_sym_i8] = ACTIONS(2323), - [anon_sym_u16] = ACTIONS(2323), - [anon_sym_i16] = ACTIONS(2323), - [anon_sym_u32] = ACTIONS(2323), - [anon_sym_i32] = ACTIONS(2323), - [anon_sym_u64] = ACTIONS(2323), - [anon_sym_i64] = ACTIONS(2323), - [anon_sym_u128] = ACTIONS(2323), - [anon_sym_i128] = ACTIONS(2323), - [anon_sym_isize] = ACTIONS(2323), - [anon_sym_usize] = ACTIONS(2323), - [anon_sym_f32] = ACTIONS(2323), - [anon_sym_f64] = ACTIONS(2323), - [anon_sym_bool] = ACTIONS(2323), - [anon_sym_str] = ACTIONS(2323), - [anon_sym_char] = ACTIONS(2323), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(2321), - [sym_self] = ACTIONS(2323), - [sym_super] = ACTIONS(2323), - [sym_crate] = ACTIONS(2323), - [sym_metavariable] = ACTIONS(2321), - [sym_grit_metavariable] = ACTIONS(2321), - [sym_raw_string_literal] = ACTIONS(2321), - [sym_float_literal] = ACTIONS(2321), + [ts_builtin_sym_end] = ACTIONS(2307), + [sym__primitive_identifier] = ACTIONS(2309), + [anon_sym_SEMI] = ACTIONS(2307), + [anon_sym_macro_rules_BANG] = ACTIONS(2307), + [anon_sym_LPAREN] = ACTIONS(2307), + [anon_sym_LBRACE] = ACTIONS(2307), + [anon_sym_RBRACE] = ACTIONS(2307), + [anon_sym_LBRACK] = ACTIONS(2307), + [anon_sym_STAR] = ACTIONS(2307), + [anon_sym_SQUOTE] = ACTIONS(2309), + [anon_sym_async] = ACTIONS(2309), + [anon_sym_break] = ACTIONS(2309), + [anon_sym_const] = ACTIONS(2309), + [anon_sym_continue] = ACTIONS(2309), + [anon_sym_default] = ACTIONS(2309), + [anon_sym_enum] = ACTIONS(2309), + [anon_sym_fn] = ACTIONS(2309), + [anon_sym_for] = ACTIONS(2309), + [anon_sym_if] = ACTIONS(2309), + [anon_sym_impl] = ACTIONS(2309), + [anon_sym_let] = ACTIONS(2309), + [anon_sym_loop] = ACTIONS(2309), + [anon_sym_match] = ACTIONS(2309), + [anon_sym_mod] = ACTIONS(2309), + [anon_sym_pub] = ACTIONS(2309), + [anon_sym_return] = ACTIONS(2309), + [anon_sym_static] = ACTIONS(2309), + [anon_sym_struct] = ACTIONS(2309), + [anon_sym_trait] = ACTIONS(2309), + [anon_sym_type] = ACTIONS(2309), + [anon_sym_union] = ACTIONS(2309), + [anon_sym_unsafe] = ACTIONS(2309), + [anon_sym_use] = ACTIONS(2309), + [anon_sym_while] = ACTIONS(2309), + [anon_sym_POUND] = ACTIONS(2307), + [anon_sym_BANG] = ACTIONS(2307), + [anon_sym_extern] = ACTIONS(2309), + [anon_sym_LT] = ACTIONS(2307), + [anon_sym_COLON_COLON] = ACTIONS(2307), + [anon_sym_AMP] = ACTIONS(2307), + [anon_sym_DOT_DOT] = ACTIONS(2307), + [anon_sym_DASH] = ACTIONS(2307), + [anon_sym_PIPE] = ACTIONS(2307), + [anon_sym_yield] = ACTIONS(2309), + [anon_sym_move] = ACTIONS(2309), + [sym_integer_literal] = ACTIONS(2307), + [aux_sym_string_literal_token1] = ACTIONS(2307), + [sym_char_literal] = ACTIONS(2307), + [anon_sym_true] = ACTIONS(2309), + [anon_sym_false] = ACTIONS(2309), + [anon_sym_u8] = ACTIONS(2309), + [anon_sym_i8] = ACTIONS(2309), + [anon_sym_u16] = ACTIONS(2309), + [anon_sym_i16] = ACTIONS(2309), + [anon_sym_u32] = ACTIONS(2309), + [anon_sym_i32] = ACTIONS(2309), + [anon_sym_u64] = ACTIONS(2309), + [anon_sym_i64] = ACTIONS(2309), + [anon_sym_u128] = ACTIONS(2309), + [anon_sym_i128] = ACTIONS(2309), + [anon_sym_isize] = ACTIONS(2309), + [anon_sym_usize] = ACTIONS(2309), + [anon_sym_f32] = ACTIONS(2309), + [anon_sym_f64] = ACTIONS(2309), + [anon_sym_bool] = ACTIONS(2309), + [anon_sym_str] = ACTIONS(2309), + [anon_sym_char] = ACTIONS(2309), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(2307), + [sym_self] = ACTIONS(2309), + [sym_super] = ACTIONS(2309), + [sym_crate] = ACTIONS(2309), + [sym_metavariable] = ACTIONS(2307), + [sym_grit_metavariable] = ACTIONS(2307), + [sym_raw_string_literal] = ACTIONS(2307), + [sym_float_literal] = ACTIONS(2307), [sym_block_comment] = ACTIONS(3), }, [481] = { - [ts_builtin_sym_end] = ACTIONS(2325), - [sym__primitive_identifier] = ACTIONS(2327), - [anon_sym_SEMI] = ACTIONS(2325), - [anon_sym_macro_rules_BANG] = ACTIONS(2325), - [anon_sym_LPAREN] = ACTIONS(2325), - [anon_sym_LBRACE] = ACTIONS(2325), - [anon_sym_RBRACE] = ACTIONS(2325), - [anon_sym_LBRACK] = ACTIONS(2325), - [anon_sym_STAR] = ACTIONS(2325), - [anon_sym_SQUOTE] = ACTIONS(2327), - [anon_sym_async] = ACTIONS(2327), - [anon_sym_break] = ACTIONS(2327), - [anon_sym_const] = ACTIONS(2327), - [anon_sym_continue] = ACTIONS(2327), - [anon_sym_default] = ACTIONS(2327), - [anon_sym_enum] = ACTIONS(2327), - [anon_sym_fn] = ACTIONS(2327), - [anon_sym_for] = ACTIONS(2327), - [anon_sym_if] = ACTIONS(2327), - [anon_sym_impl] = ACTIONS(2327), - [anon_sym_let] = ACTIONS(2327), - [anon_sym_loop] = ACTIONS(2327), - [anon_sym_match] = ACTIONS(2327), - [anon_sym_mod] = ACTIONS(2327), - [anon_sym_pub] = ACTIONS(2327), - [anon_sym_return] = ACTIONS(2327), - [anon_sym_static] = ACTIONS(2327), - [anon_sym_struct] = ACTIONS(2327), - [anon_sym_trait] = ACTIONS(2327), - [anon_sym_type] = ACTIONS(2327), - [anon_sym_union] = ACTIONS(2327), - [anon_sym_unsafe] = ACTIONS(2327), - [anon_sym_use] = ACTIONS(2327), - [anon_sym_while] = ACTIONS(2327), - [anon_sym_POUND] = ACTIONS(2325), - [anon_sym_BANG] = ACTIONS(2325), - [anon_sym_extern] = ACTIONS(2327), - [anon_sym_LT] = ACTIONS(2325), - [anon_sym_COLON_COLON] = ACTIONS(2325), - [anon_sym_AMP] = ACTIONS(2325), - [anon_sym_DOT_DOT] = ACTIONS(2325), - [anon_sym_DASH] = ACTIONS(2325), - [anon_sym_PIPE] = ACTIONS(2325), - [anon_sym_yield] = ACTIONS(2327), - [anon_sym_move] = ACTIONS(2327), - [sym_integer_literal] = ACTIONS(2325), - [aux_sym_string_literal_token1] = ACTIONS(2325), - [sym_char_literal] = ACTIONS(2325), - [anon_sym_true] = ACTIONS(2327), - [anon_sym_false] = ACTIONS(2327), - [anon_sym_u8] = ACTIONS(2327), - [anon_sym_i8] = ACTIONS(2327), - [anon_sym_u16] = ACTIONS(2327), - [anon_sym_i16] = ACTIONS(2327), - [anon_sym_u32] = ACTIONS(2327), - [anon_sym_i32] = ACTIONS(2327), - [anon_sym_u64] = ACTIONS(2327), - [anon_sym_i64] = ACTIONS(2327), - [anon_sym_u128] = ACTIONS(2327), - [anon_sym_i128] = ACTIONS(2327), - [anon_sym_isize] = ACTIONS(2327), - [anon_sym_usize] = ACTIONS(2327), - [anon_sym_f32] = ACTIONS(2327), - [anon_sym_f64] = ACTIONS(2327), - [anon_sym_bool] = ACTIONS(2327), - [anon_sym_str] = ACTIONS(2327), - [anon_sym_char] = ACTIONS(2327), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(2325), - [sym_self] = ACTIONS(2327), - [sym_super] = ACTIONS(2327), - [sym_crate] = ACTIONS(2327), - [sym_metavariable] = ACTIONS(2325), - [sym_grit_metavariable] = ACTIONS(2325), - [sym_raw_string_literal] = ACTIONS(2325), - [sym_float_literal] = ACTIONS(2325), + [ts_builtin_sym_end] = ACTIONS(2311), + [sym__primitive_identifier] = ACTIONS(2313), + [anon_sym_SEMI] = ACTIONS(2311), + [anon_sym_macro_rules_BANG] = ACTIONS(2311), + [anon_sym_LPAREN] = ACTIONS(2311), + [anon_sym_LBRACE] = ACTIONS(2311), + [anon_sym_RBRACE] = ACTIONS(2311), + [anon_sym_LBRACK] = ACTIONS(2311), + [anon_sym_STAR] = ACTIONS(2311), + [anon_sym_SQUOTE] = ACTIONS(2313), + [anon_sym_async] = ACTIONS(2313), + [anon_sym_break] = ACTIONS(2313), + [anon_sym_const] = ACTIONS(2313), + [anon_sym_continue] = ACTIONS(2313), + [anon_sym_default] = ACTIONS(2313), + [anon_sym_enum] = ACTIONS(2313), + [anon_sym_fn] = ACTIONS(2313), + [anon_sym_for] = ACTIONS(2313), + [anon_sym_if] = ACTIONS(2313), + [anon_sym_impl] = ACTIONS(2313), + [anon_sym_let] = ACTIONS(2313), + [anon_sym_loop] = ACTIONS(2313), + [anon_sym_match] = ACTIONS(2313), + [anon_sym_mod] = ACTIONS(2313), + [anon_sym_pub] = ACTIONS(2313), + [anon_sym_return] = ACTIONS(2313), + [anon_sym_static] = ACTIONS(2313), + [anon_sym_struct] = ACTIONS(2313), + [anon_sym_trait] = ACTIONS(2313), + [anon_sym_type] = ACTIONS(2313), + [anon_sym_union] = ACTIONS(2313), + [anon_sym_unsafe] = ACTIONS(2313), + [anon_sym_use] = ACTIONS(2313), + [anon_sym_while] = ACTIONS(2313), + [anon_sym_POUND] = ACTIONS(2311), + [anon_sym_BANG] = ACTIONS(2311), + [anon_sym_extern] = ACTIONS(2313), + [anon_sym_LT] = ACTIONS(2311), + [anon_sym_COLON_COLON] = ACTIONS(2311), + [anon_sym_AMP] = ACTIONS(2311), + [anon_sym_DOT_DOT] = ACTIONS(2311), + [anon_sym_DASH] = ACTIONS(2311), + [anon_sym_PIPE] = ACTIONS(2311), + [anon_sym_yield] = ACTIONS(2313), + [anon_sym_move] = ACTIONS(2313), + [sym_integer_literal] = ACTIONS(2311), + [aux_sym_string_literal_token1] = ACTIONS(2311), + [sym_char_literal] = ACTIONS(2311), + [anon_sym_true] = ACTIONS(2313), + [anon_sym_false] = ACTIONS(2313), + [anon_sym_u8] = ACTIONS(2313), + [anon_sym_i8] = ACTIONS(2313), + [anon_sym_u16] = ACTIONS(2313), + [anon_sym_i16] = ACTIONS(2313), + [anon_sym_u32] = ACTIONS(2313), + [anon_sym_i32] = ACTIONS(2313), + [anon_sym_u64] = ACTIONS(2313), + [anon_sym_i64] = ACTIONS(2313), + [anon_sym_u128] = ACTIONS(2313), + [anon_sym_i128] = ACTIONS(2313), + [anon_sym_isize] = ACTIONS(2313), + [anon_sym_usize] = ACTIONS(2313), + [anon_sym_f32] = ACTIONS(2313), + [anon_sym_f64] = ACTIONS(2313), + [anon_sym_bool] = ACTIONS(2313), + [anon_sym_str] = ACTIONS(2313), + [anon_sym_char] = ACTIONS(2313), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(2311), + [sym_self] = ACTIONS(2313), + [sym_super] = ACTIONS(2313), + [sym_crate] = ACTIONS(2313), + [sym_metavariable] = ACTIONS(2311), + [sym_grit_metavariable] = ACTIONS(2311), + [sym_raw_string_literal] = ACTIONS(2311), + [sym_float_literal] = ACTIONS(2311), [sym_block_comment] = ACTIONS(3), }, [482] = { - [ts_builtin_sym_end] = ACTIONS(2329), - [sym__primitive_identifier] = ACTIONS(2331), - [anon_sym_SEMI] = ACTIONS(2329), - [anon_sym_macro_rules_BANG] = ACTIONS(2329), - [anon_sym_LPAREN] = ACTIONS(2329), - [anon_sym_LBRACE] = ACTIONS(2329), - [anon_sym_RBRACE] = ACTIONS(2329), - [anon_sym_LBRACK] = ACTIONS(2329), - [anon_sym_STAR] = ACTIONS(2329), - [anon_sym_SQUOTE] = ACTIONS(2331), - [anon_sym_async] = ACTIONS(2331), - [anon_sym_break] = ACTIONS(2331), - [anon_sym_const] = ACTIONS(2331), - [anon_sym_continue] = ACTIONS(2331), - [anon_sym_default] = ACTIONS(2331), - [anon_sym_enum] = ACTIONS(2331), - [anon_sym_fn] = ACTIONS(2331), - [anon_sym_for] = ACTIONS(2331), - [anon_sym_if] = ACTIONS(2331), - [anon_sym_impl] = ACTIONS(2331), - [anon_sym_let] = ACTIONS(2331), - [anon_sym_loop] = ACTIONS(2331), - [anon_sym_match] = ACTIONS(2331), - [anon_sym_mod] = ACTIONS(2331), - [anon_sym_pub] = ACTIONS(2331), - [anon_sym_return] = ACTIONS(2331), - [anon_sym_static] = ACTIONS(2331), - [anon_sym_struct] = ACTIONS(2331), - [anon_sym_trait] = ACTIONS(2331), - [anon_sym_type] = ACTIONS(2331), - [anon_sym_union] = ACTIONS(2331), - [anon_sym_unsafe] = ACTIONS(2331), - [anon_sym_use] = ACTIONS(2331), - [anon_sym_while] = ACTIONS(2331), - [anon_sym_POUND] = ACTIONS(2329), - [anon_sym_BANG] = ACTIONS(2329), - [anon_sym_extern] = ACTIONS(2331), - [anon_sym_LT] = ACTIONS(2329), - [anon_sym_COLON_COLON] = ACTIONS(2329), - [anon_sym_AMP] = ACTIONS(2329), - [anon_sym_DOT_DOT] = ACTIONS(2329), - [anon_sym_DASH] = ACTIONS(2329), - [anon_sym_PIPE] = ACTIONS(2329), - [anon_sym_yield] = ACTIONS(2331), - [anon_sym_move] = ACTIONS(2331), - [sym_integer_literal] = ACTIONS(2329), - [aux_sym_string_literal_token1] = ACTIONS(2329), - [sym_char_literal] = ACTIONS(2329), - [anon_sym_true] = ACTIONS(2331), - [anon_sym_false] = ACTIONS(2331), - [anon_sym_u8] = ACTIONS(2331), - [anon_sym_i8] = ACTIONS(2331), - [anon_sym_u16] = ACTIONS(2331), - [anon_sym_i16] = ACTIONS(2331), - [anon_sym_u32] = ACTIONS(2331), - [anon_sym_i32] = ACTIONS(2331), - [anon_sym_u64] = ACTIONS(2331), - [anon_sym_i64] = ACTIONS(2331), - [anon_sym_u128] = ACTIONS(2331), - [anon_sym_i128] = ACTIONS(2331), - [anon_sym_isize] = ACTIONS(2331), - [anon_sym_usize] = ACTIONS(2331), - [anon_sym_f32] = ACTIONS(2331), - [anon_sym_f64] = ACTIONS(2331), - [anon_sym_bool] = ACTIONS(2331), - [anon_sym_str] = ACTIONS(2331), - [anon_sym_char] = ACTIONS(2331), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(2329), - [sym_self] = ACTIONS(2331), - [sym_super] = ACTIONS(2331), - [sym_crate] = ACTIONS(2331), - [sym_metavariable] = ACTIONS(2329), - [sym_grit_metavariable] = ACTIONS(2329), - [sym_raw_string_literal] = ACTIONS(2329), - [sym_float_literal] = ACTIONS(2329), + [ts_builtin_sym_end] = ACTIONS(2315), + [sym__primitive_identifier] = ACTIONS(2317), + [anon_sym_SEMI] = ACTIONS(2315), + [anon_sym_macro_rules_BANG] = ACTIONS(2315), + [anon_sym_LPAREN] = ACTIONS(2315), + [anon_sym_LBRACE] = ACTIONS(2315), + [anon_sym_RBRACE] = ACTIONS(2315), + [anon_sym_LBRACK] = ACTIONS(2315), + [anon_sym_STAR] = ACTIONS(2315), + [anon_sym_SQUOTE] = ACTIONS(2317), + [anon_sym_async] = ACTIONS(2317), + [anon_sym_break] = ACTIONS(2317), + [anon_sym_const] = ACTIONS(2317), + [anon_sym_continue] = ACTIONS(2317), + [anon_sym_default] = ACTIONS(2317), + [anon_sym_enum] = ACTIONS(2317), + [anon_sym_fn] = ACTIONS(2317), + [anon_sym_for] = ACTIONS(2317), + [anon_sym_if] = ACTIONS(2317), + [anon_sym_impl] = ACTIONS(2317), + [anon_sym_let] = ACTIONS(2317), + [anon_sym_loop] = ACTIONS(2317), + [anon_sym_match] = ACTIONS(2317), + [anon_sym_mod] = ACTIONS(2317), + [anon_sym_pub] = ACTIONS(2317), + [anon_sym_return] = ACTIONS(2317), + [anon_sym_static] = ACTIONS(2317), + [anon_sym_struct] = ACTIONS(2317), + [anon_sym_trait] = ACTIONS(2317), + [anon_sym_type] = ACTIONS(2317), + [anon_sym_union] = ACTIONS(2317), + [anon_sym_unsafe] = ACTIONS(2317), + [anon_sym_use] = ACTIONS(2317), + [anon_sym_while] = ACTIONS(2317), + [anon_sym_POUND] = ACTIONS(2315), + [anon_sym_BANG] = ACTIONS(2315), + [anon_sym_extern] = ACTIONS(2317), + [anon_sym_LT] = ACTIONS(2315), + [anon_sym_COLON_COLON] = ACTIONS(2315), + [anon_sym_AMP] = ACTIONS(2315), + [anon_sym_DOT_DOT] = ACTIONS(2315), + [anon_sym_DASH] = ACTIONS(2315), + [anon_sym_PIPE] = ACTIONS(2315), + [anon_sym_yield] = ACTIONS(2317), + [anon_sym_move] = ACTIONS(2317), + [sym_integer_literal] = ACTIONS(2315), + [aux_sym_string_literal_token1] = ACTIONS(2315), + [sym_char_literal] = ACTIONS(2315), + [anon_sym_true] = ACTIONS(2317), + [anon_sym_false] = ACTIONS(2317), + [anon_sym_u8] = ACTIONS(2317), + [anon_sym_i8] = ACTIONS(2317), + [anon_sym_u16] = ACTIONS(2317), + [anon_sym_i16] = ACTIONS(2317), + [anon_sym_u32] = ACTIONS(2317), + [anon_sym_i32] = ACTIONS(2317), + [anon_sym_u64] = ACTIONS(2317), + [anon_sym_i64] = ACTIONS(2317), + [anon_sym_u128] = ACTIONS(2317), + [anon_sym_i128] = ACTIONS(2317), + [anon_sym_isize] = ACTIONS(2317), + [anon_sym_usize] = ACTIONS(2317), + [anon_sym_f32] = ACTIONS(2317), + [anon_sym_f64] = ACTIONS(2317), + [anon_sym_bool] = ACTIONS(2317), + [anon_sym_str] = ACTIONS(2317), + [anon_sym_char] = ACTIONS(2317), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(2315), + [sym_self] = ACTIONS(2317), + [sym_super] = ACTIONS(2317), + [sym_crate] = ACTIONS(2317), + [sym_metavariable] = ACTIONS(2315), + [sym_grit_metavariable] = ACTIONS(2315), + [sym_raw_string_literal] = ACTIONS(2315), + [sym_float_literal] = ACTIONS(2315), [sym_block_comment] = ACTIONS(3), }, [483] = { - [ts_builtin_sym_end] = ACTIONS(2333), - [sym__primitive_identifier] = ACTIONS(2335), - [anon_sym_SEMI] = ACTIONS(2333), - [anon_sym_macro_rules_BANG] = ACTIONS(2333), - [anon_sym_LPAREN] = ACTIONS(2333), - [anon_sym_LBRACE] = ACTIONS(2333), - [anon_sym_RBRACE] = ACTIONS(2333), - [anon_sym_LBRACK] = ACTIONS(2333), - [anon_sym_STAR] = ACTIONS(2333), - [anon_sym_SQUOTE] = ACTIONS(2335), - [anon_sym_async] = ACTIONS(2335), - [anon_sym_break] = ACTIONS(2335), - [anon_sym_const] = ACTIONS(2335), - [anon_sym_continue] = ACTIONS(2335), - [anon_sym_default] = ACTIONS(2335), - [anon_sym_enum] = ACTIONS(2335), - [anon_sym_fn] = ACTIONS(2335), - [anon_sym_for] = ACTIONS(2335), - [anon_sym_if] = ACTIONS(2335), - [anon_sym_impl] = ACTIONS(2335), - [anon_sym_let] = ACTIONS(2335), - [anon_sym_loop] = ACTIONS(2335), - [anon_sym_match] = ACTIONS(2335), - [anon_sym_mod] = ACTIONS(2335), - [anon_sym_pub] = ACTIONS(2335), - [anon_sym_return] = ACTIONS(2335), - [anon_sym_static] = ACTIONS(2335), - [anon_sym_struct] = ACTIONS(2335), - [anon_sym_trait] = ACTIONS(2335), - [anon_sym_type] = ACTIONS(2335), - [anon_sym_union] = ACTIONS(2335), - [anon_sym_unsafe] = ACTIONS(2335), - [anon_sym_use] = ACTIONS(2335), - [anon_sym_while] = ACTIONS(2335), - [anon_sym_POUND] = ACTIONS(2333), - [anon_sym_BANG] = ACTIONS(2333), - [anon_sym_extern] = ACTIONS(2335), - [anon_sym_LT] = ACTIONS(2333), - [anon_sym_COLON_COLON] = ACTIONS(2333), - [anon_sym_AMP] = ACTIONS(2333), - [anon_sym_DOT_DOT] = ACTIONS(2333), - [anon_sym_DASH] = ACTIONS(2333), - [anon_sym_PIPE] = ACTIONS(2333), - [anon_sym_yield] = ACTIONS(2335), - [anon_sym_move] = ACTIONS(2335), - [sym_integer_literal] = ACTIONS(2333), - [aux_sym_string_literal_token1] = ACTIONS(2333), - [sym_char_literal] = ACTIONS(2333), - [anon_sym_true] = ACTIONS(2335), - [anon_sym_false] = ACTIONS(2335), - [anon_sym_u8] = ACTIONS(2335), - [anon_sym_i8] = ACTIONS(2335), - [anon_sym_u16] = ACTIONS(2335), - [anon_sym_i16] = ACTIONS(2335), - [anon_sym_u32] = ACTIONS(2335), - [anon_sym_i32] = ACTIONS(2335), - [anon_sym_u64] = ACTIONS(2335), - [anon_sym_i64] = ACTIONS(2335), - [anon_sym_u128] = ACTIONS(2335), - [anon_sym_i128] = ACTIONS(2335), - [anon_sym_isize] = ACTIONS(2335), - [anon_sym_usize] = ACTIONS(2335), - [anon_sym_f32] = ACTIONS(2335), - [anon_sym_f64] = ACTIONS(2335), - [anon_sym_bool] = ACTIONS(2335), - [anon_sym_str] = ACTIONS(2335), - [anon_sym_char] = ACTIONS(2335), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(2333), - [sym_self] = ACTIONS(2335), - [sym_super] = ACTIONS(2335), - [sym_crate] = ACTIONS(2335), - [sym_metavariable] = ACTIONS(2333), - [sym_grit_metavariable] = ACTIONS(2333), - [sym_raw_string_literal] = ACTIONS(2333), - [sym_float_literal] = ACTIONS(2333), + [ts_builtin_sym_end] = ACTIONS(2319), + [sym__primitive_identifier] = ACTIONS(2321), + [anon_sym_SEMI] = ACTIONS(2319), + [anon_sym_macro_rules_BANG] = ACTIONS(2319), + [anon_sym_LPAREN] = ACTIONS(2319), + [anon_sym_LBRACE] = ACTIONS(2319), + [anon_sym_RBRACE] = ACTIONS(2319), + [anon_sym_LBRACK] = ACTIONS(2319), + [anon_sym_STAR] = ACTIONS(2319), + [anon_sym_SQUOTE] = ACTIONS(2321), + [anon_sym_async] = ACTIONS(2321), + [anon_sym_break] = ACTIONS(2321), + [anon_sym_const] = ACTIONS(2321), + [anon_sym_continue] = ACTIONS(2321), + [anon_sym_default] = ACTIONS(2321), + [anon_sym_enum] = ACTIONS(2321), + [anon_sym_fn] = ACTIONS(2321), + [anon_sym_for] = ACTIONS(2321), + [anon_sym_if] = ACTIONS(2321), + [anon_sym_impl] = ACTIONS(2321), + [anon_sym_let] = ACTIONS(2321), + [anon_sym_loop] = ACTIONS(2321), + [anon_sym_match] = ACTIONS(2321), + [anon_sym_mod] = ACTIONS(2321), + [anon_sym_pub] = ACTIONS(2321), + [anon_sym_return] = ACTIONS(2321), + [anon_sym_static] = ACTIONS(2321), + [anon_sym_struct] = ACTIONS(2321), + [anon_sym_trait] = ACTIONS(2321), + [anon_sym_type] = ACTIONS(2321), + [anon_sym_union] = ACTIONS(2321), + [anon_sym_unsafe] = ACTIONS(2321), + [anon_sym_use] = ACTIONS(2321), + [anon_sym_while] = ACTIONS(2321), + [anon_sym_POUND] = ACTIONS(2319), + [anon_sym_BANG] = ACTIONS(2319), + [anon_sym_extern] = ACTIONS(2321), + [anon_sym_LT] = ACTIONS(2319), + [anon_sym_COLON_COLON] = ACTIONS(2319), + [anon_sym_AMP] = ACTIONS(2319), + [anon_sym_DOT_DOT] = ACTIONS(2319), + [anon_sym_DASH] = ACTIONS(2319), + [anon_sym_PIPE] = ACTIONS(2319), + [anon_sym_yield] = ACTIONS(2321), + [anon_sym_move] = ACTIONS(2321), + [sym_integer_literal] = ACTIONS(2319), + [aux_sym_string_literal_token1] = ACTIONS(2319), + [sym_char_literal] = ACTIONS(2319), + [anon_sym_true] = ACTIONS(2321), + [anon_sym_false] = ACTIONS(2321), + [anon_sym_u8] = ACTIONS(2321), + [anon_sym_i8] = ACTIONS(2321), + [anon_sym_u16] = ACTIONS(2321), + [anon_sym_i16] = ACTIONS(2321), + [anon_sym_u32] = ACTIONS(2321), + [anon_sym_i32] = ACTIONS(2321), + [anon_sym_u64] = ACTIONS(2321), + [anon_sym_i64] = ACTIONS(2321), + [anon_sym_u128] = ACTIONS(2321), + [anon_sym_i128] = ACTIONS(2321), + [anon_sym_isize] = ACTIONS(2321), + [anon_sym_usize] = ACTIONS(2321), + [anon_sym_f32] = ACTIONS(2321), + [anon_sym_f64] = ACTIONS(2321), + [anon_sym_bool] = ACTIONS(2321), + [anon_sym_str] = ACTIONS(2321), + [anon_sym_char] = ACTIONS(2321), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(2319), + [sym_self] = ACTIONS(2321), + [sym_super] = ACTIONS(2321), + [sym_crate] = ACTIONS(2321), + [sym_metavariable] = ACTIONS(2319), + [sym_grit_metavariable] = ACTIONS(2319), + [sym_raw_string_literal] = ACTIONS(2319), + [sym_float_literal] = ACTIONS(2319), [sym_block_comment] = ACTIONS(3), }, [484] = { - [ts_builtin_sym_end] = ACTIONS(2337), - [sym__primitive_identifier] = ACTIONS(2339), - [anon_sym_SEMI] = ACTIONS(2337), - [anon_sym_macro_rules_BANG] = ACTIONS(2337), - [anon_sym_LPAREN] = ACTIONS(2337), - [anon_sym_LBRACE] = ACTIONS(2337), - [anon_sym_RBRACE] = ACTIONS(2337), - [anon_sym_LBRACK] = ACTIONS(2337), - [anon_sym_STAR] = ACTIONS(2337), - [anon_sym_SQUOTE] = ACTIONS(2339), - [anon_sym_async] = ACTIONS(2339), - [anon_sym_break] = ACTIONS(2339), - [anon_sym_const] = ACTIONS(2339), - [anon_sym_continue] = ACTIONS(2339), - [anon_sym_default] = ACTIONS(2339), - [anon_sym_enum] = ACTIONS(2339), - [anon_sym_fn] = ACTIONS(2339), - [anon_sym_for] = ACTIONS(2339), - [anon_sym_if] = ACTIONS(2339), - [anon_sym_impl] = ACTIONS(2339), - [anon_sym_let] = ACTIONS(2339), - [anon_sym_loop] = ACTIONS(2339), - [anon_sym_match] = ACTIONS(2339), - [anon_sym_mod] = ACTIONS(2339), - [anon_sym_pub] = ACTIONS(2339), - [anon_sym_return] = ACTIONS(2339), - [anon_sym_static] = ACTIONS(2339), - [anon_sym_struct] = ACTIONS(2339), - [anon_sym_trait] = ACTIONS(2339), - [anon_sym_type] = ACTIONS(2339), - [anon_sym_union] = ACTIONS(2339), - [anon_sym_unsafe] = ACTIONS(2339), - [anon_sym_use] = ACTIONS(2339), - [anon_sym_while] = ACTIONS(2339), - [anon_sym_POUND] = ACTIONS(2337), - [anon_sym_BANG] = ACTIONS(2337), - [anon_sym_extern] = ACTIONS(2339), - [anon_sym_LT] = ACTIONS(2337), - [anon_sym_COLON_COLON] = ACTIONS(2337), - [anon_sym_AMP] = ACTIONS(2337), - [anon_sym_DOT_DOT] = ACTIONS(2337), - [anon_sym_DASH] = ACTIONS(2337), - [anon_sym_PIPE] = ACTIONS(2337), - [anon_sym_yield] = ACTIONS(2339), - [anon_sym_move] = ACTIONS(2339), - [sym_integer_literal] = ACTIONS(2337), - [aux_sym_string_literal_token1] = ACTIONS(2337), - [sym_char_literal] = ACTIONS(2337), - [anon_sym_true] = ACTIONS(2339), - [anon_sym_false] = ACTIONS(2339), - [anon_sym_u8] = ACTIONS(2339), - [anon_sym_i8] = ACTIONS(2339), - [anon_sym_u16] = ACTIONS(2339), - [anon_sym_i16] = ACTIONS(2339), - [anon_sym_u32] = ACTIONS(2339), - [anon_sym_i32] = ACTIONS(2339), - [anon_sym_u64] = ACTIONS(2339), - [anon_sym_i64] = ACTIONS(2339), - [anon_sym_u128] = ACTIONS(2339), - [anon_sym_i128] = ACTIONS(2339), - [anon_sym_isize] = ACTIONS(2339), - [anon_sym_usize] = ACTIONS(2339), - [anon_sym_f32] = ACTIONS(2339), - [anon_sym_f64] = ACTIONS(2339), - [anon_sym_bool] = ACTIONS(2339), - [anon_sym_str] = ACTIONS(2339), - [anon_sym_char] = ACTIONS(2339), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(2337), - [sym_self] = ACTIONS(2339), - [sym_super] = ACTIONS(2339), - [sym_crate] = ACTIONS(2339), - [sym_metavariable] = ACTIONS(2337), - [sym_grit_metavariable] = ACTIONS(2337), - [sym_raw_string_literal] = ACTIONS(2337), - [sym_float_literal] = ACTIONS(2337), + [ts_builtin_sym_end] = ACTIONS(2323), + [sym__primitive_identifier] = ACTIONS(2325), + [anon_sym_SEMI] = ACTIONS(2323), + [anon_sym_macro_rules_BANG] = ACTIONS(2323), + [anon_sym_LPAREN] = ACTIONS(2323), + [anon_sym_LBRACE] = ACTIONS(2323), + [anon_sym_RBRACE] = ACTIONS(2323), + [anon_sym_LBRACK] = ACTIONS(2323), + [anon_sym_STAR] = ACTIONS(2323), + [anon_sym_SQUOTE] = ACTIONS(2325), + [anon_sym_async] = ACTIONS(2325), + [anon_sym_break] = ACTIONS(2325), + [anon_sym_const] = ACTIONS(2325), + [anon_sym_continue] = ACTIONS(2325), + [anon_sym_default] = ACTIONS(2325), + [anon_sym_enum] = ACTIONS(2325), + [anon_sym_fn] = ACTIONS(2325), + [anon_sym_for] = ACTIONS(2325), + [anon_sym_if] = ACTIONS(2325), + [anon_sym_impl] = ACTIONS(2325), + [anon_sym_let] = ACTIONS(2325), + [anon_sym_loop] = ACTIONS(2325), + [anon_sym_match] = ACTIONS(2325), + [anon_sym_mod] = ACTIONS(2325), + [anon_sym_pub] = ACTIONS(2325), + [anon_sym_return] = ACTIONS(2325), + [anon_sym_static] = ACTIONS(2325), + [anon_sym_struct] = ACTIONS(2325), + [anon_sym_trait] = ACTIONS(2325), + [anon_sym_type] = ACTIONS(2325), + [anon_sym_union] = ACTIONS(2325), + [anon_sym_unsafe] = ACTIONS(2325), + [anon_sym_use] = ACTIONS(2325), + [anon_sym_while] = ACTIONS(2325), + [anon_sym_POUND] = ACTIONS(2323), + [anon_sym_BANG] = ACTIONS(2323), + [anon_sym_extern] = ACTIONS(2325), + [anon_sym_LT] = ACTIONS(2323), + [anon_sym_COLON_COLON] = ACTIONS(2323), + [anon_sym_AMP] = ACTIONS(2323), + [anon_sym_DOT_DOT] = ACTIONS(2323), + [anon_sym_DASH] = ACTIONS(2323), + [anon_sym_PIPE] = ACTIONS(2323), + [anon_sym_yield] = ACTIONS(2325), + [anon_sym_move] = ACTIONS(2325), + [sym_integer_literal] = ACTIONS(2323), + [aux_sym_string_literal_token1] = ACTIONS(2323), + [sym_char_literal] = ACTIONS(2323), + [anon_sym_true] = ACTIONS(2325), + [anon_sym_false] = ACTIONS(2325), + [anon_sym_u8] = ACTIONS(2325), + [anon_sym_i8] = ACTIONS(2325), + [anon_sym_u16] = ACTIONS(2325), + [anon_sym_i16] = ACTIONS(2325), + [anon_sym_u32] = ACTIONS(2325), + [anon_sym_i32] = ACTIONS(2325), + [anon_sym_u64] = ACTIONS(2325), + [anon_sym_i64] = ACTIONS(2325), + [anon_sym_u128] = ACTIONS(2325), + [anon_sym_i128] = ACTIONS(2325), + [anon_sym_isize] = ACTIONS(2325), + [anon_sym_usize] = ACTIONS(2325), + [anon_sym_f32] = ACTIONS(2325), + [anon_sym_f64] = ACTIONS(2325), + [anon_sym_bool] = ACTIONS(2325), + [anon_sym_str] = ACTIONS(2325), + [anon_sym_char] = ACTIONS(2325), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(2323), + [sym_self] = ACTIONS(2325), + [sym_super] = ACTIONS(2325), + [sym_crate] = ACTIONS(2325), + [sym_metavariable] = ACTIONS(2323), + [sym_grit_metavariable] = ACTIONS(2323), + [sym_raw_string_literal] = ACTIONS(2323), + [sym_float_literal] = ACTIONS(2323), [sym_block_comment] = ACTIONS(3), }, [485] = { - [ts_builtin_sym_end] = ACTIONS(2341), - [sym__primitive_identifier] = ACTIONS(2343), - [anon_sym_SEMI] = ACTIONS(2341), - [anon_sym_macro_rules_BANG] = ACTIONS(2341), - [anon_sym_LPAREN] = ACTIONS(2341), - [anon_sym_LBRACE] = ACTIONS(2341), - [anon_sym_RBRACE] = ACTIONS(2341), - [anon_sym_LBRACK] = ACTIONS(2341), - [anon_sym_STAR] = ACTIONS(2341), - [anon_sym_SQUOTE] = ACTIONS(2343), - [anon_sym_async] = ACTIONS(2343), - [anon_sym_break] = ACTIONS(2343), - [anon_sym_const] = ACTIONS(2343), - [anon_sym_continue] = ACTIONS(2343), - [anon_sym_default] = ACTIONS(2343), - [anon_sym_enum] = ACTIONS(2343), - [anon_sym_fn] = ACTIONS(2343), - [anon_sym_for] = ACTIONS(2343), - [anon_sym_if] = ACTIONS(2343), - [anon_sym_impl] = ACTIONS(2343), - [anon_sym_let] = ACTIONS(2343), - [anon_sym_loop] = ACTIONS(2343), - [anon_sym_match] = ACTIONS(2343), - [anon_sym_mod] = ACTIONS(2343), - [anon_sym_pub] = ACTIONS(2343), - [anon_sym_return] = ACTIONS(2343), - [anon_sym_static] = ACTIONS(2343), - [anon_sym_struct] = ACTIONS(2343), - [anon_sym_trait] = ACTIONS(2343), - [anon_sym_type] = ACTIONS(2343), - [anon_sym_union] = ACTIONS(2343), - [anon_sym_unsafe] = ACTIONS(2343), - [anon_sym_use] = ACTIONS(2343), - [anon_sym_while] = ACTIONS(2343), - [anon_sym_POUND] = ACTIONS(2341), - [anon_sym_BANG] = ACTIONS(2341), - [anon_sym_extern] = ACTIONS(2343), - [anon_sym_LT] = ACTIONS(2341), - [anon_sym_COLON_COLON] = ACTIONS(2341), - [anon_sym_AMP] = ACTIONS(2341), - [anon_sym_DOT_DOT] = ACTIONS(2341), - [anon_sym_DASH] = ACTIONS(2341), - [anon_sym_PIPE] = ACTIONS(2341), - [anon_sym_yield] = ACTIONS(2343), - [anon_sym_move] = ACTIONS(2343), - [sym_integer_literal] = ACTIONS(2341), - [aux_sym_string_literal_token1] = ACTIONS(2341), - [sym_char_literal] = ACTIONS(2341), - [anon_sym_true] = ACTIONS(2343), - [anon_sym_false] = ACTIONS(2343), - [anon_sym_u8] = ACTIONS(2343), - [anon_sym_i8] = ACTIONS(2343), - [anon_sym_u16] = ACTIONS(2343), - [anon_sym_i16] = ACTIONS(2343), - [anon_sym_u32] = ACTIONS(2343), - [anon_sym_i32] = ACTIONS(2343), - [anon_sym_u64] = ACTIONS(2343), - [anon_sym_i64] = ACTIONS(2343), - [anon_sym_u128] = ACTIONS(2343), - [anon_sym_i128] = ACTIONS(2343), - [anon_sym_isize] = ACTIONS(2343), - [anon_sym_usize] = ACTIONS(2343), - [anon_sym_f32] = ACTIONS(2343), - [anon_sym_f64] = ACTIONS(2343), - [anon_sym_bool] = ACTIONS(2343), - [anon_sym_str] = ACTIONS(2343), - [anon_sym_char] = ACTIONS(2343), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(2341), - [sym_self] = ACTIONS(2343), - [sym_super] = ACTIONS(2343), - [sym_crate] = ACTIONS(2343), - [sym_metavariable] = ACTIONS(2341), - [sym_grit_metavariable] = ACTIONS(2341), - [sym_raw_string_literal] = ACTIONS(2341), - [sym_float_literal] = ACTIONS(2341), + [ts_builtin_sym_end] = ACTIONS(2327), + [sym__primitive_identifier] = ACTIONS(2329), + [anon_sym_SEMI] = ACTIONS(2327), + [anon_sym_macro_rules_BANG] = ACTIONS(2327), + [anon_sym_LPAREN] = ACTIONS(2327), + [anon_sym_LBRACE] = ACTIONS(2327), + [anon_sym_RBRACE] = ACTIONS(2327), + [anon_sym_LBRACK] = ACTIONS(2327), + [anon_sym_STAR] = ACTIONS(2327), + [anon_sym_SQUOTE] = ACTIONS(2329), + [anon_sym_async] = ACTIONS(2329), + [anon_sym_break] = ACTIONS(2329), + [anon_sym_const] = ACTIONS(2329), + [anon_sym_continue] = ACTIONS(2329), + [anon_sym_default] = ACTIONS(2329), + [anon_sym_enum] = ACTIONS(2329), + [anon_sym_fn] = ACTIONS(2329), + [anon_sym_for] = ACTIONS(2329), + [anon_sym_if] = ACTIONS(2329), + [anon_sym_impl] = ACTIONS(2329), + [anon_sym_let] = ACTIONS(2329), + [anon_sym_loop] = ACTIONS(2329), + [anon_sym_match] = ACTIONS(2329), + [anon_sym_mod] = ACTIONS(2329), + [anon_sym_pub] = ACTIONS(2329), + [anon_sym_return] = ACTIONS(2329), + [anon_sym_static] = ACTIONS(2329), + [anon_sym_struct] = ACTIONS(2329), + [anon_sym_trait] = ACTIONS(2329), + [anon_sym_type] = ACTIONS(2329), + [anon_sym_union] = ACTIONS(2329), + [anon_sym_unsafe] = ACTIONS(2329), + [anon_sym_use] = ACTIONS(2329), + [anon_sym_while] = ACTIONS(2329), + [anon_sym_POUND] = ACTIONS(2327), + [anon_sym_BANG] = ACTIONS(2327), + [anon_sym_extern] = ACTIONS(2329), + [anon_sym_LT] = ACTIONS(2327), + [anon_sym_COLON_COLON] = ACTIONS(2327), + [anon_sym_AMP] = ACTIONS(2327), + [anon_sym_DOT_DOT] = ACTIONS(2327), + [anon_sym_DASH] = ACTIONS(2327), + [anon_sym_PIPE] = ACTIONS(2327), + [anon_sym_yield] = ACTIONS(2329), + [anon_sym_move] = ACTIONS(2329), + [sym_integer_literal] = ACTIONS(2327), + [aux_sym_string_literal_token1] = ACTIONS(2327), + [sym_char_literal] = ACTIONS(2327), + [anon_sym_true] = ACTIONS(2329), + [anon_sym_false] = ACTIONS(2329), + [anon_sym_u8] = ACTIONS(2329), + [anon_sym_i8] = ACTIONS(2329), + [anon_sym_u16] = ACTIONS(2329), + [anon_sym_i16] = ACTIONS(2329), + [anon_sym_u32] = ACTIONS(2329), + [anon_sym_i32] = ACTIONS(2329), + [anon_sym_u64] = ACTIONS(2329), + [anon_sym_i64] = ACTIONS(2329), + [anon_sym_u128] = ACTIONS(2329), + [anon_sym_i128] = ACTIONS(2329), + [anon_sym_isize] = ACTIONS(2329), + [anon_sym_usize] = ACTIONS(2329), + [anon_sym_f32] = ACTIONS(2329), + [anon_sym_f64] = ACTIONS(2329), + [anon_sym_bool] = ACTIONS(2329), + [anon_sym_str] = ACTIONS(2329), + [anon_sym_char] = ACTIONS(2329), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(2327), + [sym_self] = ACTIONS(2329), + [sym_super] = ACTIONS(2329), + [sym_crate] = ACTIONS(2329), + [sym_metavariable] = ACTIONS(2327), + [sym_grit_metavariable] = ACTIONS(2327), + [sym_raw_string_literal] = ACTIONS(2327), + [sym_float_literal] = ACTIONS(2327), [sym_block_comment] = ACTIONS(3), }, [486] = { - [ts_builtin_sym_end] = ACTIONS(2345), - [sym__primitive_identifier] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2345), - [anon_sym_macro_rules_BANG] = ACTIONS(2345), - [anon_sym_LPAREN] = ACTIONS(2345), - [anon_sym_LBRACE] = ACTIONS(2345), - [anon_sym_RBRACE] = ACTIONS(2345), - [anon_sym_LBRACK] = ACTIONS(2345), - [anon_sym_STAR] = ACTIONS(2345), - [anon_sym_SQUOTE] = ACTIONS(2347), - [anon_sym_async] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_fn] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_impl] = ACTIONS(2347), - [anon_sym_let] = ACTIONS(2347), - [anon_sym_loop] = ACTIONS(2347), - [anon_sym_match] = ACTIONS(2347), - [anon_sym_mod] = ACTIONS(2347), - [anon_sym_pub] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_trait] = ACTIONS(2347), - [anon_sym_type] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_unsafe] = ACTIONS(2347), - [anon_sym_use] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_POUND] = ACTIONS(2345), - [anon_sym_BANG] = ACTIONS(2345), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym_LT] = ACTIONS(2345), - [anon_sym_COLON_COLON] = ACTIONS(2345), - [anon_sym_AMP] = ACTIONS(2345), - [anon_sym_DOT_DOT] = ACTIONS(2345), - [anon_sym_DASH] = ACTIONS(2345), - [anon_sym_PIPE] = ACTIONS(2345), - [anon_sym_yield] = ACTIONS(2347), - [anon_sym_move] = ACTIONS(2347), - [sym_integer_literal] = ACTIONS(2345), - [aux_sym_string_literal_token1] = ACTIONS(2345), - [sym_char_literal] = ACTIONS(2345), - [anon_sym_true] = ACTIONS(2347), - [anon_sym_false] = ACTIONS(2347), - [anon_sym_u8] = ACTIONS(2347), - [anon_sym_i8] = ACTIONS(2347), - [anon_sym_u16] = ACTIONS(2347), - [anon_sym_i16] = ACTIONS(2347), - [anon_sym_u32] = ACTIONS(2347), - [anon_sym_i32] = ACTIONS(2347), - [anon_sym_u64] = ACTIONS(2347), - [anon_sym_i64] = ACTIONS(2347), - [anon_sym_u128] = ACTIONS(2347), - [anon_sym_i128] = ACTIONS(2347), - [anon_sym_isize] = ACTIONS(2347), - [anon_sym_usize] = ACTIONS(2347), - [anon_sym_f32] = ACTIONS(2347), - [anon_sym_f64] = ACTIONS(2347), - [anon_sym_bool] = ACTIONS(2347), - [anon_sym_str] = ACTIONS(2347), - [anon_sym_char] = ACTIONS(2347), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(2345), - [sym_self] = ACTIONS(2347), - [sym_super] = ACTIONS(2347), - [sym_crate] = ACTIONS(2347), - [sym_metavariable] = ACTIONS(2345), - [sym_grit_metavariable] = ACTIONS(2345), - [sym_raw_string_literal] = ACTIONS(2345), - [sym_float_literal] = ACTIONS(2345), + [ts_builtin_sym_end] = ACTIONS(2331), + [sym__primitive_identifier] = ACTIONS(2333), + [anon_sym_SEMI] = ACTIONS(2331), + [anon_sym_macro_rules_BANG] = ACTIONS(2331), + [anon_sym_LPAREN] = ACTIONS(2331), + [anon_sym_LBRACE] = ACTIONS(2331), + [anon_sym_RBRACE] = ACTIONS(2331), + [anon_sym_LBRACK] = ACTIONS(2331), + [anon_sym_STAR] = ACTIONS(2331), + [anon_sym_SQUOTE] = ACTIONS(2333), + [anon_sym_async] = ACTIONS(2333), + [anon_sym_break] = ACTIONS(2333), + [anon_sym_const] = ACTIONS(2333), + [anon_sym_continue] = ACTIONS(2333), + [anon_sym_default] = ACTIONS(2333), + [anon_sym_enum] = ACTIONS(2333), + [anon_sym_fn] = ACTIONS(2333), + [anon_sym_for] = ACTIONS(2333), + [anon_sym_if] = ACTIONS(2333), + [anon_sym_impl] = ACTIONS(2333), + [anon_sym_let] = ACTIONS(2333), + [anon_sym_loop] = ACTIONS(2333), + [anon_sym_match] = ACTIONS(2333), + [anon_sym_mod] = ACTIONS(2333), + [anon_sym_pub] = ACTIONS(2333), + [anon_sym_return] = ACTIONS(2333), + [anon_sym_static] = ACTIONS(2333), + [anon_sym_struct] = ACTIONS(2333), + [anon_sym_trait] = ACTIONS(2333), + [anon_sym_type] = ACTIONS(2333), + [anon_sym_union] = ACTIONS(2333), + [anon_sym_unsafe] = ACTIONS(2333), + [anon_sym_use] = ACTIONS(2333), + [anon_sym_while] = ACTIONS(2333), + [anon_sym_POUND] = ACTIONS(2331), + [anon_sym_BANG] = ACTIONS(2331), + [anon_sym_extern] = ACTIONS(2333), + [anon_sym_LT] = ACTIONS(2331), + [anon_sym_COLON_COLON] = ACTIONS(2331), + [anon_sym_AMP] = ACTIONS(2331), + [anon_sym_DOT_DOT] = ACTIONS(2331), + [anon_sym_DASH] = ACTIONS(2331), + [anon_sym_PIPE] = ACTIONS(2331), + [anon_sym_yield] = ACTIONS(2333), + [anon_sym_move] = ACTIONS(2333), + [sym_integer_literal] = ACTIONS(2331), + [aux_sym_string_literal_token1] = ACTIONS(2331), + [sym_char_literal] = ACTIONS(2331), + [anon_sym_true] = ACTIONS(2333), + [anon_sym_false] = ACTIONS(2333), + [anon_sym_u8] = ACTIONS(2333), + [anon_sym_i8] = ACTIONS(2333), + [anon_sym_u16] = ACTIONS(2333), + [anon_sym_i16] = ACTIONS(2333), + [anon_sym_u32] = ACTIONS(2333), + [anon_sym_i32] = ACTIONS(2333), + [anon_sym_u64] = ACTIONS(2333), + [anon_sym_i64] = ACTIONS(2333), + [anon_sym_u128] = ACTIONS(2333), + [anon_sym_i128] = ACTIONS(2333), + [anon_sym_isize] = ACTIONS(2333), + [anon_sym_usize] = ACTIONS(2333), + [anon_sym_f32] = ACTIONS(2333), + [anon_sym_f64] = ACTIONS(2333), + [anon_sym_bool] = ACTIONS(2333), + [anon_sym_str] = ACTIONS(2333), + [anon_sym_char] = ACTIONS(2333), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(2331), + [sym_self] = ACTIONS(2333), + [sym_super] = ACTIONS(2333), + [sym_crate] = ACTIONS(2333), + [sym_metavariable] = ACTIONS(2331), + [sym_grit_metavariable] = ACTIONS(2331), + [sym_raw_string_literal] = ACTIONS(2331), + [sym_float_literal] = ACTIONS(2331), [sym_block_comment] = ACTIONS(3), }, [487] = { - [ts_builtin_sym_end] = ACTIONS(2349), - [sym__primitive_identifier] = ACTIONS(2351), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_macro_rules_BANG] = ACTIONS(2349), - [anon_sym_LPAREN] = ACTIONS(2349), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_RBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2349), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2351), - [anon_sym_async] = ACTIONS(2351), - [anon_sym_break] = ACTIONS(2351), - [anon_sym_const] = ACTIONS(2351), - [anon_sym_continue] = ACTIONS(2351), - [anon_sym_default] = ACTIONS(2351), - [anon_sym_enum] = ACTIONS(2351), - [anon_sym_fn] = ACTIONS(2351), - [anon_sym_for] = ACTIONS(2351), - [anon_sym_if] = ACTIONS(2351), - [anon_sym_impl] = ACTIONS(2351), - [anon_sym_let] = ACTIONS(2351), - [anon_sym_loop] = ACTIONS(2351), - [anon_sym_match] = ACTIONS(2351), - [anon_sym_mod] = ACTIONS(2351), - [anon_sym_pub] = ACTIONS(2351), - [anon_sym_return] = ACTIONS(2351), - [anon_sym_static] = ACTIONS(2351), - [anon_sym_struct] = ACTIONS(2351), - [anon_sym_trait] = ACTIONS(2351), - [anon_sym_type] = ACTIONS(2351), - [anon_sym_union] = ACTIONS(2351), - [anon_sym_unsafe] = ACTIONS(2351), - [anon_sym_use] = ACTIONS(2351), - [anon_sym_while] = ACTIONS(2351), - [anon_sym_POUND] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_extern] = ACTIONS(2351), - [anon_sym_LT] = ACTIONS(2349), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2349), - [anon_sym_DOT_DOT] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2349), - [anon_sym_PIPE] = ACTIONS(2349), - [anon_sym_yield] = ACTIONS(2351), - [anon_sym_move] = ACTIONS(2351), - [sym_integer_literal] = ACTIONS(2349), - [aux_sym_string_literal_token1] = ACTIONS(2349), - [sym_char_literal] = ACTIONS(2349), - [anon_sym_true] = ACTIONS(2351), - [anon_sym_false] = ACTIONS(2351), - [anon_sym_u8] = ACTIONS(2351), - [anon_sym_i8] = ACTIONS(2351), - [anon_sym_u16] = ACTIONS(2351), - [anon_sym_i16] = ACTIONS(2351), - [anon_sym_u32] = ACTIONS(2351), - [anon_sym_i32] = ACTIONS(2351), - [anon_sym_u64] = ACTIONS(2351), - [anon_sym_i64] = ACTIONS(2351), - [anon_sym_u128] = ACTIONS(2351), - [anon_sym_i128] = ACTIONS(2351), - [anon_sym_isize] = ACTIONS(2351), - [anon_sym_usize] = ACTIONS(2351), - [anon_sym_f32] = ACTIONS(2351), - [anon_sym_f64] = ACTIONS(2351), - [anon_sym_bool] = ACTIONS(2351), - [anon_sym_str] = ACTIONS(2351), - [anon_sym_char] = ACTIONS(2351), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(2349), - [sym_self] = ACTIONS(2351), - [sym_super] = ACTIONS(2351), - [sym_crate] = ACTIONS(2351), - [sym_metavariable] = ACTIONS(2349), - [sym_grit_metavariable] = ACTIONS(2349), - [sym_raw_string_literal] = ACTIONS(2349), - [sym_float_literal] = ACTIONS(2349), + [ts_builtin_sym_end] = ACTIONS(2335), + [sym__primitive_identifier] = ACTIONS(2337), + [anon_sym_SEMI] = ACTIONS(2335), + [anon_sym_macro_rules_BANG] = ACTIONS(2335), + [anon_sym_LPAREN] = ACTIONS(2335), + [anon_sym_LBRACE] = ACTIONS(2335), + [anon_sym_RBRACE] = ACTIONS(2335), + [anon_sym_LBRACK] = ACTIONS(2335), + [anon_sym_STAR] = ACTIONS(2335), + [anon_sym_SQUOTE] = ACTIONS(2337), + [anon_sym_async] = ACTIONS(2337), + [anon_sym_break] = ACTIONS(2337), + [anon_sym_const] = ACTIONS(2337), + [anon_sym_continue] = ACTIONS(2337), + [anon_sym_default] = ACTIONS(2337), + [anon_sym_enum] = ACTIONS(2337), + [anon_sym_fn] = ACTIONS(2337), + [anon_sym_for] = ACTIONS(2337), + [anon_sym_if] = ACTIONS(2337), + [anon_sym_impl] = ACTIONS(2337), + [anon_sym_let] = ACTIONS(2337), + [anon_sym_loop] = ACTIONS(2337), + [anon_sym_match] = ACTIONS(2337), + [anon_sym_mod] = ACTIONS(2337), + [anon_sym_pub] = ACTIONS(2337), + [anon_sym_return] = ACTIONS(2337), + [anon_sym_static] = ACTIONS(2337), + [anon_sym_struct] = ACTIONS(2337), + [anon_sym_trait] = ACTIONS(2337), + [anon_sym_type] = ACTIONS(2337), + [anon_sym_union] = ACTIONS(2337), + [anon_sym_unsafe] = ACTIONS(2337), + [anon_sym_use] = ACTIONS(2337), + [anon_sym_while] = ACTIONS(2337), + [anon_sym_POUND] = ACTIONS(2335), + [anon_sym_BANG] = ACTIONS(2335), + [anon_sym_extern] = ACTIONS(2337), + [anon_sym_LT] = ACTIONS(2335), + [anon_sym_COLON_COLON] = ACTIONS(2335), + [anon_sym_AMP] = ACTIONS(2335), + [anon_sym_DOT_DOT] = ACTIONS(2335), + [anon_sym_DASH] = ACTIONS(2335), + [anon_sym_PIPE] = ACTIONS(2335), + [anon_sym_yield] = ACTIONS(2337), + [anon_sym_move] = ACTIONS(2337), + [sym_integer_literal] = ACTIONS(2335), + [aux_sym_string_literal_token1] = ACTIONS(2335), + [sym_char_literal] = ACTIONS(2335), + [anon_sym_true] = ACTIONS(2337), + [anon_sym_false] = ACTIONS(2337), + [anon_sym_u8] = ACTIONS(2337), + [anon_sym_i8] = ACTIONS(2337), + [anon_sym_u16] = ACTIONS(2337), + [anon_sym_i16] = ACTIONS(2337), + [anon_sym_u32] = ACTIONS(2337), + [anon_sym_i32] = ACTIONS(2337), + [anon_sym_u64] = ACTIONS(2337), + [anon_sym_i64] = ACTIONS(2337), + [anon_sym_u128] = ACTIONS(2337), + [anon_sym_i128] = ACTIONS(2337), + [anon_sym_isize] = ACTIONS(2337), + [anon_sym_usize] = ACTIONS(2337), + [anon_sym_f32] = ACTIONS(2337), + [anon_sym_f64] = ACTIONS(2337), + [anon_sym_bool] = ACTIONS(2337), + [anon_sym_str] = ACTIONS(2337), + [anon_sym_char] = ACTIONS(2337), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(2335), + [sym_self] = ACTIONS(2337), + [sym_super] = ACTIONS(2337), + [sym_crate] = ACTIONS(2337), + [sym_metavariable] = ACTIONS(2335), + [sym_grit_metavariable] = ACTIONS(2335), + [sym_raw_string_literal] = ACTIONS(2335), + [sym_float_literal] = ACTIONS(2335), [sym_block_comment] = ACTIONS(3), }, [488] = { - [ts_builtin_sym_end] = ACTIONS(2353), - [sym__primitive_identifier] = ACTIONS(2355), - [anon_sym_SEMI] = ACTIONS(2353), - [anon_sym_macro_rules_BANG] = ACTIONS(2353), - [anon_sym_LPAREN] = ACTIONS(2353), - [anon_sym_LBRACE] = ACTIONS(2353), - [anon_sym_RBRACE] = ACTIONS(2353), - [anon_sym_LBRACK] = ACTIONS(2353), - [anon_sym_STAR] = ACTIONS(2353), - [anon_sym_SQUOTE] = ACTIONS(2355), - [anon_sym_async] = ACTIONS(2355), - [anon_sym_break] = ACTIONS(2355), - [anon_sym_const] = ACTIONS(2355), - [anon_sym_continue] = ACTIONS(2355), - [anon_sym_default] = ACTIONS(2355), - [anon_sym_enum] = ACTIONS(2355), - [anon_sym_fn] = ACTIONS(2355), - [anon_sym_for] = ACTIONS(2355), - [anon_sym_if] = ACTIONS(2355), - [anon_sym_impl] = ACTIONS(2355), - [anon_sym_let] = ACTIONS(2355), - [anon_sym_loop] = ACTIONS(2355), - [anon_sym_match] = ACTIONS(2355), - [anon_sym_mod] = ACTIONS(2355), - [anon_sym_pub] = ACTIONS(2355), - [anon_sym_return] = ACTIONS(2355), - [anon_sym_static] = ACTIONS(2355), - [anon_sym_struct] = ACTIONS(2355), - [anon_sym_trait] = ACTIONS(2355), - [anon_sym_type] = ACTIONS(2355), - [anon_sym_union] = ACTIONS(2355), - [anon_sym_unsafe] = ACTIONS(2355), - [anon_sym_use] = ACTIONS(2355), - [anon_sym_while] = ACTIONS(2355), - [anon_sym_POUND] = ACTIONS(2353), - [anon_sym_BANG] = ACTIONS(2353), - [anon_sym_extern] = ACTIONS(2355), - [anon_sym_LT] = ACTIONS(2353), - [anon_sym_COLON_COLON] = ACTIONS(2353), - [anon_sym_AMP] = ACTIONS(2353), - [anon_sym_DOT_DOT] = ACTIONS(2353), - [anon_sym_DASH] = ACTIONS(2353), - [anon_sym_PIPE] = ACTIONS(2353), - [anon_sym_yield] = ACTIONS(2355), - [anon_sym_move] = ACTIONS(2355), - [sym_integer_literal] = ACTIONS(2353), - [aux_sym_string_literal_token1] = ACTIONS(2353), - [sym_char_literal] = ACTIONS(2353), - [anon_sym_true] = ACTIONS(2355), - [anon_sym_false] = ACTIONS(2355), - [anon_sym_u8] = ACTIONS(2355), - [anon_sym_i8] = ACTIONS(2355), - [anon_sym_u16] = ACTIONS(2355), - [anon_sym_i16] = ACTIONS(2355), - [anon_sym_u32] = ACTIONS(2355), - [anon_sym_i32] = ACTIONS(2355), - [anon_sym_u64] = ACTIONS(2355), - [anon_sym_i64] = ACTIONS(2355), - [anon_sym_u128] = ACTIONS(2355), - [anon_sym_i128] = ACTIONS(2355), - [anon_sym_isize] = ACTIONS(2355), - [anon_sym_usize] = ACTIONS(2355), - [anon_sym_f32] = ACTIONS(2355), - [anon_sym_f64] = ACTIONS(2355), - [anon_sym_bool] = ACTIONS(2355), - [anon_sym_str] = ACTIONS(2355), - [anon_sym_char] = ACTIONS(2355), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(2353), - [sym_self] = ACTIONS(2355), - [sym_super] = ACTIONS(2355), - [sym_crate] = ACTIONS(2355), - [sym_metavariable] = ACTIONS(2353), - [sym_grit_metavariable] = ACTIONS(2353), - [sym_raw_string_literal] = ACTIONS(2353), - [sym_float_literal] = ACTIONS(2353), + [ts_builtin_sym_end] = ACTIONS(2339), + [sym__primitive_identifier] = ACTIONS(2341), + [anon_sym_SEMI] = ACTIONS(2339), + [anon_sym_macro_rules_BANG] = ACTIONS(2339), + [anon_sym_LPAREN] = ACTIONS(2339), + [anon_sym_LBRACE] = ACTIONS(2339), + [anon_sym_RBRACE] = ACTIONS(2339), + [anon_sym_LBRACK] = ACTIONS(2339), + [anon_sym_STAR] = ACTIONS(2339), + [anon_sym_SQUOTE] = ACTIONS(2341), + [anon_sym_async] = ACTIONS(2341), + [anon_sym_break] = ACTIONS(2341), + [anon_sym_const] = ACTIONS(2341), + [anon_sym_continue] = ACTIONS(2341), + [anon_sym_default] = ACTIONS(2341), + [anon_sym_enum] = ACTIONS(2341), + [anon_sym_fn] = ACTIONS(2341), + [anon_sym_for] = ACTIONS(2341), + [anon_sym_if] = ACTIONS(2341), + [anon_sym_impl] = ACTIONS(2341), + [anon_sym_let] = ACTIONS(2341), + [anon_sym_loop] = ACTIONS(2341), + [anon_sym_match] = ACTIONS(2341), + [anon_sym_mod] = ACTIONS(2341), + [anon_sym_pub] = ACTIONS(2341), + [anon_sym_return] = ACTIONS(2341), + [anon_sym_static] = ACTIONS(2341), + [anon_sym_struct] = ACTIONS(2341), + [anon_sym_trait] = ACTIONS(2341), + [anon_sym_type] = ACTIONS(2341), + [anon_sym_union] = ACTIONS(2341), + [anon_sym_unsafe] = ACTIONS(2341), + [anon_sym_use] = ACTIONS(2341), + [anon_sym_while] = ACTIONS(2341), + [anon_sym_POUND] = ACTIONS(2339), + [anon_sym_BANG] = ACTIONS(2339), + [anon_sym_extern] = ACTIONS(2341), + [anon_sym_LT] = ACTIONS(2339), + [anon_sym_COLON_COLON] = ACTIONS(2339), + [anon_sym_AMP] = ACTIONS(2339), + [anon_sym_DOT_DOT] = ACTIONS(2339), + [anon_sym_DASH] = ACTIONS(2339), + [anon_sym_PIPE] = ACTIONS(2339), + [anon_sym_yield] = ACTIONS(2341), + [anon_sym_move] = ACTIONS(2341), + [sym_integer_literal] = ACTIONS(2339), + [aux_sym_string_literal_token1] = ACTIONS(2339), + [sym_char_literal] = ACTIONS(2339), + [anon_sym_true] = ACTIONS(2341), + [anon_sym_false] = ACTIONS(2341), + [anon_sym_u8] = ACTIONS(2341), + [anon_sym_i8] = ACTIONS(2341), + [anon_sym_u16] = ACTIONS(2341), + [anon_sym_i16] = ACTIONS(2341), + [anon_sym_u32] = ACTIONS(2341), + [anon_sym_i32] = ACTIONS(2341), + [anon_sym_u64] = ACTIONS(2341), + [anon_sym_i64] = ACTIONS(2341), + [anon_sym_u128] = ACTIONS(2341), + [anon_sym_i128] = ACTIONS(2341), + [anon_sym_isize] = ACTIONS(2341), + [anon_sym_usize] = ACTIONS(2341), + [anon_sym_f32] = ACTIONS(2341), + [anon_sym_f64] = ACTIONS(2341), + [anon_sym_bool] = ACTIONS(2341), + [anon_sym_str] = ACTIONS(2341), + [anon_sym_char] = ACTIONS(2341), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(2339), + [sym_self] = ACTIONS(2341), + [sym_super] = ACTIONS(2341), + [sym_crate] = ACTIONS(2341), + [sym_metavariable] = ACTIONS(2339), + [sym_grit_metavariable] = ACTIONS(2339), + [sym_raw_string_literal] = ACTIONS(2339), + [sym_float_literal] = ACTIONS(2339), [sym_block_comment] = ACTIONS(3), }, [489] = { - [ts_builtin_sym_end] = ACTIONS(2357), - [sym__primitive_identifier] = ACTIONS(2359), - [anon_sym_SEMI] = ACTIONS(2357), - [anon_sym_macro_rules_BANG] = ACTIONS(2357), - [anon_sym_LPAREN] = ACTIONS(2357), - [anon_sym_LBRACE] = ACTIONS(2357), - [anon_sym_RBRACE] = ACTIONS(2357), - [anon_sym_LBRACK] = ACTIONS(2357), - [anon_sym_STAR] = ACTIONS(2357), - [anon_sym_SQUOTE] = ACTIONS(2359), - [anon_sym_async] = ACTIONS(2359), - [anon_sym_break] = ACTIONS(2359), - [anon_sym_const] = ACTIONS(2359), - [anon_sym_continue] = ACTIONS(2359), - [anon_sym_default] = ACTIONS(2359), - [anon_sym_enum] = ACTIONS(2359), - [anon_sym_fn] = ACTIONS(2359), - [anon_sym_for] = ACTIONS(2359), - [anon_sym_if] = ACTIONS(2359), - [anon_sym_impl] = ACTIONS(2359), - [anon_sym_let] = ACTIONS(2359), - [anon_sym_loop] = ACTIONS(2359), - [anon_sym_match] = ACTIONS(2359), - [anon_sym_mod] = ACTIONS(2359), - [anon_sym_pub] = ACTIONS(2359), - [anon_sym_return] = ACTIONS(2359), - [anon_sym_static] = ACTIONS(2359), - [anon_sym_struct] = ACTIONS(2359), - [anon_sym_trait] = ACTIONS(2359), - [anon_sym_type] = ACTIONS(2359), - [anon_sym_union] = ACTIONS(2359), - [anon_sym_unsafe] = ACTIONS(2359), - [anon_sym_use] = ACTIONS(2359), - [anon_sym_while] = ACTIONS(2359), - [anon_sym_POUND] = ACTIONS(2357), - [anon_sym_BANG] = ACTIONS(2357), - [anon_sym_extern] = ACTIONS(2359), - [anon_sym_LT] = ACTIONS(2357), - [anon_sym_COLON_COLON] = ACTIONS(2357), - [anon_sym_AMP] = ACTIONS(2357), - [anon_sym_DOT_DOT] = ACTIONS(2357), - [anon_sym_DASH] = ACTIONS(2357), - [anon_sym_PIPE] = ACTIONS(2357), - [anon_sym_yield] = ACTIONS(2359), - [anon_sym_move] = ACTIONS(2359), - [sym_integer_literal] = ACTIONS(2357), - [aux_sym_string_literal_token1] = ACTIONS(2357), - [sym_char_literal] = ACTIONS(2357), - [anon_sym_true] = ACTIONS(2359), - [anon_sym_false] = ACTIONS(2359), - [anon_sym_u8] = ACTIONS(2359), - [anon_sym_i8] = ACTIONS(2359), - [anon_sym_u16] = ACTIONS(2359), - [anon_sym_i16] = ACTIONS(2359), - [anon_sym_u32] = ACTIONS(2359), - [anon_sym_i32] = ACTIONS(2359), - [anon_sym_u64] = ACTIONS(2359), - [anon_sym_i64] = ACTIONS(2359), - [anon_sym_u128] = ACTIONS(2359), - [anon_sym_i128] = ACTIONS(2359), - [anon_sym_isize] = ACTIONS(2359), - [anon_sym_usize] = ACTIONS(2359), - [anon_sym_f32] = ACTIONS(2359), - [anon_sym_f64] = ACTIONS(2359), - [anon_sym_bool] = ACTIONS(2359), - [anon_sym_str] = ACTIONS(2359), - [anon_sym_char] = ACTIONS(2359), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(2357), - [sym_self] = ACTIONS(2359), - [sym_super] = ACTIONS(2359), - [sym_crate] = ACTIONS(2359), - [sym_metavariable] = ACTIONS(2357), - [sym_grit_metavariable] = ACTIONS(2357), - [sym_raw_string_literal] = ACTIONS(2357), - [sym_float_literal] = ACTIONS(2357), + [ts_builtin_sym_end] = ACTIONS(2343), + [sym__primitive_identifier] = ACTIONS(2345), + [anon_sym_SEMI] = ACTIONS(2343), + [anon_sym_macro_rules_BANG] = ACTIONS(2343), + [anon_sym_LPAREN] = ACTIONS(2343), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_RBRACE] = ACTIONS(2343), + [anon_sym_LBRACK] = ACTIONS(2343), + [anon_sym_STAR] = ACTIONS(2343), + [anon_sym_SQUOTE] = ACTIONS(2345), + [anon_sym_async] = ACTIONS(2345), + [anon_sym_break] = ACTIONS(2345), + [anon_sym_const] = ACTIONS(2345), + [anon_sym_continue] = ACTIONS(2345), + [anon_sym_default] = ACTIONS(2345), + [anon_sym_enum] = ACTIONS(2345), + [anon_sym_fn] = ACTIONS(2345), + [anon_sym_for] = ACTIONS(2345), + [anon_sym_if] = ACTIONS(2345), + [anon_sym_impl] = ACTIONS(2345), + [anon_sym_let] = ACTIONS(2345), + [anon_sym_loop] = ACTIONS(2345), + [anon_sym_match] = ACTIONS(2345), + [anon_sym_mod] = ACTIONS(2345), + [anon_sym_pub] = ACTIONS(2345), + [anon_sym_return] = ACTIONS(2345), + [anon_sym_static] = ACTIONS(2345), + [anon_sym_struct] = ACTIONS(2345), + [anon_sym_trait] = ACTIONS(2345), + [anon_sym_type] = ACTIONS(2345), + [anon_sym_union] = ACTIONS(2345), + [anon_sym_unsafe] = ACTIONS(2345), + [anon_sym_use] = ACTIONS(2345), + [anon_sym_while] = ACTIONS(2345), + [anon_sym_POUND] = ACTIONS(2343), + [anon_sym_BANG] = ACTIONS(2343), + [anon_sym_extern] = ACTIONS(2345), + [anon_sym_LT] = ACTIONS(2343), + [anon_sym_COLON_COLON] = ACTIONS(2343), + [anon_sym_AMP] = ACTIONS(2343), + [anon_sym_DOT_DOT] = ACTIONS(2343), + [anon_sym_DASH] = ACTIONS(2343), + [anon_sym_PIPE] = ACTIONS(2343), + [anon_sym_yield] = ACTIONS(2345), + [anon_sym_move] = ACTIONS(2345), + [sym_integer_literal] = ACTIONS(2343), + [aux_sym_string_literal_token1] = ACTIONS(2343), + [sym_char_literal] = ACTIONS(2343), + [anon_sym_true] = ACTIONS(2345), + [anon_sym_false] = ACTIONS(2345), + [anon_sym_u8] = ACTIONS(2345), + [anon_sym_i8] = ACTIONS(2345), + [anon_sym_u16] = ACTIONS(2345), + [anon_sym_i16] = ACTIONS(2345), + [anon_sym_u32] = ACTIONS(2345), + [anon_sym_i32] = ACTIONS(2345), + [anon_sym_u64] = ACTIONS(2345), + [anon_sym_i64] = ACTIONS(2345), + [anon_sym_u128] = ACTIONS(2345), + [anon_sym_i128] = ACTIONS(2345), + [anon_sym_isize] = ACTIONS(2345), + [anon_sym_usize] = ACTIONS(2345), + [anon_sym_f32] = ACTIONS(2345), + [anon_sym_f64] = ACTIONS(2345), + [anon_sym_bool] = ACTIONS(2345), + [anon_sym_str] = ACTIONS(2345), + [anon_sym_char] = ACTIONS(2345), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(2343), + [sym_self] = ACTIONS(2345), + [sym_super] = ACTIONS(2345), + [sym_crate] = ACTIONS(2345), + [sym_metavariable] = ACTIONS(2343), + [sym_grit_metavariable] = ACTIONS(2343), + [sym_raw_string_literal] = ACTIONS(2343), + [sym_float_literal] = ACTIONS(2343), [sym_block_comment] = ACTIONS(3), }, [490] = { - [ts_builtin_sym_end] = ACTIONS(2361), - [sym__primitive_identifier] = ACTIONS(2363), - [anon_sym_SEMI] = ACTIONS(2361), - [anon_sym_macro_rules_BANG] = ACTIONS(2361), - [anon_sym_LPAREN] = ACTIONS(2361), - [anon_sym_LBRACE] = ACTIONS(2361), - [anon_sym_RBRACE] = ACTIONS(2361), - [anon_sym_LBRACK] = ACTIONS(2361), - [anon_sym_STAR] = ACTIONS(2361), - [anon_sym_SQUOTE] = ACTIONS(2363), - [anon_sym_async] = ACTIONS(2363), - [anon_sym_break] = ACTIONS(2363), - [anon_sym_const] = ACTIONS(2363), - [anon_sym_continue] = ACTIONS(2363), - [anon_sym_default] = ACTIONS(2363), - [anon_sym_enum] = ACTIONS(2363), - [anon_sym_fn] = ACTIONS(2363), - [anon_sym_for] = ACTIONS(2363), - [anon_sym_if] = ACTIONS(2363), - [anon_sym_impl] = ACTIONS(2363), - [anon_sym_let] = ACTIONS(2363), - [anon_sym_loop] = ACTIONS(2363), - [anon_sym_match] = ACTIONS(2363), - [anon_sym_mod] = ACTIONS(2363), - [anon_sym_pub] = ACTIONS(2363), - [anon_sym_return] = ACTIONS(2363), - [anon_sym_static] = ACTIONS(2363), - [anon_sym_struct] = ACTIONS(2363), - [anon_sym_trait] = ACTIONS(2363), - [anon_sym_type] = ACTIONS(2363), - [anon_sym_union] = ACTIONS(2363), - [anon_sym_unsafe] = ACTIONS(2363), - [anon_sym_use] = ACTIONS(2363), - [anon_sym_while] = ACTIONS(2363), - [anon_sym_POUND] = ACTIONS(2361), - [anon_sym_BANG] = ACTIONS(2361), - [anon_sym_extern] = ACTIONS(2363), - [anon_sym_LT] = ACTIONS(2361), - [anon_sym_COLON_COLON] = ACTIONS(2361), - [anon_sym_AMP] = ACTIONS(2361), - [anon_sym_DOT_DOT] = ACTIONS(2361), - [anon_sym_DASH] = ACTIONS(2361), - [anon_sym_PIPE] = ACTIONS(2361), - [anon_sym_yield] = ACTIONS(2363), - [anon_sym_move] = ACTIONS(2363), - [sym_integer_literal] = ACTIONS(2361), - [aux_sym_string_literal_token1] = ACTIONS(2361), - [sym_char_literal] = ACTIONS(2361), - [anon_sym_true] = ACTIONS(2363), - [anon_sym_false] = ACTIONS(2363), - [anon_sym_u8] = ACTIONS(2363), - [anon_sym_i8] = ACTIONS(2363), - [anon_sym_u16] = ACTIONS(2363), - [anon_sym_i16] = ACTIONS(2363), - [anon_sym_u32] = ACTIONS(2363), - [anon_sym_i32] = ACTIONS(2363), - [anon_sym_u64] = ACTIONS(2363), - [anon_sym_i64] = ACTIONS(2363), - [anon_sym_u128] = ACTIONS(2363), - [anon_sym_i128] = ACTIONS(2363), - [anon_sym_isize] = ACTIONS(2363), - [anon_sym_usize] = ACTIONS(2363), - [anon_sym_f32] = ACTIONS(2363), - [anon_sym_f64] = ACTIONS(2363), - [anon_sym_bool] = ACTIONS(2363), - [anon_sym_str] = ACTIONS(2363), - [anon_sym_char] = ACTIONS(2363), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(2361), - [sym_self] = ACTIONS(2363), - [sym_super] = ACTIONS(2363), - [sym_crate] = ACTIONS(2363), - [sym_metavariable] = ACTIONS(2361), - [sym_grit_metavariable] = ACTIONS(2361), - [sym_raw_string_literal] = ACTIONS(2361), - [sym_float_literal] = ACTIONS(2361), + [ts_builtin_sym_end] = ACTIONS(2347), + [sym__primitive_identifier] = ACTIONS(2349), + [anon_sym_SEMI] = ACTIONS(2347), + [anon_sym_macro_rules_BANG] = ACTIONS(2347), + [anon_sym_LPAREN] = ACTIONS(2347), + [anon_sym_LBRACE] = ACTIONS(2347), + [anon_sym_RBRACE] = ACTIONS(2347), + [anon_sym_LBRACK] = ACTIONS(2347), + [anon_sym_STAR] = ACTIONS(2347), + [anon_sym_SQUOTE] = ACTIONS(2349), + [anon_sym_async] = ACTIONS(2349), + [anon_sym_break] = ACTIONS(2349), + [anon_sym_const] = ACTIONS(2349), + [anon_sym_continue] = ACTIONS(2349), + [anon_sym_default] = ACTIONS(2349), + [anon_sym_enum] = ACTIONS(2349), + [anon_sym_fn] = ACTIONS(2349), + [anon_sym_for] = ACTIONS(2349), + [anon_sym_if] = ACTIONS(2349), + [anon_sym_impl] = ACTIONS(2349), + [anon_sym_let] = ACTIONS(2349), + [anon_sym_loop] = ACTIONS(2349), + [anon_sym_match] = ACTIONS(2349), + [anon_sym_mod] = ACTIONS(2349), + [anon_sym_pub] = ACTIONS(2349), + [anon_sym_return] = ACTIONS(2349), + [anon_sym_static] = ACTIONS(2349), + [anon_sym_struct] = ACTIONS(2349), + [anon_sym_trait] = ACTIONS(2349), + [anon_sym_type] = ACTIONS(2349), + [anon_sym_union] = ACTIONS(2349), + [anon_sym_unsafe] = ACTIONS(2349), + [anon_sym_use] = ACTIONS(2349), + [anon_sym_while] = ACTIONS(2349), + [anon_sym_POUND] = ACTIONS(2347), + [anon_sym_BANG] = ACTIONS(2347), + [anon_sym_extern] = ACTIONS(2349), + [anon_sym_LT] = ACTIONS(2347), + [anon_sym_COLON_COLON] = ACTIONS(2347), + [anon_sym_AMP] = ACTIONS(2347), + [anon_sym_DOT_DOT] = ACTIONS(2347), + [anon_sym_DASH] = ACTIONS(2347), + [anon_sym_PIPE] = ACTIONS(2347), + [anon_sym_yield] = ACTIONS(2349), + [anon_sym_move] = ACTIONS(2349), + [sym_integer_literal] = ACTIONS(2347), + [aux_sym_string_literal_token1] = ACTIONS(2347), + [sym_char_literal] = ACTIONS(2347), + [anon_sym_true] = ACTIONS(2349), + [anon_sym_false] = ACTIONS(2349), + [anon_sym_u8] = ACTIONS(2349), + [anon_sym_i8] = ACTIONS(2349), + [anon_sym_u16] = ACTIONS(2349), + [anon_sym_i16] = ACTIONS(2349), + [anon_sym_u32] = ACTIONS(2349), + [anon_sym_i32] = ACTIONS(2349), + [anon_sym_u64] = ACTIONS(2349), + [anon_sym_i64] = ACTIONS(2349), + [anon_sym_u128] = ACTIONS(2349), + [anon_sym_i128] = ACTIONS(2349), + [anon_sym_isize] = ACTIONS(2349), + [anon_sym_usize] = ACTIONS(2349), + [anon_sym_f32] = ACTIONS(2349), + [anon_sym_f64] = ACTIONS(2349), + [anon_sym_bool] = ACTIONS(2349), + [anon_sym_str] = ACTIONS(2349), + [anon_sym_char] = ACTIONS(2349), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(2347), + [sym_self] = ACTIONS(2349), + [sym_super] = ACTIONS(2349), + [sym_crate] = ACTIONS(2349), + [sym_metavariable] = ACTIONS(2347), + [sym_grit_metavariable] = ACTIONS(2347), + [sym_raw_string_literal] = ACTIONS(2347), + [sym_float_literal] = ACTIONS(2347), [sym_block_comment] = ACTIONS(3), }, [491] = { - [ts_builtin_sym_end] = ACTIONS(2365), - [sym__primitive_identifier] = ACTIONS(2367), - [anon_sym_SEMI] = ACTIONS(2365), - [anon_sym_macro_rules_BANG] = ACTIONS(2365), - [anon_sym_LPAREN] = ACTIONS(2365), - [anon_sym_LBRACE] = ACTIONS(2365), - [anon_sym_RBRACE] = ACTIONS(2365), - [anon_sym_LBRACK] = ACTIONS(2365), - [anon_sym_STAR] = ACTIONS(2365), - [anon_sym_SQUOTE] = ACTIONS(2367), - [anon_sym_async] = ACTIONS(2367), - [anon_sym_break] = ACTIONS(2367), - [anon_sym_const] = ACTIONS(2367), - [anon_sym_continue] = ACTIONS(2367), - [anon_sym_default] = ACTIONS(2367), - [anon_sym_enum] = ACTIONS(2367), - [anon_sym_fn] = ACTIONS(2367), - [anon_sym_for] = ACTIONS(2367), - [anon_sym_if] = ACTIONS(2367), - [anon_sym_impl] = ACTIONS(2367), - [anon_sym_let] = ACTIONS(2367), - [anon_sym_loop] = ACTIONS(2367), - [anon_sym_match] = ACTIONS(2367), - [anon_sym_mod] = ACTIONS(2367), - [anon_sym_pub] = ACTIONS(2367), - [anon_sym_return] = ACTIONS(2367), - [anon_sym_static] = ACTIONS(2367), - [anon_sym_struct] = ACTIONS(2367), - [anon_sym_trait] = ACTIONS(2367), - [anon_sym_type] = ACTIONS(2367), - [anon_sym_union] = ACTIONS(2367), - [anon_sym_unsafe] = ACTIONS(2367), - [anon_sym_use] = ACTIONS(2367), - [anon_sym_while] = ACTIONS(2367), - [anon_sym_POUND] = ACTIONS(2365), - [anon_sym_BANG] = ACTIONS(2365), - [anon_sym_extern] = ACTIONS(2367), - [anon_sym_LT] = ACTIONS(2365), - [anon_sym_COLON_COLON] = ACTIONS(2365), - [anon_sym_AMP] = ACTIONS(2365), - [anon_sym_DOT_DOT] = ACTIONS(2365), - [anon_sym_DASH] = ACTIONS(2365), - [anon_sym_PIPE] = ACTIONS(2365), - [anon_sym_yield] = ACTIONS(2367), - [anon_sym_move] = ACTIONS(2367), - [sym_integer_literal] = ACTIONS(2365), - [aux_sym_string_literal_token1] = ACTIONS(2365), - [sym_char_literal] = ACTIONS(2365), - [anon_sym_true] = ACTIONS(2367), - [anon_sym_false] = ACTIONS(2367), - [anon_sym_u8] = ACTIONS(2367), - [anon_sym_i8] = ACTIONS(2367), - [anon_sym_u16] = ACTIONS(2367), - [anon_sym_i16] = ACTIONS(2367), - [anon_sym_u32] = ACTIONS(2367), - [anon_sym_i32] = ACTIONS(2367), - [anon_sym_u64] = ACTIONS(2367), - [anon_sym_i64] = ACTIONS(2367), - [anon_sym_u128] = ACTIONS(2367), - [anon_sym_i128] = ACTIONS(2367), - [anon_sym_isize] = ACTIONS(2367), - [anon_sym_usize] = ACTIONS(2367), - [anon_sym_f32] = ACTIONS(2367), - [anon_sym_f64] = ACTIONS(2367), - [anon_sym_bool] = ACTIONS(2367), - [anon_sym_str] = ACTIONS(2367), - [anon_sym_char] = ACTIONS(2367), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(2365), - [sym_self] = ACTIONS(2367), - [sym_super] = ACTIONS(2367), - [sym_crate] = ACTIONS(2367), - [sym_metavariable] = ACTIONS(2365), - [sym_grit_metavariable] = ACTIONS(2365), - [sym_raw_string_literal] = ACTIONS(2365), - [sym_float_literal] = ACTIONS(2365), + [ts_builtin_sym_end] = ACTIONS(2351), + [sym__primitive_identifier] = ACTIONS(2353), + [anon_sym_SEMI] = ACTIONS(2351), + [anon_sym_macro_rules_BANG] = ACTIONS(2351), + [anon_sym_LPAREN] = ACTIONS(2351), + [anon_sym_LBRACE] = ACTIONS(2351), + [anon_sym_RBRACE] = ACTIONS(2351), + [anon_sym_LBRACK] = ACTIONS(2351), + [anon_sym_STAR] = ACTIONS(2351), + [anon_sym_SQUOTE] = ACTIONS(2353), + [anon_sym_async] = ACTIONS(2353), + [anon_sym_break] = ACTIONS(2353), + [anon_sym_const] = ACTIONS(2353), + [anon_sym_continue] = ACTIONS(2353), + [anon_sym_default] = ACTIONS(2353), + [anon_sym_enum] = ACTIONS(2353), + [anon_sym_fn] = ACTIONS(2353), + [anon_sym_for] = ACTIONS(2353), + [anon_sym_if] = ACTIONS(2353), + [anon_sym_impl] = ACTIONS(2353), + [anon_sym_let] = ACTIONS(2353), + [anon_sym_loop] = ACTIONS(2353), + [anon_sym_match] = ACTIONS(2353), + [anon_sym_mod] = ACTIONS(2353), + [anon_sym_pub] = ACTIONS(2353), + [anon_sym_return] = ACTIONS(2353), + [anon_sym_static] = ACTIONS(2353), + [anon_sym_struct] = ACTIONS(2353), + [anon_sym_trait] = ACTIONS(2353), + [anon_sym_type] = ACTIONS(2353), + [anon_sym_union] = ACTIONS(2353), + [anon_sym_unsafe] = ACTIONS(2353), + [anon_sym_use] = ACTIONS(2353), + [anon_sym_while] = ACTIONS(2353), + [anon_sym_POUND] = ACTIONS(2351), + [anon_sym_BANG] = ACTIONS(2351), + [anon_sym_extern] = ACTIONS(2353), + [anon_sym_LT] = ACTIONS(2351), + [anon_sym_COLON_COLON] = ACTIONS(2351), + [anon_sym_AMP] = ACTIONS(2351), + [anon_sym_DOT_DOT] = ACTIONS(2351), + [anon_sym_DASH] = ACTIONS(2351), + [anon_sym_PIPE] = ACTIONS(2351), + [anon_sym_yield] = ACTIONS(2353), + [anon_sym_move] = ACTIONS(2353), + [sym_integer_literal] = ACTIONS(2351), + [aux_sym_string_literal_token1] = ACTIONS(2351), + [sym_char_literal] = ACTIONS(2351), + [anon_sym_true] = ACTIONS(2353), + [anon_sym_false] = ACTIONS(2353), + [anon_sym_u8] = ACTIONS(2353), + [anon_sym_i8] = ACTIONS(2353), + [anon_sym_u16] = ACTIONS(2353), + [anon_sym_i16] = ACTIONS(2353), + [anon_sym_u32] = ACTIONS(2353), + [anon_sym_i32] = ACTIONS(2353), + [anon_sym_u64] = ACTIONS(2353), + [anon_sym_i64] = ACTIONS(2353), + [anon_sym_u128] = ACTIONS(2353), + [anon_sym_i128] = ACTIONS(2353), + [anon_sym_isize] = ACTIONS(2353), + [anon_sym_usize] = ACTIONS(2353), + [anon_sym_f32] = ACTIONS(2353), + [anon_sym_f64] = ACTIONS(2353), + [anon_sym_bool] = ACTIONS(2353), + [anon_sym_str] = ACTIONS(2353), + [anon_sym_char] = ACTIONS(2353), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(2351), + [sym_self] = ACTIONS(2353), + [sym_super] = ACTIONS(2353), + [sym_crate] = ACTIONS(2353), + [sym_metavariable] = ACTIONS(2351), + [sym_grit_metavariable] = ACTIONS(2351), + [sym_raw_string_literal] = ACTIONS(2351), + [sym_float_literal] = ACTIONS(2351), [sym_block_comment] = ACTIONS(3), }, [492] = { - [ts_builtin_sym_end] = ACTIONS(2369), - [sym__primitive_identifier] = ACTIONS(2371), - [anon_sym_SEMI] = ACTIONS(2369), - [anon_sym_macro_rules_BANG] = ACTIONS(2369), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACE] = ACTIONS(2369), - [anon_sym_RBRACE] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2369), - [anon_sym_STAR] = ACTIONS(2369), - [anon_sym_SQUOTE] = ACTIONS(2371), - [anon_sym_async] = ACTIONS(2371), - [anon_sym_break] = ACTIONS(2371), - [anon_sym_const] = ACTIONS(2371), - [anon_sym_continue] = ACTIONS(2371), - [anon_sym_default] = ACTIONS(2371), - [anon_sym_enum] = ACTIONS(2371), - [anon_sym_fn] = ACTIONS(2371), - [anon_sym_for] = ACTIONS(2371), - [anon_sym_if] = ACTIONS(2371), - [anon_sym_impl] = ACTIONS(2371), - [anon_sym_let] = ACTIONS(2371), - [anon_sym_loop] = ACTIONS(2371), - [anon_sym_match] = ACTIONS(2371), - [anon_sym_mod] = ACTIONS(2371), - [anon_sym_pub] = ACTIONS(2371), - [anon_sym_return] = ACTIONS(2371), - [anon_sym_static] = ACTIONS(2371), - [anon_sym_struct] = ACTIONS(2371), - [anon_sym_trait] = ACTIONS(2371), - [anon_sym_type] = ACTIONS(2371), - [anon_sym_union] = ACTIONS(2371), - [anon_sym_unsafe] = ACTIONS(2371), - [anon_sym_use] = ACTIONS(2371), - [anon_sym_while] = ACTIONS(2371), - [anon_sym_POUND] = ACTIONS(2369), - [anon_sym_BANG] = ACTIONS(2369), - [anon_sym_extern] = ACTIONS(2371), - [anon_sym_LT] = ACTIONS(2369), - [anon_sym_COLON_COLON] = ACTIONS(2369), - [anon_sym_AMP] = ACTIONS(2369), - [anon_sym_DOT_DOT] = ACTIONS(2369), - [anon_sym_DASH] = ACTIONS(2369), - [anon_sym_PIPE] = ACTIONS(2369), - [anon_sym_yield] = ACTIONS(2371), - [anon_sym_move] = ACTIONS(2371), - [sym_integer_literal] = ACTIONS(2369), - [aux_sym_string_literal_token1] = ACTIONS(2369), - [sym_char_literal] = ACTIONS(2369), - [anon_sym_true] = ACTIONS(2371), - [anon_sym_false] = ACTIONS(2371), - [anon_sym_u8] = ACTIONS(2371), - [anon_sym_i8] = ACTIONS(2371), - [anon_sym_u16] = ACTIONS(2371), - [anon_sym_i16] = ACTIONS(2371), - [anon_sym_u32] = ACTIONS(2371), - [anon_sym_i32] = ACTIONS(2371), - [anon_sym_u64] = ACTIONS(2371), - [anon_sym_i64] = ACTIONS(2371), - [anon_sym_u128] = ACTIONS(2371), - [anon_sym_i128] = ACTIONS(2371), - [anon_sym_isize] = ACTIONS(2371), - [anon_sym_usize] = ACTIONS(2371), - [anon_sym_f32] = ACTIONS(2371), - [anon_sym_f64] = ACTIONS(2371), - [anon_sym_bool] = ACTIONS(2371), - [anon_sym_str] = ACTIONS(2371), - [anon_sym_char] = ACTIONS(2371), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(2369), - [sym_self] = ACTIONS(2371), - [sym_super] = ACTIONS(2371), - [sym_crate] = ACTIONS(2371), - [sym_metavariable] = ACTIONS(2369), - [sym_grit_metavariable] = ACTIONS(2369), - [sym_raw_string_literal] = ACTIONS(2369), - [sym_float_literal] = ACTIONS(2369), + [ts_builtin_sym_end] = ACTIONS(2355), + [sym__primitive_identifier] = ACTIONS(2357), + [anon_sym_SEMI] = ACTIONS(2355), + [anon_sym_macro_rules_BANG] = ACTIONS(2355), + [anon_sym_LPAREN] = ACTIONS(2355), + [anon_sym_LBRACE] = ACTIONS(2355), + [anon_sym_RBRACE] = ACTIONS(2355), + [anon_sym_LBRACK] = ACTIONS(2355), + [anon_sym_STAR] = ACTIONS(2355), + [anon_sym_SQUOTE] = ACTIONS(2357), + [anon_sym_async] = ACTIONS(2357), + [anon_sym_break] = ACTIONS(2357), + [anon_sym_const] = ACTIONS(2357), + [anon_sym_continue] = ACTIONS(2357), + [anon_sym_default] = ACTIONS(2357), + [anon_sym_enum] = ACTIONS(2357), + [anon_sym_fn] = ACTIONS(2357), + [anon_sym_for] = ACTIONS(2357), + [anon_sym_if] = ACTIONS(2357), + [anon_sym_impl] = ACTIONS(2357), + [anon_sym_let] = ACTIONS(2357), + [anon_sym_loop] = ACTIONS(2357), + [anon_sym_match] = ACTIONS(2357), + [anon_sym_mod] = ACTIONS(2357), + [anon_sym_pub] = ACTIONS(2357), + [anon_sym_return] = ACTIONS(2357), + [anon_sym_static] = ACTIONS(2357), + [anon_sym_struct] = ACTIONS(2357), + [anon_sym_trait] = ACTIONS(2357), + [anon_sym_type] = ACTIONS(2357), + [anon_sym_union] = ACTIONS(2357), + [anon_sym_unsafe] = ACTIONS(2357), + [anon_sym_use] = ACTIONS(2357), + [anon_sym_while] = ACTIONS(2357), + [anon_sym_POUND] = ACTIONS(2355), + [anon_sym_BANG] = ACTIONS(2355), + [anon_sym_extern] = ACTIONS(2357), + [anon_sym_LT] = ACTIONS(2355), + [anon_sym_COLON_COLON] = ACTIONS(2355), + [anon_sym_AMP] = ACTIONS(2355), + [anon_sym_DOT_DOT] = ACTIONS(2355), + [anon_sym_DASH] = ACTIONS(2355), + [anon_sym_PIPE] = ACTIONS(2355), + [anon_sym_yield] = ACTIONS(2357), + [anon_sym_move] = ACTIONS(2357), + [sym_integer_literal] = ACTIONS(2355), + [aux_sym_string_literal_token1] = ACTIONS(2355), + [sym_char_literal] = ACTIONS(2355), + [anon_sym_true] = ACTIONS(2357), + [anon_sym_false] = ACTIONS(2357), + [anon_sym_u8] = ACTIONS(2357), + [anon_sym_i8] = ACTIONS(2357), + [anon_sym_u16] = ACTIONS(2357), + [anon_sym_i16] = ACTIONS(2357), + [anon_sym_u32] = ACTIONS(2357), + [anon_sym_i32] = ACTIONS(2357), + [anon_sym_u64] = ACTIONS(2357), + [anon_sym_i64] = ACTIONS(2357), + [anon_sym_u128] = ACTIONS(2357), + [anon_sym_i128] = ACTIONS(2357), + [anon_sym_isize] = ACTIONS(2357), + [anon_sym_usize] = ACTIONS(2357), + [anon_sym_f32] = ACTIONS(2357), + [anon_sym_f64] = ACTIONS(2357), + [anon_sym_bool] = ACTIONS(2357), + [anon_sym_str] = ACTIONS(2357), + [anon_sym_char] = ACTIONS(2357), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(2355), + [sym_self] = ACTIONS(2357), + [sym_super] = ACTIONS(2357), + [sym_crate] = ACTIONS(2357), + [sym_metavariable] = ACTIONS(2355), + [sym_grit_metavariable] = ACTIONS(2355), + [sym_raw_string_literal] = ACTIONS(2355), + [sym_float_literal] = ACTIONS(2355), [sym_block_comment] = ACTIONS(3), }, [493] = { - [ts_builtin_sym_end] = ACTIONS(2373), - [sym__primitive_identifier] = ACTIONS(2375), - [anon_sym_SEMI] = ACTIONS(2373), - [anon_sym_macro_rules_BANG] = ACTIONS(2373), - [anon_sym_LPAREN] = ACTIONS(2373), - [anon_sym_LBRACE] = ACTIONS(2373), - [anon_sym_RBRACE] = ACTIONS(2373), - [anon_sym_LBRACK] = ACTIONS(2373), - [anon_sym_STAR] = ACTIONS(2373), - [anon_sym_SQUOTE] = ACTIONS(2375), - [anon_sym_async] = ACTIONS(2375), - [anon_sym_break] = ACTIONS(2375), - [anon_sym_const] = ACTIONS(2375), - [anon_sym_continue] = ACTIONS(2375), - [anon_sym_default] = ACTIONS(2375), - [anon_sym_enum] = ACTIONS(2375), - [anon_sym_fn] = ACTIONS(2375), - [anon_sym_for] = ACTIONS(2375), - [anon_sym_if] = ACTIONS(2375), - [anon_sym_impl] = ACTIONS(2375), - [anon_sym_let] = ACTIONS(2375), - [anon_sym_loop] = ACTIONS(2375), - [anon_sym_match] = ACTIONS(2375), - [anon_sym_mod] = ACTIONS(2375), - [anon_sym_pub] = ACTIONS(2375), - [anon_sym_return] = ACTIONS(2375), - [anon_sym_static] = ACTIONS(2375), - [anon_sym_struct] = ACTIONS(2375), - [anon_sym_trait] = ACTIONS(2375), - [anon_sym_type] = ACTIONS(2375), - [anon_sym_union] = ACTIONS(2375), - [anon_sym_unsafe] = ACTIONS(2375), - [anon_sym_use] = ACTIONS(2375), - [anon_sym_while] = ACTIONS(2375), - [anon_sym_POUND] = ACTIONS(2373), - [anon_sym_BANG] = ACTIONS(2373), - [anon_sym_extern] = ACTIONS(2375), - [anon_sym_LT] = ACTIONS(2373), - [anon_sym_COLON_COLON] = ACTIONS(2373), - [anon_sym_AMP] = ACTIONS(2373), - [anon_sym_DOT_DOT] = ACTIONS(2373), - [anon_sym_DASH] = ACTIONS(2373), - [anon_sym_PIPE] = ACTIONS(2373), - [anon_sym_yield] = ACTIONS(2375), - [anon_sym_move] = ACTIONS(2375), - [sym_integer_literal] = ACTIONS(2373), - [aux_sym_string_literal_token1] = ACTIONS(2373), - [sym_char_literal] = ACTIONS(2373), - [anon_sym_true] = ACTIONS(2375), - [anon_sym_false] = ACTIONS(2375), - [anon_sym_u8] = ACTIONS(2375), - [anon_sym_i8] = ACTIONS(2375), - [anon_sym_u16] = ACTIONS(2375), - [anon_sym_i16] = ACTIONS(2375), - [anon_sym_u32] = ACTIONS(2375), - [anon_sym_i32] = ACTIONS(2375), - [anon_sym_u64] = ACTIONS(2375), - [anon_sym_i64] = ACTIONS(2375), - [anon_sym_u128] = ACTIONS(2375), - [anon_sym_i128] = ACTIONS(2375), - [anon_sym_isize] = ACTIONS(2375), - [anon_sym_usize] = ACTIONS(2375), - [anon_sym_f32] = ACTIONS(2375), - [anon_sym_f64] = ACTIONS(2375), - [anon_sym_bool] = ACTIONS(2375), - [anon_sym_str] = ACTIONS(2375), - [anon_sym_char] = ACTIONS(2375), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(2373), - [sym_self] = ACTIONS(2375), - [sym_super] = ACTIONS(2375), - [sym_crate] = ACTIONS(2375), - [sym_metavariable] = ACTIONS(2373), - [sym_grit_metavariable] = ACTIONS(2373), - [sym_raw_string_literal] = ACTIONS(2373), - [sym_float_literal] = ACTIONS(2373), + [ts_builtin_sym_end] = ACTIONS(2359), + [sym__primitive_identifier] = ACTIONS(2361), + [anon_sym_SEMI] = ACTIONS(2359), + [anon_sym_macro_rules_BANG] = ACTIONS(2359), + [anon_sym_LPAREN] = ACTIONS(2359), + [anon_sym_LBRACE] = ACTIONS(2359), + [anon_sym_RBRACE] = ACTIONS(2359), + [anon_sym_LBRACK] = ACTIONS(2359), + [anon_sym_STAR] = ACTIONS(2359), + [anon_sym_SQUOTE] = ACTIONS(2361), + [anon_sym_async] = ACTIONS(2361), + [anon_sym_break] = ACTIONS(2361), + [anon_sym_const] = ACTIONS(2361), + [anon_sym_continue] = ACTIONS(2361), + [anon_sym_default] = ACTIONS(2361), + [anon_sym_enum] = ACTIONS(2361), + [anon_sym_fn] = ACTIONS(2361), + [anon_sym_for] = ACTIONS(2361), + [anon_sym_if] = ACTIONS(2361), + [anon_sym_impl] = ACTIONS(2361), + [anon_sym_let] = ACTIONS(2361), + [anon_sym_loop] = ACTIONS(2361), + [anon_sym_match] = ACTIONS(2361), + [anon_sym_mod] = ACTIONS(2361), + [anon_sym_pub] = ACTIONS(2361), + [anon_sym_return] = ACTIONS(2361), + [anon_sym_static] = ACTIONS(2361), + [anon_sym_struct] = ACTIONS(2361), + [anon_sym_trait] = ACTIONS(2361), + [anon_sym_type] = ACTIONS(2361), + [anon_sym_union] = ACTIONS(2361), + [anon_sym_unsafe] = ACTIONS(2361), + [anon_sym_use] = ACTIONS(2361), + [anon_sym_while] = ACTIONS(2361), + [anon_sym_POUND] = ACTIONS(2359), + [anon_sym_BANG] = ACTIONS(2359), + [anon_sym_extern] = ACTIONS(2361), + [anon_sym_LT] = ACTIONS(2359), + [anon_sym_COLON_COLON] = ACTIONS(2359), + [anon_sym_AMP] = ACTIONS(2359), + [anon_sym_DOT_DOT] = ACTIONS(2359), + [anon_sym_DASH] = ACTIONS(2359), + [anon_sym_PIPE] = ACTIONS(2359), + [anon_sym_yield] = ACTIONS(2361), + [anon_sym_move] = ACTIONS(2361), + [sym_integer_literal] = ACTIONS(2359), + [aux_sym_string_literal_token1] = ACTIONS(2359), + [sym_char_literal] = ACTIONS(2359), + [anon_sym_true] = ACTIONS(2361), + [anon_sym_false] = ACTIONS(2361), + [anon_sym_u8] = ACTIONS(2361), + [anon_sym_i8] = ACTIONS(2361), + [anon_sym_u16] = ACTIONS(2361), + [anon_sym_i16] = ACTIONS(2361), + [anon_sym_u32] = ACTIONS(2361), + [anon_sym_i32] = ACTIONS(2361), + [anon_sym_u64] = ACTIONS(2361), + [anon_sym_i64] = ACTIONS(2361), + [anon_sym_u128] = ACTIONS(2361), + [anon_sym_i128] = ACTIONS(2361), + [anon_sym_isize] = ACTIONS(2361), + [anon_sym_usize] = ACTIONS(2361), + [anon_sym_f32] = ACTIONS(2361), + [anon_sym_f64] = ACTIONS(2361), + [anon_sym_bool] = ACTIONS(2361), + [anon_sym_str] = ACTIONS(2361), + [anon_sym_char] = ACTIONS(2361), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(2359), + [sym_self] = ACTIONS(2361), + [sym_super] = ACTIONS(2361), + [sym_crate] = ACTIONS(2361), + [sym_metavariable] = ACTIONS(2359), + [sym_grit_metavariable] = ACTIONS(2359), + [sym_raw_string_literal] = ACTIONS(2359), + [sym_float_literal] = ACTIONS(2359), [sym_block_comment] = ACTIONS(3), }, [494] = { - [ts_builtin_sym_end] = ACTIONS(2377), - [sym__primitive_identifier] = ACTIONS(2379), - [anon_sym_SEMI] = ACTIONS(2377), - [anon_sym_macro_rules_BANG] = ACTIONS(2377), - [anon_sym_LPAREN] = ACTIONS(2377), - [anon_sym_LBRACE] = ACTIONS(2377), - [anon_sym_RBRACE] = ACTIONS(2377), - [anon_sym_LBRACK] = ACTIONS(2377), - [anon_sym_STAR] = ACTIONS(2377), - [anon_sym_SQUOTE] = ACTIONS(2379), - [anon_sym_async] = ACTIONS(2379), - [anon_sym_break] = ACTIONS(2379), - [anon_sym_const] = ACTIONS(2379), - [anon_sym_continue] = ACTIONS(2379), - [anon_sym_default] = ACTIONS(2379), - [anon_sym_enum] = ACTIONS(2379), - [anon_sym_fn] = ACTIONS(2379), - [anon_sym_for] = ACTIONS(2379), - [anon_sym_if] = ACTIONS(2379), - [anon_sym_impl] = ACTIONS(2379), - [anon_sym_let] = ACTIONS(2379), - [anon_sym_loop] = ACTIONS(2379), - [anon_sym_match] = ACTIONS(2379), - [anon_sym_mod] = ACTIONS(2379), - [anon_sym_pub] = ACTIONS(2379), - [anon_sym_return] = ACTIONS(2379), - [anon_sym_static] = ACTIONS(2379), - [anon_sym_struct] = ACTIONS(2379), - [anon_sym_trait] = ACTIONS(2379), - [anon_sym_type] = ACTIONS(2379), - [anon_sym_union] = ACTIONS(2379), - [anon_sym_unsafe] = ACTIONS(2379), - [anon_sym_use] = ACTIONS(2379), - [anon_sym_while] = ACTIONS(2379), - [anon_sym_POUND] = ACTIONS(2377), - [anon_sym_BANG] = ACTIONS(2377), - [anon_sym_extern] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(2377), - [anon_sym_COLON_COLON] = ACTIONS(2377), - [anon_sym_AMP] = ACTIONS(2377), - [anon_sym_DOT_DOT] = ACTIONS(2377), - [anon_sym_DASH] = ACTIONS(2377), - [anon_sym_PIPE] = ACTIONS(2377), - [anon_sym_yield] = ACTIONS(2379), - [anon_sym_move] = ACTIONS(2379), - [sym_integer_literal] = ACTIONS(2377), - [aux_sym_string_literal_token1] = ACTIONS(2377), - [sym_char_literal] = ACTIONS(2377), - [anon_sym_true] = ACTIONS(2379), - [anon_sym_false] = ACTIONS(2379), - [anon_sym_u8] = ACTIONS(2379), - [anon_sym_i8] = ACTIONS(2379), - [anon_sym_u16] = ACTIONS(2379), - [anon_sym_i16] = ACTIONS(2379), - [anon_sym_u32] = ACTIONS(2379), - [anon_sym_i32] = ACTIONS(2379), - [anon_sym_u64] = ACTIONS(2379), - [anon_sym_i64] = ACTIONS(2379), - [anon_sym_u128] = ACTIONS(2379), - [anon_sym_i128] = ACTIONS(2379), - [anon_sym_isize] = ACTIONS(2379), - [anon_sym_usize] = ACTIONS(2379), - [anon_sym_f32] = ACTIONS(2379), - [anon_sym_f64] = ACTIONS(2379), - [anon_sym_bool] = ACTIONS(2379), - [anon_sym_str] = ACTIONS(2379), - [anon_sym_char] = ACTIONS(2379), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(2377), - [sym_self] = ACTIONS(2379), - [sym_super] = ACTIONS(2379), - [sym_crate] = ACTIONS(2379), - [sym_metavariable] = ACTIONS(2377), - [sym_grit_metavariable] = ACTIONS(2377), - [sym_raw_string_literal] = ACTIONS(2377), - [sym_float_literal] = ACTIONS(2377), + [ts_builtin_sym_end] = ACTIONS(2363), + [sym__primitive_identifier] = ACTIONS(2365), + [anon_sym_SEMI] = ACTIONS(2363), + [anon_sym_macro_rules_BANG] = ACTIONS(2363), + [anon_sym_LPAREN] = ACTIONS(2363), + [anon_sym_LBRACE] = ACTIONS(2363), + [anon_sym_RBRACE] = ACTIONS(2363), + [anon_sym_LBRACK] = ACTIONS(2363), + [anon_sym_STAR] = ACTIONS(2363), + [anon_sym_SQUOTE] = ACTIONS(2365), + [anon_sym_async] = ACTIONS(2365), + [anon_sym_break] = ACTIONS(2365), + [anon_sym_const] = ACTIONS(2365), + [anon_sym_continue] = ACTIONS(2365), + [anon_sym_default] = ACTIONS(2365), + [anon_sym_enum] = ACTIONS(2365), + [anon_sym_fn] = ACTIONS(2365), + [anon_sym_for] = ACTIONS(2365), + [anon_sym_if] = ACTIONS(2365), + [anon_sym_impl] = ACTIONS(2365), + [anon_sym_let] = ACTIONS(2365), + [anon_sym_loop] = ACTIONS(2365), + [anon_sym_match] = ACTIONS(2365), + [anon_sym_mod] = ACTIONS(2365), + [anon_sym_pub] = ACTIONS(2365), + [anon_sym_return] = ACTIONS(2365), + [anon_sym_static] = ACTIONS(2365), + [anon_sym_struct] = ACTIONS(2365), + [anon_sym_trait] = ACTIONS(2365), + [anon_sym_type] = ACTIONS(2365), + [anon_sym_union] = ACTIONS(2365), + [anon_sym_unsafe] = ACTIONS(2365), + [anon_sym_use] = ACTIONS(2365), + [anon_sym_while] = ACTIONS(2365), + [anon_sym_POUND] = ACTIONS(2363), + [anon_sym_BANG] = ACTIONS(2363), + [anon_sym_extern] = ACTIONS(2365), + [anon_sym_LT] = ACTIONS(2363), + [anon_sym_COLON_COLON] = ACTIONS(2363), + [anon_sym_AMP] = ACTIONS(2363), + [anon_sym_DOT_DOT] = ACTIONS(2363), + [anon_sym_DASH] = ACTIONS(2363), + [anon_sym_PIPE] = ACTIONS(2363), + [anon_sym_yield] = ACTIONS(2365), + [anon_sym_move] = ACTIONS(2365), + [sym_integer_literal] = ACTIONS(2363), + [aux_sym_string_literal_token1] = ACTIONS(2363), + [sym_char_literal] = ACTIONS(2363), + [anon_sym_true] = ACTIONS(2365), + [anon_sym_false] = ACTIONS(2365), + [anon_sym_u8] = ACTIONS(2365), + [anon_sym_i8] = ACTIONS(2365), + [anon_sym_u16] = ACTIONS(2365), + [anon_sym_i16] = ACTIONS(2365), + [anon_sym_u32] = ACTIONS(2365), + [anon_sym_i32] = ACTIONS(2365), + [anon_sym_u64] = ACTIONS(2365), + [anon_sym_i64] = ACTIONS(2365), + [anon_sym_u128] = ACTIONS(2365), + [anon_sym_i128] = ACTIONS(2365), + [anon_sym_isize] = ACTIONS(2365), + [anon_sym_usize] = ACTIONS(2365), + [anon_sym_f32] = ACTIONS(2365), + [anon_sym_f64] = ACTIONS(2365), + [anon_sym_bool] = ACTIONS(2365), + [anon_sym_str] = ACTIONS(2365), + [anon_sym_char] = ACTIONS(2365), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(2363), + [sym_self] = ACTIONS(2365), + [sym_super] = ACTIONS(2365), + [sym_crate] = ACTIONS(2365), + [sym_metavariable] = ACTIONS(2363), + [sym_grit_metavariable] = ACTIONS(2363), + [sym_raw_string_literal] = ACTIONS(2363), + [sym_float_literal] = ACTIONS(2363), [sym_block_comment] = ACTIONS(3), }, [495] = { - [ts_builtin_sym_end] = ACTIONS(2381), - [sym__primitive_identifier] = ACTIONS(2383), - [anon_sym_SEMI] = ACTIONS(2381), - [anon_sym_macro_rules_BANG] = ACTIONS(2381), - [anon_sym_LPAREN] = ACTIONS(2381), - [anon_sym_LBRACE] = ACTIONS(2381), - [anon_sym_RBRACE] = ACTIONS(2381), - [anon_sym_LBRACK] = ACTIONS(2381), - [anon_sym_STAR] = ACTIONS(2381), - [anon_sym_SQUOTE] = ACTIONS(2383), - [anon_sym_async] = ACTIONS(2383), - [anon_sym_break] = ACTIONS(2383), - [anon_sym_const] = ACTIONS(2383), - [anon_sym_continue] = ACTIONS(2383), - [anon_sym_default] = ACTIONS(2383), - [anon_sym_enum] = ACTIONS(2383), - [anon_sym_fn] = ACTIONS(2383), - [anon_sym_for] = ACTIONS(2383), - [anon_sym_if] = ACTIONS(2383), - [anon_sym_impl] = ACTIONS(2383), - [anon_sym_let] = ACTIONS(2383), - [anon_sym_loop] = ACTIONS(2383), - [anon_sym_match] = ACTIONS(2383), - [anon_sym_mod] = ACTIONS(2383), - [anon_sym_pub] = ACTIONS(2383), - [anon_sym_return] = ACTIONS(2383), - [anon_sym_static] = ACTIONS(2383), - [anon_sym_struct] = ACTIONS(2383), - [anon_sym_trait] = ACTIONS(2383), - [anon_sym_type] = ACTIONS(2383), - [anon_sym_union] = ACTIONS(2383), - [anon_sym_unsafe] = ACTIONS(2383), - [anon_sym_use] = ACTIONS(2383), - [anon_sym_while] = ACTIONS(2383), - [anon_sym_POUND] = ACTIONS(2381), - [anon_sym_BANG] = ACTIONS(2381), - [anon_sym_extern] = ACTIONS(2383), - [anon_sym_LT] = ACTIONS(2381), - [anon_sym_COLON_COLON] = ACTIONS(2381), - [anon_sym_AMP] = ACTIONS(2381), - [anon_sym_DOT_DOT] = ACTIONS(2381), - [anon_sym_DASH] = ACTIONS(2381), - [anon_sym_PIPE] = ACTIONS(2381), - [anon_sym_yield] = ACTIONS(2383), - [anon_sym_move] = ACTIONS(2383), - [sym_integer_literal] = ACTIONS(2381), - [aux_sym_string_literal_token1] = ACTIONS(2381), - [sym_char_literal] = ACTIONS(2381), - [anon_sym_true] = ACTIONS(2383), - [anon_sym_false] = ACTIONS(2383), - [anon_sym_u8] = ACTIONS(2383), - [anon_sym_i8] = ACTIONS(2383), - [anon_sym_u16] = ACTIONS(2383), - [anon_sym_i16] = ACTIONS(2383), - [anon_sym_u32] = ACTIONS(2383), - [anon_sym_i32] = ACTIONS(2383), - [anon_sym_u64] = ACTIONS(2383), - [anon_sym_i64] = ACTIONS(2383), - [anon_sym_u128] = ACTIONS(2383), - [anon_sym_i128] = ACTIONS(2383), - [anon_sym_isize] = ACTIONS(2383), - [anon_sym_usize] = ACTIONS(2383), - [anon_sym_f32] = ACTIONS(2383), - [anon_sym_f64] = ACTIONS(2383), - [anon_sym_bool] = ACTIONS(2383), - [anon_sym_str] = ACTIONS(2383), - [anon_sym_char] = ACTIONS(2383), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(2381), - [sym_self] = ACTIONS(2383), - [sym_super] = ACTIONS(2383), - [sym_crate] = ACTIONS(2383), - [sym_metavariable] = ACTIONS(2381), - [sym_grit_metavariable] = ACTIONS(2381), - [sym_raw_string_literal] = ACTIONS(2381), - [sym_float_literal] = ACTIONS(2381), + [ts_builtin_sym_end] = ACTIONS(2367), + [sym__primitive_identifier] = ACTIONS(2369), + [anon_sym_SEMI] = ACTIONS(2367), + [anon_sym_macro_rules_BANG] = ACTIONS(2367), + [anon_sym_LPAREN] = ACTIONS(2367), + [anon_sym_LBRACE] = ACTIONS(2367), + [anon_sym_RBRACE] = ACTIONS(2367), + [anon_sym_LBRACK] = ACTIONS(2367), + [anon_sym_STAR] = ACTIONS(2367), + [anon_sym_SQUOTE] = ACTIONS(2369), + [anon_sym_async] = ACTIONS(2369), + [anon_sym_break] = ACTIONS(2369), + [anon_sym_const] = ACTIONS(2369), + [anon_sym_continue] = ACTIONS(2369), + [anon_sym_default] = ACTIONS(2369), + [anon_sym_enum] = ACTIONS(2369), + [anon_sym_fn] = ACTIONS(2369), + [anon_sym_for] = ACTIONS(2369), + [anon_sym_if] = ACTIONS(2369), + [anon_sym_impl] = ACTIONS(2369), + [anon_sym_let] = ACTIONS(2369), + [anon_sym_loop] = ACTIONS(2369), + [anon_sym_match] = ACTIONS(2369), + [anon_sym_mod] = ACTIONS(2369), + [anon_sym_pub] = ACTIONS(2369), + [anon_sym_return] = ACTIONS(2369), + [anon_sym_static] = ACTIONS(2369), + [anon_sym_struct] = ACTIONS(2369), + [anon_sym_trait] = ACTIONS(2369), + [anon_sym_type] = ACTIONS(2369), + [anon_sym_union] = ACTIONS(2369), + [anon_sym_unsafe] = ACTIONS(2369), + [anon_sym_use] = ACTIONS(2369), + [anon_sym_while] = ACTIONS(2369), + [anon_sym_POUND] = ACTIONS(2367), + [anon_sym_BANG] = ACTIONS(2367), + [anon_sym_extern] = ACTIONS(2369), + [anon_sym_LT] = ACTIONS(2367), + [anon_sym_COLON_COLON] = ACTIONS(2367), + [anon_sym_AMP] = ACTIONS(2367), + [anon_sym_DOT_DOT] = ACTIONS(2367), + [anon_sym_DASH] = ACTIONS(2367), + [anon_sym_PIPE] = ACTIONS(2367), + [anon_sym_yield] = ACTIONS(2369), + [anon_sym_move] = ACTIONS(2369), + [sym_integer_literal] = ACTIONS(2367), + [aux_sym_string_literal_token1] = ACTIONS(2367), + [sym_char_literal] = ACTIONS(2367), + [anon_sym_true] = ACTIONS(2369), + [anon_sym_false] = ACTIONS(2369), + [anon_sym_u8] = ACTIONS(2369), + [anon_sym_i8] = ACTIONS(2369), + [anon_sym_u16] = ACTIONS(2369), + [anon_sym_i16] = ACTIONS(2369), + [anon_sym_u32] = ACTIONS(2369), + [anon_sym_i32] = ACTIONS(2369), + [anon_sym_u64] = ACTIONS(2369), + [anon_sym_i64] = ACTIONS(2369), + [anon_sym_u128] = ACTIONS(2369), + [anon_sym_i128] = ACTIONS(2369), + [anon_sym_isize] = ACTIONS(2369), + [anon_sym_usize] = ACTIONS(2369), + [anon_sym_f32] = ACTIONS(2369), + [anon_sym_f64] = ACTIONS(2369), + [anon_sym_bool] = ACTIONS(2369), + [anon_sym_str] = ACTIONS(2369), + [anon_sym_char] = ACTIONS(2369), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(2367), + [sym_self] = ACTIONS(2369), + [sym_super] = ACTIONS(2369), + [sym_crate] = ACTIONS(2369), + [sym_metavariable] = ACTIONS(2367), + [sym_grit_metavariable] = ACTIONS(2367), + [sym_raw_string_literal] = ACTIONS(2367), + [sym_float_literal] = ACTIONS(2367), [sym_block_comment] = ACTIONS(3), }, [496] = { - [ts_builtin_sym_end] = ACTIONS(2385), - [sym__primitive_identifier] = ACTIONS(2387), - [anon_sym_SEMI] = ACTIONS(2385), - [anon_sym_macro_rules_BANG] = ACTIONS(2385), - [anon_sym_LPAREN] = ACTIONS(2385), - [anon_sym_LBRACE] = ACTIONS(2385), - [anon_sym_RBRACE] = ACTIONS(2385), - [anon_sym_LBRACK] = ACTIONS(2385), - [anon_sym_STAR] = ACTIONS(2385), - [anon_sym_SQUOTE] = ACTIONS(2387), - [anon_sym_async] = ACTIONS(2387), - [anon_sym_break] = ACTIONS(2387), - [anon_sym_const] = ACTIONS(2387), - [anon_sym_continue] = ACTIONS(2387), - [anon_sym_default] = ACTIONS(2387), - [anon_sym_enum] = ACTIONS(2387), - [anon_sym_fn] = ACTIONS(2387), - [anon_sym_for] = ACTIONS(2387), - [anon_sym_if] = ACTIONS(2387), - [anon_sym_impl] = ACTIONS(2387), - [anon_sym_let] = ACTIONS(2387), - [anon_sym_loop] = ACTIONS(2387), - [anon_sym_match] = ACTIONS(2387), - [anon_sym_mod] = ACTIONS(2387), - [anon_sym_pub] = ACTIONS(2387), - [anon_sym_return] = ACTIONS(2387), - [anon_sym_static] = ACTIONS(2387), - [anon_sym_struct] = ACTIONS(2387), - [anon_sym_trait] = ACTIONS(2387), - [anon_sym_type] = ACTIONS(2387), - [anon_sym_union] = ACTIONS(2387), - [anon_sym_unsafe] = ACTIONS(2387), - [anon_sym_use] = ACTIONS(2387), - [anon_sym_while] = ACTIONS(2387), - [anon_sym_POUND] = ACTIONS(2385), - [anon_sym_BANG] = ACTIONS(2385), - [anon_sym_extern] = ACTIONS(2387), - [anon_sym_LT] = ACTIONS(2385), - [anon_sym_COLON_COLON] = ACTIONS(2385), - [anon_sym_AMP] = ACTIONS(2385), - [anon_sym_DOT_DOT] = ACTIONS(2385), - [anon_sym_DASH] = ACTIONS(2385), - [anon_sym_PIPE] = ACTIONS(2385), - [anon_sym_yield] = ACTIONS(2387), - [anon_sym_move] = ACTIONS(2387), - [sym_integer_literal] = ACTIONS(2385), - [aux_sym_string_literal_token1] = ACTIONS(2385), - [sym_char_literal] = ACTIONS(2385), - [anon_sym_true] = ACTIONS(2387), - [anon_sym_false] = ACTIONS(2387), - [anon_sym_u8] = ACTIONS(2387), - [anon_sym_i8] = ACTIONS(2387), - [anon_sym_u16] = ACTIONS(2387), - [anon_sym_i16] = ACTIONS(2387), - [anon_sym_u32] = ACTIONS(2387), - [anon_sym_i32] = ACTIONS(2387), - [anon_sym_u64] = ACTIONS(2387), - [anon_sym_i64] = ACTIONS(2387), - [anon_sym_u128] = ACTIONS(2387), - [anon_sym_i128] = ACTIONS(2387), - [anon_sym_isize] = ACTIONS(2387), - [anon_sym_usize] = ACTIONS(2387), - [anon_sym_f32] = ACTIONS(2387), - [anon_sym_f64] = ACTIONS(2387), - [anon_sym_bool] = ACTIONS(2387), - [anon_sym_str] = ACTIONS(2387), - [anon_sym_char] = ACTIONS(2387), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(2385), - [sym_self] = ACTIONS(2387), - [sym_super] = ACTIONS(2387), - [sym_crate] = ACTIONS(2387), - [sym_metavariable] = ACTIONS(2385), - [sym_grit_metavariable] = ACTIONS(2385), - [sym_raw_string_literal] = ACTIONS(2385), - [sym_float_literal] = ACTIONS(2385), + [ts_builtin_sym_end] = ACTIONS(2371), + [sym__primitive_identifier] = ACTIONS(2373), + [anon_sym_SEMI] = ACTIONS(2371), + [anon_sym_macro_rules_BANG] = ACTIONS(2371), + [anon_sym_LPAREN] = ACTIONS(2371), + [anon_sym_LBRACE] = ACTIONS(2371), + [anon_sym_RBRACE] = ACTIONS(2371), + [anon_sym_LBRACK] = ACTIONS(2371), + [anon_sym_STAR] = ACTIONS(2371), + [anon_sym_SQUOTE] = ACTIONS(2373), + [anon_sym_async] = ACTIONS(2373), + [anon_sym_break] = ACTIONS(2373), + [anon_sym_const] = ACTIONS(2373), + [anon_sym_continue] = ACTIONS(2373), + [anon_sym_default] = ACTIONS(2373), + [anon_sym_enum] = ACTIONS(2373), + [anon_sym_fn] = ACTIONS(2373), + [anon_sym_for] = ACTIONS(2373), + [anon_sym_if] = ACTIONS(2373), + [anon_sym_impl] = ACTIONS(2373), + [anon_sym_let] = ACTIONS(2373), + [anon_sym_loop] = ACTIONS(2373), + [anon_sym_match] = ACTIONS(2373), + [anon_sym_mod] = ACTIONS(2373), + [anon_sym_pub] = ACTIONS(2373), + [anon_sym_return] = ACTIONS(2373), + [anon_sym_static] = ACTIONS(2373), + [anon_sym_struct] = ACTIONS(2373), + [anon_sym_trait] = ACTIONS(2373), + [anon_sym_type] = ACTIONS(2373), + [anon_sym_union] = ACTIONS(2373), + [anon_sym_unsafe] = ACTIONS(2373), + [anon_sym_use] = ACTIONS(2373), + [anon_sym_while] = ACTIONS(2373), + [anon_sym_POUND] = ACTIONS(2371), + [anon_sym_BANG] = ACTIONS(2371), + [anon_sym_extern] = ACTIONS(2373), + [anon_sym_LT] = ACTIONS(2371), + [anon_sym_COLON_COLON] = ACTIONS(2371), + [anon_sym_AMP] = ACTIONS(2371), + [anon_sym_DOT_DOT] = ACTIONS(2371), + [anon_sym_DASH] = ACTIONS(2371), + [anon_sym_PIPE] = ACTIONS(2371), + [anon_sym_yield] = ACTIONS(2373), + [anon_sym_move] = ACTIONS(2373), + [sym_integer_literal] = ACTIONS(2371), + [aux_sym_string_literal_token1] = ACTIONS(2371), + [sym_char_literal] = ACTIONS(2371), + [anon_sym_true] = ACTIONS(2373), + [anon_sym_false] = ACTIONS(2373), + [anon_sym_u8] = ACTIONS(2373), + [anon_sym_i8] = ACTIONS(2373), + [anon_sym_u16] = ACTIONS(2373), + [anon_sym_i16] = ACTIONS(2373), + [anon_sym_u32] = ACTIONS(2373), + [anon_sym_i32] = ACTIONS(2373), + [anon_sym_u64] = ACTIONS(2373), + [anon_sym_i64] = ACTIONS(2373), + [anon_sym_u128] = ACTIONS(2373), + [anon_sym_i128] = ACTIONS(2373), + [anon_sym_isize] = ACTIONS(2373), + [anon_sym_usize] = ACTIONS(2373), + [anon_sym_f32] = ACTIONS(2373), + [anon_sym_f64] = ACTIONS(2373), + [anon_sym_bool] = ACTIONS(2373), + [anon_sym_str] = ACTIONS(2373), + [anon_sym_char] = ACTIONS(2373), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(2371), + [sym_self] = ACTIONS(2373), + [sym_super] = ACTIONS(2373), + [sym_crate] = ACTIONS(2373), + [sym_metavariable] = ACTIONS(2371), + [sym_grit_metavariable] = ACTIONS(2371), + [sym_raw_string_literal] = ACTIONS(2371), + [sym_float_literal] = ACTIONS(2371), [sym_block_comment] = ACTIONS(3), }, [497] = { - [ts_builtin_sym_end] = ACTIONS(2389), - [sym__primitive_identifier] = ACTIONS(2391), - [anon_sym_SEMI] = ACTIONS(2389), - [anon_sym_macro_rules_BANG] = ACTIONS(2389), - [anon_sym_LPAREN] = ACTIONS(2389), - [anon_sym_LBRACE] = ACTIONS(2389), - [anon_sym_RBRACE] = ACTIONS(2389), - [anon_sym_LBRACK] = ACTIONS(2389), - [anon_sym_STAR] = ACTIONS(2389), - [anon_sym_SQUOTE] = ACTIONS(2391), - [anon_sym_async] = ACTIONS(2391), - [anon_sym_break] = ACTIONS(2391), - [anon_sym_const] = ACTIONS(2391), - [anon_sym_continue] = ACTIONS(2391), - [anon_sym_default] = ACTIONS(2391), - [anon_sym_enum] = ACTIONS(2391), - [anon_sym_fn] = ACTIONS(2391), - [anon_sym_for] = ACTIONS(2391), - [anon_sym_if] = ACTIONS(2391), - [anon_sym_impl] = ACTIONS(2391), - [anon_sym_let] = ACTIONS(2391), - [anon_sym_loop] = ACTIONS(2391), - [anon_sym_match] = ACTIONS(2391), - [anon_sym_mod] = ACTIONS(2391), - [anon_sym_pub] = ACTIONS(2391), - [anon_sym_return] = ACTIONS(2391), - [anon_sym_static] = ACTIONS(2391), - [anon_sym_struct] = ACTIONS(2391), - [anon_sym_trait] = ACTIONS(2391), - [anon_sym_type] = ACTIONS(2391), - [anon_sym_union] = ACTIONS(2391), - [anon_sym_unsafe] = ACTIONS(2391), - [anon_sym_use] = ACTIONS(2391), - [anon_sym_while] = ACTIONS(2391), - [anon_sym_POUND] = ACTIONS(2389), - [anon_sym_BANG] = ACTIONS(2389), - [anon_sym_extern] = ACTIONS(2391), - [anon_sym_LT] = ACTIONS(2389), - [anon_sym_COLON_COLON] = ACTIONS(2389), - [anon_sym_AMP] = ACTIONS(2389), - [anon_sym_DOT_DOT] = ACTIONS(2389), - [anon_sym_DASH] = ACTIONS(2389), - [anon_sym_PIPE] = ACTIONS(2389), - [anon_sym_yield] = ACTIONS(2391), - [anon_sym_move] = ACTIONS(2391), - [sym_integer_literal] = ACTIONS(2389), - [aux_sym_string_literal_token1] = ACTIONS(2389), - [sym_char_literal] = ACTIONS(2389), - [anon_sym_true] = ACTIONS(2391), - [anon_sym_false] = ACTIONS(2391), - [anon_sym_u8] = ACTIONS(2391), - [anon_sym_i8] = ACTIONS(2391), - [anon_sym_u16] = ACTIONS(2391), - [anon_sym_i16] = ACTIONS(2391), - [anon_sym_u32] = ACTIONS(2391), - [anon_sym_i32] = ACTIONS(2391), - [anon_sym_u64] = ACTIONS(2391), - [anon_sym_i64] = ACTIONS(2391), - [anon_sym_u128] = ACTIONS(2391), - [anon_sym_i128] = ACTIONS(2391), - [anon_sym_isize] = ACTIONS(2391), - [anon_sym_usize] = ACTIONS(2391), - [anon_sym_f32] = ACTIONS(2391), - [anon_sym_f64] = ACTIONS(2391), - [anon_sym_bool] = ACTIONS(2391), - [anon_sym_str] = ACTIONS(2391), - [anon_sym_char] = ACTIONS(2391), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(2389), - [sym_self] = ACTIONS(2391), - [sym_super] = ACTIONS(2391), - [sym_crate] = ACTIONS(2391), - [sym_metavariable] = ACTIONS(2389), - [sym_grit_metavariable] = ACTIONS(2389), - [sym_raw_string_literal] = ACTIONS(2389), - [sym_float_literal] = ACTIONS(2389), + [ts_builtin_sym_end] = ACTIONS(2375), + [sym__primitive_identifier] = ACTIONS(2377), + [anon_sym_SEMI] = ACTIONS(2375), + [anon_sym_macro_rules_BANG] = ACTIONS(2375), + [anon_sym_LPAREN] = ACTIONS(2375), + [anon_sym_LBRACE] = ACTIONS(2375), + [anon_sym_RBRACE] = ACTIONS(2375), + [anon_sym_LBRACK] = ACTIONS(2375), + [anon_sym_STAR] = ACTIONS(2375), + [anon_sym_SQUOTE] = ACTIONS(2377), + [anon_sym_async] = ACTIONS(2377), + [anon_sym_break] = ACTIONS(2377), + [anon_sym_const] = ACTIONS(2377), + [anon_sym_continue] = ACTIONS(2377), + [anon_sym_default] = ACTIONS(2377), + [anon_sym_enum] = ACTIONS(2377), + [anon_sym_fn] = ACTIONS(2377), + [anon_sym_for] = ACTIONS(2377), + [anon_sym_if] = ACTIONS(2377), + [anon_sym_impl] = ACTIONS(2377), + [anon_sym_let] = ACTIONS(2377), + [anon_sym_loop] = ACTIONS(2377), + [anon_sym_match] = ACTIONS(2377), + [anon_sym_mod] = ACTIONS(2377), + [anon_sym_pub] = ACTIONS(2377), + [anon_sym_return] = ACTIONS(2377), + [anon_sym_static] = ACTIONS(2377), + [anon_sym_struct] = ACTIONS(2377), + [anon_sym_trait] = ACTIONS(2377), + [anon_sym_type] = ACTIONS(2377), + [anon_sym_union] = ACTIONS(2377), + [anon_sym_unsafe] = ACTIONS(2377), + [anon_sym_use] = ACTIONS(2377), + [anon_sym_while] = ACTIONS(2377), + [anon_sym_POUND] = ACTIONS(2375), + [anon_sym_BANG] = ACTIONS(2375), + [anon_sym_extern] = ACTIONS(2377), + [anon_sym_LT] = ACTIONS(2375), + [anon_sym_COLON_COLON] = ACTIONS(2375), + [anon_sym_AMP] = ACTIONS(2375), + [anon_sym_DOT_DOT] = ACTIONS(2375), + [anon_sym_DASH] = ACTIONS(2375), + [anon_sym_PIPE] = ACTIONS(2375), + [anon_sym_yield] = ACTIONS(2377), + [anon_sym_move] = ACTIONS(2377), + [sym_integer_literal] = ACTIONS(2375), + [aux_sym_string_literal_token1] = ACTIONS(2375), + [sym_char_literal] = ACTIONS(2375), + [anon_sym_true] = ACTIONS(2377), + [anon_sym_false] = ACTIONS(2377), + [anon_sym_u8] = ACTIONS(2377), + [anon_sym_i8] = ACTIONS(2377), + [anon_sym_u16] = ACTIONS(2377), + [anon_sym_i16] = ACTIONS(2377), + [anon_sym_u32] = ACTIONS(2377), + [anon_sym_i32] = ACTIONS(2377), + [anon_sym_u64] = ACTIONS(2377), + [anon_sym_i64] = ACTIONS(2377), + [anon_sym_u128] = ACTIONS(2377), + [anon_sym_i128] = ACTIONS(2377), + [anon_sym_isize] = ACTIONS(2377), + [anon_sym_usize] = ACTIONS(2377), + [anon_sym_f32] = ACTIONS(2377), + [anon_sym_f64] = ACTIONS(2377), + [anon_sym_bool] = ACTIONS(2377), + [anon_sym_str] = ACTIONS(2377), + [anon_sym_char] = ACTIONS(2377), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(2375), + [sym_self] = ACTIONS(2377), + [sym_super] = ACTIONS(2377), + [sym_crate] = ACTIONS(2377), + [sym_metavariable] = ACTIONS(2375), + [sym_grit_metavariable] = ACTIONS(2375), + [sym_raw_string_literal] = ACTIONS(2375), + [sym_float_literal] = ACTIONS(2375), [sym_block_comment] = ACTIONS(3), }, [498] = { - [ts_builtin_sym_end] = ACTIONS(2393), - [sym__primitive_identifier] = ACTIONS(2395), - [anon_sym_SEMI] = ACTIONS(2393), - [anon_sym_macro_rules_BANG] = ACTIONS(2393), - [anon_sym_LPAREN] = ACTIONS(2393), - [anon_sym_LBRACE] = ACTIONS(2393), - [anon_sym_RBRACE] = ACTIONS(2393), - [anon_sym_LBRACK] = ACTIONS(2393), - [anon_sym_STAR] = ACTIONS(2393), - [anon_sym_SQUOTE] = ACTIONS(2395), - [anon_sym_async] = ACTIONS(2395), - [anon_sym_break] = ACTIONS(2395), - [anon_sym_const] = ACTIONS(2395), - [anon_sym_continue] = ACTIONS(2395), - [anon_sym_default] = ACTIONS(2395), - [anon_sym_enum] = ACTIONS(2395), - [anon_sym_fn] = ACTIONS(2395), - [anon_sym_for] = ACTIONS(2395), - [anon_sym_if] = ACTIONS(2395), - [anon_sym_impl] = ACTIONS(2395), - [anon_sym_let] = ACTIONS(2395), - [anon_sym_loop] = ACTIONS(2395), - [anon_sym_match] = ACTIONS(2395), - [anon_sym_mod] = ACTIONS(2395), - [anon_sym_pub] = ACTIONS(2395), - [anon_sym_return] = ACTIONS(2395), - [anon_sym_static] = ACTIONS(2395), - [anon_sym_struct] = ACTIONS(2395), - [anon_sym_trait] = ACTIONS(2395), - [anon_sym_type] = ACTIONS(2395), - [anon_sym_union] = ACTIONS(2395), - [anon_sym_unsafe] = ACTIONS(2395), - [anon_sym_use] = ACTIONS(2395), - [anon_sym_while] = ACTIONS(2395), - [anon_sym_POUND] = ACTIONS(2393), - [anon_sym_BANG] = ACTIONS(2393), - [anon_sym_extern] = ACTIONS(2395), - [anon_sym_LT] = ACTIONS(2393), - [anon_sym_COLON_COLON] = ACTIONS(2393), - [anon_sym_AMP] = ACTIONS(2393), - [anon_sym_DOT_DOT] = ACTIONS(2393), - [anon_sym_DASH] = ACTIONS(2393), - [anon_sym_PIPE] = ACTIONS(2393), - [anon_sym_yield] = ACTIONS(2395), - [anon_sym_move] = ACTIONS(2395), - [sym_integer_literal] = ACTIONS(2393), - [aux_sym_string_literal_token1] = ACTIONS(2393), - [sym_char_literal] = ACTIONS(2393), - [anon_sym_true] = ACTIONS(2395), - [anon_sym_false] = ACTIONS(2395), - [anon_sym_u8] = ACTIONS(2395), - [anon_sym_i8] = ACTIONS(2395), - [anon_sym_u16] = ACTIONS(2395), - [anon_sym_i16] = ACTIONS(2395), - [anon_sym_u32] = ACTIONS(2395), - [anon_sym_i32] = ACTIONS(2395), - [anon_sym_u64] = ACTIONS(2395), - [anon_sym_i64] = ACTIONS(2395), - [anon_sym_u128] = ACTIONS(2395), - [anon_sym_i128] = ACTIONS(2395), - [anon_sym_isize] = ACTIONS(2395), - [anon_sym_usize] = ACTIONS(2395), - [anon_sym_f32] = ACTIONS(2395), - [anon_sym_f64] = ACTIONS(2395), - [anon_sym_bool] = ACTIONS(2395), - [anon_sym_str] = ACTIONS(2395), - [anon_sym_char] = ACTIONS(2395), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(2393), - [sym_self] = ACTIONS(2395), - [sym_super] = ACTIONS(2395), - [sym_crate] = ACTIONS(2395), - [sym_metavariable] = ACTIONS(2393), - [sym_grit_metavariable] = ACTIONS(2393), - [sym_raw_string_literal] = ACTIONS(2393), - [sym_float_literal] = ACTIONS(2393), + [ts_builtin_sym_end] = ACTIONS(2379), + [sym__primitive_identifier] = ACTIONS(2381), + [anon_sym_SEMI] = ACTIONS(2379), + [anon_sym_macro_rules_BANG] = ACTIONS(2379), + [anon_sym_LPAREN] = ACTIONS(2379), + [anon_sym_LBRACE] = ACTIONS(2379), + [anon_sym_RBRACE] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(2379), + [anon_sym_STAR] = ACTIONS(2379), + [anon_sym_SQUOTE] = ACTIONS(2381), + [anon_sym_async] = ACTIONS(2381), + [anon_sym_break] = ACTIONS(2381), + [anon_sym_const] = ACTIONS(2381), + [anon_sym_continue] = ACTIONS(2381), + [anon_sym_default] = ACTIONS(2381), + [anon_sym_enum] = ACTIONS(2381), + [anon_sym_fn] = ACTIONS(2381), + [anon_sym_for] = ACTIONS(2381), + [anon_sym_if] = ACTIONS(2381), + [anon_sym_impl] = ACTIONS(2381), + [anon_sym_let] = ACTIONS(2381), + [anon_sym_loop] = ACTIONS(2381), + [anon_sym_match] = ACTIONS(2381), + [anon_sym_mod] = ACTIONS(2381), + [anon_sym_pub] = ACTIONS(2381), + [anon_sym_return] = ACTIONS(2381), + [anon_sym_static] = ACTIONS(2381), + [anon_sym_struct] = ACTIONS(2381), + [anon_sym_trait] = ACTIONS(2381), + [anon_sym_type] = ACTIONS(2381), + [anon_sym_union] = ACTIONS(2381), + [anon_sym_unsafe] = ACTIONS(2381), + [anon_sym_use] = ACTIONS(2381), + [anon_sym_while] = ACTIONS(2381), + [anon_sym_POUND] = ACTIONS(2379), + [anon_sym_BANG] = ACTIONS(2379), + [anon_sym_extern] = ACTIONS(2381), + [anon_sym_LT] = ACTIONS(2379), + [anon_sym_COLON_COLON] = ACTIONS(2379), + [anon_sym_AMP] = ACTIONS(2379), + [anon_sym_DOT_DOT] = ACTIONS(2379), + [anon_sym_DASH] = ACTIONS(2379), + [anon_sym_PIPE] = ACTIONS(2379), + [anon_sym_yield] = ACTIONS(2381), + [anon_sym_move] = ACTIONS(2381), + [sym_integer_literal] = ACTIONS(2379), + [aux_sym_string_literal_token1] = ACTIONS(2379), + [sym_char_literal] = ACTIONS(2379), + [anon_sym_true] = ACTIONS(2381), + [anon_sym_false] = ACTIONS(2381), + [anon_sym_u8] = ACTIONS(2381), + [anon_sym_i8] = ACTIONS(2381), + [anon_sym_u16] = ACTIONS(2381), + [anon_sym_i16] = ACTIONS(2381), + [anon_sym_u32] = ACTIONS(2381), + [anon_sym_i32] = ACTIONS(2381), + [anon_sym_u64] = ACTIONS(2381), + [anon_sym_i64] = ACTIONS(2381), + [anon_sym_u128] = ACTIONS(2381), + [anon_sym_i128] = ACTIONS(2381), + [anon_sym_isize] = ACTIONS(2381), + [anon_sym_usize] = ACTIONS(2381), + [anon_sym_f32] = ACTIONS(2381), + [anon_sym_f64] = ACTIONS(2381), + [anon_sym_bool] = ACTIONS(2381), + [anon_sym_str] = ACTIONS(2381), + [anon_sym_char] = ACTIONS(2381), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(2379), + [sym_self] = ACTIONS(2381), + [sym_super] = ACTIONS(2381), + [sym_crate] = ACTIONS(2381), + [sym_metavariable] = ACTIONS(2379), + [sym_grit_metavariable] = ACTIONS(2379), + [sym_raw_string_literal] = ACTIONS(2379), + [sym_float_literal] = ACTIONS(2379), [sym_block_comment] = ACTIONS(3), }, [499] = { - [ts_builtin_sym_end] = ACTIONS(2397), - [sym__primitive_identifier] = ACTIONS(2399), - [anon_sym_SEMI] = ACTIONS(2397), - [anon_sym_macro_rules_BANG] = ACTIONS(2397), - [anon_sym_LPAREN] = ACTIONS(2397), - [anon_sym_LBRACE] = ACTIONS(2397), - [anon_sym_RBRACE] = ACTIONS(2397), - [anon_sym_LBRACK] = ACTIONS(2397), - [anon_sym_STAR] = ACTIONS(2397), - [anon_sym_SQUOTE] = ACTIONS(2399), - [anon_sym_async] = ACTIONS(2399), - [anon_sym_break] = ACTIONS(2399), - [anon_sym_const] = ACTIONS(2399), - [anon_sym_continue] = ACTIONS(2399), - [anon_sym_default] = ACTIONS(2399), - [anon_sym_enum] = ACTIONS(2399), - [anon_sym_fn] = ACTIONS(2399), - [anon_sym_for] = ACTIONS(2399), - [anon_sym_if] = ACTIONS(2399), - [anon_sym_impl] = ACTIONS(2399), - [anon_sym_let] = ACTIONS(2399), - [anon_sym_loop] = ACTIONS(2399), - [anon_sym_match] = ACTIONS(2399), - [anon_sym_mod] = ACTIONS(2399), - [anon_sym_pub] = ACTIONS(2399), - [anon_sym_return] = ACTIONS(2399), - [anon_sym_static] = ACTIONS(2399), - [anon_sym_struct] = ACTIONS(2399), - [anon_sym_trait] = ACTIONS(2399), - [anon_sym_type] = ACTIONS(2399), - [anon_sym_union] = ACTIONS(2399), - [anon_sym_unsafe] = ACTIONS(2399), - [anon_sym_use] = ACTIONS(2399), - [anon_sym_while] = ACTIONS(2399), - [anon_sym_POUND] = ACTIONS(2397), - [anon_sym_BANG] = ACTIONS(2397), - [anon_sym_extern] = ACTIONS(2399), - [anon_sym_LT] = ACTIONS(2397), - [anon_sym_COLON_COLON] = ACTIONS(2397), - [anon_sym_AMP] = ACTIONS(2397), - [anon_sym_DOT_DOT] = ACTIONS(2397), - [anon_sym_DASH] = ACTIONS(2397), - [anon_sym_PIPE] = ACTIONS(2397), - [anon_sym_yield] = ACTIONS(2399), - [anon_sym_move] = ACTIONS(2399), - [sym_integer_literal] = ACTIONS(2397), - [aux_sym_string_literal_token1] = ACTIONS(2397), - [sym_char_literal] = ACTIONS(2397), - [anon_sym_true] = ACTIONS(2399), - [anon_sym_false] = ACTIONS(2399), - [anon_sym_u8] = ACTIONS(2399), - [anon_sym_i8] = ACTIONS(2399), - [anon_sym_u16] = ACTIONS(2399), - [anon_sym_i16] = ACTIONS(2399), - [anon_sym_u32] = ACTIONS(2399), - [anon_sym_i32] = ACTIONS(2399), - [anon_sym_u64] = ACTIONS(2399), - [anon_sym_i64] = ACTIONS(2399), - [anon_sym_u128] = ACTIONS(2399), - [anon_sym_i128] = ACTIONS(2399), - [anon_sym_isize] = ACTIONS(2399), - [anon_sym_usize] = ACTIONS(2399), - [anon_sym_f32] = ACTIONS(2399), - [anon_sym_f64] = ACTIONS(2399), - [anon_sym_bool] = ACTIONS(2399), - [anon_sym_str] = ACTIONS(2399), - [anon_sym_char] = ACTIONS(2399), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(2397), - [sym_self] = ACTIONS(2399), - [sym_super] = ACTIONS(2399), - [sym_crate] = ACTIONS(2399), - [sym_metavariable] = ACTIONS(2397), - [sym_grit_metavariable] = ACTIONS(2397), - [sym_raw_string_literal] = ACTIONS(2397), - [sym_float_literal] = ACTIONS(2397), + [ts_builtin_sym_end] = ACTIONS(2383), + [sym__primitive_identifier] = ACTIONS(2385), + [anon_sym_SEMI] = ACTIONS(2383), + [anon_sym_macro_rules_BANG] = ACTIONS(2383), + [anon_sym_LPAREN] = ACTIONS(2383), + [anon_sym_LBRACE] = ACTIONS(2383), + [anon_sym_RBRACE] = ACTIONS(2383), + [anon_sym_LBRACK] = ACTIONS(2383), + [anon_sym_STAR] = ACTIONS(2383), + [anon_sym_SQUOTE] = ACTIONS(2385), + [anon_sym_async] = ACTIONS(2385), + [anon_sym_break] = ACTIONS(2385), + [anon_sym_const] = ACTIONS(2385), + [anon_sym_continue] = ACTIONS(2385), + [anon_sym_default] = ACTIONS(2385), + [anon_sym_enum] = ACTIONS(2385), + [anon_sym_fn] = ACTIONS(2385), + [anon_sym_for] = ACTIONS(2385), + [anon_sym_if] = ACTIONS(2385), + [anon_sym_impl] = ACTIONS(2385), + [anon_sym_let] = ACTIONS(2385), + [anon_sym_loop] = ACTIONS(2385), + [anon_sym_match] = ACTIONS(2385), + [anon_sym_mod] = ACTIONS(2385), + [anon_sym_pub] = ACTIONS(2385), + [anon_sym_return] = ACTIONS(2385), + [anon_sym_static] = ACTIONS(2385), + [anon_sym_struct] = ACTIONS(2385), + [anon_sym_trait] = ACTIONS(2385), + [anon_sym_type] = ACTIONS(2385), + [anon_sym_union] = ACTIONS(2385), + [anon_sym_unsafe] = ACTIONS(2385), + [anon_sym_use] = ACTIONS(2385), + [anon_sym_while] = ACTIONS(2385), + [anon_sym_POUND] = ACTIONS(2383), + [anon_sym_BANG] = ACTIONS(2383), + [anon_sym_extern] = ACTIONS(2385), + [anon_sym_LT] = ACTIONS(2383), + [anon_sym_COLON_COLON] = ACTIONS(2383), + [anon_sym_AMP] = ACTIONS(2383), + [anon_sym_DOT_DOT] = ACTIONS(2383), + [anon_sym_DASH] = ACTIONS(2383), + [anon_sym_PIPE] = ACTIONS(2383), + [anon_sym_yield] = ACTIONS(2385), + [anon_sym_move] = ACTIONS(2385), + [sym_integer_literal] = ACTIONS(2383), + [aux_sym_string_literal_token1] = ACTIONS(2383), + [sym_char_literal] = ACTIONS(2383), + [anon_sym_true] = ACTIONS(2385), + [anon_sym_false] = ACTIONS(2385), + [anon_sym_u8] = ACTIONS(2385), + [anon_sym_i8] = ACTIONS(2385), + [anon_sym_u16] = ACTIONS(2385), + [anon_sym_i16] = ACTIONS(2385), + [anon_sym_u32] = ACTIONS(2385), + [anon_sym_i32] = ACTIONS(2385), + [anon_sym_u64] = ACTIONS(2385), + [anon_sym_i64] = ACTIONS(2385), + [anon_sym_u128] = ACTIONS(2385), + [anon_sym_i128] = ACTIONS(2385), + [anon_sym_isize] = ACTIONS(2385), + [anon_sym_usize] = ACTIONS(2385), + [anon_sym_f32] = ACTIONS(2385), + [anon_sym_f64] = ACTIONS(2385), + [anon_sym_bool] = ACTIONS(2385), + [anon_sym_str] = ACTIONS(2385), + [anon_sym_char] = ACTIONS(2385), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(2383), + [sym_self] = ACTIONS(2385), + [sym_super] = ACTIONS(2385), + [sym_crate] = ACTIONS(2385), + [sym_metavariable] = ACTIONS(2383), + [sym_grit_metavariable] = ACTIONS(2383), + [sym_raw_string_literal] = ACTIONS(2383), + [sym_float_literal] = ACTIONS(2383), [sym_block_comment] = ACTIONS(3), }, [500] = { - [ts_builtin_sym_end] = ACTIONS(2401), - [sym__primitive_identifier] = ACTIONS(2403), - [anon_sym_SEMI] = ACTIONS(2401), - [anon_sym_macro_rules_BANG] = ACTIONS(2401), - [anon_sym_LPAREN] = ACTIONS(2401), - [anon_sym_LBRACE] = ACTIONS(2401), - [anon_sym_RBRACE] = ACTIONS(2401), - [anon_sym_LBRACK] = ACTIONS(2401), - [anon_sym_STAR] = ACTIONS(2401), - [anon_sym_SQUOTE] = ACTIONS(2403), - [anon_sym_async] = ACTIONS(2403), - [anon_sym_break] = ACTIONS(2403), - [anon_sym_const] = ACTIONS(2403), - [anon_sym_continue] = ACTIONS(2403), - [anon_sym_default] = ACTIONS(2403), - [anon_sym_enum] = ACTIONS(2403), - [anon_sym_fn] = ACTIONS(2403), - [anon_sym_for] = ACTIONS(2403), - [anon_sym_if] = ACTIONS(2403), - [anon_sym_impl] = ACTIONS(2403), - [anon_sym_let] = ACTIONS(2403), - [anon_sym_loop] = ACTIONS(2403), - [anon_sym_match] = ACTIONS(2403), - [anon_sym_mod] = ACTIONS(2403), - [anon_sym_pub] = ACTIONS(2403), - [anon_sym_return] = ACTIONS(2403), - [anon_sym_static] = ACTIONS(2403), - [anon_sym_struct] = ACTIONS(2403), - [anon_sym_trait] = ACTIONS(2403), - [anon_sym_type] = ACTIONS(2403), - [anon_sym_union] = ACTIONS(2403), - [anon_sym_unsafe] = ACTIONS(2403), - [anon_sym_use] = ACTIONS(2403), - [anon_sym_while] = ACTIONS(2403), - [anon_sym_POUND] = ACTIONS(2401), - [anon_sym_BANG] = ACTIONS(2401), - [anon_sym_extern] = ACTIONS(2403), - [anon_sym_LT] = ACTIONS(2401), - [anon_sym_COLON_COLON] = ACTIONS(2401), - [anon_sym_AMP] = ACTIONS(2401), - [anon_sym_DOT_DOT] = ACTIONS(2401), - [anon_sym_DASH] = ACTIONS(2401), - [anon_sym_PIPE] = ACTIONS(2401), - [anon_sym_yield] = ACTIONS(2403), - [anon_sym_move] = ACTIONS(2403), - [sym_integer_literal] = ACTIONS(2401), - [aux_sym_string_literal_token1] = ACTIONS(2401), - [sym_char_literal] = ACTIONS(2401), - [anon_sym_true] = ACTIONS(2403), - [anon_sym_false] = ACTIONS(2403), - [anon_sym_u8] = ACTIONS(2403), - [anon_sym_i8] = ACTIONS(2403), - [anon_sym_u16] = ACTIONS(2403), - [anon_sym_i16] = ACTIONS(2403), - [anon_sym_u32] = ACTIONS(2403), - [anon_sym_i32] = ACTIONS(2403), - [anon_sym_u64] = ACTIONS(2403), - [anon_sym_i64] = ACTIONS(2403), - [anon_sym_u128] = ACTIONS(2403), - [anon_sym_i128] = ACTIONS(2403), - [anon_sym_isize] = ACTIONS(2403), - [anon_sym_usize] = ACTIONS(2403), - [anon_sym_f32] = ACTIONS(2403), - [anon_sym_f64] = ACTIONS(2403), - [anon_sym_bool] = ACTIONS(2403), - [anon_sym_str] = ACTIONS(2403), - [anon_sym_char] = ACTIONS(2403), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(2401), - [sym_self] = ACTIONS(2403), - [sym_super] = ACTIONS(2403), - [sym_crate] = ACTIONS(2403), - [sym_metavariable] = ACTIONS(2401), - [sym_grit_metavariable] = ACTIONS(2401), - [sym_raw_string_literal] = ACTIONS(2401), - [sym_float_literal] = ACTIONS(2401), + [ts_builtin_sym_end] = ACTIONS(2387), + [sym__primitive_identifier] = ACTIONS(2389), + [anon_sym_SEMI] = ACTIONS(2387), + [anon_sym_macro_rules_BANG] = ACTIONS(2387), + [anon_sym_LPAREN] = ACTIONS(2387), + [anon_sym_LBRACE] = ACTIONS(2387), + [anon_sym_RBRACE] = ACTIONS(2387), + [anon_sym_LBRACK] = ACTIONS(2387), + [anon_sym_STAR] = ACTIONS(2387), + [anon_sym_SQUOTE] = ACTIONS(2389), + [anon_sym_async] = ACTIONS(2389), + [anon_sym_break] = ACTIONS(2389), + [anon_sym_const] = ACTIONS(2389), + [anon_sym_continue] = ACTIONS(2389), + [anon_sym_default] = ACTIONS(2389), + [anon_sym_enum] = ACTIONS(2389), + [anon_sym_fn] = ACTIONS(2389), + [anon_sym_for] = ACTIONS(2389), + [anon_sym_if] = ACTIONS(2389), + [anon_sym_impl] = ACTIONS(2389), + [anon_sym_let] = ACTIONS(2389), + [anon_sym_loop] = ACTIONS(2389), + [anon_sym_match] = ACTIONS(2389), + [anon_sym_mod] = ACTIONS(2389), + [anon_sym_pub] = ACTIONS(2389), + [anon_sym_return] = ACTIONS(2389), + [anon_sym_static] = ACTIONS(2389), + [anon_sym_struct] = ACTIONS(2389), + [anon_sym_trait] = ACTIONS(2389), + [anon_sym_type] = ACTIONS(2389), + [anon_sym_union] = ACTIONS(2389), + [anon_sym_unsafe] = ACTIONS(2389), + [anon_sym_use] = ACTIONS(2389), + [anon_sym_while] = ACTIONS(2389), + [anon_sym_POUND] = ACTIONS(2387), + [anon_sym_BANG] = ACTIONS(2387), + [anon_sym_extern] = ACTIONS(2389), + [anon_sym_LT] = ACTIONS(2387), + [anon_sym_COLON_COLON] = ACTIONS(2387), + [anon_sym_AMP] = ACTIONS(2387), + [anon_sym_DOT_DOT] = ACTIONS(2387), + [anon_sym_DASH] = ACTIONS(2387), + [anon_sym_PIPE] = ACTIONS(2387), + [anon_sym_yield] = ACTIONS(2389), + [anon_sym_move] = ACTIONS(2389), + [sym_integer_literal] = ACTIONS(2387), + [aux_sym_string_literal_token1] = ACTIONS(2387), + [sym_char_literal] = ACTIONS(2387), + [anon_sym_true] = ACTIONS(2389), + [anon_sym_false] = ACTIONS(2389), + [anon_sym_u8] = ACTIONS(2389), + [anon_sym_i8] = ACTIONS(2389), + [anon_sym_u16] = ACTIONS(2389), + [anon_sym_i16] = ACTIONS(2389), + [anon_sym_u32] = ACTIONS(2389), + [anon_sym_i32] = ACTIONS(2389), + [anon_sym_u64] = ACTIONS(2389), + [anon_sym_i64] = ACTIONS(2389), + [anon_sym_u128] = ACTIONS(2389), + [anon_sym_i128] = ACTIONS(2389), + [anon_sym_isize] = ACTIONS(2389), + [anon_sym_usize] = ACTIONS(2389), + [anon_sym_f32] = ACTIONS(2389), + [anon_sym_f64] = ACTIONS(2389), + [anon_sym_bool] = ACTIONS(2389), + [anon_sym_str] = ACTIONS(2389), + [anon_sym_char] = ACTIONS(2389), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(2387), + [sym_self] = ACTIONS(2389), + [sym_super] = ACTIONS(2389), + [sym_crate] = ACTIONS(2389), + [sym_metavariable] = ACTIONS(2387), + [sym_grit_metavariable] = ACTIONS(2387), + [sym_raw_string_literal] = ACTIONS(2387), + [sym_float_literal] = ACTIONS(2387), [sym_block_comment] = ACTIONS(3), }, [501] = { - [ts_builtin_sym_end] = ACTIONS(2405), - [sym__primitive_identifier] = ACTIONS(2407), - [anon_sym_SEMI] = ACTIONS(2405), - [anon_sym_macro_rules_BANG] = ACTIONS(2405), - [anon_sym_LPAREN] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2405), - [anon_sym_RBRACE] = ACTIONS(2405), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2405), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_async] = ACTIONS(2407), - [anon_sym_break] = ACTIONS(2407), - [anon_sym_const] = ACTIONS(2407), - [anon_sym_continue] = ACTIONS(2407), - [anon_sym_default] = ACTIONS(2407), - [anon_sym_enum] = ACTIONS(2407), - [anon_sym_fn] = ACTIONS(2407), - [anon_sym_for] = ACTIONS(2407), - [anon_sym_if] = ACTIONS(2407), - [anon_sym_impl] = ACTIONS(2407), - [anon_sym_let] = ACTIONS(2407), - [anon_sym_loop] = ACTIONS(2407), - [anon_sym_match] = ACTIONS(2407), - [anon_sym_mod] = ACTIONS(2407), - [anon_sym_pub] = ACTIONS(2407), - [anon_sym_return] = ACTIONS(2407), - [anon_sym_static] = ACTIONS(2407), - [anon_sym_struct] = ACTIONS(2407), - [anon_sym_trait] = ACTIONS(2407), - [anon_sym_type] = ACTIONS(2407), - [anon_sym_union] = ACTIONS(2407), - [anon_sym_unsafe] = ACTIONS(2407), - [anon_sym_use] = ACTIONS(2407), - [anon_sym_while] = ACTIONS(2407), - [anon_sym_POUND] = ACTIONS(2405), - [anon_sym_BANG] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2407), - [anon_sym_LT] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2405), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_DOT_DOT] = ACTIONS(2405), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PIPE] = ACTIONS(2405), - [anon_sym_yield] = ACTIONS(2407), - [anon_sym_move] = ACTIONS(2407), - [sym_integer_literal] = ACTIONS(2405), - [aux_sym_string_literal_token1] = ACTIONS(2405), - [sym_char_literal] = ACTIONS(2405), - [anon_sym_true] = ACTIONS(2407), - [anon_sym_false] = ACTIONS(2407), - [anon_sym_u8] = ACTIONS(2407), - [anon_sym_i8] = ACTIONS(2407), - [anon_sym_u16] = ACTIONS(2407), - [anon_sym_i16] = ACTIONS(2407), - [anon_sym_u32] = ACTIONS(2407), - [anon_sym_i32] = ACTIONS(2407), - [anon_sym_u64] = ACTIONS(2407), - [anon_sym_i64] = ACTIONS(2407), - [anon_sym_u128] = ACTIONS(2407), - [anon_sym_i128] = ACTIONS(2407), - [anon_sym_isize] = ACTIONS(2407), - [anon_sym_usize] = ACTIONS(2407), - [anon_sym_f32] = ACTIONS(2407), - [anon_sym_f64] = ACTIONS(2407), - [anon_sym_bool] = ACTIONS(2407), - [anon_sym_str] = ACTIONS(2407), - [anon_sym_char] = ACTIONS(2407), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(2405), - [sym_self] = ACTIONS(2407), - [sym_super] = ACTIONS(2407), - [sym_crate] = ACTIONS(2407), - [sym_metavariable] = ACTIONS(2405), - [sym_grit_metavariable] = ACTIONS(2405), - [sym_raw_string_literal] = ACTIONS(2405), - [sym_float_literal] = ACTIONS(2405), + [ts_builtin_sym_end] = ACTIONS(2391), + [sym__primitive_identifier] = ACTIONS(2393), + [anon_sym_SEMI] = ACTIONS(2391), + [anon_sym_macro_rules_BANG] = ACTIONS(2391), + [anon_sym_LPAREN] = ACTIONS(2391), + [anon_sym_LBRACE] = ACTIONS(2391), + [anon_sym_RBRACE] = ACTIONS(2391), + [anon_sym_LBRACK] = ACTIONS(2391), + [anon_sym_STAR] = ACTIONS(2391), + [anon_sym_SQUOTE] = ACTIONS(2393), + [anon_sym_async] = ACTIONS(2393), + [anon_sym_break] = ACTIONS(2393), + [anon_sym_const] = ACTIONS(2393), + [anon_sym_continue] = ACTIONS(2393), + [anon_sym_default] = ACTIONS(2393), + [anon_sym_enum] = ACTIONS(2393), + [anon_sym_fn] = ACTIONS(2393), + [anon_sym_for] = ACTIONS(2393), + [anon_sym_if] = ACTIONS(2393), + [anon_sym_impl] = ACTIONS(2393), + [anon_sym_let] = ACTIONS(2393), + [anon_sym_loop] = ACTIONS(2393), + [anon_sym_match] = ACTIONS(2393), + [anon_sym_mod] = ACTIONS(2393), + [anon_sym_pub] = ACTIONS(2393), + [anon_sym_return] = ACTIONS(2393), + [anon_sym_static] = ACTIONS(2393), + [anon_sym_struct] = ACTIONS(2393), + [anon_sym_trait] = ACTIONS(2393), + [anon_sym_type] = ACTIONS(2393), + [anon_sym_union] = ACTIONS(2393), + [anon_sym_unsafe] = ACTIONS(2393), + [anon_sym_use] = ACTIONS(2393), + [anon_sym_while] = ACTIONS(2393), + [anon_sym_POUND] = ACTIONS(2391), + [anon_sym_BANG] = ACTIONS(2391), + [anon_sym_extern] = ACTIONS(2393), + [anon_sym_LT] = ACTIONS(2391), + [anon_sym_COLON_COLON] = ACTIONS(2391), + [anon_sym_AMP] = ACTIONS(2391), + [anon_sym_DOT_DOT] = ACTIONS(2391), + [anon_sym_DASH] = ACTIONS(2391), + [anon_sym_PIPE] = ACTIONS(2391), + [anon_sym_yield] = ACTIONS(2393), + [anon_sym_move] = ACTIONS(2393), + [sym_integer_literal] = ACTIONS(2391), + [aux_sym_string_literal_token1] = ACTIONS(2391), + [sym_char_literal] = ACTIONS(2391), + [anon_sym_true] = ACTIONS(2393), + [anon_sym_false] = ACTIONS(2393), + [anon_sym_u8] = ACTIONS(2393), + [anon_sym_i8] = ACTIONS(2393), + [anon_sym_u16] = ACTIONS(2393), + [anon_sym_i16] = ACTIONS(2393), + [anon_sym_u32] = ACTIONS(2393), + [anon_sym_i32] = ACTIONS(2393), + [anon_sym_u64] = ACTIONS(2393), + [anon_sym_i64] = ACTIONS(2393), + [anon_sym_u128] = ACTIONS(2393), + [anon_sym_i128] = ACTIONS(2393), + [anon_sym_isize] = ACTIONS(2393), + [anon_sym_usize] = ACTIONS(2393), + [anon_sym_f32] = ACTIONS(2393), + [anon_sym_f64] = ACTIONS(2393), + [anon_sym_bool] = ACTIONS(2393), + [anon_sym_str] = ACTIONS(2393), + [anon_sym_char] = ACTIONS(2393), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(2391), + [sym_self] = ACTIONS(2393), + [sym_super] = ACTIONS(2393), + [sym_crate] = ACTIONS(2393), + [sym_metavariable] = ACTIONS(2391), + [sym_grit_metavariable] = ACTIONS(2391), + [sym_raw_string_literal] = ACTIONS(2391), + [sym_float_literal] = ACTIONS(2391), [sym_block_comment] = ACTIONS(3), }, [502] = { - [ts_builtin_sym_end] = ACTIONS(2409), - [sym__primitive_identifier] = ACTIONS(2411), - [anon_sym_SEMI] = ACTIONS(2409), - [anon_sym_macro_rules_BANG] = ACTIONS(2409), - [anon_sym_LPAREN] = ACTIONS(2409), - [anon_sym_LBRACE] = ACTIONS(2409), - [anon_sym_RBRACE] = ACTIONS(2409), - [anon_sym_LBRACK] = ACTIONS(2409), - [anon_sym_STAR] = ACTIONS(2409), - [anon_sym_SQUOTE] = ACTIONS(2411), - [anon_sym_async] = ACTIONS(2411), - [anon_sym_break] = ACTIONS(2411), - [anon_sym_const] = ACTIONS(2411), - [anon_sym_continue] = ACTIONS(2411), - [anon_sym_default] = ACTIONS(2411), - [anon_sym_enum] = ACTIONS(2411), - [anon_sym_fn] = ACTIONS(2411), - [anon_sym_for] = ACTIONS(2411), - [anon_sym_if] = ACTIONS(2411), - [anon_sym_impl] = ACTIONS(2411), - [anon_sym_let] = ACTIONS(2411), - [anon_sym_loop] = ACTIONS(2411), - [anon_sym_match] = ACTIONS(2411), - [anon_sym_mod] = ACTIONS(2411), - [anon_sym_pub] = ACTIONS(2411), - [anon_sym_return] = ACTIONS(2411), - [anon_sym_static] = ACTIONS(2411), - [anon_sym_struct] = ACTIONS(2411), - [anon_sym_trait] = ACTIONS(2411), - [anon_sym_type] = ACTIONS(2411), - [anon_sym_union] = ACTIONS(2411), - [anon_sym_unsafe] = ACTIONS(2411), - [anon_sym_use] = ACTIONS(2411), - [anon_sym_while] = ACTIONS(2411), - [anon_sym_POUND] = ACTIONS(2409), - [anon_sym_BANG] = ACTIONS(2409), - [anon_sym_extern] = ACTIONS(2411), - [anon_sym_LT] = ACTIONS(2409), - [anon_sym_COLON_COLON] = ACTIONS(2409), - [anon_sym_AMP] = ACTIONS(2409), - [anon_sym_DOT_DOT] = ACTIONS(2409), - [anon_sym_DASH] = ACTIONS(2409), - [anon_sym_PIPE] = ACTIONS(2409), - [anon_sym_yield] = ACTIONS(2411), - [anon_sym_move] = ACTIONS(2411), - [sym_integer_literal] = ACTIONS(2409), - [aux_sym_string_literal_token1] = ACTIONS(2409), - [sym_char_literal] = ACTIONS(2409), - [anon_sym_true] = ACTIONS(2411), - [anon_sym_false] = ACTIONS(2411), - [anon_sym_u8] = ACTIONS(2411), - [anon_sym_i8] = ACTIONS(2411), - [anon_sym_u16] = ACTIONS(2411), - [anon_sym_i16] = ACTIONS(2411), - [anon_sym_u32] = ACTIONS(2411), - [anon_sym_i32] = ACTIONS(2411), - [anon_sym_u64] = ACTIONS(2411), - [anon_sym_i64] = ACTIONS(2411), - [anon_sym_u128] = ACTIONS(2411), - [anon_sym_i128] = ACTIONS(2411), - [anon_sym_isize] = ACTIONS(2411), - [anon_sym_usize] = ACTIONS(2411), - [anon_sym_f32] = ACTIONS(2411), - [anon_sym_f64] = ACTIONS(2411), - [anon_sym_bool] = ACTIONS(2411), - [anon_sym_str] = ACTIONS(2411), - [anon_sym_char] = ACTIONS(2411), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(2409), - [sym_self] = ACTIONS(2411), - [sym_super] = ACTIONS(2411), - [sym_crate] = ACTIONS(2411), - [sym_metavariable] = ACTIONS(2409), - [sym_grit_metavariable] = ACTIONS(2409), - [sym_raw_string_literal] = ACTIONS(2409), - [sym_float_literal] = ACTIONS(2409), + [ts_builtin_sym_end] = ACTIONS(2395), + [sym__primitive_identifier] = ACTIONS(2397), + [anon_sym_SEMI] = ACTIONS(2395), + [anon_sym_macro_rules_BANG] = ACTIONS(2395), + [anon_sym_LPAREN] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2395), + [anon_sym_RBRACE] = ACTIONS(2395), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2395), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_async] = ACTIONS(2397), + [anon_sym_break] = ACTIONS(2397), + [anon_sym_const] = ACTIONS(2397), + [anon_sym_continue] = ACTIONS(2397), + [anon_sym_default] = ACTIONS(2397), + [anon_sym_enum] = ACTIONS(2397), + [anon_sym_fn] = ACTIONS(2397), + [anon_sym_for] = ACTIONS(2397), + [anon_sym_if] = ACTIONS(2397), + [anon_sym_impl] = ACTIONS(2397), + [anon_sym_let] = ACTIONS(2397), + [anon_sym_loop] = ACTIONS(2397), + [anon_sym_match] = ACTIONS(2397), + [anon_sym_mod] = ACTIONS(2397), + [anon_sym_pub] = ACTIONS(2397), + [anon_sym_return] = ACTIONS(2397), + [anon_sym_static] = ACTIONS(2397), + [anon_sym_struct] = ACTIONS(2397), + [anon_sym_trait] = ACTIONS(2397), + [anon_sym_type] = ACTIONS(2397), + [anon_sym_union] = ACTIONS(2397), + [anon_sym_unsafe] = ACTIONS(2397), + [anon_sym_use] = ACTIONS(2397), + [anon_sym_while] = ACTIONS(2397), + [anon_sym_POUND] = ACTIONS(2395), + [anon_sym_BANG] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2397), + [anon_sym_LT] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2395), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_DOT_DOT] = ACTIONS(2395), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PIPE] = ACTIONS(2395), + [anon_sym_yield] = ACTIONS(2397), + [anon_sym_move] = ACTIONS(2397), + [sym_integer_literal] = ACTIONS(2395), + [aux_sym_string_literal_token1] = ACTIONS(2395), + [sym_char_literal] = ACTIONS(2395), + [anon_sym_true] = ACTIONS(2397), + [anon_sym_false] = ACTIONS(2397), + [anon_sym_u8] = ACTIONS(2397), + [anon_sym_i8] = ACTIONS(2397), + [anon_sym_u16] = ACTIONS(2397), + [anon_sym_i16] = ACTIONS(2397), + [anon_sym_u32] = ACTIONS(2397), + [anon_sym_i32] = ACTIONS(2397), + [anon_sym_u64] = ACTIONS(2397), + [anon_sym_i64] = ACTIONS(2397), + [anon_sym_u128] = ACTIONS(2397), + [anon_sym_i128] = ACTIONS(2397), + [anon_sym_isize] = ACTIONS(2397), + [anon_sym_usize] = ACTIONS(2397), + [anon_sym_f32] = ACTIONS(2397), + [anon_sym_f64] = ACTIONS(2397), + [anon_sym_bool] = ACTIONS(2397), + [anon_sym_str] = ACTIONS(2397), + [anon_sym_char] = ACTIONS(2397), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(2395), + [sym_self] = ACTIONS(2397), + [sym_super] = ACTIONS(2397), + [sym_crate] = ACTIONS(2397), + [sym_metavariable] = ACTIONS(2395), + [sym_grit_metavariable] = ACTIONS(2395), + [sym_raw_string_literal] = ACTIONS(2395), + [sym_float_literal] = ACTIONS(2395), [sym_block_comment] = ACTIONS(3), }, [503] = { - [ts_builtin_sym_end] = ACTIONS(2413), - [sym__primitive_identifier] = ACTIONS(2415), - [anon_sym_SEMI] = ACTIONS(2413), - [anon_sym_macro_rules_BANG] = ACTIONS(2413), - [anon_sym_LPAREN] = ACTIONS(2413), - [anon_sym_LBRACE] = ACTIONS(2413), - [anon_sym_RBRACE] = ACTIONS(2413), - [anon_sym_LBRACK] = ACTIONS(2413), - [anon_sym_STAR] = ACTIONS(2413), - [anon_sym_SQUOTE] = ACTIONS(2415), - [anon_sym_async] = ACTIONS(2415), - [anon_sym_break] = ACTIONS(2415), - [anon_sym_const] = ACTIONS(2415), - [anon_sym_continue] = ACTIONS(2415), - [anon_sym_default] = ACTIONS(2415), - [anon_sym_enum] = ACTIONS(2415), - [anon_sym_fn] = ACTIONS(2415), - [anon_sym_for] = ACTIONS(2415), - [anon_sym_if] = ACTIONS(2415), - [anon_sym_impl] = ACTIONS(2415), - [anon_sym_let] = ACTIONS(2415), - [anon_sym_loop] = ACTIONS(2415), - [anon_sym_match] = ACTIONS(2415), - [anon_sym_mod] = ACTIONS(2415), - [anon_sym_pub] = ACTIONS(2415), - [anon_sym_return] = ACTIONS(2415), - [anon_sym_static] = ACTIONS(2415), - [anon_sym_struct] = ACTIONS(2415), - [anon_sym_trait] = ACTIONS(2415), - [anon_sym_type] = ACTIONS(2415), - [anon_sym_union] = ACTIONS(2415), - [anon_sym_unsafe] = ACTIONS(2415), - [anon_sym_use] = ACTIONS(2415), - [anon_sym_while] = ACTIONS(2415), - [anon_sym_POUND] = ACTIONS(2413), - [anon_sym_BANG] = ACTIONS(2413), - [anon_sym_extern] = ACTIONS(2415), - [anon_sym_LT] = ACTIONS(2413), - [anon_sym_COLON_COLON] = ACTIONS(2413), - [anon_sym_AMP] = ACTIONS(2413), - [anon_sym_DOT_DOT] = ACTIONS(2413), - [anon_sym_DASH] = ACTIONS(2413), - [anon_sym_PIPE] = ACTIONS(2413), - [anon_sym_yield] = ACTIONS(2415), - [anon_sym_move] = ACTIONS(2415), - [sym_integer_literal] = ACTIONS(2413), - [aux_sym_string_literal_token1] = ACTIONS(2413), - [sym_char_literal] = ACTIONS(2413), - [anon_sym_true] = ACTIONS(2415), - [anon_sym_false] = ACTIONS(2415), - [anon_sym_u8] = ACTIONS(2415), - [anon_sym_i8] = ACTIONS(2415), - [anon_sym_u16] = ACTIONS(2415), - [anon_sym_i16] = ACTIONS(2415), - [anon_sym_u32] = ACTIONS(2415), - [anon_sym_i32] = ACTIONS(2415), - [anon_sym_u64] = ACTIONS(2415), - [anon_sym_i64] = ACTIONS(2415), - [anon_sym_u128] = ACTIONS(2415), - [anon_sym_i128] = ACTIONS(2415), - [anon_sym_isize] = ACTIONS(2415), - [anon_sym_usize] = ACTIONS(2415), - [anon_sym_f32] = ACTIONS(2415), - [anon_sym_f64] = ACTIONS(2415), - [anon_sym_bool] = ACTIONS(2415), - [anon_sym_str] = ACTIONS(2415), - [anon_sym_char] = ACTIONS(2415), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(2413), - [sym_self] = ACTIONS(2415), - [sym_super] = ACTIONS(2415), - [sym_crate] = ACTIONS(2415), - [sym_metavariable] = ACTIONS(2413), - [sym_grit_metavariable] = ACTIONS(2413), - [sym_raw_string_literal] = ACTIONS(2413), - [sym_float_literal] = ACTIONS(2413), + [ts_builtin_sym_end] = ACTIONS(2399), + [sym__primitive_identifier] = ACTIONS(2401), + [anon_sym_SEMI] = ACTIONS(2399), + [anon_sym_macro_rules_BANG] = ACTIONS(2399), + [anon_sym_LPAREN] = ACTIONS(2399), + [anon_sym_LBRACE] = ACTIONS(2399), + [anon_sym_RBRACE] = ACTIONS(2399), + [anon_sym_LBRACK] = ACTIONS(2399), + [anon_sym_STAR] = ACTIONS(2399), + [anon_sym_SQUOTE] = ACTIONS(2401), + [anon_sym_async] = ACTIONS(2401), + [anon_sym_break] = ACTIONS(2401), + [anon_sym_const] = ACTIONS(2401), + [anon_sym_continue] = ACTIONS(2401), + [anon_sym_default] = ACTIONS(2401), + [anon_sym_enum] = ACTIONS(2401), + [anon_sym_fn] = ACTIONS(2401), + [anon_sym_for] = ACTIONS(2401), + [anon_sym_if] = ACTIONS(2401), + [anon_sym_impl] = ACTIONS(2401), + [anon_sym_let] = ACTIONS(2401), + [anon_sym_loop] = ACTIONS(2401), + [anon_sym_match] = ACTIONS(2401), + [anon_sym_mod] = ACTIONS(2401), + [anon_sym_pub] = ACTIONS(2401), + [anon_sym_return] = ACTIONS(2401), + [anon_sym_static] = ACTIONS(2401), + [anon_sym_struct] = ACTIONS(2401), + [anon_sym_trait] = ACTIONS(2401), + [anon_sym_type] = ACTIONS(2401), + [anon_sym_union] = ACTIONS(2401), + [anon_sym_unsafe] = ACTIONS(2401), + [anon_sym_use] = ACTIONS(2401), + [anon_sym_while] = ACTIONS(2401), + [anon_sym_POUND] = ACTIONS(2399), + [anon_sym_BANG] = ACTIONS(2399), + [anon_sym_extern] = ACTIONS(2401), + [anon_sym_LT] = ACTIONS(2399), + [anon_sym_COLON_COLON] = ACTIONS(2399), + [anon_sym_AMP] = ACTIONS(2399), + [anon_sym_DOT_DOT] = ACTIONS(2399), + [anon_sym_DASH] = ACTIONS(2399), + [anon_sym_PIPE] = ACTIONS(2399), + [anon_sym_yield] = ACTIONS(2401), + [anon_sym_move] = ACTIONS(2401), + [sym_integer_literal] = ACTIONS(2399), + [aux_sym_string_literal_token1] = ACTIONS(2399), + [sym_char_literal] = ACTIONS(2399), + [anon_sym_true] = ACTIONS(2401), + [anon_sym_false] = ACTIONS(2401), + [anon_sym_u8] = ACTIONS(2401), + [anon_sym_i8] = ACTIONS(2401), + [anon_sym_u16] = ACTIONS(2401), + [anon_sym_i16] = ACTIONS(2401), + [anon_sym_u32] = ACTIONS(2401), + [anon_sym_i32] = ACTIONS(2401), + [anon_sym_u64] = ACTIONS(2401), + [anon_sym_i64] = ACTIONS(2401), + [anon_sym_u128] = ACTIONS(2401), + [anon_sym_i128] = ACTIONS(2401), + [anon_sym_isize] = ACTIONS(2401), + [anon_sym_usize] = ACTIONS(2401), + [anon_sym_f32] = ACTIONS(2401), + [anon_sym_f64] = ACTIONS(2401), + [anon_sym_bool] = ACTIONS(2401), + [anon_sym_str] = ACTIONS(2401), + [anon_sym_char] = ACTIONS(2401), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(2399), + [sym_self] = ACTIONS(2401), + [sym_super] = ACTIONS(2401), + [sym_crate] = ACTIONS(2401), + [sym_metavariable] = ACTIONS(2399), + [sym_grit_metavariable] = ACTIONS(2399), + [sym_raw_string_literal] = ACTIONS(2399), + [sym_float_literal] = ACTIONS(2399), [sym_block_comment] = ACTIONS(3), }, [504] = { - [ts_builtin_sym_end] = ACTIONS(685), - [sym__primitive_identifier] = ACTIONS(687), - [anon_sym_SEMI] = ACTIONS(685), - [anon_sym_macro_rules_BANG] = ACTIONS(685), - [anon_sym_LPAREN] = ACTIONS(685), - [anon_sym_LBRACE] = ACTIONS(685), - [anon_sym_RBRACE] = ACTIONS(685), - [anon_sym_LBRACK] = ACTIONS(685), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_SQUOTE] = ACTIONS(687), - [anon_sym_async] = ACTIONS(687), - [anon_sym_break] = ACTIONS(687), - [anon_sym_const] = ACTIONS(687), - [anon_sym_continue] = ACTIONS(687), - [anon_sym_default] = ACTIONS(687), - [anon_sym_enum] = ACTIONS(687), - [anon_sym_fn] = ACTIONS(687), - [anon_sym_for] = ACTIONS(687), - [anon_sym_if] = ACTIONS(687), - [anon_sym_impl] = ACTIONS(687), - [anon_sym_let] = ACTIONS(687), - [anon_sym_loop] = ACTIONS(687), - [anon_sym_match] = ACTIONS(687), - [anon_sym_mod] = ACTIONS(687), - [anon_sym_pub] = ACTIONS(687), - [anon_sym_return] = ACTIONS(687), - [anon_sym_static] = ACTIONS(687), - [anon_sym_struct] = ACTIONS(687), - [anon_sym_trait] = ACTIONS(687), - [anon_sym_type] = ACTIONS(687), - [anon_sym_union] = ACTIONS(687), - [anon_sym_unsafe] = ACTIONS(687), - [anon_sym_use] = ACTIONS(687), - [anon_sym_while] = ACTIONS(687), - [anon_sym_POUND] = ACTIONS(685), - [anon_sym_BANG] = ACTIONS(685), - [anon_sym_extern] = ACTIONS(687), - [anon_sym_LT] = ACTIONS(685), - [anon_sym_COLON_COLON] = ACTIONS(685), - [anon_sym_AMP] = ACTIONS(685), - [anon_sym_DOT_DOT] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_PIPE] = ACTIONS(685), - [anon_sym_yield] = ACTIONS(687), - [anon_sym_move] = ACTIONS(687), - [sym_integer_literal] = ACTIONS(685), - [aux_sym_string_literal_token1] = ACTIONS(685), - [sym_char_literal] = ACTIONS(685), - [anon_sym_true] = ACTIONS(687), - [anon_sym_false] = ACTIONS(687), - [anon_sym_u8] = ACTIONS(687), - [anon_sym_i8] = ACTIONS(687), - [anon_sym_u16] = ACTIONS(687), - [anon_sym_i16] = ACTIONS(687), - [anon_sym_u32] = ACTIONS(687), - [anon_sym_i32] = ACTIONS(687), - [anon_sym_u64] = ACTIONS(687), - [anon_sym_i64] = ACTIONS(687), - [anon_sym_u128] = ACTIONS(687), - [anon_sym_i128] = ACTIONS(687), - [anon_sym_isize] = ACTIONS(687), - [anon_sym_usize] = ACTIONS(687), - [anon_sym_f32] = ACTIONS(687), - [anon_sym_f64] = ACTIONS(687), - [anon_sym_bool] = ACTIONS(687), - [anon_sym_str] = ACTIONS(687), - [anon_sym_char] = ACTIONS(687), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(685), - [sym_self] = ACTIONS(687), - [sym_super] = ACTIONS(687), - [sym_crate] = ACTIONS(687), - [sym_metavariable] = ACTIONS(685), - [sym_grit_metavariable] = ACTIONS(685), - [sym_raw_string_literal] = ACTIONS(685), - [sym_float_literal] = ACTIONS(685), + [ts_builtin_sym_end] = ACTIONS(2403), + [sym__primitive_identifier] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2403), + [anon_sym_macro_rules_BANG] = ACTIONS(2403), + [anon_sym_LPAREN] = ACTIONS(2403), + [anon_sym_LBRACE] = ACTIONS(2403), + [anon_sym_RBRACE] = ACTIONS(2403), + [anon_sym_LBRACK] = ACTIONS(2403), + [anon_sym_STAR] = ACTIONS(2403), + [anon_sym_SQUOTE] = ACTIONS(2405), + [anon_sym_async] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_fn] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_impl] = ACTIONS(2405), + [anon_sym_let] = ACTIONS(2405), + [anon_sym_loop] = ACTIONS(2405), + [anon_sym_match] = ACTIONS(2405), + [anon_sym_mod] = ACTIONS(2405), + [anon_sym_pub] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_trait] = ACTIONS(2405), + [anon_sym_type] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_unsafe] = ACTIONS(2405), + [anon_sym_use] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_POUND] = ACTIONS(2403), + [anon_sym_BANG] = ACTIONS(2403), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym_LT] = ACTIONS(2403), + [anon_sym_COLON_COLON] = ACTIONS(2403), + [anon_sym_AMP] = ACTIONS(2403), + [anon_sym_DOT_DOT] = ACTIONS(2403), + [anon_sym_DASH] = ACTIONS(2403), + [anon_sym_PIPE] = ACTIONS(2403), + [anon_sym_yield] = ACTIONS(2405), + [anon_sym_move] = ACTIONS(2405), + [sym_integer_literal] = ACTIONS(2403), + [aux_sym_string_literal_token1] = ACTIONS(2403), + [sym_char_literal] = ACTIONS(2403), + [anon_sym_true] = ACTIONS(2405), + [anon_sym_false] = ACTIONS(2405), + [anon_sym_u8] = ACTIONS(2405), + [anon_sym_i8] = ACTIONS(2405), + [anon_sym_u16] = ACTIONS(2405), + [anon_sym_i16] = ACTIONS(2405), + [anon_sym_u32] = ACTIONS(2405), + [anon_sym_i32] = ACTIONS(2405), + [anon_sym_u64] = ACTIONS(2405), + [anon_sym_i64] = ACTIONS(2405), + [anon_sym_u128] = ACTIONS(2405), + [anon_sym_i128] = ACTIONS(2405), + [anon_sym_isize] = ACTIONS(2405), + [anon_sym_usize] = ACTIONS(2405), + [anon_sym_f32] = ACTIONS(2405), + [anon_sym_f64] = ACTIONS(2405), + [anon_sym_bool] = ACTIONS(2405), + [anon_sym_str] = ACTIONS(2405), + [anon_sym_char] = ACTIONS(2405), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(2403), + [sym_self] = ACTIONS(2405), + [sym_super] = ACTIONS(2405), + [sym_crate] = ACTIONS(2405), + [sym_metavariable] = ACTIONS(2403), + [sym_grit_metavariable] = ACTIONS(2403), + [sym_raw_string_literal] = ACTIONS(2403), + [sym_float_literal] = ACTIONS(2403), [sym_block_comment] = ACTIONS(3), }, [505] = { - [ts_builtin_sym_end] = ACTIONS(693), - [sym__primitive_identifier] = ACTIONS(695), - [anon_sym_SEMI] = ACTIONS(693), - [anon_sym_macro_rules_BANG] = ACTIONS(693), - [anon_sym_LPAREN] = ACTIONS(693), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(693), - [anon_sym_LBRACK] = ACTIONS(693), - [anon_sym_STAR] = ACTIONS(693), - [anon_sym_SQUOTE] = ACTIONS(695), - [anon_sym_async] = ACTIONS(695), - [anon_sym_break] = ACTIONS(695), - [anon_sym_const] = ACTIONS(695), - [anon_sym_continue] = ACTIONS(695), - [anon_sym_default] = ACTIONS(695), - [anon_sym_enum] = ACTIONS(695), - [anon_sym_fn] = ACTIONS(695), - [anon_sym_for] = ACTIONS(695), - [anon_sym_if] = ACTIONS(695), - [anon_sym_impl] = ACTIONS(695), - [anon_sym_let] = ACTIONS(695), - [anon_sym_loop] = ACTIONS(695), - [anon_sym_match] = ACTIONS(695), - [anon_sym_mod] = ACTIONS(695), - [anon_sym_pub] = ACTIONS(695), - [anon_sym_return] = ACTIONS(695), - [anon_sym_static] = ACTIONS(695), - [anon_sym_struct] = ACTIONS(695), - [anon_sym_trait] = ACTIONS(695), - [anon_sym_type] = ACTIONS(695), - [anon_sym_union] = ACTIONS(695), - [anon_sym_unsafe] = ACTIONS(695), - [anon_sym_use] = ACTIONS(695), - [anon_sym_while] = ACTIONS(695), - [anon_sym_POUND] = ACTIONS(693), - [anon_sym_BANG] = ACTIONS(693), - [anon_sym_extern] = ACTIONS(695), - [anon_sym_LT] = ACTIONS(693), - [anon_sym_COLON_COLON] = ACTIONS(693), - [anon_sym_AMP] = ACTIONS(693), - [anon_sym_DOT_DOT] = ACTIONS(693), - [anon_sym_DASH] = ACTIONS(693), - [anon_sym_PIPE] = ACTIONS(693), - [anon_sym_yield] = ACTIONS(695), - [anon_sym_move] = ACTIONS(695), - [sym_integer_literal] = ACTIONS(693), - [aux_sym_string_literal_token1] = ACTIONS(693), - [sym_char_literal] = ACTIONS(693), - [anon_sym_true] = ACTIONS(695), - [anon_sym_false] = ACTIONS(695), - [anon_sym_u8] = ACTIONS(695), - [anon_sym_i8] = ACTIONS(695), - [anon_sym_u16] = ACTIONS(695), - [anon_sym_i16] = ACTIONS(695), - [anon_sym_u32] = ACTIONS(695), - [anon_sym_i32] = ACTIONS(695), - [anon_sym_u64] = ACTIONS(695), - [anon_sym_i64] = ACTIONS(695), - [anon_sym_u128] = ACTIONS(695), - [anon_sym_i128] = ACTIONS(695), - [anon_sym_isize] = ACTIONS(695), - [anon_sym_usize] = ACTIONS(695), - [anon_sym_f32] = ACTIONS(695), - [anon_sym_f64] = ACTIONS(695), - [anon_sym_bool] = ACTIONS(695), - [anon_sym_str] = ACTIONS(695), - [anon_sym_char] = ACTIONS(695), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(693), - [sym_self] = ACTIONS(695), - [sym_super] = ACTIONS(695), - [sym_crate] = ACTIONS(695), - [sym_metavariable] = ACTIONS(693), - [sym_grit_metavariable] = ACTIONS(693), - [sym_raw_string_literal] = ACTIONS(693), - [sym_float_literal] = ACTIONS(693), + [ts_builtin_sym_end] = ACTIONS(2407), + [sym__primitive_identifier] = ACTIONS(2409), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_macro_rules_BANG] = ACTIONS(2407), + [anon_sym_LPAREN] = ACTIONS(2407), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_RBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2407), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2409), + [anon_sym_async] = ACTIONS(2409), + [anon_sym_break] = ACTIONS(2409), + [anon_sym_const] = ACTIONS(2409), + [anon_sym_continue] = ACTIONS(2409), + [anon_sym_default] = ACTIONS(2409), + [anon_sym_enum] = ACTIONS(2409), + [anon_sym_fn] = ACTIONS(2409), + [anon_sym_for] = ACTIONS(2409), + [anon_sym_if] = ACTIONS(2409), + [anon_sym_impl] = ACTIONS(2409), + [anon_sym_let] = ACTIONS(2409), + [anon_sym_loop] = ACTIONS(2409), + [anon_sym_match] = ACTIONS(2409), + [anon_sym_mod] = ACTIONS(2409), + [anon_sym_pub] = ACTIONS(2409), + [anon_sym_return] = ACTIONS(2409), + [anon_sym_static] = ACTIONS(2409), + [anon_sym_struct] = ACTIONS(2409), + [anon_sym_trait] = ACTIONS(2409), + [anon_sym_type] = ACTIONS(2409), + [anon_sym_union] = ACTIONS(2409), + [anon_sym_unsafe] = ACTIONS(2409), + [anon_sym_use] = ACTIONS(2409), + [anon_sym_while] = ACTIONS(2409), + [anon_sym_POUND] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_extern] = ACTIONS(2409), + [anon_sym_LT] = ACTIONS(2407), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2407), + [anon_sym_DOT_DOT] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2407), + [anon_sym_PIPE] = ACTIONS(2407), + [anon_sym_yield] = ACTIONS(2409), + [anon_sym_move] = ACTIONS(2409), + [sym_integer_literal] = ACTIONS(2407), + [aux_sym_string_literal_token1] = ACTIONS(2407), + [sym_char_literal] = ACTIONS(2407), + [anon_sym_true] = ACTIONS(2409), + [anon_sym_false] = ACTIONS(2409), + [anon_sym_u8] = ACTIONS(2409), + [anon_sym_i8] = ACTIONS(2409), + [anon_sym_u16] = ACTIONS(2409), + [anon_sym_i16] = ACTIONS(2409), + [anon_sym_u32] = ACTIONS(2409), + [anon_sym_i32] = ACTIONS(2409), + [anon_sym_u64] = ACTIONS(2409), + [anon_sym_i64] = ACTIONS(2409), + [anon_sym_u128] = ACTIONS(2409), + [anon_sym_i128] = ACTIONS(2409), + [anon_sym_isize] = ACTIONS(2409), + [anon_sym_usize] = ACTIONS(2409), + [anon_sym_f32] = ACTIONS(2409), + [anon_sym_f64] = ACTIONS(2409), + [anon_sym_bool] = ACTIONS(2409), + [anon_sym_str] = ACTIONS(2409), + [anon_sym_char] = ACTIONS(2409), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(2407), + [sym_self] = ACTIONS(2409), + [sym_super] = ACTIONS(2409), + [sym_crate] = ACTIONS(2409), + [sym_metavariable] = ACTIONS(2407), + [sym_grit_metavariable] = ACTIONS(2407), + [sym_raw_string_literal] = ACTIONS(2407), + [sym_float_literal] = ACTIONS(2407), [sym_block_comment] = ACTIONS(3), }, [506] = { - [ts_builtin_sym_end] = ACTIONS(699), - [sym__primitive_identifier] = ACTIONS(701), - [anon_sym_SEMI] = ACTIONS(699), - [anon_sym_macro_rules_BANG] = ACTIONS(699), - [anon_sym_LPAREN] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(699), - [anon_sym_RBRACE] = ACTIONS(699), - [anon_sym_LBRACK] = ACTIONS(699), - [anon_sym_STAR] = ACTIONS(699), - [anon_sym_SQUOTE] = ACTIONS(701), - [anon_sym_async] = ACTIONS(701), - [anon_sym_break] = ACTIONS(701), - [anon_sym_const] = ACTIONS(701), - [anon_sym_continue] = ACTIONS(701), - [anon_sym_default] = ACTIONS(701), - [anon_sym_enum] = ACTIONS(701), - [anon_sym_fn] = ACTIONS(701), - [anon_sym_for] = ACTIONS(701), - [anon_sym_if] = ACTIONS(701), - [anon_sym_impl] = ACTIONS(701), - [anon_sym_let] = ACTIONS(701), - [anon_sym_loop] = ACTIONS(701), - [anon_sym_match] = ACTIONS(701), - [anon_sym_mod] = ACTIONS(701), - [anon_sym_pub] = ACTIONS(701), - [anon_sym_return] = ACTIONS(701), - [anon_sym_static] = ACTIONS(701), - [anon_sym_struct] = ACTIONS(701), - [anon_sym_trait] = ACTIONS(701), - [anon_sym_type] = ACTIONS(701), - [anon_sym_union] = ACTIONS(701), - [anon_sym_unsafe] = ACTIONS(701), - [anon_sym_use] = ACTIONS(701), - [anon_sym_while] = ACTIONS(701), - [anon_sym_POUND] = ACTIONS(699), - [anon_sym_BANG] = ACTIONS(699), - [anon_sym_extern] = ACTIONS(701), - [anon_sym_LT] = ACTIONS(699), - [anon_sym_COLON_COLON] = ACTIONS(699), - [anon_sym_AMP] = ACTIONS(699), - [anon_sym_DOT_DOT] = ACTIONS(699), - [anon_sym_DASH] = ACTIONS(699), - [anon_sym_PIPE] = ACTIONS(699), - [anon_sym_yield] = ACTIONS(701), - [anon_sym_move] = ACTIONS(701), - [sym_integer_literal] = ACTIONS(699), - [aux_sym_string_literal_token1] = ACTIONS(699), - [sym_char_literal] = ACTIONS(699), - [anon_sym_true] = ACTIONS(701), - [anon_sym_false] = ACTIONS(701), - [anon_sym_u8] = ACTIONS(701), - [anon_sym_i8] = ACTIONS(701), - [anon_sym_u16] = ACTIONS(701), - [anon_sym_i16] = ACTIONS(701), - [anon_sym_u32] = ACTIONS(701), - [anon_sym_i32] = ACTIONS(701), - [anon_sym_u64] = ACTIONS(701), - [anon_sym_i64] = ACTIONS(701), - [anon_sym_u128] = ACTIONS(701), - [anon_sym_i128] = ACTIONS(701), - [anon_sym_isize] = ACTIONS(701), - [anon_sym_usize] = ACTIONS(701), - [anon_sym_f32] = ACTIONS(701), - [anon_sym_f64] = ACTIONS(701), - [anon_sym_bool] = ACTIONS(701), - [anon_sym_str] = ACTIONS(701), - [anon_sym_char] = ACTIONS(701), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(699), - [sym_self] = ACTIONS(701), - [sym_super] = ACTIONS(701), - [sym_crate] = ACTIONS(701), - [sym_metavariable] = ACTIONS(699), - [sym_grit_metavariable] = ACTIONS(699), - [sym_raw_string_literal] = ACTIONS(699), - [sym_float_literal] = ACTIONS(699), + [ts_builtin_sym_end] = ACTIONS(2411), + [sym__primitive_identifier] = ACTIONS(2413), + [anon_sym_SEMI] = ACTIONS(2411), + [anon_sym_macro_rules_BANG] = ACTIONS(2411), + [anon_sym_LPAREN] = ACTIONS(2411), + [anon_sym_LBRACE] = ACTIONS(2411), + [anon_sym_RBRACE] = ACTIONS(2411), + [anon_sym_LBRACK] = ACTIONS(2411), + [anon_sym_STAR] = ACTIONS(2411), + [anon_sym_SQUOTE] = ACTIONS(2413), + [anon_sym_async] = ACTIONS(2413), + [anon_sym_break] = ACTIONS(2413), + [anon_sym_const] = ACTIONS(2413), + [anon_sym_continue] = ACTIONS(2413), + [anon_sym_default] = ACTIONS(2413), + [anon_sym_enum] = ACTIONS(2413), + [anon_sym_fn] = ACTIONS(2413), + [anon_sym_for] = ACTIONS(2413), + [anon_sym_if] = ACTIONS(2413), + [anon_sym_impl] = ACTIONS(2413), + [anon_sym_let] = ACTIONS(2413), + [anon_sym_loop] = ACTIONS(2413), + [anon_sym_match] = ACTIONS(2413), + [anon_sym_mod] = ACTIONS(2413), + [anon_sym_pub] = ACTIONS(2413), + [anon_sym_return] = ACTIONS(2413), + [anon_sym_static] = ACTIONS(2413), + [anon_sym_struct] = ACTIONS(2413), + [anon_sym_trait] = ACTIONS(2413), + [anon_sym_type] = ACTIONS(2413), + [anon_sym_union] = ACTIONS(2413), + [anon_sym_unsafe] = ACTIONS(2413), + [anon_sym_use] = ACTIONS(2413), + [anon_sym_while] = ACTIONS(2413), + [anon_sym_POUND] = ACTIONS(2411), + [anon_sym_BANG] = ACTIONS(2411), + [anon_sym_extern] = ACTIONS(2413), + [anon_sym_LT] = ACTIONS(2411), + [anon_sym_COLON_COLON] = ACTIONS(2411), + [anon_sym_AMP] = ACTIONS(2411), + [anon_sym_DOT_DOT] = ACTIONS(2411), + [anon_sym_DASH] = ACTIONS(2411), + [anon_sym_PIPE] = ACTIONS(2411), + [anon_sym_yield] = ACTIONS(2413), + [anon_sym_move] = ACTIONS(2413), + [sym_integer_literal] = ACTIONS(2411), + [aux_sym_string_literal_token1] = ACTIONS(2411), + [sym_char_literal] = ACTIONS(2411), + [anon_sym_true] = ACTIONS(2413), + [anon_sym_false] = ACTIONS(2413), + [anon_sym_u8] = ACTIONS(2413), + [anon_sym_i8] = ACTIONS(2413), + [anon_sym_u16] = ACTIONS(2413), + [anon_sym_i16] = ACTIONS(2413), + [anon_sym_u32] = ACTIONS(2413), + [anon_sym_i32] = ACTIONS(2413), + [anon_sym_u64] = ACTIONS(2413), + [anon_sym_i64] = ACTIONS(2413), + [anon_sym_u128] = ACTIONS(2413), + [anon_sym_i128] = ACTIONS(2413), + [anon_sym_isize] = ACTIONS(2413), + [anon_sym_usize] = ACTIONS(2413), + [anon_sym_f32] = ACTIONS(2413), + [anon_sym_f64] = ACTIONS(2413), + [anon_sym_bool] = ACTIONS(2413), + [anon_sym_str] = ACTIONS(2413), + [anon_sym_char] = ACTIONS(2413), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(2411), + [sym_self] = ACTIONS(2413), + [sym_super] = ACTIONS(2413), + [sym_crate] = ACTIONS(2413), + [sym_metavariable] = ACTIONS(2411), + [sym_grit_metavariable] = ACTIONS(2411), + [sym_raw_string_literal] = ACTIONS(2411), + [sym_float_literal] = ACTIONS(2411), [sym_block_comment] = ACTIONS(3), }, [507] = { - [ts_builtin_sym_end] = ACTIONS(2417), - [sym__primitive_identifier] = ACTIONS(2419), - [anon_sym_SEMI] = ACTIONS(2417), - [anon_sym_macro_rules_BANG] = ACTIONS(2417), - [anon_sym_LPAREN] = ACTIONS(2417), - [anon_sym_LBRACE] = ACTIONS(2417), - [anon_sym_RBRACE] = ACTIONS(2417), - [anon_sym_LBRACK] = ACTIONS(2417), - [anon_sym_STAR] = ACTIONS(2417), - [anon_sym_SQUOTE] = ACTIONS(2419), - [anon_sym_async] = ACTIONS(2419), - [anon_sym_break] = ACTIONS(2419), - [anon_sym_const] = ACTIONS(2419), - [anon_sym_continue] = ACTIONS(2419), - [anon_sym_default] = ACTIONS(2419), - [anon_sym_enum] = ACTIONS(2419), - [anon_sym_fn] = ACTIONS(2419), - [anon_sym_for] = ACTIONS(2419), - [anon_sym_if] = ACTIONS(2419), - [anon_sym_impl] = ACTIONS(2419), - [anon_sym_let] = ACTIONS(2419), - [anon_sym_loop] = ACTIONS(2419), - [anon_sym_match] = ACTIONS(2419), - [anon_sym_mod] = ACTIONS(2419), - [anon_sym_pub] = ACTIONS(2419), - [anon_sym_return] = ACTIONS(2419), - [anon_sym_static] = ACTIONS(2419), - [anon_sym_struct] = ACTIONS(2419), - [anon_sym_trait] = ACTIONS(2419), - [anon_sym_type] = ACTIONS(2419), - [anon_sym_union] = ACTIONS(2419), - [anon_sym_unsafe] = ACTIONS(2419), - [anon_sym_use] = ACTIONS(2419), - [anon_sym_while] = ACTIONS(2419), - [anon_sym_POUND] = ACTIONS(2417), - [anon_sym_BANG] = ACTIONS(2417), - [anon_sym_extern] = ACTIONS(2419), - [anon_sym_LT] = ACTIONS(2417), - [anon_sym_COLON_COLON] = ACTIONS(2417), - [anon_sym_AMP] = ACTIONS(2417), - [anon_sym_DOT_DOT] = ACTIONS(2417), - [anon_sym_DASH] = ACTIONS(2417), - [anon_sym_PIPE] = ACTIONS(2417), - [anon_sym_yield] = ACTIONS(2419), - [anon_sym_move] = ACTIONS(2419), - [sym_integer_literal] = ACTIONS(2417), - [aux_sym_string_literal_token1] = ACTIONS(2417), - [sym_char_literal] = ACTIONS(2417), - [anon_sym_true] = ACTIONS(2419), - [anon_sym_false] = ACTIONS(2419), - [anon_sym_u8] = ACTIONS(2419), - [anon_sym_i8] = ACTIONS(2419), - [anon_sym_u16] = ACTIONS(2419), - [anon_sym_i16] = ACTIONS(2419), - [anon_sym_u32] = ACTIONS(2419), - [anon_sym_i32] = ACTIONS(2419), - [anon_sym_u64] = ACTIONS(2419), - [anon_sym_i64] = ACTIONS(2419), - [anon_sym_u128] = ACTIONS(2419), - [anon_sym_i128] = ACTIONS(2419), - [anon_sym_isize] = ACTIONS(2419), - [anon_sym_usize] = ACTIONS(2419), - [anon_sym_f32] = ACTIONS(2419), - [anon_sym_f64] = ACTIONS(2419), - [anon_sym_bool] = ACTIONS(2419), - [anon_sym_str] = ACTIONS(2419), - [anon_sym_char] = ACTIONS(2419), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(2417), - [sym_self] = ACTIONS(2419), - [sym_super] = ACTIONS(2419), - [sym_crate] = ACTIONS(2419), - [sym_metavariable] = ACTIONS(2417), - [sym_grit_metavariable] = ACTIONS(2417), - [sym_raw_string_literal] = ACTIONS(2417), - [sym_float_literal] = ACTIONS(2417), + [ts_builtin_sym_end] = ACTIONS(2415), + [sym__primitive_identifier] = ACTIONS(2417), + [anon_sym_SEMI] = ACTIONS(2415), + [anon_sym_macro_rules_BANG] = ACTIONS(2415), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_LBRACE] = ACTIONS(2415), + [anon_sym_RBRACE] = ACTIONS(2415), + [anon_sym_LBRACK] = ACTIONS(2415), + [anon_sym_STAR] = ACTIONS(2415), + [anon_sym_SQUOTE] = ACTIONS(2417), + [anon_sym_async] = ACTIONS(2417), + [anon_sym_break] = ACTIONS(2417), + [anon_sym_const] = ACTIONS(2417), + [anon_sym_continue] = ACTIONS(2417), + [anon_sym_default] = ACTIONS(2417), + [anon_sym_enum] = ACTIONS(2417), + [anon_sym_fn] = ACTIONS(2417), + [anon_sym_for] = ACTIONS(2417), + [anon_sym_if] = ACTIONS(2417), + [anon_sym_impl] = ACTIONS(2417), + [anon_sym_let] = ACTIONS(2417), + [anon_sym_loop] = ACTIONS(2417), + [anon_sym_match] = ACTIONS(2417), + [anon_sym_mod] = ACTIONS(2417), + [anon_sym_pub] = ACTIONS(2417), + [anon_sym_return] = ACTIONS(2417), + [anon_sym_static] = ACTIONS(2417), + [anon_sym_struct] = ACTIONS(2417), + [anon_sym_trait] = ACTIONS(2417), + [anon_sym_type] = ACTIONS(2417), + [anon_sym_union] = ACTIONS(2417), + [anon_sym_unsafe] = ACTIONS(2417), + [anon_sym_use] = ACTIONS(2417), + [anon_sym_while] = ACTIONS(2417), + [anon_sym_POUND] = ACTIONS(2415), + [anon_sym_BANG] = ACTIONS(2415), + [anon_sym_extern] = ACTIONS(2417), + [anon_sym_LT] = ACTIONS(2415), + [anon_sym_COLON_COLON] = ACTIONS(2415), + [anon_sym_AMP] = ACTIONS(2415), + [anon_sym_DOT_DOT] = ACTIONS(2415), + [anon_sym_DASH] = ACTIONS(2415), + [anon_sym_PIPE] = ACTIONS(2415), + [anon_sym_yield] = ACTIONS(2417), + [anon_sym_move] = ACTIONS(2417), + [sym_integer_literal] = ACTIONS(2415), + [aux_sym_string_literal_token1] = ACTIONS(2415), + [sym_char_literal] = ACTIONS(2415), + [anon_sym_true] = ACTIONS(2417), + [anon_sym_false] = ACTIONS(2417), + [anon_sym_u8] = ACTIONS(2417), + [anon_sym_i8] = ACTIONS(2417), + [anon_sym_u16] = ACTIONS(2417), + [anon_sym_i16] = ACTIONS(2417), + [anon_sym_u32] = ACTIONS(2417), + [anon_sym_i32] = ACTIONS(2417), + [anon_sym_u64] = ACTIONS(2417), + [anon_sym_i64] = ACTIONS(2417), + [anon_sym_u128] = ACTIONS(2417), + [anon_sym_i128] = ACTIONS(2417), + [anon_sym_isize] = ACTIONS(2417), + [anon_sym_usize] = ACTIONS(2417), + [anon_sym_f32] = ACTIONS(2417), + [anon_sym_f64] = ACTIONS(2417), + [anon_sym_bool] = ACTIONS(2417), + [anon_sym_str] = ACTIONS(2417), + [anon_sym_char] = ACTIONS(2417), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(2415), + [sym_self] = ACTIONS(2417), + [sym_super] = ACTIONS(2417), + [sym_crate] = ACTIONS(2417), + [sym_metavariable] = ACTIONS(2415), + [sym_grit_metavariable] = ACTIONS(2415), + [sym_raw_string_literal] = ACTIONS(2415), + [sym_float_literal] = ACTIONS(2415), [sym_block_comment] = ACTIONS(3), }, [508] = { - [ts_builtin_sym_end] = ACTIONS(2421), - [sym__primitive_identifier] = ACTIONS(2423), - [anon_sym_SEMI] = ACTIONS(2421), - [anon_sym_macro_rules_BANG] = ACTIONS(2421), - [anon_sym_LPAREN] = ACTIONS(2421), - [anon_sym_LBRACE] = ACTIONS(2421), - [anon_sym_RBRACE] = ACTIONS(2421), - [anon_sym_LBRACK] = ACTIONS(2421), - [anon_sym_STAR] = ACTIONS(2421), - [anon_sym_SQUOTE] = ACTIONS(2423), - [anon_sym_async] = ACTIONS(2423), - [anon_sym_break] = ACTIONS(2423), - [anon_sym_const] = ACTIONS(2423), - [anon_sym_continue] = ACTIONS(2423), - [anon_sym_default] = ACTIONS(2423), - [anon_sym_enum] = ACTIONS(2423), - [anon_sym_fn] = ACTIONS(2423), - [anon_sym_for] = ACTIONS(2423), - [anon_sym_if] = ACTIONS(2423), - [anon_sym_impl] = ACTIONS(2423), - [anon_sym_let] = ACTIONS(2423), - [anon_sym_loop] = ACTIONS(2423), - [anon_sym_match] = ACTIONS(2423), - [anon_sym_mod] = ACTIONS(2423), - [anon_sym_pub] = ACTIONS(2423), - [anon_sym_return] = ACTIONS(2423), - [anon_sym_static] = ACTIONS(2423), - [anon_sym_struct] = ACTIONS(2423), - [anon_sym_trait] = ACTIONS(2423), - [anon_sym_type] = ACTIONS(2423), - [anon_sym_union] = ACTIONS(2423), - [anon_sym_unsafe] = ACTIONS(2423), - [anon_sym_use] = ACTIONS(2423), - [anon_sym_while] = ACTIONS(2423), - [anon_sym_POUND] = ACTIONS(2421), - [anon_sym_BANG] = ACTIONS(2421), - [anon_sym_extern] = ACTIONS(2423), - [anon_sym_LT] = ACTIONS(2421), - [anon_sym_COLON_COLON] = ACTIONS(2421), - [anon_sym_AMP] = ACTIONS(2421), - [anon_sym_DOT_DOT] = ACTIONS(2421), - [anon_sym_DASH] = ACTIONS(2421), - [anon_sym_PIPE] = ACTIONS(2421), - [anon_sym_yield] = ACTIONS(2423), - [anon_sym_move] = ACTIONS(2423), - [sym_integer_literal] = ACTIONS(2421), - [aux_sym_string_literal_token1] = ACTIONS(2421), - [sym_char_literal] = ACTIONS(2421), - [anon_sym_true] = ACTIONS(2423), - [anon_sym_false] = ACTIONS(2423), - [anon_sym_u8] = ACTIONS(2423), - [anon_sym_i8] = ACTIONS(2423), - [anon_sym_u16] = ACTIONS(2423), - [anon_sym_i16] = ACTIONS(2423), - [anon_sym_u32] = ACTIONS(2423), - [anon_sym_i32] = ACTIONS(2423), - [anon_sym_u64] = ACTIONS(2423), - [anon_sym_i64] = ACTIONS(2423), - [anon_sym_u128] = ACTIONS(2423), - [anon_sym_i128] = ACTIONS(2423), - [anon_sym_isize] = ACTIONS(2423), - [anon_sym_usize] = ACTIONS(2423), - [anon_sym_f32] = ACTIONS(2423), - [anon_sym_f64] = ACTIONS(2423), - [anon_sym_bool] = ACTIONS(2423), - [anon_sym_str] = ACTIONS(2423), - [anon_sym_char] = ACTIONS(2423), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(2421), - [sym_self] = ACTIONS(2423), - [sym_super] = ACTIONS(2423), - [sym_crate] = ACTIONS(2423), - [sym_metavariable] = ACTIONS(2421), - [sym_grit_metavariable] = ACTIONS(2421), - [sym_raw_string_literal] = ACTIONS(2421), - [sym_float_literal] = ACTIONS(2421), + [ts_builtin_sym_end] = ACTIONS(2419), + [sym__primitive_identifier] = ACTIONS(2421), + [anon_sym_SEMI] = ACTIONS(2419), + [anon_sym_macro_rules_BANG] = ACTIONS(2419), + [anon_sym_LPAREN] = ACTIONS(2419), + [anon_sym_LBRACE] = ACTIONS(2419), + [anon_sym_RBRACE] = ACTIONS(2419), + [anon_sym_LBRACK] = ACTIONS(2419), + [anon_sym_STAR] = ACTIONS(2419), + [anon_sym_SQUOTE] = ACTIONS(2421), + [anon_sym_async] = ACTIONS(2421), + [anon_sym_break] = ACTIONS(2421), + [anon_sym_const] = ACTIONS(2421), + [anon_sym_continue] = ACTIONS(2421), + [anon_sym_default] = ACTIONS(2421), + [anon_sym_enum] = ACTIONS(2421), + [anon_sym_fn] = ACTIONS(2421), + [anon_sym_for] = ACTIONS(2421), + [anon_sym_if] = ACTIONS(2421), + [anon_sym_impl] = ACTIONS(2421), + [anon_sym_let] = ACTIONS(2421), + [anon_sym_loop] = ACTIONS(2421), + [anon_sym_match] = ACTIONS(2421), + [anon_sym_mod] = ACTIONS(2421), + [anon_sym_pub] = ACTIONS(2421), + [anon_sym_return] = ACTIONS(2421), + [anon_sym_static] = ACTIONS(2421), + [anon_sym_struct] = ACTIONS(2421), + [anon_sym_trait] = ACTIONS(2421), + [anon_sym_type] = ACTIONS(2421), + [anon_sym_union] = ACTIONS(2421), + [anon_sym_unsafe] = ACTIONS(2421), + [anon_sym_use] = ACTIONS(2421), + [anon_sym_while] = ACTIONS(2421), + [anon_sym_POUND] = ACTIONS(2419), + [anon_sym_BANG] = ACTIONS(2419), + [anon_sym_extern] = ACTIONS(2421), + [anon_sym_LT] = ACTIONS(2419), + [anon_sym_COLON_COLON] = ACTIONS(2419), + [anon_sym_AMP] = ACTIONS(2419), + [anon_sym_DOT_DOT] = ACTIONS(2419), + [anon_sym_DASH] = ACTIONS(2419), + [anon_sym_PIPE] = ACTIONS(2419), + [anon_sym_yield] = ACTIONS(2421), + [anon_sym_move] = ACTIONS(2421), + [sym_integer_literal] = ACTIONS(2419), + [aux_sym_string_literal_token1] = ACTIONS(2419), + [sym_char_literal] = ACTIONS(2419), + [anon_sym_true] = ACTIONS(2421), + [anon_sym_false] = ACTIONS(2421), + [anon_sym_u8] = ACTIONS(2421), + [anon_sym_i8] = ACTIONS(2421), + [anon_sym_u16] = ACTIONS(2421), + [anon_sym_i16] = ACTIONS(2421), + [anon_sym_u32] = ACTIONS(2421), + [anon_sym_i32] = ACTIONS(2421), + [anon_sym_u64] = ACTIONS(2421), + [anon_sym_i64] = ACTIONS(2421), + [anon_sym_u128] = ACTIONS(2421), + [anon_sym_i128] = ACTIONS(2421), + [anon_sym_isize] = ACTIONS(2421), + [anon_sym_usize] = ACTIONS(2421), + [anon_sym_f32] = ACTIONS(2421), + [anon_sym_f64] = ACTIONS(2421), + [anon_sym_bool] = ACTIONS(2421), + [anon_sym_str] = ACTIONS(2421), + [anon_sym_char] = ACTIONS(2421), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(2419), + [sym_self] = ACTIONS(2421), + [sym_super] = ACTIONS(2421), + [sym_crate] = ACTIONS(2421), + [sym_metavariable] = ACTIONS(2419), + [sym_grit_metavariable] = ACTIONS(2419), + [sym_raw_string_literal] = ACTIONS(2419), + [sym_float_literal] = ACTIONS(2419), [sym_block_comment] = ACTIONS(3), }, [509] = { - [ts_builtin_sym_end] = ACTIONS(2425), - [sym__primitive_identifier] = ACTIONS(2427), - [anon_sym_SEMI] = ACTIONS(2425), - [anon_sym_macro_rules_BANG] = ACTIONS(2425), - [anon_sym_LPAREN] = ACTIONS(2425), - [anon_sym_LBRACE] = ACTIONS(2425), - [anon_sym_RBRACE] = ACTIONS(2425), - [anon_sym_LBRACK] = ACTIONS(2425), - [anon_sym_STAR] = ACTIONS(2425), - [anon_sym_SQUOTE] = ACTIONS(2427), - [anon_sym_async] = ACTIONS(2427), - [anon_sym_break] = ACTIONS(2427), - [anon_sym_const] = ACTIONS(2427), - [anon_sym_continue] = ACTIONS(2427), - [anon_sym_default] = ACTIONS(2427), - [anon_sym_enum] = ACTIONS(2427), - [anon_sym_fn] = ACTIONS(2427), - [anon_sym_for] = ACTIONS(2427), - [anon_sym_if] = ACTIONS(2427), - [anon_sym_impl] = ACTIONS(2427), - [anon_sym_let] = ACTIONS(2427), - [anon_sym_loop] = ACTIONS(2427), - [anon_sym_match] = ACTIONS(2427), - [anon_sym_mod] = ACTIONS(2427), - [anon_sym_pub] = ACTIONS(2427), - [anon_sym_return] = ACTIONS(2427), - [anon_sym_static] = ACTIONS(2427), - [anon_sym_struct] = ACTIONS(2427), - [anon_sym_trait] = ACTIONS(2427), - [anon_sym_type] = ACTIONS(2427), - [anon_sym_union] = ACTIONS(2427), - [anon_sym_unsafe] = ACTIONS(2427), - [anon_sym_use] = ACTIONS(2427), - [anon_sym_while] = ACTIONS(2427), - [anon_sym_POUND] = ACTIONS(2425), - [anon_sym_BANG] = ACTIONS(2425), - [anon_sym_extern] = ACTIONS(2427), - [anon_sym_LT] = ACTIONS(2425), - [anon_sym_COLON_COLON] = ACTIONS(2425), - [anon_sym_AMP] = ACTIONS(2425), - [anon_sym_DOT_DOT] = ACTIONS(2425), - [anon_sym_DASH] = ACTIONS(2425), - [anon_sym_PIPE] = ACTIONS(2425), - [anon_sym_yield] = ACTIONS(2427), - [anon_sym_move] = ACTIONS(2427), - [sym_integer_literal] = ACTIONS(2425), - [aux_sym_string_literal_token1] = ACTIONS(2425), - [sym_char_literal] = ACTIONS(2425), - [anon_sym_true] = ACTIONS(2427), - [anon_sym_false] = ACTIONS(2427), - [anon_sym_u8] = ACTIONS(2427), - [anon_sym_i8] = ACTIONS(2427), - [anon_sym_u16] = ACTIONS(2427), - [anon_sym_i16] = ACTIONS(2427), - [anon_sym_u32] = ACTIONS(2427), - [anon_sym_i32] = ACTIONS(2427), - [anon_sym_u64] = ACTIONS(2427), - [anon_sym_i64] = ACTIONS(2427), - [anon_sym_u128] = ACTIONS(2427), - [anon_sym_i128] = ACTIONS(2427), - [anon_sym_isize] = ACTIONS(2427), - [anon_sym_usize] = ACTIONS(2427), - [anon_sym_f32] = ACTIONS(2427), - [anon_sym_f64] = ACTIONS(2427), - [anon_sym_bool] = ACTIONS(2427), - [anon_sym_str] = ACTIONS(2427), - [anon_sym_char] = ACTIONS(2427), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(2425), - [sym_self] = ACTIONS(2427), - [sym_super] = ACTIONS(2427), - [sym_crate] = ACTIONS(2427), - [sym_metavariable] = ACTIONS(2425), - [sym_grit_metavariable] = ACTIONS(2425), - [sym_raw_string_literal] = ACTIONS(2425), - [sym_float_literal] = ACTIONS(2425), + [ts_builtin_sym_end] = ACTIONS(2423), + [sym__primitive_identifier] = ACTIONS(2425), + [anon_sym_SEMI] = ACTIONS(2423), + [anon_sym_macro_rules_BANG] = ACTIONS(2423), + [anon_sym_LPAREN] = ACTIONS(2423), + [anon_sym_LBRACE] = ACTIONS(2423), + [anon_sym_RBRACE] = ACTIONS(2423), + [anon_sym_LBRACK] = ACTIONS(2423), + [anon_sym_STAR] = ACTIONS(2423), + [anon_sym_SQUOTE] = ACTIONS(2425), + [anon_sym_async] = ACTIONS(2425), + [anon_sym_break] = ACTIONS(2425), + [anon_sym_const] = ACTIONS(2425), + [anon_sym_continue] = ACTIONS(2425), + [anon_sym_default] = ACTIONS(2425), + [anon_sym_enum] = ACTIONS(2425), + [anon_sym_fn] = ACTIONS(2425), + [anon_sym_for] = ACTIONS(2425), + [anon_sym_if] = ACTIONS(2425), + [anon_sym_impl] = ACTIONS(2425), + [anon_sym_let] = ACTIONS(2425), + [anon_sym_loop] = ACTIONS(2425), + [anon_sym_match] = ACTIONS(2425), + [anon_sym_mod] = ACTIONS(2425), + [anon_sym_pub] = ACTIONS(2425), + [anon_sym_return] = ACTIONS(2425), + [anon_sym_static] = ACTIONS(2425), + [anon_sym_struct] = ACTIONS(2425), + [anon_sym_trait] = ACTIONS(2425), + [anon_sym_type] = ACTIONS(2425), + [anon_sym_union] = ACTIONS(2425), + [anon_sym_unsafe] = ACTIONS(2425), + [anon_sym_use] = ACTIONS(2425), + [anon_sym_while] = ACTIONS(2425), + [anon_sym_POUND] = ACTIONS(2423), + [anon_sym_BANG] = ACTIONS(2423), + [anon_sym_extern] = ACTIONS(2425), + [anon_sym_LT] = ACTIONS(2423), + [anon_sym_COLON_COLON] = ACTIONS(2423), + [anon_sym_AMP] = ACTIONS(2423), + [anon_sym_DOT_DOT] = ACTIONS(2423), + [anon_sym_DASH] = ACTIONS(2423), + [anon_sym_PIPE] = ACTIONS(2423), + [anon_sym_yield] = ACTIONS(2425), + [anon_sym_move] = ACTIONS(2425), + [sym_integer_literal] = ACTIONS(2423), + [aux_sym_string_literal_token1] = ACTIONS(2423), + [sym_char_literal] = ACTIONS(2423), + [anon_sym_true] = ACTIONS(2425), + [anon_sym_false] = ACTIONS(2425), + [anon_sym_u8] = ACTIONS(2425), + [anon_sym_i8] = ACTIONS(2425), + [anon_sym_u16] = ACTIONS(2425), + [anon_sym_i16] = ACTIONS(2425), + [anon_sym_u32] = ACTIONS(2425), + [anon_sym_i32] = ACTIONS(2425), + [anon_sym_u64] = ACTIONS(2425), + [anon_sym_i64] = ACTIONS(2425), + [anon_sym_u128] = ACTIONS(2425), + [anon_sym_i128] = ACTIONS(2425), + [anon_sym_isize] = ACTIONS(2425), + [anon_sym_usize] = ACTIONS(2425), + [anon_sym_f32] = ACTIONS(2425), + [anon_sym_f64] = ACTIONS(2425), + [anon_sym_bool] = ACTIONS(2425), + [anon_sym_str] = ACTIONS(2425), + [anon_sym_char] = ACTIONS(2425), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(2423), + [sym_self] = ACTIONS(2425), + [sym_super] = ACTIONS(2425), + [sym_crate] = ACTIONS(2425), + [sym_metavariable] = ACTIONS(2423), + [sym_grit_metavariable] = ACTIONS(2423), + [sym_raw_string_literal] = ACTIONS(2423), + [sym_float_literal] = ACTIONS(2423), [sym_block_comment] = ACTIONS(3), }, [510] = { - [ts_builtin_sym_end] = ACTIONS(2429), - [sym__primitive_identifier] = ACTIONS(2431), - [anon_sym_SEMI] = ACTIONS(2429), - [anon_sym_macro_rules_BANG] = ACTIONS(2429), - [anon_sym_LPAREN] = ACTIONS(2429), - [anon_sym_LBRACE] = ACTIONS(2429), - [anon_sym_RBRACE] = ACTIONS(2429), - [anon_sym_LBRACK] = ACTIONS(2429), - [anon_sym_STAR] = ACTIONS(2429), - [anon_sym_SQUOTE] = ACTIONS(2431), - [anon_sym_async] = ACTIONS(2431), - [anon_sym_break] = ACTIONS(2431), - [anon_sym_const] = ACTIONS(2431), - [anon_sym_continue] = ACTIONS(2431), - [anon_sym_default] = ACTIONS(2431), - [anon_sym_enum] = ACTIONS(2431), - [anon_sym_fn] = ACTIONS(2431), - [anon_sym_for] = ACTIONS(2431), - [anon_sym_if] = ACTIONS(2431), - [anon_sym_impl] = ACTIONS(2431), - [anon_sym_let] = ACTIONS(2431), - [anon_sym_loop] = ACTIONS(2431), - [anon_sym_match] = ACTIONS(2431), - [anon_sym_mod] = ACTIONS(2431), - [anon_sym_pub] = ACTIONS(2431), - [anon_sym_return] = ACTIONS(2431), - [anon_sym_static] = ACTIONS(2431), - [anon_sym_struct] = ACTIONS(2431), - [anon_sym_trait] = ACTIONS(2431), - [anon_sym_type] = ACTIONS(2431), - [anon_sym_union] = ACTIONS(2431), - [anon_sym_unsafe] = ACTIONS(2431), - [anon_sym_use] = ACTIONS(2431), - [anon_sym_while] = ACTIONS(2431), - [anon_sym_POUND] = ACTIONS(2429), - [anon_sym_BANG] = ACTIONS(2429), - [anon_sym_extern] = ACTIONS(2431), - [anon_sym_LT] = ACTIONS(2429), - [anon_sym_COLON_COLON] = ACTIONS(2429), - [anon_sym_AMP] = ACTIONS(2429), - [anon_sym_DOT_DOT] = ACTIONS(2429), - [anon_sym_DASH] = ACTIONS(2429), - [anon_sym_PIPE] = ACTIONS(2429), - [anon_sym_yield] = ACTIONS(2431), - [anon_sym_move] = ACTIONS(2431), - [sym_integer_literal] = ACTIONS(2429), - [aux_sym_string_literal_token1] = ACTIONS(2429), - [sym_char_literal] = ACTIONS(2429), - [anon_sym_true] = ACTIONS(2431), - [anon_sym_false] = ACTIONS(2431), - [anon_sym_u8] = ACTIONS(2431), - [anon_sym_i8] = ACTIONS(2431), - [anon_sym_u16] = ACTIONS(2431), - [anon_sym_i16] = ACTIONS(2431), - [anon_sym_u32] = ACTIONS(2431), - [anon_sym_i32] = ACTIONS(2431), - [anon_sym_u64] = ACTIONS(2431), - [anon_sym_i64] = ACTIONS(2431), - [anon_sym_u128] = ACTIONS(2431), - [anon_sym_i128] = ACTIONS(2431), - [anon_sym_isize] = ACTIONS(2431), - [anon_sym_usize] = ACTIONS(2431), - [anon_sym_f32] = ACTIONS(2431), - [anon_sym_f64] = ACTIONS(2431), - [anon_sym_bool] = ACTIONS(2431), - [anon_sym_str] = ACTIONS(2431), - [anon_sym_char] = ACTIONS(2431), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(2429), - [sym_self] = ACTIONS(2431), - [sym_super] = ACTIONS(2431), - [sym_crate] = ACTIONS(2431), - [sym_metavariable] = ACTIONS(2429), - [sym_grit_metavariable] = ACTIONS(2429), - [sym_raw_string_literal] = ACTIONS(2429), - [sym_float_literal] = ACTIONS(2429), + [ts_builtin_sym_end] = ACTIONS(2427), + [sym__primitive_identifier] = ACTIONS(2429), + [anon_sym_SEMI] = ACTIONS(2427), + [anon_sym_macro_rules_BANG] = ACTIONS(2427), + [anon_sym_LPAREN] = ACTIONS(2427), + [anon_sym_LBRACE] = ACTIONS(2427), + [anon_sym_RBRACE] = ACTIONS(2427), + [anon_sym_LBRACK] = ACTIONS(2427), + [anon_sym_STAR] = ACTIONS(2427), + [anon_sym_SQUOTE] = ACTIONS(2429), + [anon_sym_async] = ACTIONS(2429), + [anon_sym_break] = ACTIONS(2429), + [anon_sym_const] = ACTIONS(2429), + [anon_sym_continue] = ACTIONS(2429), + [anon_sym_default] = ACTIONS(2429), + [anon_sym_enum] = ACTIONS(2429), + [anon_sym_fn] = ACTIONS(2429), + [anon_sym_for] = ACTIONS(2429), + [anon_sym_if] = ACTIONS(2429), + [anon_sym_impl] = ACTIONS(2429), + [anon_sym_let] = ACTIONS(2429), + [anon_sym_loop] = ACTIONS(2429), + [anon_sym_match] = ACTIONS(2429), + [anon_sym_mod] = ACTIONS(2429), + [anon_sym_pub] = ACTIONS(2429), + [anon_sym_return] = ACTIONS(2429), + [anon_sym_static] = ACTIONS(2429), + [anon_sym_struct] = ACTIONS(2429), + [anon_sym_trait] = ACTIONS(2429), + [anon_sym_type] = ACTIONS(2429), + [anon_sym_union] = ACTIONS(2429), + [anon_sym_unsafe] = ACTIONS(2429), + [anon_sym_use] = ACTIONS(2429), + [anon_sym_while] = ACTIONS(2429), + [anon_sym_POUND] = ACTIONS(2427), + [anon_sym_BANG] = ACTIONS(2427), + [anon_sym_extern] = ACTIONS(2429), + [anon_sym_LT] = ACTIONS(2427), + [anon_sym_COLON_COLON] = ACTIONS(2427), + [anon_sym_AMP] = ACTIONS(2427), + [anon_sym_DOT_DOT] = ACTIONS(2427), + [anon_sym_DASH] = ACTIONS(2427), + [anon_sym_PIPE] = ACTIONS(2427), + [anon_sym_yield] = ACTIONS(2429), + [anon_sym_move] = ACTIONS(2429), + [sym_integer_literal] = ACTIONS(2427), + [aux_sym_string_literal_token1] = ACTIONS(2427), + [sym_char_literal] = ACTIONS(2427), + [anon_sym_true] = ACTIONS(2429), + [anon_sym_false] = ACTIONS(2429), + [anon_sym_u8] = ACTIONS(2429), + [anon_sym_i8] = ACTIONS(2429), + [anon_sym_u16] = ACTIONS(2429), + [anon_sym_i16] = ACTIONS(2429), + [anon_sym_u32] = ACTIONS(2429), + [anon_sym_i32] = ACTIONS(2429), + [anon_sym_u64] = ACTIONS(2429), + [anon_sym_i64] = ACTIONS(2429), + [anon_sym_u128] = ACTIONS(2429), + [anon_sym_i128] = ACTIONS(2429), + [anon_sym_isize] = ACTIONS(2429), + [anon_sym_usize] = ACTIONS(2429), + [anon_sym_f32] = ACTIONS(2429), + [anon_sym_f64] = ACTIONS(2429), + [anon_sym_bool] = ACTIONS(2429), + [anon_sym_str] = ACTIONS(2429), + [anon_sym_char] = ACTIONS(2429), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(2427), + [sym_self] = ACTIONS(2429), + [sym_super] = ACTIONS(2429), + [sym_crate] = ACTIONS(2429), + [sym_metavariable] = ACTIONS(2427), + [sym_grit_metavariable] = ACTIONS(2427), + [sym_raw_string_literal] = ACTIONS(2427), + [sym_float_literal] = ACTIONS(2427), [sym_block_comment] = ACTIONS(3), }, [511] = { - [ts_builtin_sym_end] = ACTIONS(2433), - [sym__primitive_identifier] = ACTIONS(2435), - [anon_sym_SEMI] = ACTIONS(2433), - [anon_sym_macro_rules_BANG] = ACTIONS(2433), - [anon_sym_LPAREN] = ACTIONS(2433), - [anon_sym_LBRACE] = ACTIONS(2433), - [anon_sym_RBRACE] = ACTIONS(2433), - [anon_sym_LBRACK] = ACTIONS(2433), - [anon_sym_STAR] = ACTIONS(2433), - [anon_sym_SQUOTE] = ACTIONS(2435), - [anon_sym_async] = ACTIONS(2435), - [anon_sym_break] = ACTIONS(2435), - [anon_sym_const] = ACTIONS(2435), - [anon_sym_continue] = ACTIONS(2435), - [anon_sym_default] = ACTIONS(2435), - [anon_sym_enum] = ACTIONS(2435), - [anon_sym_fn] = ACTIONS(2435), - [anon_sym_for] = ACTIONS(2435), - [anon_sym_if] = ACTIONS(2435), - [anon_sym_impl] = ACTIONS(2435), - [anon_sym_let] = ACTIONS(2435), - [anon_sym_loop] = ACTIONS(2435), - [anon_sym_match] = ACTIONS(2435), - [anon_sym_mod] = ACTIONS(2435), - [anon_sym_pub] = ACTIONS(2435), - [anon_sym_return] = ACTIONS(2435), - [anon_sym_static] = ACTIONS(2435), - [anon_sym_struct] = ACTIONS(2435), - [anon_sym_trait] = ACTIONS(2435), - [anon_sym_type] = ACTIONS(2435), - [anon_sym_union] = ACTIONS(2435), - [anon_sym_unsafe] = ACTIONS(2435), - [anon_sym_use] = ACTIONS(2435), - [anon_sym_while] = ACTIONS(2435), - [anon_sym_POUND] = ACTIONS(2433), - [anon_sym_BANG] = ACTIONS(2433), - [anon_sym_extern] = ACTIONS(2435), - [anon_sym_LT] = ACTIONS(2433), - [anon_sym_COLON_COLON] = ACTIONS(2433), - [anon_sym_AMP] = ACTIONS(2433), - [anon_sym_DOT_DOT] = ACTIONS(2433), - [anon_sym_DASH] = ACTIONS(2433), - [anon_sym_PIPE] = ACTIONS(2433), - [anon_sym_yield] = ACTIONS(2435), - [anon_sym_move] = ACTIONS(2435), - [sym_integer_literal] = ACTIONS(2433), - [aux_sym_string_literal_token1] = ACTIONS(2433), - [sym_char_literal] = ACTIONS(2433), - [anon_sym_true] = ACTIONS(2435), - [anon_sym_false] = ACTIONS(2435), - [anon_sym_u8] = ACTIONS(2435), - [anon_sym_i8] = ACTIONS(2435), - [anon_sym_u16] = ACTIONS(2435), - [anon_sym_i16] = ACTIONS(2435), - [anon_sym_u32] = ACTIONS(2435), - [anon_sym_i32] = ACTIONS(2435), - [anon_sym_u64] = ACTIONS(2435), - [anon_sym_i64] = ACTIONS(2435), - [anon_sym_u128] = ACTIONS(2435), - [anon_sym_i128] = ACTIONS(2435), - [anon_sym_isize] = ACTIONS(2435), - [anon_sym_usize] = ACTIONS(2435), - [anon_sym_f32] = ACTIONS(2435), - [anon_sym_f64] = ACTIONS(2435), - [anon_sym_bool] = ACTIONS(2435), - [anon_sym_str] = ACTIONS(2435), - [anon_sym_char] = ACTIONS(2435), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(2433), - [sym_self] = ACTIONS(2435), - [sym_super] = ACTIONS(2435), - [sym_crate] = ACTIONS(2435), - [sym_metavariable] = ACTIONS(2433), - [sym_grit_metavariable] = ACTIONS(2433), - [sym_raw_string_literal] = ACTIONS(2433), - [sym_float_literal] = ACTIONS(2433), + [ts_builtin_sym_end] = ACTIONS(2431), + [sym__primitive_identifier] = ACTIONS(2433), + [anon_sym_SEMI] = ACTIONS(2431), + [anon_sym_macro_rules_BANG] = ACTIONS(2431), + [anon_sym_LPAREN] = ACTIONS(2431), + [anon_sym_LBRACE] = ACTIONS(2431), + [anon_sym_RBRACE] = ACTIONS(2431), + [anon_sym_LBRACK] = ACTIONS(2431), + [anon_sym_STAR] = ACTIONS(2431), + [anon_sym_SQUOTE] = ACTIONS(2433), + [anon_sym_async] = ACTIONS(2433), + [anon_sym_break] = ACTIONS(2433), + [anon_sym_const] = ACTIONS(2433), + [anon_sym_continue] = ACTIONS(2433), + [anon_sym_default] = ACTIONS(2433), + [anon_sym_enum] = ACTIONS(2433), + [anon_sym_fn] = ACTIONS(2433), + [anon_sym_for] = ACTIONS(2433), + [anon_sym_if] = ACTIONS(2433), + [anon_sym_impl] = ACTIONS(2433), + [anon_sym_let] = ACTIONS(2433), + [anon_sym_loop] = ACTIONS(2433), + [anon_sym_match] = ACTIONS(2433), + [anon_sym_mod] = ACTIONS(2433), + [anon_sym_pub] = ACTIONS(2433), + [anon_sym_return] = ACTIONS(2433), + [anon_sym_static] = ACTIONS(2433), + [anon_sym_struct] = ACTIONS(2433), + [anon_sym_trait] = ACTIONS(2433), + [anon_sym_type] = ACTIONS(2433), + [anon_sym_union] = ACTIONS(2433), + [anon_sym_unsafe] = ACTIONS(2433), + [anon_sym_use] = ACTIONS(2433), + [anon_sym_while] = ACTIONS(2433), + [anon_sym_POUND] = ACTIONS(2431), + [anon_sym_BANG] = ACTIONS(2431), + [anon_sym_extern] = ACTIONS(2433), + [anon_sym_LT] = ACTIONS(2431), + [anon_sym_COLON_COLON] = ACTIONS(2431), + [anon_sym_AMP] = ACTIONS(2431), + [anon_sym_DOT_DOT] = ACTIONS(2431), + [anon_sym_DASH] = ACTIONS(2431), + [anon_sym_PIPE] = ACTIONS(2431), + [anon_sym_yield] = ACTIONS(2433), + [anon_sym_move] = ACTIONS(2433), + [sym_integer_literal] = ACTIONS(2431), + [aux_sym_string_literal_token1] = ACTIONS(2431), + [sym_char_literal] = ACTIONS(2431), + [anon_sym_true] = ACTIONS(2433), + [anon_sym_false] = ACTIONS(2433), + [anon_sym_u8] = ACTIONS(2433), + [anon_sym_i8] = ACTIONS(2433), + [anon_sym_u16] = ACTIONS(2433), + [anon_sym_i16] = ACTIONS(2433), + [anon_sym_u32] = ACTIONS(2433), + [anon_sym_i32] = ACTIONS(2433), + [anon_sym_u64] = ACTIONS(2433), + [anon_sym_i64] = ACTIONS(2433), + [anon_sym_u128] = ACTIONS(2433), + [anon_sym_i128] = ACTIONS(2433), + [anon_sym_isize] = ACTIONS(2433), + [anon_sym_usize] = ACTIONS(2433), + [anon_sym_f32] = ACTIONS(2433), + [anon_sym_f64] = ACTIONS(2433), + [anon_sym_bool] = ACTIONS(2433), + [anon_sym_str] = ACTIONS(2433), + [anon_sym_char] = ACTIONS(2433), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(2431), + [sym_self] = ACTIONS(2433), + [sym_super] = ACTIONS(2433), + [sym_crate] = ACTIONS(2433), + [sym_metavariable] = ACTIONS(2431), + [sym_grit_metavariable] = ACTIONS(2431), + [sym_raw_string_literal] = ACTIONS(2431), + [sym_float_literal] = ACTIONS(2431), [sym_block_comment] = ACTIONS(3), }, [512] = { - [ts_builtin_sym_end] = ACTIONS(2437), - [sym__primitive_identifier] = ACTIONS(2439), - [anon_sym_SEMI] = ACTIONS(2437), - [anon_sym_macro_rules_BANG] = ACTIONS(2437), - [anon_sym_LPAREN] = ACTIONS(2437), - [anon_sym_LBRACE] = ACTIONS(2437), - [anon_sym_RBRACE] = ACTIONS(2437), - [anon_sym_LBRACK] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2437), - [anon_sym_SQUOTE] = ACTIONS(2439), - [anon_sym_async] = ACTIONS(2439), - [anon_sym_break] = ACTIONS(2439), - [anon_sym_const] = ACTIONS(2439), - [anon_sym_continue] = ACTIONS(2439), - [anon_sym_default] = ACTIONS(2439), - [anon_sym_enum] = ACTIONS(2439), - [anon_sym_fn] = ACTIONS(2439), - [anon_sym_for] = ACTIONS(2439), - [anon_sym_if] = ACTIONS(2439), - [anon_sym_impl] = ACTIONS(2439), - [anon_sym_let] = ACTIONS(2439), - [anon_sym_loop] = ACTIONS(2439), - [anon_sym_match] = ACTIONS(2439), - [anon_sym_mod] = ACTIONS(2439), - [anon_sym_pub] = ACTIONS(2439), - [anon_sym_return] = ACTIONS(2439), - [anon_sym_static] = ACTIONS(2439), - [anon_sym_struct] = ACTIONS(2439), - [anon_sym_trait] = ACTIONS(2439), - [anon_sym_type] = ACTIONS(2439), - [anon_sym_union] = ACTIONS(2439), - [anon_sym_unsafe] = ACTIONS(2439), - [anon_sym_use] = ACTIONS(2439), - [anon_sym_while] = ACTIONS(2439), - [anon_sym_POUND] = ACTIONS(2437), - [anon_sym_BANG] = ACTIONS(2437), - [anon_sym_extern] = ACTIONS(2439), - [anon_sym_LT] = ACTIONS(2437), - [anon_sym_COLON_COLON] = ACTIONS(2437), - [anon_sym_AMP] = ACTIONS(2437), - [anon_sym_DOT_DOT] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_PIPE] = ACTIONS(2437), - [anon_sym_yield] = ACTIONS(2439), - [anon_sym_move] = ACTIONS(2439), - [sym_integer_literal] = ACTIONS(2437), - [aux_sym_string_literal_token1] = ACTIONS(2437), - [sym_char_literal] = ACTIONS(2437), - [anon_sym_true] = ACTIONS(2439), - [anon_sym_false] = ACTIONS(2439), - [anon_sym_u8] = ACTIONS(2439), - [anon_sym_i8] = ACTIONS(2439), - [anon_sym_u16] = ACTIONS(2439), - [anon_sym_i16] = ACTIONS(2439), - [anon_sym_u32] = ACTIONS(2439), - [anon_sym_i32] = ACTIONS(2439), - [anon_sym_u64] = ACTIONS(2439), - [anon_sym_i64] = ACTIONS(2439), - [anon_sym_u128] = ACTIONS(2439), - [anon_sym_i128] = ACTIONS(2439), - [anon_sym_isize] = ACTIONS(2439), - [anon_sym_usize] = ACTIONS(2439), - [anon_sym_f32] = ACTIONS(2439), - [anon_sym_f64] = ACTIONS(2439), - [anon_sym_bool] = ACTIONS(2439), - [anon_sym_str] = ACTIONS(2439), - [anon_sym_char] = ACTIONS(2439), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(2437), - [sym_self] = ACTIONS(2439), - [sym_super] = ACTIONS(2439), - [sym_crate] = ACTIONS(2439), - [sym_metavariable] = ACTIONS(2437), - [sym_grit_metavariable] = ACTIONS(2437), - [sym_raw_string_literal] = ACTIONS(2437), - [sym_float_literal] = ACTIONS(2437), + [ts_builtin_sym_end] = ACTIONS(2435), + [sym__primitive_identifier] = ACTIONS(2437), + [anon_sym_SEMI] = ACTIONS(2435), + [anon_sym_macro_rules_BANG] = ACTIONS(2435), + [anon_sym_LPAREN] = ACTIONS(2435), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_RBRACE] = ACTIONS(2435), + [anon_sym_LBRACK] = ACTIONS(2435), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_SQUOTE] = ACTIONS(2437), + [anon_sym_async] = ACTIONS(2437), + [anon_sym_break] = ACTIONS(2437), + [anon_sym_const] = ACTIONS(2437), + [anon_sym_continue] = ACTIONS(2437), + [anon_sym_default] = ACTIONS(2437), + [anon_sym_enum] = ACTIONS(2437), + [anon_sym_fn] = ACTIONS(2437), + [anon_sym_for] = ACTIONS(2437), + [anon_sym_if] = ACTIONS(2437), + [anon_sym_impl] = ACTIONS(2437), + [anon_sym_let] = ACTIONS(2437), + [anon_sym_loop] = ACTIONS(2437), + [anon_sym_match] = ACTIONS(2437), + [anon_sym_mod] = ACTIONS(2437), + [anon_sym_pub] = ACTIONS(2437), + [anon_sym_return] = ACTIONS(2437), + [anon_sym_static] = ACTIONS(2437), + [anon_sym_struct] = ACTIONS(2437), + [anon_sym_trait] = ACTIONS(2437), + [anon_sym_type] = ACTIONS(2437), + [anon_sym_union] = ACTIONS(2437), + [anon_sym_unsafe] = ACTIONS(2437), + [anon_sym_use] = ACTIONS(2437), + [anon_sym_while] = ACTIONS(2437), + [anon_sym_POUND] = ACTIONS(2435), + [anon_sym_BANG] = ACTIONS(2435), + [anon_sym_extern] = ACTIONS(2437), + [anon_sym_LT] = ACTIONS(2435), + [anon_sym_COLON_COLON] = ACTIONS(2435), + [anon_sym_AMP] = ACTIONS(2435), + [anon_sym_DOT_DOT] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(2435), + [anon_sym_PIPE] = ACTIONS(2435), + [anon_sym_yield] = ACTIONS(2437), + [anon_sym_move] = ACTIONS(2437), + [sym_integer_literal] = ACTIONS(2435), + [aux_sym_string_literal_token1] = ACTIONS(2435), + [sym_char_literal] = ACTIONS(2435), + [anon_sym_true] = ACTIONS(2437), + [anon_sym_false] = ACTIONS(2437), + [anon_sym_u8] = ACTIONS(2437), + [anon_sym_i8] = ACTIONS(2437), + [anon_sym_u16] = ACTIONS(2437), + [anon_sym_i16] = ACTIONS(2437), + [anon_sym_u32] = ACTIONS(2437), + [anon_sym_i32] = ACTIONS(2437), + [anon_sym_u64] = ACTIONS(2437), + [anon_sym_i64] = ACTIONS(2437), + [anon_sym_u128] = ACTIONS(2437), + [anon_sym_i128] = ACTIONS(2437), + [anon_sym_isize] = ACTIONS(2437), + [anon_sym_usize] = ACTIONS(2437), + [anon_sym_f32] = ACTIONS(2437), + [anon_sym_f64] = ACTIONS(2437), + [anon_sym_bool] = ACTIONS(2437), + [anon_sym_str] = ACTIONS(2437), + [anon_sym_char] = ACTIONS(2437), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(2435), + [sym_self] = ACTIONS(2437), + [sym_super] = ACTIONS(2437), + [sym_crate] = ACTIONS(2437), + [sym_metavariable] = ACTIONS(2435), + [sym_grit_metavariable] = ACTIONS(2435), + [sym_raw_string_literal] = ACTIONS(2435), + [sym_float_literal] = ACTIONS(2435), [sym_block_comment] = ACTIONS(3), }, [513] = { - [ts_builtin_sym_end] = ACTIONS(2441), - [sym__primitive_identifier] = ACTIONS(2443), - [anon_sym_SEMI] = ACTIONS(2441), - [anon_sym_macro_rules_BANG] = ACTIONS(2441), - [anon_sym_LPAREN] = ACTIONS(2441), - [anon_sym_LBRACE] = ACTIONS(2441), - [anon_sym_RBRACE] = ACTIONS(2441), - [anon_sym_LBRACK] = ACTIONS(2441), - [anon_sym_STAR] = ACTIONS(2441), - [anon_sym_SQUOTE] = ACTIONS(2443), - [anon_sym_async] = ACTIONS(2443), - [anon_sym_break] = ACTIONS(2443), - [anon_sym_const] = ACTIONS(2443), - [anon_sym_continue] = ACTIONS(2443), - [anon_sym_default] = ACTIONS(2443), - [anon_sym_enum] = ACTIONS(2443), - [anon_sym_fn] = ACTIONS(2443), - [anon_sym_for] = ACTIONS(2443), - [anon_sym_if] = ACTIONS(2443), - [anon_sym_impl] = ACTIONS(2443), - [anon_sym_let] = ACTIONS(2443), - [anon_sym_loop] = ACTIONS(2443), - [anon_sym_match] = ACTIONS(2443), - [anon_sym_mod] = ACTIONS(2443), - [anon_sym_pub] = ACTIONS(2443), - [anon_sym_return] = ACTIONS(2443), - [anon_sym_static] = ACTIONS(2443), - [anon_sym_struct] = ACTIONS(2443), - [anon_sym_trait] = ACTIONS(2443), - [anon_sym_type] = ACTIONS(2443), - [anon_sym_union] = ACTIONS(2443), - [anon_sym_unsafe] = ACTIONS(2443), - [anon_sym_use] = ACTIONS(2443), - [anon_sym_while] = ACTIONS(2443), - [anon_sym_POUND] = ACTIONS(2441), - [anon_sym_BANG] = ACTIONS(2441), - [anon_sym_extern] = ACTIONS(2443), - [anon_sym_LT] = ACTIONS(2441), - [anon_sym_COLON_COLON] = ACTIONS(2441), - [anon_sym_AMP] = ACTIONS(2441), - [anon_sym_DOT_DOT] = ACTIONS(2441), - [anon_sym_DASH] = ACTIONS(2441), - [anon_sym_PIPE] = ACTIONS(2441), - [anon_sym_yield] = ACTIONS(2443), - [anon_sym_move] = ACTIONS(2443), - [sym_integer_literal] = ACTIONS(2441), - [aux_sym_string_literal_token1] = ACTIONS(2441), - [sym_char_literal] = ACTIONS(2441), - [anon_sym_true] = ACTIONS(2443), - [anon_sym_false] = ACTIONS(2443), - [anon_sym_u8] = ACTIONS(2443), - [anon_sym_i8] = ACTIONS(2443), - [anon_sym_u16] = ACTIONS(2443), - [anon_sym_i16] = ACTIONS(2443), - [anon_sym_u32] = ACTIONS(2443), - [anon_sym_i32] = ACTIONS(2443), - [anon_sym_u64] = ACTIONS(2443), - [anon_sym_i64] = ACTIONS(2443), - [anon_sym_u128] = ACTIONS(2443), - [anon_sym_i128] = ACTIONS(2443), - [anon_sym_isize] = ACTIONS(2443), - [anon_sym_usize] = ACTIONS(2443), - [anon_sym_f32] = ACTIONS(2443), - [anon_sym_f64] = ACTIONS(2443), - [anon_sym_bool] = ACTIONS(2443), - [anon_sym_str] = ACTIONS(2443), - [anon_sym_char] = ACTIONS(2443), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(2441), - [sym_self] = ACTIONS(2443), - [sym_super] = ACTIONS(2443), - [sym_crate] = ACTIONS(2443), - [sym_metavariable] = ACTIONS(2441), - [sym_grit_metavariable] = ACTIONS(2441), - [sym_raw_string_literal] = ACTIONS(2441), - [sym_float_literal] = ACTIONS(2441), + [ts_builtin_sym_end] = ACTIONS(2439), + [sym__primitive_identifier] = ACTIONS(2441), + [anon_sym_SEMI] = ACTIONS(2439), + [anon_sym_macro_rules_BANG] = ACTIONS(2439), + [anon_sym_LPAREN] = ACTIONS(2439), + [anon_sym_LBRACE] = ACTIONS(2439), + [anon_sym_RBRACE] = ACTIONS(2439), + [anon_sym_LBRACK] = ACTIONS(2439), + [anon_sym_STAR] = ACTIONS(2439), + [anon_sym_SQUOTE] = ACTIONS(2441), + [anon_sym_async] = ACTIONS(2441), + [anon_sym_break] = ACTIONS(2441), + [anon_sym_const] = ACTIONS(2441), + [anon_sym_continue] = ACTIONS(2441), + [anon_sym_default] = ACTIONS(2441), + [anon_sym_enum] = ACTIONS(2441), + [anon_sym_fn] = ACTIONS(2441), + [anon_sym_for] = ACTIONS(2441), + [anon_sym_if] = ACTIONS(2441), + [anon_sym_impl] = ACTIONS(2441), + [anon_sym_let] = ACTIONS(2441), + [anon_sym_loop] = ACTIONS(2441), + [anon_sym_match] = ACTIONS(2441), + [anon_sym_mod] = ACTIONS(2441), + [anon_sym_pub] = ACTIONS(2441), + [anon_sym_return] = ACTIONS(2441), + [anon_sym_static] = ACTIONS(2441), + [anon_sym_struct] = ACTIONS(2441), + [anon_sym_trait] = ACTIONS(2441), + [anon_sym_type] = ACTIONS(2441), + [anon_sym_union] = ACTIONS(2441), + [anon_sym_unsafe] = ACTIONS(2441), + [anon_sym_use] = ACTIONS(2441), + [anon_sym_while] = ACTIONS(2441), + [anon_sym_POUND] = ACTIONS(2439), + [anon_sym_BANG] = ACTIONS(2439), + [anon_sym_extern] = ACTIONS(2441), + [anon_sym_LT] = ACTIONS(2439), + [anon_sym_COLON_COLON] = ACTIONS(2439), + [anon_sym_AMP] = ACTIONS(2439), + [anon_sym_DOT_DOT] = ACTIONS(2439), + [anon_sym_DASH] = ACTIONS(2439), + [anon_sym_PIPE] = ACTIONS(2439), + [anon_sym_yield] = ACTIONS(2441), + [anon_sym_move] = ACTIONS(2441), + [sym_integer_literal] = ACTIONS(2439), + [aux_sym_string_literal_token1] = ACTIONS(2439), + [sym_char_literal] = ACTIONS(2439), + [anon_sym_true] = ACTIONS(2441), + [anon_sym_false] = ACTIONS(2441), + [anon_sym_u8] = ACTIONS(2441), + [anon_sym_i8] = ACTIONS(2441), + [anon_sym_u16] = ACTIONS(2441), + [anon_sym_i16] = ACTIONS(2441), + [anon_sym_u32] = ACTIONS(2441), + [anon_sym_i32] = ACTIONS(2441), + [anon_sym_u64] = ACTIONS(2441), + [anon_sym_i64] = ACTIONS(2441), + [anon_sym_u128] = ACTIONS(2441), + [anon_sym_i128] = ACTIONS(2441), + [anon_sym_isize] = ACTIONS(2441), + [anon_sym_usize] = ACTIONS(2441), + [anon_sym_f32] = ACTIONS(2441), + [anon_sym_f64] = ACTIONS(2441), + [anon_sym_bool] = ACTIONS(2441), + [anon_sym_str] = ACTIONS(2441), + [anon_sym_char] = ACTIONS(2441), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(2439), + [sym_self] = ACTIONS(2441), + [sym_super] = ACTIONS(2441), + [sym_crate] = ACTIONS(2441), + [sym_metavariable] = ACTIONS(2439), + [sym_grit_metavariable] = ACTIONS(2439), + [sym_raw_string_literal] = ACTIONS(2439), + [sym_float_literal] = ACTIONS(2439), [sym_block_comment] = ACTIONS(3), }, [514] = { - [ts_builtin_sym_end] = ACTIONS(2445), - [sym__primitive_identifier] = ACTIONS(2447), - [anon_sym_SEMI] = ACTIONS(2445), - [anon_sym_macro_rules_BANG] = ACTIONS(2445), - [anon_sym_LPAREN] = ACTIONS(2445), - [anon_sym_LBRACE] = ACTIONS(2445), - [anon_sym_RBRACE] = ACTIONS(2445), - [anon_sym_LBRACK] = ACTIONS(2445), - [anon_sym_STAR] = ACTIONS(2445), - [anon_sym_SQUOTE] = ACTIONS(2447), - [anon_sym_async] = ACTIONS(2447), - [anon_sym_break] = ACTIONS(2447), - [anon_sym_const] = ACTIONS(2447), - [anon_sym_continue] = ACTIONS(2447), - [anon_sym_default] = ACTIONS(2447), - [anon_sym_enum] = ACTIONS(2447), - [anon_sym_fn] = ACTIONS(2447), - [anon_sym_for] = ACTIONS(2447), - [anon_sym_if] = ACTIONS(2447), - [anon_sym_impl] = ACTIONS(2447), - [anon_sym_let] = ACTIONS(2447), - [anon_sym_loop] = ACTIONS(2447), - [anon_sym_match] = ACTIONS(2447), - [anon_sym_mod] = ACTIONS(2447), - [anon_sym_pub] = ACTIONS(2447), - [anon_sym_return] = ACTIONS(2447), - [anon_sym_static] = ACTIONS(2447), - [anon_sym_struct] = ACTIONS(2447), - [anon_sym_trait] = ACTIONS(2447), - [anon_sym_type] = ACTIONS(2447), - [anon_sym_union] = ACTIONS(2447), - [anon_sym_unsafe] = ACTIONS(2447), - [anon_sym_use] = ACTIONS(2447), - [anon_sym_while] = ACTIONS(2447), - [anon_sym_POUND] = ACTIONS(2445), - [anon_sym_BANG] = ACTIONS(2445), - [anon_sym_extern] = ACTIONS(2447), - [anon_sym_LT] = ACTIONS(2445), - [anon_sym_COLON_COLON] = ACTIONS(2445), - [anon_sym_AMP] = ACTIONS(2445), - [anon_sym_DOT_DOT] = ACTIONS(2445), - [anon_sym_DASH] = ACTIONS(2445), - [anon_sym_PIPE] = ACTIONS(2445), - [anon_sym_yield] = ACTIONS(2447), - [anon_sym_move] = ACTIONS(2447), - [sym_integer_literal] = ACTIONS(2445), - [aux_sym_string_literal_token1] = ACTIONS(2445), - [sym_char_literal] = ACTIONS(2445), - [anon_sym_true] = ACTIONS(2447), - [anon_sym_false] = ACTIONS(2447), - [anon_sym_u8] = ACTIONS(2447), - [anon_sym_i8] = ACTIONS(2447), - [anon_sym_u16] = ACTIONS(2447), - [anon_sym_i16] = ACTIONS(2447), - [anon_sym_u32] = ACTIONS(2447), - [anon_sym_i32] = ACTIONS(2447), - [anon_sym_u64] = ACTIONS(2447), - [anon_sym_i64] = ACTIONS(2447), - [anon_sym_u128] = ACTIONS(2447), - [anon_sym_i128] = ACTIONS(2447), - [anon_sym_isize] = ACTIONS(2447), - [anon_sym_usize] = ACTIONS(2447), - [anon_sym_f32] = ACTIONS(2447), - [anon_sym_f64] = ACTIONS(2447), - [anon_sym_bool] = ACTIONS(2447), - [anon_sym_str] = ACTIONS(2447), - [anon_sym_char] = ACTIONS(2447), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(2445), - [sym_self] = ACTIONS(2447), - [sym_super] = ACTIONS(2447), - [sym_crate] = ACTIONS(2447), - [sym_metavariable] = ACTIONS(2445), - [sym_grit_metavariable] = ACTIONS(2445), - [sym_raw_string_literal] = ACTIONS(2445), - [sym_float_literal] = ACTIONS(2445), + [ts_builtin_sym_end] = ACTIONS(2443), + [sym__primitive_identifier] = ACTIONS(2445), + [anon_sym_SEMI] = ACTIONS(2443), + [anon_sym_macro_rules_BANG] = ACTIONS(2443), + [anon_sym_LPAREN] = ACTIONS(2443), + [anon_sym_LBRACE] = ACTIONS(2443), + [anon_sym_RBRACE] = ACTIONS(2443), + [anon_sym_LBRACK] = ACTIONS(2443), + [anon_sym_STAR] = ACTIONS(2443), + [anon_sym_SQUOTE] = ACTIONS(2445), + [anon_sym_async] = ACTIONS(2445), + [anon_sym_break] = ACTIONS(2445), + [anon_sym_const] = ACTIONS(2445), + [anon_sym_continue] = ACTIONS(2445), + [anon_sym_default] = ACTIONS(2445), + [anon_sym_enum] = ACTIONS(2445), + [anon_sym_fn] = ACTIONS(2445), + [anon_sym_for] = ACTIONS(2445), + [anon_sym_if] = ACTIONS(2445), + [anon_sym_impl] = ACTIONS(2445), + [anon_sym_let] = ACTIONS(2445), + [anon_sym_loop] = ACTIONS(2445), + [anon_sym_match] = ACTIONS(2445), + [anon_sym_mod] = ACTIONS(2445), + [anon_sym_pub] = ACTIONS(2445), + [anon_sym_return] = ACTIONS(2445), + [anon_sym_static] = ACTIONS(2445), + [anon_sym_struct] = ACTIONS(2445), + [anon_sym_trait] = ACTIONS(2445), + [anon_sym_type] = ACTIONS(2445), + [anon_sym_union] = ACTIONS(2445), + [anon_sym_unsafe] = ACTIONS(2445), + [anon_sym_use] = ACTIONS(2445), + [anon_sym_while] = ACTIONS(2445), + [anon_sym_POUND] = ACTIONS(2443), + [anon_sym_BANG] = ACTIONS(2443), + [anon_sym_extern] = ACTIONS(2445), + [anon_sym_LT] = ACTIONS(2443), + [anon_sym_COLON_COLON] = ACTIONS(2443), + [anon_sym_AMP] = ACTIONS(2443), + [anon_sym_DOT_DOT] = ACTIONS(2443), + [anon_sym_DASH] = ACTIONS(2443), + [anon_sym_PIPE] = ACTIONS(2443), + [anon_sym_yield] = ACTIONS(2445), + [anon_sym_move] = ACTIONS(2445), + [sym_integer_literal] = ACTIONS(2443), + [aux_sym_string_literal_token1] = ACTIONS(2443), + [sym_char_literal] = ACTIONS(2443), + [anon_sym_true] = ACTIONS(2445), + [anon_sym_false] = ACTIONS(2445), + [anon_sym_u8] = ACTIONS(2445), + [anon_sym_i8] = ACTIONS(2445), + [anon_sym_u16] = ACTIONS(2445), + [anon_sym_i16] = ACTIONS(2445), + [anon_sym_u32] = ACTIONS(2445), + [anon_sym_i32] = ACTIONS(2445), + [anon_sym_u64] = ACTIONS(2445), + [anon_sym_i64] = ACTIONS(2445), + [anon_sym_u128] = ACTIONS(2445), + [anon_sym_i128] = ACTIONS(2445), + [anon_sym_isize] = ACTIONS(2445), + [anon_sym_usize] = ACTIONS(2445), + [anon_sym_f32] = ACTIONS(2445), + [anon_sym_f64] = ACTIONS(2445), + [anon_sym_bool] = ACTIONS(2445), + [anon_sym_str] = ACTIONS(2445), + [anon_sym_char] = ACTIONS(2445), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(2443), + [sym_self] = ACTIONS(2445), + [sym_super] = ACTIONS(2445), + [sym_crate] = ACTIONS(2445), + [sym_metavariable] = ACTIONS(2443), + [sym_grit_metavariable] = ACTIONS(2443), + [sym_raw_string_literal] = ACTIONS(2443), + [sym_float_literal] = ACTIONS(2443), [sym_block_comment] = ACTIONS(3), }, [515] = { - [ts_builtin_sym_end] = ACTIONS(2449), - [sym__primitive_identifier] = ACTIONS(2451), - [anon_sym_SEMI] = ACTIONS(2449), - [anon_sym_macro_rules_BANG] = ACTIONS(2449), - [anon_sym_LPAREN] = ACTIONS(2449), - [anon_sym_LBRACE] = ACTIONS(2449), - [anon_sym_RBRACE] = ACTIONS(2449), - [anon_sym_LBRACK] = ACTIONS(2449), - [anon_sym_STAR] = ACTIONS(2449), - [anon_sym_SQUOTE] = ACTIONS(2451), - [anon_sym_async] = ACTIONS(2451), - [anon_sym_break] = ACTIONS(2451), - [anon_sym_const] = ACTIONS(2451), - [anon_sym_continue] = ACTIONS(2451), - [anon_sym_default] = ACTIONS(2451), - [anon_sym_enum] = ACTIONS(2451), - [anon_sym_fn] = ACTIONS(2451), - [anon_sym_for] = ACTIONS(2451), - [anon_sym_if] = ACTIONS(2451), - [anon_sym_impl] = ACTIONS(2451), - [anon_sym_let] = ACTIONS(2451), - [anon_sym_loop] = ACTIONS(2451), - [anon_sym_match] = ACTIONS(2451), - [anon_sym_mod] = ACTIONS(2451), - [anon_sym_pub] = ACTIONS(2451), - [anon_sym_return] = ACTIONS(2451), - [anon_sym_static] = ACTIONS(2451), - [anon_sym_struct] = ACTIONS(2451), - [anon_sym_trait] = ACTIONS(2451), - [anon_sym_type] = ACTIONS(2451), - [anon_sym_union] = ACTIONS(2451), - [anon_sym_unsafe] = ACTIONS(2451), - [anon_sym_use] = ACTIONS(2451), - [anon_sym_while] = ACTIONS(2451), - [anon_sym_POUND] = ACTIONS(2449), - [anon_sym_BANG] = ACTIONS(2449), - [anon_sym_extern] = ACTIONS(2451), - [anon_sym_LT] = ACTIONS(2449), - [anon_sym_COLON_COLON] = ACTIONS(2449), - [anon_sym_AMP] = ACTIONS(2449), - [anon_sym_DOT_DOT] = ACTIONS(2449), - [anon_sym_DASH] = ACTIONS(2449), - [anon_sym_PIPE] = ACTIONS(2449), - [anon_sym_yield] = ACTIONS(2451), - [anon_sym_move] = ACTIONS(2451), - [sym_integer_literal] = ACTIONS(2449), - [aux_sym_string_literal_token1] = ACTIONS(2449), - [sym_char_literal] = ACTIONS(2449), - [anon_sym_true] = ACTIONS(2451), - [anon_sym_false] = ACTIONS(2451), - [anon_sym_u8] = ACTIONS(2451), - [anon_sym_i8] = ACTIONS(2451), - [anon_sym_u16] = ACTIONS(2451), - [anon_sym_i16] = ACTIONS(2451), - [anon_sym_u32] = ACTIONS(2451), - [anon_sym_i32] = ACTIONS(2451), - [anon_sym_u64] = ACTIONS(2451), - [anon_sym_i64] = ACTIONS(2451), - [anon_sym_u128] = ACTIONS(2451), - [anon_sym_i128] = ACTIONS(2451), - [anon_sym_isize] = ACTIONS(2451), - [anon_sym_usize] = ACTIONS(2451), - [anon_sym_f32] = ACTIONS(2451), - [anon_sym_f64] = ACTIONS(2451), - [anon_sym_bool] = ACTIONS(2451), - [anon_sym_str] = ACTIONS(2451), - [anon_sym_char] = ACTIONS(2451), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(2449), - [sym_self] = ACTIONS(2451), - [sym_super] = ACTIONS(2451), - [sym_crate] = ACTIONS(2451), - [sym_metavariable] = ACTIONS(2449), - [sym_grit_metavariable] = ACTIONS(2449), - [sym_raw_string_literal] = ACTIONS(2449), - [sym_float_literal] = ACTIONS(2449), + [ts_builtin_sym_end] = ACTIONS(2447), + [sym__primitive_identifier] = ACTIONS(2449), + [anon_sym_SEMI] = ACTIONS(2447), + [anon_sym_macro_rules_BANG] = ACTIONS(2447), + [anon_sym_LPAREN] = ACTIONS(2447), + [anon_sym_LBRACE] = ACTIONS(2447), + [anon_sym_RBRACE] = ACTIONS(2447), + [anon_sym_LBRACK] = ACTIONS(2447), + [anon_sym_STAR] = ACTIONS(2447), + [anon_sym_SQUOTE] = ACTIONS(2449), + [anon_sym_async] = ACTIONS(2449), + [anon_sym_break] = ACTIONS(2449), + [anon_sym_const] = ACTIONS(2449), + [anon_sym_continue] = ACTIONS(2449), + [anon_sym_default] = ACTIONS(2449), + [anon_sym_enum] = ACTIONS(2449), + [anon_sym_fn] = ACTIONS(2449), + [anon_sym_for] = ACTIONS(2449), + [anon_sym_if] = ACTIONS(2449), + [anon_sym_impl] = ACTIONS(2449), + [anon_sym_let] = ACTIONS(2449), + [anon_sym_loop] = ACTIONS(2449), + [anon_sym_match] = ACTIONS(2449), + [anon_sym_mod] = ACTIONS(2449), + [anon_sym_pub] = ACTIONS(2449), + [anon_sym_return] = ACTIONS(2449), + [anon_sym_static] = ACTIONS(2449), + [anon_sym_struct] = ACTIONS(2449), + [anon_sym_trait] = ACTIONS(2449), + [anon_sym_type] = ACTIONS(2449), + [anon_sym_union] = ACTIONS(2449), + [anon_sym_unsafe] = ACTIONS(2449), + [anon_sym_use] = ACTIONS(2449), + [anon_sym_while] = ACTIONS(2449), + [anon_sym_POUND] = ACTIONS(2447), + [anon_sym_BANG] = ACTIONS(2447), + [anon_sym_extern] = ACTIONS(2449), + [anon_sym_LT] = ACTIONS(2447), + [anon_sym_COLON_COLON] = ACTIONS(2447), + [anon_sym_AMP] = ACTIONS(2447), + [anon_sym_DOT_DOT] = ACTIONS(2447), + [anon_sym_DASH] = ACTIONS(2447), + [anon_sym_PIPE] = ACTIONS(2447), + [anon_sym_yield] = ACTIONS(2449), + [anon_sym_move] = ACTIONS(2449), + [sym_integer_literal] = ACTIONS(2447), + [aux_sym_string_literal_token1] = ACTIONS(2447), + [sym_char_literal] = ACTIONS(2447), + [anon_sym_true] = ACTIONS(2449), + [anon_sym_false] = ACTIONS(2449), + [anon_sym_u8] = ACTIONS(2449), + [anon_sym_i8] = ACTIONS(2449), + [anon_sym_u16] = ACTIONS(2449), + [anon_sym_i16] = ACTIONS(2449), + [anon_sym_u32] = ACTIONS(2449), + [anon_sym_i32] = ACTIONS(2449), + [anon_sym_u64] = ACTIONS(2449), + [anon_sym_i64] = ACTIONS(2449), + [anon_sym_u128] = ACTIONS(2449), + [anon_sym_i128] = ACTIONS(2449), + [anon_sym_isize] = ACTIONS(2449), + [anon_sym_usize] = ACTIONS(2449), + [anon_sym_f32] = ACTIONS(2449), + [anon_sym_f64] = ACTIONS(2449), + [anon_sym_bool] = ACTIONS(2449), + [anon_sym_str] = ACTIONS(2449), + [anon_sym_char] = ACTIONS(2449), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(2447), + [sym_self] = ACTIONS(2449), + [sym_super] = ACTIONS(2449), + [sym_crate] = ACTIONS(2449), + [sym_metavariable] = ACTIONS(2447), + [sym_grit_metavariable] = ACTIONS(2447), + [sym_raw_string_literal] = ACTIONS(2447), + [sym_float_literal] = ACTIONS(2447), [sym_block_comment] = ACTIONS(3), }, [516] = { - [ts_builtin_sym_end] = ACTIONS(2453), - [sym__primitive_identifier] = ACTIONS(2455), - [anon_sym_SEMI] = ACTIONS(2453), - [anon_sym_macro_rules_BANG] = ACTIONS(2453), - [anon_sym_LPAREN] = ACTIONS(2453), - [anon_sym_LBRACE] = ACTIONS(2453), - [anon_sym_RBRACE] = ACTIONS(2453), - [anon_sym_LBRACK] = ACTIONS(2453), - [anon_sym_STAR] = ACTIONS(2453), - [anon_sym_SQUOTE] = ACTIONS(2455), - [anon_sym_async] = ACTIONS(2455), - [anon_sym_break] = ACTIONS(2455), - [anon_sym_const] = ACTIONS(2455), - [anon_sym_continue] = ACTIONS(2455), - [anon_sym_default] = ACTIONS(2455), - [anon_sym_enum] = ACTIONS(2455), - [anon_sym_fn] = ACTIONS(2455), - [anon_sym_for] = ACTIONS(2455), - [anon_sym_if] = ACTIONS(2455), - [anon_sym_impl] = ACTIONS(2455), - [anon_sym_let] = ACTIONS(2455), - [anon_sym_loop] = ACTIONS(2455), - [anon_sym_match] = ACTIONS(2455), - [anon_sym_mod] = ACTIONS(2455), - [anon_sym_pub] = ACTIONS(2455), - [anon_sym_return] = ACTIONS(2455), - [anon_sym_static] = ACTIONS(2455), - [anon_sym_struct] = ACTIONS(2455), - [anon_sym_trait] = ACTIONS(2455), - [anon_sym_type] = ACTIONS(2455), - [anon_sym_union] = ACTIONS(2455), - [anon_sym_unsafe] = ACTIONS(2455), - [anon_sym_use] = ACTIONS(2455), - [anon_sym_while] = ACTIONS(2455), - [anon_sym_POUND] = ACTIONS(2453), - [anon_sym_BANG] = ACTIONS(2453), - [anon_sym_extern] = ACTIONS(2455), - [anon_sym_LT] = ACTIONS(2453), - [anon_sym_COLON_COLON] = ACTIONS(2453), - [anon_sym_AMP] = ACTIONS(2453), - [anon_sym_DOT_DOT] = ACTIONS(2453), - [anon_sym_DASH] = ACTIONS(2453), - [anon_sym_PIPE] = ACTIONS(2453), - [anon_sym_yield] = ACTIONS(2455), - [anon_sym_move] = ACTIONS(2455), - [sym_integer_literal] = ACTIONS(2453), - [aux_sym_string_literal_token1] = ACTIONS(2453), - [sym_char_literal] = ACTIONS(2453), - [anon_sym_true] = ACTIONS(2455), - [anon_sym_false] = ACTIONS(2455), - [anon_sym_u8] = ACTIONS(2455), - [anon_sym_i8] = ACTIONS(2455), - [anon_sym_u16] = ACTIONS(2455), - [anon_sym_i16] = ACTIONS(2455), - [anon_sym_u32] = ACTIONS(2455), - [anon_sym_i32] = ACTIONS(2455), - [anon_sym_u64] = ACTIONS(2455), - [anon_sym_i64] = ACTIONS(2455), - [anon_sym_u128] = ACTIONS(2455), - [anon_sym_i128] = ACTIONS(2455), - [anon_sym_isize] = ACTIONS(2455), - [anon_sym_usize] = ACTIONS(2455), - [anon_sym_f32] = ACTIONS(2455), - [anon_sym_f64] = ACTIONS(2455), - [anon_sym_bool] = ACTIONS(2455), - [anon_sym_str] = ACTIONS(2455), - [anon_sym_char] = ACTIONS(2455), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(2453), - [sym_self] = ACTIONS(2455), - [sym_super] = ACTIONS(2455), - [sym_crate] = ACTIONS(2455), - [sym_metavariable] = ACTIONS(2453), - [sym_grit_metavariable] = ACTIONS(2453), - [sym_raw_string_literal] = ACTIONS(2453), - [sym_float_literal] = ACTIONS(2453), + [ts_builtin_sym_end] = ACTIONS(2451), + [sym__primitive_identifier] = ACTIONS(2453), + [anon_sym_SEMI] = ACTIONS(2451), + [anon_sym_macro_rules_BANG] = ACTIONS(2451), + [anon_sym_LPAREN] = ACTIONS(2451), + [anon_sym_LBRACE] = ACTIONS(2451), + [anon_sym_RBRACE] = ACTIONS(2451), + [anon_sym_LBRACK] = ACTIONS(2451), + [anon_sym_STAR] = ACTIONS(2451), + [anon_sym_SQUOTE] = ACTIONS(2453), + [anon_sym_async] = ACTIONS(2453), + [anon_sym_break] = ACTIONS(2453), + [anon_sym_const] = ACTIONS(2453), + [anon_sym_continue] = ACTIONS(2453), + [anon_sym_default] = ACTIONS(2453), + [anon_sym_enum] = ACTIONS(2453), + [anon_sym_fn] = ACTIONS(2453), + [anon_sym_for] = ACTIONS(2453), + [anon_sym_if] = ACTIONS(2453), + [anon_sym_impl] = ACTIONS(2453), + [anon_sym_let] = ACTIONS(2453), + [anon_sym_loop] = ACTIONS(2453), + [anon_sym_match] = ACTIONS(2453), + [anon_sym_mod] = ACTIONS(2453), + [anon_sym_pub] = ACTIONS(2453), + [anon_sym_return] = ACTIONS(2453), + [anon_sym_static] = ACTIONS(2453), + [anon_sym_struct] = ACTIONS(2453), + [anon_sym_trait] = ACTIONS(2453), + [anon_sym_type] = ACTIONS(2453), + [anon_sym_union] = ACTIONS(2453), + [anon_sym_unsafe] = ACTIONS(2453), + [anon_sym_use] = ACTIONS(2453), + [anon_sym_while] = ACTIONS(2453), + [anon_sym_POUND] = ACTIONS(2451), + [anon_sym_BANG] = ACTIONS(2451), + [anon_sym_extern] = ACTIONS(2453), + [anon_sym_LT] = ACTIONS(2451), + [anon_sym_COLON_COLON] = ACTIONS(2451), + [anon_sym_AMP] = ACTIONS(2451), + [anon_sym_DOT_DOT] = ACTIONS(2451), + [anon_sym_DASH] = ACTIONS(2451), + [anon_sym_PIPE] = ACTIONS(2451), + [anon_sym_yield] = ACTIONS(2453), + [anon_sym_move] = ACTIONS(2453), + [sym_integer_literal] = ACTIONS(2451), + [aux_sym_string_literal_token1] = ACTIONS(2451), + [sym_char_literal] = ACTIONS(2451), + [anon_sym_true] = ACTIONS(2453), + [anon_sym_false] = ACTIONS(2453), + [anon_sym_u8] = ACTIONS(2453), + [anon_sym_i8] = ACTIONS(2453), + [anon_sym_u16] = ACTIONS(2453), + [anon_sym_i16] = ACTIONS(2453), + [anon_sym_u32] = ACTIONS(2453), + [anon_sym_i32] = ACTIONS(2453), + [anon_sym_u64] = ACTIONS(2453), + [anon_sym_i64] = ACTIONS(2453), + [anon_sym_u128] = ACTIONS(2453), + [anon_sym_i128] = ACTIONS(2453), + [anon_sym_isize] = ACTIONS(2453), + [anon_sym_usize] = ACTIONS(2453), + [anon_sym_f32] = ACTIONS(2453), + [anon_sym_f64] = ACTIONS(2453), + [anon_sym_bool] = ACTIONS(2453), + [anon_sym_str] = ACTIONS(2453), + [anon_sym_char] = ACTIONS(2453), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(2451), + [sym_self] = ACTIONS(2453), + [sym_super] = ACTIONS(2453), + [sym_crate] = ACTIONS(2453), + [sym_metavariable] = ACTIONS(2451), + [sym_grit_metavariable] = ACTIONS(2451), + [sym_raw_string_literal] = ACTIONS(2451), + [sym_float_literal] = ACTIONS(2451), [sym_block_comment] = ACTIONS(3), }, [517] = { - [ts_builtin_sym_end] = ACTIONS(2457), - [sym__primitive_identifier] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2457), - [anon_sym_macro_rules_BANG] = ACTIONS(2457), - [anon_sym_LPAREN] = ACTIONS(2457), - [anon_sym_LBRACE] = ACTIONS(2457), - [anon_sym_RBRACE] = ACTIONS(2457), - [anon_sym_LBRACK] = ACTIONS(2457), - [anon_sym_STAR] = ACTIONS(2457), - [anon_sym_SQUOTE] = ACTIONS(2459), - [anon_sym_async] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_fn] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_impl] = ACTIONS(2459), - [anon_sym_let] = ACTIONS(2459), - [anon_sym_loop] = ACTIONS(2459), - [anon_sym_match] = ACTIONS(2459), - [anon_sym_mod] = ACTIONS(2459), - [anon_sym_pub] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_trait] = ACTIONS(2459), - [anon_sym_type] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_unsafe] = ACTIONS(2459), - [anon_sym_use] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_POUND] = ACTIONS(2457), - [anon_sym_BANG] = ACTIONS(2457), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym_LT] = ACTIONS(2457), - [anon_sym_COLON_COLON] = ACTIONS(2457), - [anon_sym_AMP] = ACTIONS(2457), - [anon_sym_DOT_DOT] = ACTIONS(2457), - [anon_sym_DASH] = ACTIONS(2457), - [anon_sym_PIPE] = ACTIONS(2457), - [anon_sym_yield] = ACTIONS(2459), - [anon_sym_move] = ACTIONS(2459), - [sym_integer_literal] = ACTIONS(2457), - [aux_sym_string_literal_token1] = ACTIONS(2457), - [sym_char_literal] = ACTIONS(2457), - [anon_sym_true] = ACTIONS(2459), - [anon_sym_false] = ACTIONS(2459), - [anon_sym_u8] = ACTIONS(2459), - [anon_sym_i8] = ACTIONS(2459), - [anon_sym_u16] = ACTIONS(2459), - [anon_sym_i16] = ACTIONS(2459), - [anon_sym_u32] = ACTIONS(2459), - [anon_sym_i32] = ACTIONS(2459), - [anon_sym_u64] = ACTIONS(2459), - [anon_sym_i64] = ACTIONS(2459), - [anon_sym_u128] = ACTIONS(2459), - [anon_sym_i128] = ACTIONS(2459), - [anon_sym_isize] = ACTIONS(2459), - [anon_sym_usize] = ACTIONS(2459), - [anon_sym_f32] = ACTIONS(2459), - [anon_sym_f64] = ACTIONS(2459), - [anon_sym_bool] = ACTIONS(2459), - [anon_sym_str] = ACTIONS(2459), - [anon_sym_char] = ACTIONS(2459), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(2457), - [sym_self] = ACTIONS(2459), - [sym_super] = ACTIONS(2459), - [sym_crate] = ACTIONS(2459), - [sym_metavariable] = ACTIONS(2457), - [sym_grit_metavariable] = ACTIONS(2457), - [sym_raw_string_literal] = ACTIONS(2457), - [sym_float_literal] = ACTIONS(2457), + [ts_builtin_sym_end] = ACTIONS(2455), + [sym__primitive_identifier] = ACTIONS(2457), + [anon_sym_SEMI] = ACTIONS(2455), + [anon_sym_macro_rules_BANG] = ACTIONS(2455), + [anon_sym_LPAREN] = ACTIONS(2455), + [anon_sym_LBRACE] = ACTIONS(2455), + [anon_sym_RBRACE] = ACTIONS(2455), + [anon_sym_LBRACK] = ACTIONS(2455), + [anon_sym_STAR] = ACTIONS(2455), + [anon_sym_SQUOTE] = ACTIONS(2457), + [anon_sym_async] = ACTIONS(2457), + [anon_sym_break] = ACTIONS(2457), + [anon_sym_const] = ACTIONS(2457), + [anon_sym_continue] = ACTIONS(2457), + [anon_sym_default] = ACTIONS(2457), + [anon_sym_enum] = ACTIONS(2457), + [anon_sym_fn] = ACTIONS(2457), + [anon_sym_for] = ACTIONS(2457), + [anon_sym_if] = ACTIONS(2457), + [anon_sym_impl] = ACTIONS(2457), + [anon_sym_let] = ACTIONS(2457), + [anon_sym_loop] = ACTIONS(2457), + [anon_sym_match] = ACTIONS(2457), + [anon_sym_mod] = ACTIONS(2457), + [anon_sym_pub] = ACTIONS(2457), + [anon_sym_return] = ACTIONS(2457), + [anon_sym_static] = ACTIONS(2457), + [anon_sym_struct] = ACTIONS(2457), + [anon_sym_trait] = ACTIONS(2457), + [anon_sym_type] = ACTIONS(2457), + [anon_sym_union] = ACTIONS(2457), + [anon_sym_unsafe] = ACTIONS(2457), + [anon_sym_use] = ACTIONS(2457), + [anon_sym_while] = ACTIONS(2457), + [anon_sym_POUND] = ACTIONS(2455), + [anon_sym_BANG] = ACTIONS(2455), + [anon_sym_extern] = ACTIONS(2457), + [anon_sym_LT] = ACTIONS(2455), + [anon_sym_COLON_COLON] = ACTIONS(2455), + [anon_sym_AMP] = ACTIONS(2455), + [anon_sym_DOT_DOT] = ACTIONS(2455), + [anon_sym_DASH] = ACTIONS(2455), + [anon_sym_PIPE] = ACTIONS(2455), + [anon_sym_yield] = ACTIONS(2457), + [anon_sym_move] = ACTIONS(2457), + [sym_integer_literal] = ACTIONS(2455), + [aux_sym_string_literal_token1] = ACTIONS(2455), + [sym_char_literal] = ACTIONS(2455), + [anon_sym_true] = ACTIONS(2457), + [anon_sym_false] = ACTIONS(2457), + [anon_sym_u8] = ACTIONS(2457), + [anon_sym_i8] = ACTIONS(2457), + [anon_sym_u16] = ACTIONS(2457), + [anon_sym_i16] = ACTIONS(2457), + [anon_sym_u32] = ACTIONS(2457), + [anon_sym_i32] = ACTIONS(2457), + [anon_sym_u64] = ACTIONS(2457), + [anon_sym_i64] = ACTIONS(2457), + [anon_sym_u128] = ACTIONS(2457), + [anon_sym_i128] = ACTIONS(2457), + [anon_sym_isize] = ACTIONS(2457), + [anon_sym_usize] = ACTIONS(2457), + [anon_sym_f32] = ACTIONS(2457), + [anon_sym_f64] = ACTIONS(2457), + [anon_sym_bool] = ACTIONS(2457), + [anon_sym_str] = ACTIONS(2457), + [anon_sym_char] = ACTIONS(2457), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(2455), + [sym_self] = ACTIONS(2457), + [sym_super] = ACTIONS(2457), + [sym_crate] = ACTIONS(2457), + [sym_metavariable] = ACTIONS(2455), + [sym_grit_metavariable] = ACTIONS(2455), + [sym_raw_string_literal] = ACTIONS(2455), + [sym_float_literal] = ACTIONS(2455), [sym_block_comment] = ACTIONS(3), }, [518] = { - [ts_builtin_sym_end] = ACTIONS(2461), - [sym__primitive_identifier] = ACTIONS(2463), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_macro_rules_BANG] = ACTIONS(2461), - [anon_sym_LPAREN] = ACTIONS(2461), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_RBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2461), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2463), - [anon_sym_async] = ACTIONS(2463), - [anon_sym_break] = ACTIONS(2463), - [anon_sym_const] = ACTIONS(2463), - [anon_sym_continue] = ACTIONS(2463), - [anon_sym_default] = ACTIONS(2463), - [anon_sym_enum] = ACTIONS(2463), - [anon_sym_fn] = ACTIONS(2463), - [anon_sym_for] = ACTIONS(2463), - [anon_sym_if] = ACTIONS(2463), - [anon_sym_impl] = ACTIONS(2463), - [anon_sym_let] = ACTIONS(2463), - [anon_sym_loop] = ACTIONS(2463), - [anon_sym_match] = ACTIONS(2463), - [anon_sym_mod] = ACTIONS(2463), - [anon_sym_pub] = ACTIONS(2463), - [anon_sym_return] = ACTIONS(2463), - [anon_sym_static] = ACTIONS(2463), - [anon_sym_struct] = ACTIONS(2463), - [anon_sym_trait] = ACTIONS(2463), - [anon_sym_type] = ACTIONS(2463), - [anon_sym_union] = ACTIONS(2463), - [anon_sym_unsafe] = ACTIONS(2463), - [anon_sym_use] = ACTIONS(2463), - [anon_sym_while] = ACTIONS(2463), - [anon_sym_POUND] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_extern] = ACTIONS(2463), - [anon_sym_LT] = ACTIONS(2461), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2461), - [anon_sym_DOT_DOT] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2461), - [anon_sym_PIPE] = ACTIONS(2461), - [anon_sym_yield] = ACTIONS(2463), - [anon_sym_move] = ACTIONS(2463), - [sym_integer_literal] = ACTIONS(2461), - [aux_sym_string_literal_token1] = ACTIONS(2461), - [sym_char_literal] = ACTIONS(2461), - [anon_sym_true] = ACTIONS(2463), - [anon_sym_false] = ACTIONS(2463), - [anon_sym_u8] = ACTIONS(2463), - [anon_sym_i8] = ACTIONS(2463), - [anon_sym_u16] = ACTIONS(2463), - [anon_sym_i16] = ACTIONS(2463), - [anon_sym_u32] = ACTIONS(2463), - [anon_sym_i32] = ACTIONS(2463), - [anon_sym_u64] = ACTIONS(2463), - [anon_sym_i64] = ACTIONS(2463), - [anon_sym_u128] = ACTIONS(2463), - [anon_sym_i128] = ACTIONS(2463), - [anon_sym_isize] = ACTIONS(2463), - [anon_sym_usize] = ACTIONS(2463), - [anon_sym_f32] = ACTIONS(2463), - [anon_sym_f64] = ACTIONS(2463), - [anon_sym_bool] = ACTIONS(2463), - [anon_sym_str] = ACTIONS(2463), - [anon_sym_char] = ACTIONS(2463), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(2461), - [sym_self] = ACTIONS(2463), - [sym_super] = ACTIONS(2463), - [sym_crate] = ACTIONS(2463), - [sym_metavariable] = ACTIONS(2461), - [sym_grit_metavariable] = ACTIONS(2461), - [sym_raw_string_literal] = ACTIONS(2461), - [sym_float_literal] = ACTIONS(2461), + [ts_builtin_sym_end] = ACTIONS(2459), + [sym__primitive_identifier] = ACTIONS(2461), + [anon_sym_SEMI] = ACTIONS(2459), + [anon_sym_macro_rules_BANG] = ACTIONS(2459), + [anon_sym_LPAREN] = ACTIONS(2459), + [anon_sym_LBRACE] = ACTIONS(2459), + [anon_sym_RBRACE] = ACTIONS(2459), + [anon_sym_LBRACK] = ACTIONS(2459), + [anon_sym_STAR] = ACTIONS(2459), + [anon_sym_SQUOTE] = ACTIONS(2461), + [anon_sym_async] = ACTIONS(2461), + [anon_sym_break] = ACTIONS(2461), + [anon_sym_const] = ACTIONS(2461), + [anon_sym_continue] = ACTIONS(2461), + [anon_sym_default] = ACTIONS(2461), + [anon_sym_enum] = ACTIONS(2461), + [anon_sym_fn] = ACTIONS(2461), + [anon_sym_for] = ACTIONS(2461), + [anon_sym_if] = ACTIONS(2461), + [anon_sym_impl] = ACTIONS(2461), + [anon_sym_let] = ACTIONS(2461), + [anon_sym_loop] = ACTIONS(2461), + [anon_sym_match] = ACTIONS(2461), + [anon_sym_mod] = ACTIONS(2461), + [anon_sym_pub] = ACTIONS(2461), + [anon_sym_return] = ACTIONS(2461), + [anon_sym_static] = ACTIONS(2461), + [anon_sym_struct] = ACTIONS(2461), + [anon_sym_trait] = ACTIONS(2461), + [anon_sym_type] = ACTIONS(2461), + [anon_sym_union] = ACTIONS(2461), + [anon_sym_unsafe] = ACTIONS(2461), + [anon_sym_use] = ACTIONS(2461), + [anon_sym_while] = ACTIONS(2461), + [anon_sym_POUND] = ACTIONS(2459), + [anon_sym_BANG] = ACTIONS(2459), + [anon_sym_extern] = ACTIONS(2461), + [anon_sym_LT] = ACTIONS(2459), + [anon_sym_COLON_COLON] = ACTIONS(2459), + [anon_sym_AMP] = ACTIONS(2459), + [anon_sym_DOT_DOT] = ACTIONS(2459), + [anon_sym_DASH] = ACTIONS(2459), + [anon_sym_PIPE] = ACTIONS(2459), + [anon_sym_yield] = ACTIONS(2461), + [anon_sym_move] = ACTIONS(2461), + [sym_integer_literal] = ACTIONS(2459), + [aux_sym_string_literal_token1] = ACTIONS(2459), + [sym_char_literal] = ACTIONS(2459), + [anon_sym_true] = ACTIONS(2461), + [anon_sym_false] = ACTIONS(2461), + [anon_sym_u8] = ACTIONS(2461), + [anon_sym_i8] = ACTIONS(2461), + [anon_sym_u16] = ACTIONS(2461), + [anon_sym_i16] = ACTIONS(2461), + [anon_sym_u32] = ACTIONS(2461), + [anon_sym_i32] = ACTIONS(2461), + [anon_sym_u64] = ACTIONS(2461), + [anon_sym_i64] = ACTIONS(2461), + [anon_sym_u128] = ACTIONS(2461), + [anon_sym_i128] = ACTIONS(2461), + [anon_sym_isize] = ACTIONS(2461), + [anon_sym_usize] = ACTIONS(2461), + [anon_sym_f32] = ACTIONS(2461), + [anon_sym_f64] = ACTIONS(2461), + [anon_sym_bool] = ACTIONS(2461), + [anon_sym_str] = ACTIONS(2461), + [anon_sym_char] = ACTIONS(2461), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(2459), + [sym_self] = ACTIONS(2461), + [sym_super] = ACTIONS(2461), + [sym_crate] = ACTIONS(2461), + [sym_metavariable] = ACTIONS(2459), + [sym_grit_metavariable] = ACTIONS(2459), + [sym_raw_string_literal] = ACTIONS(2459), + [sym_float_literal] = ACTIONS(2459), [sym_block_comment] = ACTIONS(3), }, [519] = { - [ts_builtin_sym_end] = ACTIONS(2465), - [sym__primitive_identifier] = ACTIONS(2467), - [anon_sym_SEMI] = ACTIONS(2465), - [anon_sym_macro_rules_BANG] = ACTIONS(2465), - [anon_sym_LPAREN] = ACTIONS(2465), - [anon_sym_LBRACE] = ACTIONS(2465), - [anon_sym_RBRACE] = ACTIONS(2465), - [anon_sym_LBRACK] = ACTIONS(2465), - [anon_sym_STAR] = ACTIONS(2465), - [anon_sym_SQUOTE] = ACTIONS(2467), - [anon_sym_async] = ACTIONS(2467), - [anon_sym_break] = ACTIONS(2467), - [anon_sym_const] = ACTIONS(2467), - [anon_sym_continue] = ACTIONS(2467), - [anon_sym_default] = ACTIONS(2467), - [anon_sym_enum] = ACTIONS(2467), - [anon_sym_fn] = ACTIONS(2467), - [anon_sym_for] = ACTIONS(2467), - [anon_sym_if] = ACTIONS(2467), - [anon_sym_impl] = ACTIONS(2467), - [anon_sym_let] = ACTIONS(2467), - [anon_sym_loop] = ACTIONS(2467), - [anon_sym_match] = ACTIONS(2467), - [anon_sym_mod] = ACTIONS(2467), - [anon_sym_pub] = ACTIONS(2467), - [anon_sym_return] = ACTIONS(2467), - [anon_sym_static] = ACTIONS(2467), - [anon_sym_struct] = ACTIONS(2467), - [anon_sym_trait] = ACTIONS(2467), - [anon_sym_type] = ACTIONS(2467), - [anon_sym_union] = ACTIONS(2467), - [anon_sym_unsafe] = ACTIONS(2467), - [anon_sym_use] = ACTIONS(2467), - [anon_sym_while] = ACTIONS(2467), - [anon_sym_POUND] = ACTIONS(2465), - [anon_sym_BANG] = ACTIONS(2465), - [anon_sym_extern] = ACTIONS(2467), - [anon_sym_LT] = ACTIONS(2465), - [anon_sym_COLON_COLON] = ACTIONS(2465), - [anon_sym_AMP] = ACTIONS(2465), - [anon_sym_DOT_DOT] = ACTIONS(2465), - [anon_sym_DASH] = ACTIONS(2465), - [anon_sym_PIPE] = ACTIONS(2465), - [anon_sym_yield] = ACTIONS(2467), - [anon_sym_move] = ACTIONS(2467), - [sym_integer_literal] = ACTIONS(2465), - [aux_sym_string_literal_token1] = ACTIONS(2465), - [sym_char_literal] = ACTIONS(2465), - [anon_sym_true] = ACTIONS(2467), - [anon_sym_false] = ACTIONS(2467), - [anon_sym_u8] = ACTIONS(2467), - [anon_sym_i8] = ACTIONS(2467), - [anon_sym_u16] = ACTIONS(2467), - [anon_sym_i16] = ACTIONS(2467), - [anon_sym_u32] = ACTIONS(2467), - [anon_sym_i32] = ACTIONS(2467), - [anon_sym_u64] = ACTIONS(2467), - [anon_sym_i64] = ACTIONS(2467), - [anon_sym_u128] = ACTIONS(2467), - [anon_sym_i128] = ACTIONS(2467), - [anon_sym_isize] = ACTIONS(2467), - [anon_sym_usize] = ACTIONS(2467), - [anon_sym_f32] = ACTIONS(2467), - [anon_sym_f64] = ACTIONS(2467), - [anon_sym_bool] = ACTIONS(2467), - [anon_sym_str] = ACTIONS(2467), - [anon_sym_char] = ACTIONS(2467), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(2465), - [sym_self] = ACTIONS(2467), - [sym_super] = ACTIONS(2467), - [sym_crate] = ACTIONS(2467), - [sym_metavariable] = ACTIONS(2465), - [sym_grit_metavariable] = ACTIONS(2465), - [sym_raw_string_literal] = ACTIONS(2465), - [sym_float_literal] = ACTIONS(2465), + [ts_builtin_sym_end] = ACTIONS(2463), + [sym__primitive_identifier] = ACTIONS(2465), + [anon_sym_SEMI] = ACTIONS(2463), + [anon_sym_macro_rules_BANG] = ACTIONS(2463), + [anon_sym_LPAREN] = ACTIONS(2463), + [anon_sym_LBRACE] = ACTIONS(2463), + [anon_sym_RBRACE] = ACTIONS(2463), + [anon_sym_LBRACK] = ACTIONS(2463), + [anon_sym_STAR] = ACTIONS(2463), + [anon_sym_SQUOTE] = ACTIONS(2465), + [anon_sym_async] = ACTIONS(2465), + [anon_sym_break] = ACTIONS(2465), + [anon_sym_const] = ACTIONS(2465), + [anon_sym_continue] = ACTIONS(2465), + [anon_sym_default] = ACTIONS(2465), + [anon_sym_enum] = ACTIONS(2465), + [anon_sym_fn] = ACTIONS(2465), + [anon_sym_for] = ACTIONS(2465), + [anon_sym_if] = ACTIONS(2465), + [anon_sym_impl] = ACTIONS(2465), + [anon_sym_let] = ACTIONS(2465), + [anon_sym_loop] = ACTIONS(2465), + [anon_sym_match] = ACTIONS(2465), + [anon_sym_mod] = ACTIONS(2465), + [anon_sym_pub] = ACTIONS(2465), + [anon_sym_return] = ACTIONS(2465), + [anon_sym_static] = ACTIONS(2465), + [anon_sym_struct] = ACTIONS(2465), + [anon_sym_trait] = ACTIONS(2465), + [anon_sym_type] = ACTIONS(2465), + [anon_sym_union] = ACTIONS(2465), + [anon_sym_unsafe] = ACTIONS(2465), + [anon_sym_use] = ACTIONS(2465), + [anon_sym_while] = ACTIONS(2465), + [anon_sym_POUND] = ACTIONS(2463), + [anon_sym_BANG] = ACTIONS(2463), + [anon_sym_extern] = ACTIONS(2465), + [anon_sym_LT] = ACTIONS(2463), + [anon_sym_COLON_COLON] = ACTIONS(2463), + [anon_sym_AMP] = ACTIONS(2463), + [anon_sym_DOT_DOT] = ACTIONS(2463), + [anon_sym_DASH] = ACTIONS(2463), + [anon_sym_PIPE] = ACTIONS(2463), + [anon_sym_yield] = ACTIONS(2465), + [anon_sym_move] = ACTIONS(2465), + [sym_integer_literal] = ACTIONS(2463), + [aux_sym_string_literal_token1] = ACTIONS(2463), + [sym_char_literal] = ACTIONS(2463), + [anon_sym_true] = ACTIONS(2465), + [anon_sym_false] = ACTIONS(2465), + [anon_sym_u8] = ACTIONS(2465), + [anon_sym_i8] = ACTIONS(2465), + [anon_sym_u16] = ACTIONS(2465), + [anon_sym_i16] = ACTIONS(2465), + [anon_sym_u32] = ACTIONS(2465), + [anon_sym_i32] = ACTIONS(2465), + [anon_sym_u64] = ACTIONS(2465), + [anon_sym_i64] = ACTIONS(2465), + [anon_sym_u128] = ACTIONS(2465), + [anon_sym_i128] = ACTIONS(2465), + [anon_sym_isize] = ACTIONS(2465), + [anon_sym_usize] = ACTIONS(2465), + [anon_sym_f32] = ACTIONS(2465), + [anon_sym_f64] = ACTIONS(2465), + [anon_sym_bool] = ACTIONS(2465), + [anon_sym_str] = ACTIONS(2465), + [anon_sym_char] = ACTIONS(2465), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(2463), + [sym_self] = ACTIONS(2465), + [sym_super] = ACTIONS(2465), + [sym_crate] = ACTIONS(2465), + [sym_metavariable] = ACTIONS(2463), + [sym_grit_metavariable] = ACTIONS(2463), + [sym_raw_string_literal] = ACTIONS(2463), + [sym_float_literal] = ACTIONS(2463), [sym_block_comment] = ACTIONS(3), }, [520] = { - [ts_builtin_sym_end] = ACTIONS(2469), - [sym__primitive_identifier] = ACTIONS(2471), - [anon_sym_SEMI] = ACTIONS(2469), - [anon_sym_macro_rules_BANG] = ACTIONS(2469), - [anon_sym_LPAREN] = ACTIONS(2469), - [anon_sym_LBRACE] = ACTIONS(2469), - [anon_sym_RBRACE] = ACTIONS(2469), - [anon_sym_LBRACK] = ACTIONS(2469), - [anon_sym_STAR] = ACTIONS(2469), - [anon_sym_SQUOTE] = ACTIONS(2471), - [anon_sym_async] = ACTIONS(2471), - [anon_sym_break] = ACTIONS(2471), - [anon_sym_const] = ACTIONS(2471), - [anon_sym_continue] = ACTIONS(2471), - [anon_sym_default] = ACTIONS(2471), - [anon_sym_enum] = ACTIONS(2471), - [anon_sym_fn] = ACTIONS(2471), - [anon_sym_for] = ACTIONS(2471), - [anon_sym_if] = ACTIONS(2471), - [anon_sym_impl] = ACTIONS(2471), - [anon_sym_let] = ACTIONS(2471), - [anon_sym_loop] = ACTIONS(2471), - [anon_sym_match] = ACTIONS(2471), - [anon_sym_mod] = ACTIONS(2471), - [anon_sym_pub] = ACTIONS(2471), - [anon_sym_return] = ACTIONS(2471), - [anon_sym_static] = ACTIONS(2471), - [anon_sym_struct] = ACTIONS(2471), - [anon_sym_trait] = ACTIONS(2471), - [anon_sym_type] = ACTIONS(2471), - [anon_sym_union] = ACTIONS(2471), - [anon_sym_unsafe] = ACTIONS(2471), - [anon_sym_use] = ACTIONS(2471), - [anon_sym_while] = ACTIONS(2471), - [anon_sym_POUND] = ACTIONS(2469), - [anon_sym_BANG] = ACTIONS(2469), - [anon_sym_extern] = ACTIONS(2471), - [anon_sym_LT] = ACTIONS(2469), - [anon_sym_COLON_COLON] = ACTIONS(2469), - [anon_sym_AMP] = ACTIONS(2469), - [anon_sym_DOT_DOT] = ACTIONS(2469), - [anon_sym_DASH] = ACTIONS(2469), - [anon_sym_PIPE] = ACTIONS(2469), - [anon_sym_yield] = ACTIONS(2471), - [anon_sym_move] = ACTIONS(2471), - [sym_integer_literal] = ACTIONS(2469), - [aux_sym_string_literal_token1] = ACTIONS(2469), - [sym_char_literal] = ACTIONS(2469), - [anon_sym_true] = ACTIONS(2471), - [anon_sym_false] = ACTIONS(2471), - [anon_sym_u8] = ACTIONS(2471), - [anon_sym_i8] = ACTIONS(2471), - [anon_sym_u16] = ACTIONS(2471), - [anon_sym_i16] = ACTIONS(2471), - [anon_sym_u32] = ACTIONS(2471), - [anon_sym_i32] = ACTIONS(2471), - [anon_sym_u64] = ACTIONS(2471), - [anon_sym_i64] = ACTIONS(2471), - [anon_sym_u128] = ACTIONS(2471), - [anon_sym_i128] = ACTIONS(2471), - [anon_sym_isize] = ACTIONS(2471), - [anon_sym_usize] = ACTIONS(2471), - [anon_sym_f32] = ACTIONS(2471), - [anon_sym_f64] = ACTIONS(2471), - [anon_sym_bool] = ACTIONS(2471), - [anon_sym_str] = ACTIONS(2471), - [anon_sym_char] = ACTIONS(2471), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(2469), - [sym_self] = ACTIONS(2471), - [sym_super] = ACTIONS(2471), - [sym_crate] = ACTIONS(2471), - [sym_metavariable] = ACTIONS(2469), - [sym_grit_metavariable] = ACTIONS(2469), - [sym_raw_string_literal] = ACTIONS(2469), - [sym_float_literal] = ACTIONS(2469), + [ts_builtin_sym_end] = ACTIONS(2467), + [sym__primitive_identifier] = ACTIONS(2469), + [anon_sym_SEMI] = ACTIONS(2467), + [anon_sym_macro_rules_BANG] = ACTIONS(2467), + [anon_sym_LPAREN] = ACTIONS(2467), + [anon_sym_LBRACE] = ACTIONS(2467), + [anon_sym_RBRACE] = ACTIONS(2467), + [anon_sym_LBRACK] = ACTIONS(2467), + [anon_sym_STAR] = ACTIONS(2467), + [anon_sym_SQUOTE] = ACTIONS(2469), + [anon_sym_async] = ACTIONS(2469), + [anon_sym_break] = ACTIONS(2469), + [anon_sym_const] = ACTIONS(2469), + [anon_sym_continue] = ACTIONS(2469), + [anon_sym_default] = ACTIONS(2469), + [anon_sym_enum] = ACTIONS(2469), + [anon_sym_fn] = ACTIONS(2469), + [anon_sym_for] = ACTIONS(2469), + [anon_sym_if] = ACTIONS(2469), + [anon_sym_impl] = ACTIONS(2469), + [anon_sym_let] = ACTIONS(2469), + [anon_sym_loop] = ACTIONS(2469), + [anon_sym_match] = ACTIONS(2469), + [anon_sym_mod] = ACTIONS(2469), + [anon_sym_pub] = ACTIONS(2469), + [anon_sym_return] = ACTIONS(2469), + [anon_sym_static] = ACTIONS(2469), + [anon_sym_struct] = ACTIONS(2469), + [anon_sym_trait] = ACTIONS(2469), + [anon_sym_type] = ACTIONS(2469), + [anon_sym_union] = ACTIONS(2469), + [anon_sym_unsafe] = ACTIONS(2469), + [anon_sym_use] = ACTIONS(2469), + [anon_sym_while] = ACTIONS(2469), + [anon_sym_POUND] = ACTIONS(2467), + [anon_sym_BANG] = ACTIONS(2467), + [anon_sym_extern] = ACTIONS(2469), + [anon_sym_LT] = ACTIONS(2467), + [anon_sym_COLON_COLON] = ACTIONS(2467), + [anon_sym_AMP] = ACTIONS(2467), + [anon_sym_DOT_DOT] = ACTIONS(2467), + [anon_sym_DASH] = ACTIONS(2467), + [anon_sym_PIPE] = ACTIONS(2467), + [anon_sym_yield] = ACTIONS(2469), + [anon_sym_move] = ACTIONS(2469), + [sym_integer_literal] = ACTIONS(2467), + [aux_sym_string_literal_token1] = ACTIONS(2467), + [sym_char_literal] = ACTIONS(2467), + [anon_sym_true] = ACTIONS(2469), + [anon_sym_false] = ACTIONS(2469), + [anon_sym_u8] = ACTIONS(2469), + [anon_sym_i8] = ACTIONS(2469), + [anon_sym_u16] = ACTIONS(2469), + [anon_sym_i16] = ACTIONS(2469), + [anon_sym_u32] = ACTIONS(2469), + [anon_sym_i32] = ACTIONS(2469), + [anon_sym_u64] = ACTIONS(2469), + [anon_sym_i64] = ACTIONS(2469), + [anon_sym_u128] = ACTIONS(2469), + [anon_sym_i128] = ACTIONS(2469), + [anon_sym_isize] = ACTIONS(2469), + [anon_sym_usize] = ACTIONS(2469), + [anon_sym_f32] = ACTIONS(2469), + [anon_sym_f64] = ACTIONS(2469), + [anon_sym_bool] = ACTIONS(2469), + [anon_sym_str] = ACTIONS(2469), + [anon_sym_char] = ACTIONS(2469), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(2467), + [sym_self] = ACTIONS(2469), + [sym_super] = ACTIONS(2469), + [sym_crate] = ACTIONS(2469), + [sym_metavariable] = ACTIONS(2467), + [sym_grit_metavariable] = ACTIONS(2467), + [sym_raw_string_literal] = ACTIONS(2467), + [sym_float_literal] = ACTIONS(2467), [sym_block_comment] = ACTIONS(3), }, [521] = { - [ts_builtin_sym_end] = ACTIONS(2473), - [sym__primitive_identifier] = ACTIONS(2475), - [anon_sym_SEMI] = ACTIONS(2473), - [anon_sym_macro_rules_BANG] = ACTIONS(2473), - [anon_sym_LPAREN] = ACTIONS(2473), - [anon_sym_LBRACE] = ACTIONS(2473), - [anon_sym_RBRACE] = ACTIONS(2473), - [anon_sym_LBRACK] = ACTIONS(2473), - [anon_sym_STAR] = ACTIONS(2473), - [anon_sym_SQUOTE] = ACTIONS(2475), - [anon_sym_async] = ACTIONS(2475), - [anon_sym_break] = ACTIONS(2475), - [anon_sym_const] = ACTIONS(2475), - [anon_sym_continue] = ACTIONS(2475), - [anon_sym_default] = ACTIONS(2475), - [anon_sym_enum] = ACTIONS(2475), - [anon_sym_fn] = ACTIONS(2475), - [anon_sym_for] = ACTIONS(2475), - [anon_sym_if] = ACTIONS(2475), - [anon_sym_impl] = ACTIONS(2475), - [anon_sym_let] = ACTIONS(2475), - [anon_sym_loop] = ACTIONS(2475), - [anon_sym_match] = ACTIONS(2475), - [anon_sym_mod] = ACTIONS(2475), - [anon_sym_pub] = ACTIONS(2475), - [anon_sym_return] = ACTIONS(2475), - [anon_sym_static] = ACTIONS(2475), - [anon_sym_struct] = ACTIONS(2475), - [anon_sym_trait] = ACTIONS(2475), - [anon_sym_type] = ACTIONS(2475), - [anon_sym_union] = ACTIONS(2475), - [anon_sym_unsafe] = ACTIONS(2475), - [anon_sym_use] = ACTIONS(2475), - [anon_sym_while] = ACTIONS(2475), - [anon_sym_POUND] = ACTIONS(2473), - [anon_sym_BANG] = ACTIONS(2473), - [anon_sym_extern] = ACTIONS(2475), - [anon_sym_LT] = ACTIONS(2473), - [anon_sym_COLON_COLON] = ACTIONS(2473), - [anon_sym_AMP] = ACTIONS(2473), - [anon_sym_DOT_DOT] = ACTIONS(2473), - [anon_sym_DASH] = ACTIONS(2473), - [anon_sym_PIPE] = ACTIONS(2473), - [anon_sym_yield] = ACTIONS(2475), - [anon_sym_move] = ACTIONS(2475), - [sym_integer_literal] = ACTIONS(2473), - [aux_sym_string_literal_token1] = ACTIONS(2473), - [sym_char_literal] = ACTIONS(2473), - [anon_sym_true] = ACTIONS(2475), - [anon_sym_false] = ACTIONS(2475), - [anon_sym_u8] = ACTIONS(2475), - [anon_sym_i8] = ACTIONS(2475), - [anon_sym_u16] = ACTIONS(2475), - [anon_sym_i16] = ACTIONS(2475), - [anon_sym_u32] = ACTIONS(2475), - [anon_sym_i32] = ACTIONS(2475), - [anon_sym_u64] = ACTIONS(2475), - [anon_sym_i64] = ACTIONS(2475), - [anon_sym_u128] = ACTIONS(2475), - [anon_sym_i128] = ACTIONS(2475), - [anon_sym_isize] = ACTIONS(2475), - [anon_sym_usize] = ACTIONS(2475), - [anon_sym_f32] = ACTIONS(2475), - [anon_sym_f64] = ACTIONS(2475), - [anon_sym_bool] = ACTIONS(2475), - [anon_sym_str] = ACTIONS(2475), - [anon_sym_char] = ACTIONS(2475), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(2473), - [sym_self] = ACTIONS(2475), - [sym_super] = ACTIONS(2475), - [sym_crate] = ACTIONS(2475), - [sym_metavariable] = ACTIONS(2473), - [sym_grit_metavariable] = ACTIONS(2473), - [sym_raw_string_literal] = ACTIONS(2473), - [sym_float_literal] = ACTIONS(2473), + [ts_builtin_sym_end] = ACTIONS(2471), + [sym__primitive_identifier] = ACTIONS(2473), + [anon_sym_SEMI] = ACTIONS(2471), + [anon_sym_macro_rules_BANG] = ACTIONS(2471), + [anon_sym_LPAREN] = ACTIONS(2471), + [anon_sym_LBRACE] = ACTIONS(2471), + [anon_sym_RBRACE] = ACTIONS(2471), + [anon_sym_LBRACK] = ACTIONS(2471), + [anon_sym_STAR] = ACTIONS(2471), + [anon_sym_SQUOTE] = ACTIONS(2473), + [anon_sym_async] = ACTIONS(2473), + [anon_sym_break] = ACTIONS(2473), + [anon_sym_const] = ACTIONS(2473), + [anon_sym_continue] = ACTIONS(2473), + [anon_sym_default] = ACTIONS(2473), + [anon_sym_enum] = ACTIONS(2473), + [anon_sym_fn] = ACTIONS(2473), + [anon_sym_for] = ACTIONS(2473), + [anon_sym_if] = ACTIONS(2473), + [anon_sym_impl] = ACTIONS(2473), + [anon_sym_let] = ACTIONS(2473), + [anon_sym_loop] = ACTIONS(2473), + [anon_sym_match] = ACTIONS(2473), + [anon_sym_mod] = ACTIONS(2473), + [anon_sym_pub] = ACTIONS(2473), + [anon_sym_return] = ACTIONS(2473), + [anon_sym_static] = ACTIONS(2473), + [anon_sym_struct] = ACTIONS(2473), + [anon_sym_trait] = ACTIONS(2473), + [anon_sym_type] = ACTIONS(2473), + [anon_sym_union] = ACTIONS(2473), + [anon_sym_unsafe] = ACTIONS(2473), + [anon_sym_use] = ACTIONS(2473), + [anon_sym_while] = ACTIONS(2473), + [anon_sym_POUND] = ACTIONS(2471), + [anon_sym_BANG] = ACTIONS(2471), + [anon_sym_extern] = ACTIONS(2473), + [anon_sym_LT] = ACTIONS(2471), + [anon_sym_COLON_COLON] = ACTIONS(2471), + [anon_sym_AMP] = ACTIONS(2471), + [anon_sym_DOT_DOT] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(2471), + [anon_sym_PIPE] = ACTIONS(2471), + [anon_sym_yield] = ACTIONS(2473), + [anon_sym_move] = ACTIONS(2473), + [sym_integer_literal] = ACTIONS(2471), + [aux_sym_string_literal_token1] = ACTIONS(2471), + [sym_char_literal] = ACTIONS(2471), + [anon_sym_true] = ACTIONS(2473), + [anon_sym_false] = ACTIONS(2473), + [anon_sym_u8] = ACTIONS(2473), + [anon_sym_i8] = ACTIONS(2473), + [anon_sym_u16] = ACTIONS(2473), + [anon_sym_i16] = ACTIONS(2473), + [anon_sym_u32] = ACTIONS(2473), + [anon_sym_i32] = ACTIONS(2473), + [anon_sym_u64] = ACTIONS(2473), + [anon_sym_i64] = ACTIONS(2473), + [anon_sym_u128] = ACTIONS(2473), + [anon_sym_i128] = ACTIONS(2473), + [anon_sym_isize] = ACTIONS(2473), + [anon_sym_usize] = ACTIONS(2473), + [anon_sym_f32] = ACTIONS(2473), + [anon_sym_f64] = ACTIONS(2473), + [anon_sym_bool] = ACTIONS(2473), + [anon_sym_str] = ACTIONS(2473), + [anon_sym_char] = ACTIONS(2473), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(2471), + [sym_self] = ACTIONS(2473), + [sym_super] = ACTIONS(2473), + [sym_crate] = ACTIONS(2473), + [sym_metavariable] = ACTIONS(2471), + [sym_grit_metavariable] = ACTIONS(2471), + [sym_raw_string_literal] = ACTIONS(2471), + [sym_float_literal] = ACTIONS(2471), [sym_block_comment] = ACTIONS(3), }, [522] = { - [ts_builtin_sym_end] = ACTIONS(2477), - [sym__primitive_identifier] = ACTIONS(2479), - [anon_sym_SEMI] = ACTIONS(2477), - [anon_sym_macro_rules_BANG] = ACTIONS(2477), - [anon_sym_LPAREN] = ACTIONS(2477), - [anon_sym_LBRACE] = ACTIONS(2477), - [anon_sym_RBRACE] = ACTIONS(2477), - [anon_sym_LBRACK] = ACTIONS(2477), - [anon_sym_STAR] = ACTIONS(2477), - [anon_sym_SQUOTE] = ACTIONS(2479), - [anon_sym_async] = ACTIONS(2479), - [anon_sym_break] = ACTIONS(2479), - [anon_sym_const] = ACTIONS(2479), - [anon_sym_continue] = ACTIONS(2479), - [anon_sym_default] = ACTIONS(2479), - [anon_sym_enum] = ACTIONS(2479), - [anon_sym_fn] = ACTIONS(2479), - [anon_sym_for] = ACTIONS(2479), - [anon_sym_if] = ACTIONS(2479), - [anon_sym_impl] = ACTIONS(2479), - [anon_sym_let] = ACTIONS(2479), - [anon_sym_loop] = ACTIONS(2479), - [anon_sym_match] = ACTIONS(2479), - [anon_sym_mod] = ACTIONS(2479), - [anon_sym_pub] = ACTIONS(2479), - [anon_sym_return] = ACTIONS(2479), - [anon_sym_static] = ACTIONS(2479), - [anon_sym_struct] = ACTIONS(2479), - [anon_sym_trait] = ACTIONS(2479), - [anon_sym_type] = ACTIONS(2479), - [anon_sym_union] = ACTIONS(2479), - [anon_sym_unsafe] = ACTIONS(2479), - [anon_sym_use] = ACTIONS(2479), - [anon_sym_while] = ACTIONS(2479), - [anon_sym_POUND] = ACTIONS(2477), - [anon_sym_BANG] = ACTIONS(2477), - [anon_sym_extern] = ACTIONS(2479), - [anon_sym_LT] = ACTIONS(2477), - [anon_sym_COLON_COLON] = ACTIONS(2477), - [anon_sym_AMP] = ACTIONS(2477), - [anon_sym_DOT_DOT] = ACTIONS(2477), - [anon_sym_DASH] = ACTIONS(2477), - [anon_sym_PIPE] = ACTIONS(2477), - [anon_sym_yield] = ACTIONS(2479), - [anon_sym_move] = ACTIONS(2479), - [sym_integer_literal] = ACTIONS(2477), - [aux_sym_string_literal_token1] = ACTIONS(2477), - [sym_char_literal] = ACTIONS(2477), - [anon_sym_true] = ACTIONS(2479), - [anon_sym_false] = ACTIONS(2479), - [anon_sym_u8] = ACTIONS(2479), - [anon_sym_i8] = ACTIONS(2479), - [anon_sym_u16] = ACTIONS(2479), - [anon_sym_i16] = ACTIONS(2479), - [anon_sym_u32] = ACTIONS(2479), - [anon_sym_i32] = ACTIONS(2479), - [anon_sym_u64] = ACTIONS(2479), - [anon_sym_i64] = ACTIONS(2479), - [anon_sym_u128] = ACTIONS(2479), - [anon_sym_i128] = ACTIONS(2479), - [anon_sym_isize] = ACTIONS(2479), - [anon_sym_usize] = ACTIONS(2479), - [anon_sym_f32] = ACTIONS(2479), - [anon_sym_f64] = ACTIONS(2479), - [anon_sym_bool] = ACTIONS(2479), - [anon_sym_str] = ACTIONS(2479), - [anon_sym_char] = ACTIONS(2479), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(2477), - [sym_self] = ACTIONS(2479), - [sym_super] = ACTIONS(2479), - [sym_crate] = ACTIONS(2479), - [sym_metavariable] = ACTIONS(2477), - [sym_grit_metavariable] = ACTIONS(2477), - [sym_raw_string_literal] = ACTIONS(2477), - [sym_float_literal] = ACTIONS(2477), + [ts_builtin_sym_end] = ACTIONS(2475), + [sym__primitive_identifier] = ACTIONS(2477), + [anon_sym_SEMI] = ACTIONS(2475), + [anon_sym_macro_rules_BANG] = ACTIONS(2475), + [anon_sym_LPAREN] = ACTIONS(2475), + [anon_sym_LBRACE] = ACTIONS(2475), + [anon_sym_RBRACE] = ACTIONS(2475), + [anon_sym_LBRACK] = ACTIONS(2475), + [anon_sym_STAR] = ACTIONS(2475), + [anon_sym_SQUOTE] = ACTIONS(2477), + [anon_sym_async] = ACTIONS(2477), + [anon_sym_break] = ACTIONS(2477), + [anon_sym_const] = ACTIONS(2477), + [anon_sym_continue] = ACTIONS(2477), + [anon_sym_default] = ACTIONS(2477), + [anon_sym_enum] = ACTIONS(2477), + [anon_sym_fn] = ACTIONS(2477), + [anon_sym_for] = ACTIONS(2477), + [anon_sym_if] = ACTIONS(2477), + [anon_sym_impl] = ACTIONS(2477), + [anon_sym_let] = ACTIONS(2477), + [anon_sym_loop] = ACTIONS(2477), + [anon_sym_match] = ACTIONS(2477), + [anon_sym_mod] = ACTIONS(2477), + [anon_sym_pub] = ACTIONS(2477), + [anon_sym_return] = ACTIONS(2477), + [anon_sym_static] = ACTIONS(2477), + [anon_sym_struct] = ACTIONS(2477), + [anon_sym_trait] = ACTIONS(2477), + [anon_sym_type] = ACTIONS(2477), + [anon_sym_union] = ACTIONS(2477), + [anon_sym_unsafe] = ACTIONS(2477), + [anon_sym_use] = ACTIONS(2477), + [anon_sym_while] = ACTIONS(2477), + [anon_sym_POUND] = ACTIONS(2475), + [anon_sym_BANG] = ACTIONS(2475), + [anon_sym_extern] = ACTIONS(2477), + [anon_sym_LT] = ACTIONS(2475), + [anon_sym_COLON_COLON] = ACTIONS(2475), + [anon_sym_AMP] = ACTIONS(2475), + [anon_sym_DOT_DOT] = ACTIONS(2475), + [anon_sym_DASH] = ACTIONS(2475), + [anon_sym_PIPE] = ACTIONS(2475), + [anon_sym_yield] = ACTIONS(2477), + [anon_sym_move] = ACTIONS(2477), + [sym_integer_literal] = ACTIONS(2475), + [aux_sym_string_literal_token1] = ACTIONS(2475), + [sym_char_literal] = ACTIONS(2475), + [anon_sym_true] = ACTIONS(2477), + [anon_sym_false] = ACTIONS(2477), + [anon_sym_u8] = ACTIONS(2477), + [anon_sym_i8] = ACTIONS(2477), + [anon_sym_u16] = ACTIONS(2477), + [anon_sym_i16] = ACTIONS(2477), + [anon_sym_u32] = ACTIONS(2477), + [anon_sym_i32] = ACTIONS(2477), + [anon_sym_u64] = ACTIONS(2477), + [anon_sym_i64] = ACTIONS(2477), + [anon_sym_u128] = ACTIONS(2477), + [anon_sym_i128] = ACTIONS(2477), + [anon_sym_isize] = ACTIONS(2477), + [anon_sym_usize] = ACTIONS(2477), + [anon_sym_f32] = ACTIONS(2477), + [anon_sym_f64] = ACTIONS(2477), + [anon_sym_bool] = ACTIONS(2477), + [anon_sym_str] = ACTIONS(2477), + [anon_sym_char] = ACTIONS(2477), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(2475), + [sym_self] = ACTIONS(2477), + [sym_super] = ACTIONS(2477), + [sym_crate] = ACTIONS(2477), + [sym_metavariable] = ACTIONS(2475), + [sym_grit_metavariable] = ACTIONS(2475), + [sym_raw_string_literal] = ACTIONS(2475), + [sym_float_literal] = ACTIONS(2475), [sym_block_comment] = ACTIONS(3), }, [523] = { - [ts_builtin_sym_end] = ACTIONS(2481), - [sym__primitive_identifier] = ACTIONS(2483), - [anon_sym_SEMI] = ACTIONS(2481), - [anon_sym_macro_rules_BANG] = ACTIONS(2481), - [anon_sym_LPAREN] = ACTIONS(2481), - [anon_sym_LBRACE] = ACTIONS(2481), - [anon_sym_RBRACE] = ACTIONS(2481), - [anon_sym_LBRACK] = ACTIONS(2481), - [anon_sym_STAR] = ACTIONS(2481), - [anon_sym_SQUOTE] = ACTIONS(2483), - [anon_sym_async] = ACTIONS(2483), - [anon_sym_break] = ACTIONS(2483), - [anon_sym_const] = ACTIONS(2483), - [anon_sym_continue] = ACTIONS(2483), - [anon_sym_default] = ACTIONS(2483), - [anon_sym_enum] = ACTIONS(2483), - [anon_sym_fn] = ACTIONS(2483), - [anon_sym_for] = ACTIONS(2483), - [anon_sym_if] = ACTIONS(2483), - [anon_sym_impl] = ACTIONS(2483), - [anon_sym_let] = ACTIONS(2483), - [anon_sym_loop] = ACTIONS(2483), - [anon_sym_match] = ACTIONS(2483), - [anon_sym_mod] = ACTIONS(2483), - [anon_sym_pub] = ACTIONS(2483), - [anon_sym_return] = ACTIONS(2483), - [anon_sym_static] = ACTIONS(2483), - [anon_sym_struct] = ACTIONS(2483), - [anon_sym_trait] = ACTIONS(2483), - [anon_sym_type] = ACTIONS(2483), - [anon_sym_union] = ACTIONS(2483), - [anon_sym_unsafe] = ACTIONS(2483), - [anon_sym_use] = ACTIONS(2483), - [anon_sym_while] = ACTIONS(2483), - [anon_sym_POUND] = ACTIONS(2481), - [anon_sym_BANG] = ACTIONS(2481), - [anon_sym_extern] = ACTIONS(2483), - [anon_sym_LT] = ACTIONS(2481), - [anon_sym_COLON_COLON] = ACTIONS(2481), - [anon_sym_AMP] = ACTIONS(2481), - [anon_sym_DOT_DOT] = ACTIONS(2481), - [anon_sym_DASH] = ACTIONS(2481), - [anon_sym_PIPE] = ACTIONS(2481), - [anon_sym_yield] = ACTIONS(2483), - [anon_sym_move] = ACTIONS(2483), - [sym_integer_literal] = ACTIONS(2481), - [aux_sym_string_literal_token1] = ACTIONS(2481), - [sym_char_literal] = ACTIONS(2481), - [anon_sym_true] = ACTIONS(2483), - [anon_sym_false] = ACTIONS(2483), - [anon_sym_u8] = ACTIONS(2483), - [anon_sym_i8] = ACTIONS(2483), - [anon_sym_u16] = ACTIONS(2483), - [anon_sym_i16] = ACTIONS(2483), - [anon_sym_u32] = ACTIONS(2483), - [anon_sym_i32] = ACTIONS(2483), - [anon_sym_u64] = ACTIONS(2483), - [anon_sym_i64] = ACTIONS(2483), - [anon_sym_u128] = ACTIONS(2483), - [anon_sym_i128] = ACTIONS(2483), - [anon_sym_isize] = ACTIONS(2483), - [anon_sym_usize] = ACTIONS(2483), - [anon_sym_f32] = ACTIONS(2483), - [anon_sym_f64] = ACTIONS(2483), - [anon_sym_bool] = ACTIONS(2483), - [anon_sym_str] = ACTIONS(2483), - [anon_sym_char] = ACTIONS(2483), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(2481), - [sym_self] = ACTIONS(2483), - [sym_super] = ACTIONS(2483), - [sym_crate] = ACTIONS(2483), - [sym_metavariable] = ACTIONS(2481), - [sym_grit_metavariable] = ACTIONS(2481), - [sym_raw_string_literal] = ACTIONS(2481), - [sym_float_literal] = ACTIONS(2481), + [ts_builtin_sym_end] = ACTIONS(2479), + [sym__primitive_identifier] = ACTIONS(2481), + [anon_sym_SEMI] = ACTIONS(2479), + [anon_sym_macro_rules_BANG] = ACTIONS(2479), + [anon_sym_LPAREN] = ACTIONS(2479), + [anon_sym_LBRACE] = ACTIONS(2479), + [anon_sym_RBRACE] = ACTIONS(2479), + [anon_sym_LBRACK] = ACTIONS(2479), + [anon_sym_STAR] = ACTIONS(2479), + [anon_sym_SQUOTE] = ACTIONS(2481), + [anon_sym_async] = ACTIONS(2481), + [anon_sym_break] = ACTIONS(2481), + [anon_sym_const] = ACTIONS(2481), + [anon_sym_continue] = ACTIONS(2481), + [anon_sym_default] = ACTIONS(2481), + [anon_sym_enum] = ACTIONS(2481), + [anon_sym_fn] = ACTIONS(2481), + [anon_sym_for] = ACTIONS(2481), + [anon_sym_if] = ACTIONS(2481), + [anon_sym_impl] = ACTIONS(2481), + [anon_sym_let] = ACTIONS(2481), + [anon_sym_loop] = ACTIONS(2481), + [anon_sym_match] = ACTIONS(2481), + [anon_sym_mod] = ACTIONS(2481), + [anon_sym_pub] = ACTIONS(2481), + [anon_sym_return] = ACTIONS(2481), + [anon_sym_static] = ACTIONS(2481), + [anon_sym_struct] = ACTIONS(2481), + [anon_sym_trait] = ACTIONS(2481), + [anon_sym_type] = ACTIONS(2481), + [anon_sym_union] = ACTIONS(2481), + [anon_sym_unsafe] = ACTIONS(2481), + [anon_sym_use] = ACTIONS(2481), + [anon_sym_while] = ACTIONS(2481), + [anon_sym_POUND] = ACTIONS(2479), + [anon_sym_BANG] = ACTIONS(2479), + [anon_sym_extern] = ACTIONS(2481), + [anon_sym_LT] = ACTIONS(2479), + [anon_sym_COLON_COLON] = ACTIONS(2479), + [anon_sym_AMP] = ACTIONS(2479), + [anon_sym_DOT_DOT] = ACTIONS(2479), + [anon_sym_DASH] = ACTIONS(2479), + [anon_sym_PIPE] = ACTIONS(2479), + [anon_sym_yield] = ACTIONS(2481), + [anon_sym_move] = ACTIONS(2481), + [sym_integer_literal] = ACTIONS(2479), + [aux_sym_string_literal_token1] = ACTIONS(2479), + [sym_char_literal] = ACTIONS(2479), + [anon_sym_true] = ACTIONS(2481), + [anon_sym_false] = ACTIONS(2481), + [anon_sym_u8] = ACTIONS(2481), + [anon_sym_i8] = ACTIONS(2481), + [anon_sym_u16] = ACTIONS(2481), + [anon_sym_i16] = ACTIONS(2481), + [anon_sym_u32] = ACTIONS(2481), + [anon_sym_i32] = ACTIONS(2481), + [anon_sym_u64] = ACTIONS(2481), + [anon_sym_i64] = ACTIONS(2481), + [anon_sym_u128] = ACTIONS(2481), + [anon_sym_i128] = ACTIONS(2481), + [anon_sym_isize] = ACTIONS(2481), + [anon_sym_usize] = ACTIONS(2481), + [anon_sym_f32] = ACTIONS(2481), + [anon_sym_f64] = ACTIONS(2481), + [anon_sym_bool] = ACTIONS(2481), + [anon_sym_str] = ACTIONS(2481), + [anon_sym_char] = ACTIONS(2481), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(2479), + [sym_self] = ACTIONS(2481), + [sym_super] = ACTIONS(2481), + [sym_crate] = ACTIONS(2481), + [sym_metavariable] = ACTIONS(2479), + [sym_grit_metavariable] = ACTIONS(2479), + [sym_raw_string_literal] = ACTIONS(2479), + [sym_float_literal] = ACTIONS(2479), [sym_block_comment] = ACTIONS(3), }, [524] = { - [ts_builtin_sym_end] = ACTIONS(2485), - [sym__primitive_identifier] = ACTIONS(2487), - [anon_sym_SEMI] = ACTIONS(2485), - [anon_sym_macro_rules_BANG] = ACTIONS(2485), - [anon_sym_LPAREN] = ACTIONS(2485), - [anon_sym_LBRACE] = ACTIONS(2485), - [anon_sym_RBRACE] = ACTIONS(2485), - [anon_sym_LBRACK] = ACTIONS(2485), - [anon_sym_STAR] = ACTIONS(2485), - [anon_sym_SQUOTE] = ACTIONS(2487), - [anon_sym_async] = ACTIONS(2487), - [anon_sym_break] = ACTIONS(2487), - [anon_sym_const] = ACTIONS(2487), - [anon_sym_continue] = ACTIONS(2487), - [anon_sym_default] = ACTIONS(2487), - [anon_sym_enum] = ACTIONS(2487), - [anon_sym_fn] = ACTIONS(2487), - [anon_sym_for] = ACTIONS(2487), - [anon_sym_if] = ACTIONS(2487), - [anon_sym_impl] = ACTIONS(2487), - [anon_sym_let] = ACTIONS(2487), - [anon_sym_loop] = ACTIONS(2487), - [anon_sym_match] = ACTIONS(2487), - [anon_sym_mod] = ACTIONS(2487), - [anon_sym_pub] = ACTIONS(2487), - [anon_sym_return] = ACTIONS(2487), - [anon_sym_static] = ACTIONS(2487), - [anon_sym_struct] = ACTIONS(2487), - [anon_sym_trait] = ACTIONS(2487), - [anon_sym_type] = ACTIONS(2487), - [anon_sym_union] = ACTIONS(2487), - [anon_sym_unsafe] = ACTIONS(2487), - [anon_sym_use] = ACTIONS(2487), - [anon_sym_while] = ACTIONS(2487), - [anon_sym_POUND] = ACTIONS(2485), - [anon_sym_BANG] = ACTIONS(2485), - [anon_sym_extern] = ACTIONS(2487), - [anon_sym_LT] = ACTIONS(2485), - [anon_sym_COLON_COLON] = ACTIONS(2485), - [anon_sym_AMP] = ACTIONS(2485), - [anon_sym_DOT_DOT] = ACTIONS(2485), - [anon_sym_DASH] = ACTIONS(2485), - [anon_sym_PIPE] = ACTIONS(2485), - [anon_sym_yield] = ACTIONS(2487), - [anon_sym_move] = ACTIONS(2487), - [sym_integer_literal] = ACTIONS(2485), - [aux_sym_string_literal_token1] = ACTIONS(2485), - [sym_char_literal] = ACTIONS(2485), - [anon_sym_true] = ACTIONS(2487), - [anon_sym_false] = ACTIONS(2487), - [anon_sym_u8] = ACTIONS(2487), - [anon_sym_i8] = ACTIONS(2487), - [anon_sym_u16] = ACTIONS(2487), - [anon_sym_i16] = ACTIONS(2487), - [anon_sym_u32] = ACTIONS(2487), - [anon_sym_i32] = ACTIONS(2487), - [anon_sym_u64] = ACTIONS(2487), - [anon_sym_i64] = ACTIONS(2487), - [anon_sym_u128] = ACTIONS(2487), - [anon_sym_i128] = ACTIONS(2487), - [anon_sym_isize] = ACTIONS(2487), - [anon_sym_usize] = ACTIONS(2487), - [anon_sym_f32] = ACTIONS(2487), - [anon_sym_f64] = ACTIONS(2487), - [anon_sym_bool] = ACTIONS(2487), - [anon_sym_str] = ACTIONS(2487), - [anon_sym_char] = ACTIONS(2487), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(2485), - [sym_self] = ACTIONS(2487), - [sym_super] = ACTIONS(2487), - [sym_crate] = ACTIONS(2487), - [sym_metavariable] = ACTIONS(2485), - [sym_grit_metavariable] = ACTIONS(2485), - [sym_raw_string_literal] = ACTIONS(2485), - [sym_float_literal] = ACTIONS(2485), + [ts_builtin_sym_end] = ACTIONS(2483), + [sym__primitive_identifier] = ACTIONS(2485), + [anon_sym_SEMI] = ACTIONS(2483), + [anon_sym_macro_rules_BANG] = ACTIONS(2483), + [anon_sym_LPAREN] = ACTIONS(2483), + [anon_sym_LBRACE] = ACTIONS(2483), + [anon_sym_RBRACE] = ACTIONS(2483), + [anon_sym_LBRACK] = ACTIONS(2483), + [anon_sym_STAR] = ACTIONS(2483), + [anon_sym_SQUOTE] = ACTIONS(2485), + [anon_sym_async] = ACTIONS(2485), + [anon_sym_break] = ACTIONS(2485), + [anon_sym_const] = ACTIONS(2485), + [anon_sym_continue] = ACTIONS(2485), + [anon_sym_default] = ACTIONS(2485), + [anon_sym_enum] = ACTIONS(2485), + [anon_sym_fn] = ACTIONS(2485), + [anon_sym_for] = ACTIONS(2485), + [anon_sym_if] = ACTIONS(2485), + [anon_sym_impl] = ACTIONS(2485), + [anon_sym_let] = ACTIONS(2485), + [anon_sym_loop] = ACTIONS(2485), + [anon_sym_match] = ACTIONS(2485), + [anon_sym_mod] = ACTIONS(2485), + [anon_sym_pub] = ACTIONS(2485), + [anon_sym_return] = ACTIONS(2485), + [anon_sym_static] = ACTIONS(2485), + [anon_sym_struct] = ACTIONS(2485), + [anon_sym_trait] = ACTIONS(2485), + [anon_sym_type] = ACTIONS(2485), + [anon_sym_union] = ACTIONS(2485), + [anon_sym_unsafe] = ACTIONS(2485), + [anon_sym_use] = ACTIONS(2485), + [anon_sym_while] = ACTIONS(2485), + [anon_sym_POUND] = ACTIONS(2483), + [anon_sym_BANG] = ACTIONS(2483), + [anon_sym_extern] = ACTIONS(2485), + [anon_sym_LT] = ACTIONS(2483), + [anon_sym_COLON_COLON] = ACTIONS(2483), + [anon_sym_AMP] = ACTIONS(2483), + [anon_sym_DOT_DOT] = ACTIONS(2483), + [anon_sym_DASH] = ACTIONS(2483), + [anon_sym_PIPE] = ACTIONS(2483), + [anon_sym_yield] = ACTIONS(2485), + [anon_sym_move] = ACTIONS(2485), + [sym_integer_literal] = ACTIONS(2483), + [aux_sym_string_literal_token1] = ACTIONS(2483), + [sym_char_literal] = ACTIONS(2483), + [anon_sym_true] = ACTIONS(2485), + [anon_sym_false] = ACTIONS(2485), + [anon_sym_u8] = ACTIONS(2485), + [anon_sym_i8] = ACTIONS(2485), + [anon_sym_u16] = ACTIONS(2485), + [anon_sym_i16] = ACTIONS(2485), + [anon_sym_u32] = ACTIONS(2485), + [anon_sym_i32] = ACTIONS(2485), + [anon_sym_u64] = ACTIONS(2485), + [anon_sym_i64] = ACTIONS(2485), + [anon_sym_u128] = ACTIONS(2485), + [anon_sym_i128] = ACTIONS(2485), + [anon_sym_isize] = ACTIONS(2485), + [anon_sym_usize] = ACTIONS(2485), + [anon_sym_f32] = ACTIONS(2485), + [anon_sym_f64] = ACTIONS(2485), + [anon_sym_bool] = ACTIONS(2485), + [anon_sym_str] = ACTIONS(2485), + [anon_sym_char] = ACTIONS(2485), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(2483), + [sym_self] = ACTIONS(2485), + [sym_super] = ACTIONS(2485), + [sym_crate] = ACTIONS(2485), + [sym_metavariable] = ACTIONS(2483), + [sym_grit_metavariable] = ACTIONS(2483), + [sym_raw_string_literal] = ACTIONS(2483), + [sym_float_literal] = ACTIONS(2483), [sym_block_comment] = ACTIONS(3), }, [525] = { - [ts_builtin_sym_end] = ACTIONS(2489), - [sym__primitive_identifier] = ACTIONS(2491), - [anon_sym_SEMI] = ACTIONS(2489), - [anon_sym_macro_rules_BANG] = ACTIONS(2489), - [anon_sym_LPAREN] = ACTIONS(2489), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_RBRACE] = ACTIONS(2489), - [anon_sym_LBRACK] = ACTIONS(2489), - [anon_sym_STAR] = ACTIONS(2489), - [anon_sym_SQUOTE] = ACTIONS(2491), - [anon_sym_async] = ACTIONS(2491), - [anon_sym_break] = ACTIONS(2491), - [anon_sym_const] = ACTIONS(2491), - [anon_sym_continue] = ACTIONS(2491), - [anon_sym_default] = ACTIONS(2491), - [anon_sym_enum] = ACTIONS(2491), - [anon_sym_fn] = ACTIONS(2491), - [anon_sym_for] = ACTIONS(2491), - [anon_sym_if] = ACTIONS(2491), - [anon_sym_impl] = ACTIONS(2491), - [anon_sym_let] = ACTIONS(2491), - [anon_sym_loop] = ACTIONS(2491), - [anon_sym_match] = ACTIONS(2491), - [anon_sym_mod] = ACTIONS(2491), - [anon_sym_pub] = ACTIONS(2491), - [anon_sym_return] = ACTIONS(2491), - [anon_sym_static] = ACTIONS(2491), - [anon_sym_struct] = ACTIONS(2491), - [anon_sym_trait] = ACTIONS(2491), - [anon_sym_type] = ACTIONS(2491), - [anon_sym_union] = ACTIONS(2491), - [anon_sym_unsafe] = ACTIONS(2491), - [anon_sym_use] = ACTIONS(2491), - [anon_sym_while] = ACTIONS(2491), - [anon_sym_POUND] = ACTIONS(2489), - [anon_sym_BANG] = ACTIONS(2489), - [anon_sym_extern] = ACTIONS(2491), - [anon_sym_LT] = ACTIONS(2489), - [anon_sym_COLON_COLON] = ACTIONS(2489), - [anon_sym_AMP] = ACTIONS(2489), - [anon_sym_DOT_DOT] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(2489), - [anon_sym_PIPE] = ACTIONS(2489), - [anon_sym_yield] = ACTIONS(2491), - [anon_sym_move] = ACTIONS(2491), - [sym_integer_literal] = ACTIONS(2489), - [aux_sym_string_literal_token1] = ACTIONS(2489), - [sym_char_literal] = ACTIONS(2489), - [anon_sym_true] = ACTIONS(2491), - [anon_sym_false] = ACTIONS(2491), - [anon_sym_u8] = ACTIONS(2491), - [anon_sym_i8] = ACTIONS(2491), - [anon_sym_u16] = ACTIONS(2491), - [anon_sym_i16] = ACTIONS(2491), - [anon_sym_u32] = ACTIONS(2491), - [anon_sym_i32] = ACTIONS(2491), - [anon_sym_u64] = ACTIONS(2491), - [anon_sym_i64] = ACTIONS(2491), - [anon_sym_u128] = ACTIONS(2491), - [anon_sym_i128] = ACTIONS(2491), - [anon_sym_isize] = ACTIONS(2491), - [anon_sym_usize] = ACTIONS(2491), - [anon_sym_f32] = ACTIONS(2491), - [anon_sym_f64] = ACTIONS(2491), - [anon_sym_bool] = ACTIONS(2491), - [anon_sym_str] = ACTIONS(2491), - [anon_sym_char] = ACTIONS(2491), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(2489), - [sym_self] = ACTIONS(2491), - [sym_super] = ACTIONS(2491), - [sym_crate] = ACTIONS(2491), - [sym_metavariable] = ACTIONS(2489), - [sym_grit_metavariable] = ACTIONS(2489), - [sym_raw_string_literal] = ACTIONS(2489), - [sym_float_literal] = ACTIONS(2489), + [ts_builtin_sym_end] = ACTIONS(2487), + [sym__primitive_identifier] = ACTIONS(2489), + [anon_sym_SEMI] = ACTIONS(2487), + [anon_sym_macro_rules_BANG] = ACTIONS(2487), + [anon_sym_LPAREN] = ACTIONS(2487), + [anon_sym_LBRACE] = ACTIONS(2487), + [anon_sym_RBRACE] = ACTIONS(2487), + [anon_sym_LBRACK] = ACTIONS(2487), + [anon_sym_STAR] = ACTIONS(2487), + [anon_sym_SQUOTE] = ACTIONS(2489), + [anon_sym_async] = ACTIONS(2489), + [anon_sym_break] = ACTIONS(2489), + [anon_sym_const] = ACTIONS(2489), + [anon_sym_continue] = ACTIONS(2489), + [anon_sym_default] = ACTIONS(2489), + [anon_sym_enum] = ACTIONS(2489), + [anon_sym_fn] = ACTIONS(2489), + [anon_sym_for] = ACTIONS(2489), + [anon_sym_if] = ACTIONS(2489), + [anon_sym_impl] = ACTIONS(2489), + [anon_sym_let] = ACTIONS(2489), + [anon_sym_loop] = ACTIONS(2489), + [anon_sym_match] = ACTIONS(2489), + [anon_sym_mod] = ACTIONS(2489), + [anon_sym_pub] = ACTIONS(2489), + [anon_sym_return] = ACTIONS(2489), + [anon_sym_static] = ACTIONS(2489), + [anon_sym_struct] = ACTIONS(2489), + [anon_sym_trait] = ACTIONS(2489), + [anon_sym_type] = ACTIONS(2489), + [anon_sym_union] = ACTIONS(2489), + [anon_sym_unsafe] = ACTIONS(2489), + [anon_sym_use] = ACTIONS(2489), + [anon_sym_while] = ACTIONS(2489), + [anon_sym_POUND] = ACTIONS(2487), + [anon_sym_BANG] = ACTIONS(2487), + [anon_sym_extern] = ACTIONS(2489), + [anon_sym_LT] = ACTIONS(2487), + [anon_sym_COLON_COLON] = ACTIONS(2487), + [anon_sym_AMP] = ACTIONS(2487), + [anon_sym_DOT_DOT] = ACTIONS(2487), + [anon_sym_DASH] = ACTIONS(2487), + [anon_sym_PIPE] = ACTIONS(2487), + [anon_sym_yield] = ACTIONS(2489), + [anon_sym_move] = ACTIONS(2489), + [sym_integer_literal] = ACTIONS(2487), + [aux_sym_string_literal_token1] = ACTIONS(2487), + [sym_char_literal] = ACTIONS(2487), + [anon_sym_true] = ACTIONS(2489), + [anon_sym_false] = ACTIONS(2489), + [anon_sym_u8] = ACTIONS(2489), + [anon_sym_i8] = ACTIONS(2489), + [anon_sym_u16] = ACTIONS(2489), + [anon_sym_i16] = ACTIONS(2489), + [anon_sym_u32] = ACTIONS(2489), + [anon_sym_i32] = ACTIONS(2489), + [anon_sym_u64] = ACTIONS(2489), + [anon_sym_i64] = ACTIONS(2489), + [anon_sym_u128] = ACTIONS(2489), + [anon_sym_i128] = ACTIONS(2489), + [anon_sym_isize] = ACTIONS(2489), + [anon_sym_usize] = ACTIONS(2489), + [anon_sym_f32] = ACTIONS(2489), + [anon_sym_f64] = ACTIONS(2489), + [anon_sym_bool] = ACTIONS(2489), + [anon_sym_str] = ACTIONS(2489), + [anon_sym_char] = ACTIONS(2489), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(2487), + [sym_self] = ACTIONS(2489), + [sym_super] = ACTIONS(2489), + [sym_crate] = ACTIONS(2489), + [sym_metavariable] = ACTIONS(2487), + [sym_grit_metavariable] = ACTIONS(2487), + [sym_raw_string_literal] = ACTIONS(2487), + [sym_float_literal] = ACTIONS(2487), [sym_block_comment] = ACTIONS(3), }, [526] = { - [ts_builtin_sym_end] = ACTIONS(2493), - [sym__primitive_identifier] = ACTIONS(2495), - [anon_sym_SEMI] = ACTIONS(2493), - [anon_sym_macro_rules_BANG] = ACTIONS(2493), - [anon_sym_LPAREN] = ACTIONS(2493), - [anon_sym_LBRACE] = ACTIONS(2493), - [anon_sym_RBRACE] = ACTIONS(2493), - [anon_sym_LBRACK] = ACTIONS(2493), - [anon_sym_STAR] = ACTIONS(2493), - [anon_sym_SQUOTE] = ACTIONS(2495), - [anon_sym_async] = ACTIONS(2495), - [anon_sym_break] = ACTIONS(2495), - [anon_sym_const] = ACTIONS(2495), - [anon_sym_continue] = ACTIONS(2495), - [anon_sym_default] = ACTIONS(2495), - [anon_sym_enum] = ACTIONS(2495), - [anon_sym_fn] = ACTIONS(2495), - [anon_sym_for] = ACTIONS(2495), - [anon_sym_if] = ACTIONS(2495), - [anon_sym_impl] = ACTIONS(2495), - [anon_sym_let] = ACTIONS(2495), - [anon_sym_loop] = ACTIONS(2495), - [anon_sym_match] = ACTIONS(2495), - [anon_sym_mod] = ACTIONS(2495), - [anon_sym_pub] = ACTIONS(2495), - [anon_sym_return] = ACTIONS(2495), - [anon_sym_static] = ACTIONS(2495), - [anon_sym_struct] = ACTIONS(2495), - [anon_sym_trait] = ACTIONS(2495), - [anon_sym_type] = ACTIONS(2495), - [anon_sym_union] = ACTIONS(2495), - [anon_sym_unsafe] = ACTIONS(2495), - [anon_sym_use] = ACTIONS(2495), - [anon_sym_while] = ACTIONS(2495), - [anon_sym_POUND] = ACTIONS(2493), - [anon_sym_BANG] = ACTIONS(2493), - [anon_sym_extern] = ACTIONS(2495), - [anon_sym_LT] = ACTIONS(2493), - [anon_sym_COLON_COLON] = ACTIONS(2493), - [anon_sym_AMP] = ACTIONS(2493), - [anon_sym_DOT_DOT] = ACTIONS(2493), - [anon_sym_DASH] = ACTIONS(2493), - [anon_sym_PIPE] = ACTIONS(2493), - [anon_sym_yield] = ACTIONS(2495), - [anon_sym_move] = ACTIONS(2495), - [sym_integer_literal] = ACTIONS(2493), - [aux_sym_string_literal_token1] = ACTIONS(2493), - [sym_char_literal] = ACTIONS(2493), - [anon_sym_true] = ACTIONS(2495), - [anon_sym_false] = ACTIONS(2495), - [anon_sym_u8] = ACTIONS(2495), - [anon_sym_i8] = ACTIONS(2495), - [anon_sym_u16] = ACTIONS(2495), - [anon_sym_i16] = ACTIONS(2495), - [anon_sym_u32] = ACTIONS(2495), - [anon_sym_i32] = ACTIONS(2495), - [anon_sym_u64] = ACTIONS(2495), - [anon_sym_i64] = ACTIONS(2495), - [anon_sym_u128] = ACTIONS(2495), - [anon_sym_i128] = ACTIONS(2495), - [anon_sym_isize] = ACTIONS(2495), - [anon_sym_usize] = ACTIONS(2495), - [anon_sym_f32] = ACTIONS(2495), - [anon_sym_f64] = ACTIONS(2495), - [anon_sym_bool] = ACTIONS(2495), - [anon_sym_str] = ACTIONS(2495), - [anon_sym_char] = ACTIONS(2495), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(2493), - [sym_self] = ACTIONS(2495), - [sym_super] = ACTIONS(2495), - [sym_crate] = ACTIONS(2495), - [sym_metavariable] = ACTIONS(2493), - [sym_grit_metavariable] = ACTIONS(2493), - [sym_raw_string_literal] = ACTIONS(2493), - [sym_float_literal] = ACTIONS(2493), + [ts_builtin_sym_end] = ACTIONS(2491), + [sym__primitive_identifier] = ACTIONS(2493), + [anon_sym_SEMI] = ACTIONS(2491), + [anon_sym_macro_rules_BANG] = ACTIONS(2491), + [anon_sym_LPAREN] = ACTIONS(2491), + [anon_sym_LBRACE] = ACTIONS(2491), + [anon_sym_RBRACE] = ACTIONS(2491), + [anon_sym_LBRACK] = ACTIONS(2491), + [anon_sym_STAR] = ACTIONS(2491), + [anon_sym_SQUOTE] = ACTIONS(2493), + [anon_sym_async] = ACTIONS(2493), + [anon_sym_break] = ACTIONS(2493), + [anon_sym_const] = ACTIONS(2493), + [anon_sym_continue] = ACTIONS(2493), + [anon_sym_default] = ACTIONS(2493), + [anon_sym_enum] = ACTIONS(2493), + [anon_sym_fn] = ACTIONS(2493), + [anon_sym_for] = ACTIONS(2493), + [anon_sym_if] = ACTIONS(2493), + [anon_sym_impl] = ACTIONS(2493), + [anon_sym_let] = ACTIONS(2493), + [anon_sym_loop] = ACTIONS(2493), + [anon_sym_match] = ACTIONS(2493), + [anon_sym_mod] = ACTIONS(2493), + [anon_sym_pub] = ACTIONS(2493), + [anon_sym_return] = ACTIONS(2493), + [anon_sym_static] = ACTIONS(2493), + [anon_sym_struct] = ACTIONS(2493), + [anon_sym_trait] = ACTIONS(2493), + [anon_sym_type] = ACTIONS(2493), + [anon_sym_union] = ACTIONS(2493), + [anon_sym_unsafe] = ACTIONS(2493), + [anon_sym_use] = ACTIONS(2493), + [anon_sym_while] = ACTIONS(2493), + [anon_sym_POUND] = ACTIONS(2491), + [anon_sym_BANG] = ACTIONS(2491), + [anon_sym_extern] = ACTIONS(2493), + [anon_sym_LT] = ACTIONS(2491), + [anon_sym_COLON_COLON] = ACTIONS(2491), + [anon_sym_AMP] = ACTIONS(2491), + [anon_sym_DOT_DOT] = ACTIONS(2491), + [anon_sym_DASH] = ACTIONS(2491), + [anon_sym_PIPE] = ACTIONS(2491), + [anon_sym_yield] = ACTIONS(2493), + [anon_sym_move] = ACTIONS(2493), + [sym_integer_literal] = ACTIONS(2491), + [aux_sym_string_literal_token1] = ACTIONS(2491), + [sym_char_literal] = ACTIONS(2491), + [anon_sym_true] = ACTIONS(2493), + [anon_sym_false] = ACTIONS(2493), + [anon_sym_u8] = ACTIONS(2493), + [anon_sym_i8] = ACTIONS(2493), + [anon_sym_u16] = ACTIONS(2493), + [anon_sym_i16] = ACTIONS(2493), + [anon_sym_u32] = ACTIONS(2493), + [anon_sym_i32] = ACTIONS(2493), + [anon_sym_u64] = ACTIONS(2493), + [anon_sym_i64] = ACTIONS(2493), + [anon_sym_u128] = ACTIONS(2493), + [anon_sym_i128] = ACTIONS(2493), + [anon_sym_isize] = ACTIONS(2493), + [anon_sym_usize] = ACTIONS(2493), + [anon_sym_f32] = ACTIONS(2493), + [anon_sym_f64] = ACTIONS(2493), + [anon_sym_bool] = ACTIONS(2493), + [anon_sym_str] = ACTIONS(2493), + [anon_sym_char] = ACTIONS(2493), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(2491), + [sym_self] = ACTIONS(2493), + [sym_super] = ACTIONS(2493), + [sym_crate] = ACTIONS(2493), + [sym_metavariable] = ACTIONS(2491), + [sym_grit_metavariable] = ACTIONS(2491), + [sym_raw_string_literal] = ACTIONS(2491), + [sym_float_literal] = ACTIONS(2491), [sym_block_comment] = ACTIONS(3), }, [527] = { - [ts_builtin_sym_end] = ACTIONS(2497), - [sym__primitive_identifier] = ACTIONS(2499), - [anon_sym_SEMI] = ACTIONS(2497), - [anon_sym_macro_rules_BANG] = ACTIONS(2497), - [anon_sym_LPAREN] = ACTIONS(2497), - [anon_sym_LBRACE] = ACTIONS(2497), - [anon_sym_RBRACE] = ACTIONS(2497), - [anon_sym_LBRACK] = ACTIONS(2497), - [anon_sym_STAR] = ACTIONS(2497), - [anon_sym_SQUOTE] = ACTIONS(2499), - [anon_sym_async] = ACTIONS(2499), - [anon_sym_break] = ACTIONS(2499), - [anon_sym_const] = ACTIONS(2499), - [anon_sym_continue] = ACTIONS(2499), - [anon_sym_default] = ACTIONS(2499), - [anon_sym_enum] = ACTIONS(2499), - [anon_sym_fn] = ACTIONS(2499), - [anon_sym_for] = ACTIONS(2499), - [anon_sym_if] = ACTIONS(2499), - [anon_sym_impl] = ACTIONS(2499), - [anon_sym_let] = ACTIONS(2499), - [anon_sym_loop] = ACTIONS(2499), - [anon_sym_match] = ACTIONS(2499), - [anon_sym_mod] = ACTIONS(2499), - [anon_sym_pub] = ACTIONS(2499), - [anon_sym_return] = ACTIONS(2499), - [anon_sym_static] = ACTIONS(2499), - [anon_sym_struct] = ACTIONS(2499), - [anon_sym_trait] = ACTIONS(2499), - [anon_sym_type] = ACTIONS(2499), - [anon_sym_union] = ACTIONS(2499), - [anon_sym_unsafe] = ACTIONS(2499), - [anon_sym_use] = ACTIONS(2499), - [anon_sym_while] = ACTIONS(2499), - [anon_sym_POUND] = ACTIONS(2497), - [anon_sym_BANG] = ACTIONS(2497), - [anon_sym_extern] = ACTIONS(2499), - [anon_sym_LT] = ACTIONS(2497), - [anon_sym_COLON_COLON] = ACTIONS(2497), - [anon_sym_AMP] = ACTIONS(2497), - [anon_sym_DOT_DOT] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_PIPE] = ACTIONS(2497), - [anon_sym_yield] = ACTIONS(2499), - [anon_sym_move] = ACTIONS(2499), - [sym_integer_literal] = ACTIONS(2497), - [aux_sym_string_literal_token1] = ACTIONS(2497), - [sym_char_literal] = ACTIONS(2497), - [anon_sym_true] = ACTIONS(2499), - [anon_sym_false] = ACTIONS(2499), - [anon_sym_u8] = ACTIONS(2499), - [anon_sym_i8] = ACTIONS(2499), - [anon_sym_u16] = ACTIONS(2499), - [anon_sym_i16] = ACTIONS(2499), - [anon_sym_u32] = ACTIONS(2499), - [anon_sym_i32] = ACTIONS(2499), - [anon_sym_u64] = ACTIONS(2499), - [anon_sym_i64] = ACTIONS(2499), - [anon_sym_u128] = ACTIONS(2499), - [anon_sym_i128] = ACTIONS(2499), - [anon_sym_isize] = ACTIONS(2499), - [anon_sym_usize] = ACTIONS(2499), - [anon_sym_f32] = ACTIONS(2499), - [anon_sym_f64] = ACTIONS(2499), - [anon_sym_bool] = ACTIONS(2499), - [anon_sym_str] = ACTIONS(2499), - [anon_sym_char] = ACTIONS(2499), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(2497), - [sym_self] = ACTIONS(2499), - [sym_super] = ACTIONS(2499), - [sym_crate] = ACTIONS(2499), - [sym_metavariable] = ACTIONS(2497), - [sym_grit_metavariable] = ACTIONS(2497), - [sym_raw_string_literal] = ACTIONS(2497), - [sym_float_literal] = ACTIONS(2497), + [ts_builtin_sym_end] = ACTIONS(2495), + [sym__primitive_identifier] = ACTIONS(2497), + [anon_sym_SEMI] = ACTIONS(2495), + [anon_sym_macro_rules_BANG] = ACTIONS(2495), + [anon_sym_LPAREN] = ACTIONS(2495), + [anon_sym_LBRACE] = ACTIONS(2495), + [anon_sym_RBRACE] = ACTIONS(2495), + [anon_sym_LBRACK] = ACTIONS(2495), + [anon_sym_STAR] = ACTIONS(2495), + [anon_sym_SQUOTE] = ACTIONS(2497), + [anon_sym_async] = ACTIONS(2497), + [anon_sym_break] = ACTIONS(2497), + [anon_sym_const] = ACTIONS(2497), + [anon_sym_continue] = ACTIONS(2497), + [anon_sym_default] = ACTIONS(2497), + [anon_sym_enum] = ACTIONS(2497), + [anon_sym_fn] = ACTIONS(2497), + [anon_sym_for] = ACTIONS(2497), + [anon_sym_if] = ACTIONS(2497), + [anon_sym_impl] = ACTIONS(2497), + [anon_sym_let] = ACTIONS(2497), + [anon_sym_loop] = ACTIONS(2497), + [anon_sym_match] = ACTIONS(2497), + [anon_sym_mod] = ACTIONS(2497), + [anon_sym_pub] = ACTIONS(2497), + [anon_sym_return] = ACTIONS(2497), + [anon_sym_static] = ACTIONS(2497), + [anon_sym_struct] = ACTIONS(2497), + [anon_sym_trait] = ACTIONS(2497), + [anon_sym_type] = ACTIONS(2497), + [anon_sym_union] = ACTIONS(2497), + [anon_sym_unsafe] = ACTIONS(2497), + [anon_sym_use] = ACTIONS(2497), + [anon_sym_while] = ACTIONS(2497), + [anon_sym_POUND] = ACTIONS(2495), + [anon_sym_BANG] = ACTIONS(2495), + [anon_sym_extern] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2495), + [anon_sym_COLON_COLON] = ACTIONS(2495), + [anon_sym_AMP] = ACTIONS(2495), + [anon_sym_DOT_DOT] = ACTIONS(2495), + [anon_sym_DASH] = ACTIONS(2495), + [anon_sym_PIPE] = ACTIONS(2495), + [anon_sym_yield] = ACTIONS(2497), + [anon_sym_move] = ACTIONS(2497), + [sym_integer_literal] = ACTIONS(2495), + [aux_sym_string_literal_token1] = ACTIONS(2495), + [sym_char_literal] = ACTIONS(2495), + [anon_sym_true] = ACTIONS(2497), + [anon_sym_false] = ACTIONS(2497), + [anon_sym_u8] = ACTIONS(2497), + [anon_sym_i8] = ACTIONS(2497), + [anon_sym_u16] = ACTIONS(2497), + [anon_sym_i16] = ACTIONS(2497), + [anon_sym_u32] = ACTIONS(2497), + [anon_sym_i32] = ACTIONS(2497), + [anon_sym_u64] = ACTIONS(2497), + [anon_sym_i64] = ACTIONS(2497), + [anon_sym_u128] = ACTIONS(2497), + [anon_sym_i128] = ACTIONS(2497), + [anon_sym_isize] = ACTIONS(2497), + [anon_sym_usize] = ACTIONS(2497), + [anon_sym_f32] = ACTIONS(2497), + [anon_sym_f64] = ACTIONS(2497), + [anon_sym_bool] = ACTIONS(2497), + [anon_sym_str] = ACTIONS(2497), + [anon_sym_char] = ACTIONS(2497), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(2495), + [sym_self] = ACTIONS(2497), + [sym_super] = ACTIONS(2497), + [sym_crate] = ACTIONS(2497), + [sym_metavariable] = ACTIONS(2495), + [sym_grit_metavariable] = ACTIONS(2495), + [sym_raw_string_literal] = ACTIONS(2495), + [sym_float_literal] = ACTIONS(2495), [sym_block_comment] = ACTIONS(3), }, [528] = { - [ts_builtin_sym_end] = ACTIONS(2501), - [sym__primitive_identifier] = ACTIONS(2503), - [anon_sym_SEMI] = ACTIONS(2501), - [anon_sym_macro_rules_BANG] = ACTIONS(2501), - [anon_sym_LPAREN] = ACTIONS(2501), - [anon_sym_LBRACE] = ACTIONS(2501), - [anon_sym_RBRACE] = ACTIONS(2501), - [anon_sym_LBRACK] = ACTIONS(2501), - [anon_sym_STAR] = ACTIONS(2501), - [anon_sym_SQUOTE] = ACTIONS(2503), - [anon_sym_async] = ACTIONS(2503), - [anon_sym_break] = ACTIONS(2503), - [anon_sym_const] = ACTIONS(2503), - [anon_sym_continue] = ACTIONS(2503), - [anon_sym_default] = ACTIONS(2503), - [anon_sym_enum] = ACTIONS(2503), - [anon_sym_fn] = ACTIONS(2503), - [anon_sym_for] = ACTIONS(2503), - [anon_sym_if] = ACTIONS(2503), - [anon_sym_impl] = ACTIONS(2503), - [anon_sym_let] = ACTIONS(2503), - [anon_sym_loop] = ACTIONS(2503), - [anon_sym_match] = ACTIONS(2503), - [anon_sym_mod] = ACTIONS(2503), - [anon_sym_pub] = ACTIONS(2503), - [anon_sym_return] = ACTIONS(2503), - [anon_sym_static] = ACTIONS(2503), - [anon_sym_struct] = ACTIONS(2503), - [anon_sym_trait] = ACTIONS(2503), - [anon_sym_type] = ACTIONS(2503), - [anon_sym_union] = ACTIONS(2503), - [anon_sym_unsafe] = ACTIONS(2503), - [anon_sym_use] = ACTIONS(2503), - [anon_sym_while] = ACTIONS(2503), - [anon_sym_POUND] = ACTIONS(2501), - [anon_sym_BANG] = ACTIONS(2501), - [anon_sym_extern] = ACTIONS(2503), - [anon_sym_LT] = ACTIONS(2501), - [anon_sym_COLON_COLON] = ACTIONS(2501), - [anon_sym_AMP] = ACTIONS(2501), - [anon_sym_DOT_DOT] = ACTIONS(2501), - [anon_sym_DASH] = ACTIONS(2501), - [anon_sym_PIPE] = ACTIONS(2501), - [anon_sym_yield] = ACTIONS(2503), - [anon_sym_move] = ACTIONS(2503), - [sym_integer_literal] = ACTIONS(2501), - [aux_sym_string_literal_token1] = ACTIONS(2501), - [sym_char_literal] = ACTIONS(2501), - [anon_sym_true] = ACTIONS(2503), - [anon_sym_false] = ACTIONS(2503), - [anon_sym_u8] = ACTIONS(2503), - [anon_sym_i8] = ACTIONS(2503), - [anon_sym_u16] = ACTIONS(2503), - [anon_sym_i16] = ACTIONS(2503), - [anon_sym_u32] = ACTIONS(2503), - [anon_sym_i32] = ACTIONS(2503), - [anon_sym_u64] = ACTIONS(2503), - [anon_sym_i64] = ACTIONS(2503), - [anon_sym_u128] = ACTIONS(2503), - [anon_sym_i128] = ACTIONS(2503), - [anon_sym_isize] = ACTIONS(2503), - [anon_sym_usize] = ACTIONS(2503), - [anon_sym_f32] = ACTIONS(2503), - [anon_sym_f64] = ACTIONS(2503), - [anon_sym_bool] = ACTIONS(2503), - [anon_sym_str] = ACTIONS(2503), - [anon_sym_char] = ACTIONS(2503), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(2501), - [sym_self] = ACTIONS(2503), - [sym_super] = ACTIONS(2503), - [sym_crate] = ACTIONS(2503), - [sym_metavariable] = ACTIONS(2501), - [sym_grit_metavariable] = ACTIONS(2501), - [sym_raw_string_literal] = ACTIONS(2501), - [sym_float_literal] = ACTIONS(2501), + [ts_builtin_sym_end] = ACTIONS(2499), + [sym__primitive_identifier] = ACTIONS(2501), + [anon_sym_SEMI] = ACTIONS(2499), + [anon_sym_macro_rules_BANG] = ACTIONS(2499), + [anon_sym_LPAREN] = ACTIONS(2499), + [anon_sym_LBRACE] = ACTIONS(2499), + [anon_sym_RBRACE] = ACTIONS(2499), + [anon_sym_LBRACK] = ACTIONS(2499), + [anon_sym_STAR] = ACTIONS(2499), + [anon_sym_SQUOTE] = ACTIONS(2501), + [anon_sym_async] = ACTIONS(2501), + [anon_sym_break] = ACTIONS(2501), + [anon_sym_const] = ACTIONS(2501), + [anon_sym_continue] = ACTIONS(2501), + [anon_sym_default] = ACTIONS(2501), + [anon_sym_enum] = ACTIONS(2501), + [anon_sym_fn] = ACTIONS(2501), + [anon_sym_for] = ACTIONS(2501), + [anon_sym_if] = ACTIONS(2501), + [anon_sym_impl] = ACTIONS(2501), + [anon_sym_let] = ACTIONS(2501), + [anon_sym_loop] = ACTIONS(2501), + [anon_sym_match] = ACTIONS(2501), + [anon_sym_mod] = ACTIONS(2501), + [anon_sym_pub] = ACTIONS(2501), + [anon_sym_return] = ACTIONS(2501), + [anon_sym_static] = ACTIONS(2501), + [anon_sym_struct] = ACTIONS(2501), + [anon_sym_trait] = ACTIONS(2501), + [anon_sym_type] = ACTIONS(2501), + [anon_sym_union] = ACTIONS(2501), + [anon_sym_unsafe] = ACTIONS(2501), + [anon_sym_use] = ACTIONS(2501), + [anon_sym_while] = ACTIONS(2501), + [anon_sym_POUND] = ACTIONS(2499), + [anon_sym_BANG] = ACTIONS(2499), + [anon_sym_extern] = ACTIONS(2501), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_COLON_COLON] = ACTIONS(2499), + [anon_sym_AMP] = ACTIONS(2499), + [anon_sym_DOT_DOT] = ACTIONS(2499), + [anon_sym_DASH] = ACTIONS(2499), + [anon_sym_PIPE] = ACTIONS(2499), + [anon_sym_yield] = ACTIONS(2501), + [anon_sym_move] = ACTIONS(2501), + [sym_integer_literal] = ACTIONS(2499), + [aux_sym_string_literal_token1] = ACTIONS(2499), + [sym_char_literal] = ACTIONS(2499), + [anon_sym_true] = ACTIONS(2501), + [anon_sym_false] = ACTIONS(2501), + [anon_sym_u8] = ACTIONS(2501), + [anon_sym_i8] = ACTIONS(2501), + [anon_sym_u16] = ACTIONS(2501), + [anon_sym_i16] = ACTIONS(2501), + [anon_sym_u32] = ACTIONS(2501), + [anon_sym_i32] = ACTIONS(2501), + [anon_sym_u64] = ACTIONS(2501), + [anon_sym_i64] = ACTIONS(2501), + [anon_sym_u128] = ACTIONS(2501), + [anon_sym_i128] = ACTIONS(2501), + [anon_sym_isize] = ACTIONS(2501), + [anon_sym_usize] = ACTIONS(2501), + [anon_sym_f32] = ACTIONS(2501), + [anon_sym_f64] = ACTIONS(2501), + [anon_sym_bool] = ACTIONS(2501), + [anon_sym_str] = ACTIONS(2501), + [anon_sym_char] = ACTIONS(2501), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(2499), + [sym_self] = ACTIONS(2501), + [sym_super] = ACTIONS(2501), + [sym_crate] = ACTIONS(2501), + [sym_metavariable] = ACTIONS(2499), + [sym_grit_metavariable] = ACTIONS(2499), + [sym_raw_string_literal] = ACTIONS(2499), + [sym_float_literal] = ACTIONS(2499), [sym_block_comment] = ACTIONS(3), }, [529] = { - [ts_builtin_sym_end] = ACTIONS(2505), - [sym__primitive_identifier] = ACTIONS(2507), - [anon_sym_SEMI] = ACTIONS(2505), - [anon_sym_macro_rules_BANG] = ACTIONS(2505), - [anon_sym_LPAREN] = ACTIONS(2505), - [anon_sym_LBRACE] = ACTIONS(2505), - [anon_sym_RBRACE] = ACTIONS(2505), - [anon_sym_LBRACK] = ACTIONS(2505), - [anon_sym_STAR] = ACTIONS(2505), - [anon_sym_SQUOTE] = ACTIONS(2507), - [anon_sym_async] = ACTIONS(2507), - [anon_sym_break] = ACTIONS(2507), - [anon_sym_const] = ACTIONS(2507), - [anon_sym_continue] = ACTIONS(2507), - [anon_sym_default] = ACTIONS(2507), - [anon_sym_enum] = ACTIONS(2507), - [anon_sym_fn] = ACTIONS(2507), - [anon_sym_for] = ACTIONS(2507), - [anon_sym_if] = ACTIONS(2507), - [anon_sym_impl] = ACTIONS(2507), - [anon_sym_let] = ACTIONS(2507), - [anon_sym_loop] = ACTIONS(2507), - [anon_sym_match] = ACTIONS(2507), - [anon_sym_mod] = ACTIONS(2507), - [anon_sym_pub] = ACTIONS(2507), - [anon_sym_return] = ACTIONS(2507), - [anon_sym_static] = ACTIONS(2507), - [anon_sym_struct] = ACTIONS(2507), - [anon_sym_trait] = ACTIONS(2507), - [anon_sym_type] = ACTIONS(2507), - [anon_sym_union] = ACTIONS(2507), - [anon_sym_unsafe] = ACTIONS(2507), - [anon_sym_use] = ACTIONS(2507), - [anon_sym_while] = ACTIONS(2507), - [anon_sym_POUND] = ACTIONS(2505), - [anon_sym_BANG] = ACTIONS(2505), - [anon_sym_extern] = ACTIONS(2507), - [anon_sym_LT] = ACTIONS(2505), - [anon_sym_COLON_COLON] = ACTIONS(2505), - [anon_sym_AMP] = ACTIONS(2505), - [anon_sym_DOT_DOT] = ACTIONS(2505), - [anon_sym_DASH] = ACTIONS(2505), - [anon_sym_PIPE] = ACTIONS(2505), - [anon_sym_yield] = ACTIONS(2507), - [anon_sym_move] = ACTIONS(2507), - [sym_integer_literal] = ACTIONS(2505), - [aux_sym_string_literal_token1] = ACTIONS(2505), - [sym_char_literal] = ACTIONS(2505), - [anon_sym_true] = ACTIONS(2507), - [anon_sym_false] = ACTIONS(2507), - [anon_sym_u8] = ACTIONS(2507), - [anon_sym_i8] = ACTIONS(2507), - [anon_sym_u16] = ACTIONS(2507), - [anon_sym_i16] = ACTIONS(2507), - [anon_sym_u32] = ACTIONS(2507), - [anon_sym_i32] = ACTIONS(2507), - [anon_sym_u64] = ACTIONS(2507), - [anon_sym_i64] = ACTIONS(2507), - [anon_sym_u128] = ACTIONS(2507), - [anon_sym_i128] = ACTIONS(2507), - [anon_sym_isize] = ACTIONS(2507), - [anon_sym_usize] = ACTIONS(2507), - [anon_sym_f32] = ACTIONS(2507), - [anon_sym_f64] = ACTIONS(2507), - [anon_sym_bool] = ACTIONS(2507), - [anon_sym_str] = ACTIONS(2507), - [anon_sym_char] = ACTIONS(2507), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(2505), - [sym_self] = ACTIONS(2507), - [sym_super] = ACTIONS(2507), - [sym_crate] = ACTIONS(2507), - [sym_metavariable] = ACTIONS(2505), - [sym_grit_metavariable] = ACTIONS(2505), - [sym_raw_string_literal] = ACTIONS(2505), - [sym_float_literal] = ACTIONS(2505), + [ts_builtin_sym_end] = ACTIONS(2503), + [sym__primitive_identifier] = ACTIONS(2505), + [anon_sym_SEMI] = ACTIONS(2503), + [anon_sym_macro_rules_BANG] = ACTIONS(2503), + [anon_sym_LPAREN] = ACTIONS(2503), + [anon_sym_LBRACE] = ACTIONS(2503), + [anon_sym_RBRACE] = ACTIONS(2503), + [anon_sym_LBRACK] = ACTIONS(2503), + [anon_sym_STAR] = ACTIONS(2503), + [anon_sym_SQUOTE] = ACTIONS(2505), + [anon_sym_async] = ACTIONS(2505), + [anon_sym_break] = ACTIONS(2505), + [anon_sym_const] = ACTIONS(2505), + [anon_sym_continue] = ACTIONS(2505), + [anon_sym_default] = ACTIONS(2505), + [anon_sym_enum] = ACTIONS(2505), + [anon_sym_fn] = ACTIONS(2505), + [anon_sym_for] = ACTIONS(2505), + [anon_sym_if] = ACTIONS(2505), + [anon_sym_impl] = ACTIONS(2505), + [anon_sym_let] = ACTIONS(2505), + [anon_sym_loop] = ACTIONS(2505), + [anon_sym_match] = ACTIONS(2505), + [anon_sym_mod] = ACTIONS(2505), + [anon_sym_pub] = ACTIONS(2505), + [anon_sym_return] = ACTIONS(2505), + [anon_sym_static] = ACTIONS(2505), + [anon_sym_struct] = ACTIONS(2505), + [anon_sym_trait] = ACTIONS(2505), + [anon_sym_type] = ACTIONS(2505), + [anon_sym_union] = ACTIONS(2505), + [anon_sym_unsafe] = ACTIONS(2505), + [anon_sym_use] = ACTIONS(2505), + [anon_sym_while] = ACTIONS(2505), + [anon_sym_POUND] = ACTIONS(2503), + [anon_sym_BANG] = ACTIONS(2503), + [anon_sym_extern] = ACTIONS(2505), + [anon_sym_LT] = ACTIONS(2503), + [anon_sym_COLON_COLON] = ACTIONS(2503), + [anon_sym_AMP] = ACTIONS(2503), + [anon_sym_DOT_DOT] = ACTIONS(2503), + [anon_sym_DASH] = ACTIONS(2503), + [anon_sym_PIPE] = ACTIONS(2503), + [anon_sym_yield] = ACTIONS(2505), + [anon_sym_move] = ACTIONS(2505), + [sym_integer_literal] = ACTIONS(2503), + [aux_sym_string_literal_token1] = ACTIONS(2503), + [sym_char_literal] = ACTIONS(2503), + [anon_sym_true] = ACTIONS(2505), + [anon_sym_false] = ACTIONS(2505), + [anon_sym_u8] = ACTIONS(2505), + [anon_sym_i8] = ACTIONS(2505), + [anon_sym_u16] = ACTIONS(2505), + [anon_sym_i16] = ACTIONS(2505), + [anon_sym_u32] = ACTIONS(2505), + [anon_sym_i32] = ACTIONS(2505), + [anon_sym_u64] = ACTIONS(2505), + [anon_sym_i64] = ACTIONS(2505), + [anon_sym_u128] = ACTIONS(2505), + [anon_sym_i128] = ACTIONS(2505), + [anon_sym_isize] = ACTIONS(2505), + [anon_sym_usize] = ACTIONS(2505), + [anon_sym_f32] = ACTIONS(2505), + [anon_sym_f64] = ACTIONS(2505), + [anon_sym_bool] = ACTIONS(2505), + [anon_sym_str] = ACTIONS(2505), + [anon_sym_char] = ACTIONS(2505), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(2503), + [sym_self] = ACTIONS(2505), + [sym_super] = ACTIONS(2505), + [sym_crate] = ACTIONS(2505), + [sym_metavariable] = ACTIONS(2503), + [sym_grit_metavariable] = ACTIONS(2503), + [sym_raw_string_literal] = ACTIONS(2503), + [sym_float_literal] = ACTIONS(2503), [sym_block_comment] = ACTIONS(3), }, [530] = { - [ts_builtin_sym_end] = ACTIONS(2509), - [sym__primitive_identifier] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2509), - [anon_sym_macro_rules_BANG] = ACTIONS(2509), - [anon_sym_LPAREN] = ACTIONS(2509), - [anon_sym_LBRACE] = ACTIONS(2509), - [anon_sym_RBRACE] = ACTIONS(2509), - [anon_sym_LBRACK] = ACTIONS(2509), - [anon_sym_STAR] = ACTIONS(2509), - [anon_sym_SQUOTE] = ACTIONS(2511), - [anon_sym_async] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_fn] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_impl] = ACTIONS(2511), - [anon_sym_let] = ACTIONS(2511), - [anon_sym_loop] = ACTIONS(2511), - [anon_sym_match] = ACTIONS(2511), - [anon_sym_mod] = ACTIONS(2511), - [anon_sym_pub] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_trait] = ACTIONS(2511), - [anon_sym_type] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_unsafe] = ACTIONS(2511), - [anon_sym_use] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_POUND] = ACTIONS(2509), - [anon_sym_BANG] = ACTIONS(2509), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym_LT] = ACTIONS(2509), - [anon_sym_COLON_COLON] = ACTIONS(2509), - [anon_sym_AMP] = ACTIONS(2509), - [anon_sym_DOT_DOT] = ACTIONS(2509), - [anon_sym_DASH] = ACTIONS(2509), - [anon_sym_PIPE] = ACTIONS(2509), - [anon_sym_yield] = ACTIONS(2511), - [anon_sym_move] = ACTIONS(2511), - [sym_integer_literal] = ACTIONS(2509), - [aux_sym_string_literal_token1] = ACTIONS(2509), - [sym_char_literal] = ACTIONS(2509), - [anon_sym_true] = ACTIONS(2511), - [anon_sym_false] = ACTIONS(2511), - [anon_sym_u8] = ACTIONS(2511), - [anon_sym_i8] = ACTIONS(2511), - [anon_sym_u16] = ACTIONS(2511), - [anon_sym_i16] = ACTIONS(2511), - [anon_sym_u32] = ACTIONS(2511), - [anon_sym_i32] = ACTIONS(2511), - [anon_sym_u64] = ACTIONS(2511), - [anon_sym_i64] = ACTIONS(2511), - [anon_sym_u128] = ACTIONS(2511), - [anon_sym_i128] = ACTIONS(2511), - [anon_sym_isize] = ACTIONS(2511), - [anon_sym_usize] = ACTIONS(2511), - [anon_sym_f32] = ACTIONS(2511), - [anon_sym_f64] = ACTIONS(2511), - [anon_sym_bool] = ACTIONS(2511), - [anon_sym_str] = ACTIONS(2511), - [anon_sym_char] = ACTIONS(2511), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(2509), - [sym_self] = ACTIONS(2511), - [sym_super] = ACTIONS(2511), - [sym_crate] = ACTIONS(2511), - [sym_metavariable] = ACTIONS(2509), - [sym_grit_metavariable] = ACTIONS(2509), - [sym_raw_string_literal] = ACTIONS(2509), - [sym_float_literal] = ACTIONS(2509), + [ts_builtin_sym_end] = ACTIONS(2507), + [sym__primitive_identifier] = ACTIONS(2509), + [anon_sym_SEMI] = ACTIONS(2507), + [anon_sym_macro_rules_BANG] = ACTIONS(2507), + [anon_sym_LPAREN] = ACTIONS(2507), + [anon_sym_LBRACE] = ACTIONS(2507), + [anon_sym_RBRACE] = ACTIONS(2507), + [anon_sym_LBRACK] = ACTIONS(2507), + [anon_sym_STAR] = ACTIONS(2507), + [anon_sym_SQUOTE] = ACTIONS(2509), + [anon_sym_async] = ACTIONS(2509), + [anon_sym_break] = ACTIONS(2509), + [anon_sym_const] = ACTIONS(2509), + [anon_sym_continue] = ACTIONS(2509), + [anon_sym_default] = ACTIONS(2509), + [anon_sym_enum] = ACTIONS(2509), + [anon_sym_fn] = ACTIONS(2509), + [anon_sym_for] = ACTIONS(2509), + [anon_sym_if] = ACTIONS(2509), + [anon_sym_impl] = ACTIONS(2509), + [anon_sym_let] = ACTIONS(2509), + [anon_sym_loop] = ACTIONS(2509), + [anon_sym_match] = ACTIONS(2509), + [anon_sym_mod] = ACTIONS(2509), + [anon_sym_pub] = ACTIONS(2509), + [anon_sym_return] = ACTIONS(2509), + [anon_sym_static] = ACTIONS(2509), + [anon_sym_struct] = ACTIONS(2509), + [anon_sym_trait] = ACTIONS(2509), + [anon_sym_type] = ACTIONS(2509), + [anon_sym_union] = ACTIONS(2509), + [anon_sym_unsafe] = ACTIONS(2509), + [anon_sym_use] = ACTIONS(2509), + [anon_sym_while] = ACTIONS(2509), + [anon_sym_POUND] = ACTIONS(2507), + [anon_sym_BANG] = ACTIONS(2507), + [anon_sym_extern] = ACTIONS(2509), + [anon_sym_LT] = ACTIONS(2507), + [anon_sym_COLON_COLON] = ACTIONS(2507), + [anon_sym_AMP] = ACTIONS(2507), + [anon_sym_DOT_DOT] = ACTIONS(2507), + [anon_sym_DASH] = ACTIONS(2507), + [anon_sym_PIPE] = ACTIONS(2507), + [anon_sym_yield] = ACTIONS(2509), + [anon_sym_move] = ACTIONS(2509), + [sym_integer_literal] = ACTIONS(2507), + [aux_sym_string_literal_token1] = ACTIONS(2507), + [sym_char_literal] = ACTIONS(2507), + [anon_sym_true] = ACTIONS(2509), + [anon_sym_false] = ACTIONS(2509), + [anon_sym_u8] = ACTIONS(2509), + [anon_sym_i8] = ACTIONS(2509), + [anon_sym_u16] = ACTIONS(2509), + [anon_sym_i16] = ACTIONS(2509), + [anon_sym_u32] = ACTIONS(2509), + [anon_sym_i32] = ACTIONS(2509), + [anon_sym_u64] = ACTIONS(2509), + [anon_sym_i64] = ACTIONS(2509), + [anon_sym_u128] = ACTIONS(2509), + [anon_sym_i128] = ACTIONS(2509), + [anon_sym_isize] = ACTIONS(2509), + [anon_sym_usize] = ACTIONS(2509), + [anon_sym_f32] = ACTIONS(2509), + [anon_sym_f64] = ACTIONS(2509), + [anon_sym_bool] = ACTIONS(2509), + [anon_sym_str] = ACTIONS(2509), + [anon_sym_char] = ACTIONS(2509), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(2507), + [sym_self] = ACTIONS(2509), + [sym_super] = ACTIONS(2509), + [sym_crate] = ACTIONS(2509), + [sym_metavariable] = ACTIONS(2507), + [sym_grit_metavariable] = ACTIONS(2507), + [sym_raw_string_literal] = ACTIONS(2507), + [sym_float_literal] = ACTIONS(2507), [sym_block_comment] = ACTIONS(3), }, [531] = { - [ts_builtin_sym_end] = ACTIONS(2513), - [sym__primitive_identifier] = ACTIONS(2515), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_macro_rules_BANG] = ACTIONS(2513), - [anon_sym_LPAREN] = ACTIONS(2513), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_RBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2513), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2515), - [anon_sym_async] = ACTIONS(2515), - [anon_sym_break] = ACTIONS(2515), - [anon_sym_const] = ACTIONS(2515), - [anon_sym_continue] = ACTIONS(2515), - [anon_sym_default] = ACTIONS(2515), - [anon_sym_enum] = ACTIONS(2515), - [anon_sym_fn] = ACTIONS(2515), - [anon_sym_for] = ACTIONS(2515), - [anon_sym_if] = ACTIONS(2515), - [anon_sym_impl] = ACTIONS(2515), - [anon_sym_let] = ACTIONS(2515), - [anon_sym_loop] = ACTIONS(2515), - [anon_sym_match] = ACTIONS(2515), - [anon_sym_mod] = ACTIONS(2515), - [anon_sym_pub] = ACTIONS(2515), - [anon_sym_return] = ACTIONS(2515), - [anon_sym_static] = ACTIONS(2515), - [anon_sym_struct] = ACTIONS(2515), - [anon_sym_trait] = ACTIONS(2515), - [anon_sym_type] = ACTIONS(2515), - [anon_sym_union] = ACTIONS(2515), - [anon_sym_unsafe] = ACTIONS(2515), - [anon_sym_use] = ACTIONS(2515), - [anon_sym_while] = ACTIONS(2515), - [anon_sym_POUND] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_extern] = ACTIONS(2515), - [anon_sym_LT] = ACTIONS(2513), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2513), - [anon_sym_DOT_DOT] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2513), - [anon_sym_PIPE] = ACTIONS(2513), - [anon_sym_yield] = ACTIONS(2515), - [anon_sym_move] = ACTIONS(2515), - [sym_integer_literal] = ACTIONS(2513), - [aux_sym_string_literal_token1] = ACTIONS(2513), - [sym_char_literal] = ACTIONS(2513), - [anon_sym_true] = ACTIONS(2515), - [anon_sym_false] = ACTIONS(2515), - [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), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(2513), - [sym_self] = ACTIONS(2515), - [sym_super] = ACTIONS(2515), - [sym_crate] = ACTIONS(2515), - [sym_metavariable] = ACTIONS(2513), - [sym_grit_metavariable] = ACTIONS(2513), - [sym_raw_string_literal] = ACTIONS(2513), - [sym_float_literal] = ACTIONS(2513), + [ts_builtin_sym_end] = ACTIONS(2511), + [sym__primitive_identifier] = ACTIONS(2513), + [anon_sym_SEMI] = ACTIONS(2511), + [anon_sym_macro_rules_BANG] = ACTIONS(2511), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2511), + [anon_sym_RBRACE] = ACTIONS(2511), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2511), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_async] = ACTIONS(2513), + [anon_sym_break] = ACTIONS(2513), + [anon_sym_const] = ACTIONS(2513), + [anon_sym_continue] = ACTIONS(2513), + [anon_sym_default] = ACTIONS(2513), + [anon_sym_enum] = ACTIONS(2513), + [anon_sym_fn] = ACTIONS(2513), + [anon_sym_for] = ACTIONS(2513), + [anon_sym_if] = ACTIONS(2513), + [anon_sym_impl] = ACTIONS(2513), + [anon_sym_let] = ACTIONS(2513), + [anon_sym_loop] = ACTIONS(2513), + [anon_sym_match] = ACTIONS(2513), + [anon_sym_mod] = ACTIONS(2513), + [anon_sym_pub] = ACTIONS(2513), + [anon_sym_return] = ACTIONS(2513), + [anon_sym_static] = ACTIONS(2513), + [anon_sym_struct] = ACTIONS(2513), + [anon_sym_trait] = ACTIONS(2513), + [anon_sym_type] = ACTIONS(2513), + [anon_sym_union] = ACTIONS(2513), + [anon_sym_unsafe] = ACTIONS(2513), + [anon_sym_use] = ACTIONS(2513), + [anon_sym_while] = ACTIONS(2513), + [anon_sym_POUND] = ACTIONS(2511), + [anon_sym_BANG] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2511), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_DOT_DOT] = ACTIONS(2511), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PIPE] = ACTIONS(2511), + [anon_sym_yield] = ACTIONS(2513), + [anon_sym_move] = ACTIONS(2513), + [sym_integer_literal] = ACTIONS(2511), + [aux_sym_string_literal_token1] = ACTIONS(2511), + [sym_char_literal] = ACTIONS(2511), + [anon_sym_true] = ACTIONS(2513), + [anon_sym_false] = ACTIONS(2513), + [anon_sym_u8] = ACTIONS(2513), + [anon_sym_i8] = ACTIONS(2513), + [anon_sym_u16] = ACTIONS(2513), + [anon_sym_i16] = ACTIONS(2513), + [anon_sym_u32] = ACTIONS(2513), + [anon_sym_i32] = ACTIONS(2513), + [anon_sym_u64] = ACTIONS(2513), + [anon_sym_i64] = ACTIONS(2513), + [anon_sym_u128] = ACTIONS(2513), + [anon_sym_i128] = ACTIONS(2513), + [anon_sym_isize] = ACTIONS(2513), + [anon_sym_usize] = ACTIONS(2513), + [anon_sym_f32] = ACTIONS(2513), + [anon_sym_f64] = ACTIONS(2513), + [anon_sym_bool] = ACTIONS(2513), + [anon_sym_str] = ACTIONS(2513), + [anon_sym_char] = ACTIONS(2513), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(2511), + [sym_self] = ACTIONS(2513), + [sym_super] = ACTIONS(2513), + [sym_crate] = ACTIONS(2513), + [sym_metavariable] = ACTIONS(2511), + [sym_grit_metavariable] = ACTIONS(2511), + [sym_raw_string_literal] = ACTIONS(2511), + [sym_float_literal] = ACTIONS(2511), [sym_block_comment] = ACTIONS(3), }, [532] = { - [ts_builtin_sym_end] = ACTIONS(2517), - [sym__primitive_identifier] = ACTIONS(2519), - [anon_sym_SEMI] = ACTIONS(2517), - [anon_sym_macro_rules_BANG] = ACTIONS(2517), - [anon_sym_LPAREN] = ACTIONS(2517), - [anon_sym_LBRACE] = ACTIONS(2517), - [anon_sym_RBRACE] = ACTIONS(2517), - [anon_sym_LBRACK] = ACTIONS(2517), - [anon_sym_STAR] = ACTIONS(2517), - [anon_sym_SQUOTE] = ACTIONS(2519), - [anon_sym_async] = ACTIONS(2519), - [anon_sym_break] = ACTIONS(2519), - [anon_sym_const] = ACTIONS(2519), - [anon_sym_continue] = ACTIONS(2519), - [anon_sym_default] = ACTIONS(2519), - [anon_sym_enum] = ACTIONS(2519), - [anon_sym_fn] = ACTIONS(2519), - [anon_sym_for] = ACTIONS(2519), - [anon_sym_if] = ACTIONS(2519), - [anon_sym_impl] = ACTIONS(2519), - [anon_sym_let] = ACTIONS(2519), - [anon_sym_loop] = ACTIONS(2519), - [anon_sym_match] = ACTIONS(2519), - [anon_sym_mod] = ACTIONS(2519), - [anon_sym_pub] = ACTIONS(2519), - [anon_sym_return] = ACTIONS(2519), - [anon_sym_static] = ACTIONS(2519), - [anon_sym_struct] = ACTIONS(2519), - [anon_sym_trait] = ACTIONS(2519), - [anon_sym_type] = ACTIONS(2519), - [anon_sym_union] = ACTIONS(2519), - [anon_sym_unsafe] = ACTIONS(2519), - [anon_sym_use] = ACTIONS(2519), - [anon_sym_while] = ACTIONS(2519), - [anon_sym_POUND] = ACTIONS(2517), - [anon_sym_BANG] = ACTIONS(2517), - [anon_sym_extern] = ACTIONS(2519), - [anon_sym_LT] = ACTIONS(2517), - [anon_sym_COLON_COLON] = ACTIONS(2517), - [anon_sym_AMP] = ACTIONS(2517), - [anon_sym_DOT_DOT] = ACTIONS(2517), - [anon_sym_DASH] = ACTIONS(2517), - [anon_sym_PIPE] = ACTIONS(2517), - [anon_sym_yield] = ACTIONS(2519), - [anon_sym_move] = ACTIONS(2519), - [sym_integer_literal] = ACTIONS(2517), - [aux_sym_string_literal_token1] = ACTIONS(2517), - [sym_char_literal] = ACTIONS(2517), - [anon_sym_true] = ACTIONS(2519), - [anon_sym_false] = ACTIONS(2519), - [anon_sym_u8] = ACTIONS(2519), - [anon_sym_i8] = ACTIONS(2519), - [anon_sym_u16] = ACTIONS(2519), - [anon_sym_i16] = ACTIONS(2519), - [anon_sym_u32] = ACTIONS(2519), - [anon_sym_i32] = ACTIONS(2519), - [anon_sym_u64] = ACTIONS(2519), - [anon_sym_i64] = ACTIONS(2519), - [anon_sym_u128] = ACTIONS(2519), - [anon_sym_i128] = ACTIONS(2519), - [anon_sym_isize] = ACTIONS(2519), - [anon_sym_usize] = ACTIONS(2519), - [anon_sym_f32] = ACTIONS(2519), - [anon_sym_f64] = ACTIONS(2519), - [anon_sym_bool] = ACTIONS(2519), - [anon_sym_str] = ACTIONS(2519), - [anon_sym_char] = ACTIONS(2519), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(2517), - [sym_self] = ACTIONS(2519), - [sym_super] = ACTIONS(2519), - [sym_crate] = ACTIONS(2519), - [sym_metavariable] = ACTIONS(2517), - [sym_grit_metavariable] = ACTIONS(2517), - [sym_raw_string_literal] = ACTIONS(2517), - [sym_float_literal] = ACTIONS(2517), + [ts_builtin_sym_end] = ACTIONS(2515), + [sym__primitive_identifier] = ACTIONS(2517), + [anon_sym_SEMI] = ACTIONS(2515), + [anon_sym_macro_rules_BANG] = ACTIONS(2515), + [anon_sym_LPAREN] = ACTIONS(2515), + [anon_sym_LBRACE] = ACTIONS(2515), + [anon_sym_RBRACE] = ACTIONS(2515), + [anon_sym_LBRACK] = ACTIONS(2515), + [anon_sym_STAR] = ACTIONS(2515), + [anon_sym_SQUOTE] = ACTIONS(2517), + [anon_sym_async] = ACTIONS(2517), + [anon_sym_break] = ACTIONS(2517), + [anon_sym_const] = ACTIONS(2517), + [anon_sym_continue] = ACTIONS(2517), + [anon_sym_default] = ACTIONS(2517), + [anon_sym_enum] = ACTIONS(2517), + [anon_sym_fn] = ACTIONS(2517), + [anon_sym_for] = ACTIONS(2517), + [anon_sym_if] = ACTIONS(2517), + [anon_sym_impl] = ACTIONS(2517), + [anon_sym_let] = ACTIONS(2517), + [anon_sym_loop] = ACTIONS(2517), + [anon_sym_match] = ACTIONS(2517), + [anon_sym_mod] = ACTIONS(2517), + [anon_sym_pub] = ACTIONS(2517), + [anon_sym_return] = ACTIONS(2517), + [anon_sym_static] = ACTIONS(2517), + [anon_sym_struct] = ACTIONS(2517), + [anon_sym_trait] = ACTIONS(2517), + [anon_sym_type] = ACTIONS(2517), + [anon_sym_union] = ACTIONS(2517), + [anon_sym_unsafe] = ACTIONS(2517), + [anon_sym_use] = ACTIONS(2517), + [anon_sym_while] = ACTIONS(2517), + [anon_sym_POUND] = ACTIONS(2515), + [anon_sym_BANG] = ACTIONS(2515), + [anon_sym_extern] = ACTIONS(2517), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_COLON_COLON] = ACTIONS(2515), + [anon_sym_AMP] = ACTIONS(2515), + [anon_sym_DOT_DOT] = ACTIONS(2515), + [anon_sym_DASH] = ACTIONS(2515), + [anon_sym_PIPE] = ACTIONS(2515), + [anon_sym_yield] = ACTIONS(2517), + [anon_sym_move] = ACTIONS(2517), + [sym_integer_literal] = ACTIONS(2515), + [aux_sym_string_literal_token1] = ACTIONS(2515), + [sym_char_literal] = ACTIONS(2515), + [anon_sym_true] = ACTIONS(2517), + [anon_sym_false] = ACTIONS(2517), + [anon_sym_u8] = ACTIONS(2517), + [anon_sym_i8] = ACTIONS(2517), + [anon_sym_u16] = ACTIONS(2517), + [anon_sym_i16] = ACTIONS(2517), + [anon_sym_u32] = ACTIONS(2517), + [anon_sym_i32] = ACTIONS(2517), + [anon_sym_u64] = ACTIONS(2517), + [anon_sym_i64] = ACTIONS(2517), + [anon_sym_u128] = ACTIONS(2517), + [anon_sym_i128] = ACTIONS(2517), + [anon_sym_isize] = ACTIONS(2517), + [anon_sym_usize] = ACTIONS(2517), + [anon_sym_f32] = ACTIONS(2517), + [anon_sym_f64] = ACTIONS(2517), + [anon_sym_bool] = ACTIONS(2517), + [anon_sym_str] = ACTIONS(2517), + [anon_sym_char] = ACTIONS(2517), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(2515), + [sym_self] = ACTIONS(2517), + [sym_super] = ACTIONS(2517), + [sym_crate] = ACTIONS(2517), + [sym_metavariable] = ACTIONS(2515), + [sym_grit_metavariable] = ACTIONS(2515), + [sym_raw_string_literal] = ACTIONS(2515), + [sym_float_literal] = ACTIONS(2515), [sym_block_comment] = ACTIONS(3), }, [533] = { - [ts_builtin_sym_end] = ACTIONS(2521), - [sym__primitive_identifier] = ACTIONS(2523), - [anon_sym_SEMI] = ACTIONS(2521), - [anon_sym_macro_rules_BANG] = ACTIONS(2521), - [anon_sym_LPAREN] = ACTIONS(2521), - [anon_sym_LBRACE] = ACTIONS(2521), - [anon_sym_RBRACE] = ACTIONS(2521), - [anon_sym_LBRACK] = ACTIONS(2521), - [anon_sym_STAR] = ACTIONS(2521), - [anon_sym_SQUOTE] = ACTIONS(2523), - [anon_sym_async] = ACTIONS(2523), - [anon_sym_break] = ACTIONS(2523), - [anon_sym_const] = ACTIONS(2523), - [anon_sym_continue] = ACTIONS(2523), - [anon_sym_default] = ACTIONS(2523), - [anon_sym_enum] = ACTIONS(2523), - [anon_sym_fn] = ACTIONS(2523), - [anon_sym_for] = ACTIONS(2523), - [anon_sym_if] = ACTIONS(2523), - [anon_sym_impl] = ACTIONS(2523), - [anon_sym_let] = ACTIONS(2523), - [anon_sym_loop] = ACTIONS(2523), - [anon_sym_match] = ACTIONS(2523), - [anon_sym_mod] = ACTIONS(2523), - [anon_sym_pub] = ACTIONS(2523), - [anon_sym_return] = ACTIONS(2523), - [anon_sym_static] = ACTIONS(2523), - [anon_sym_struct] = ACTIONS(2523), - [anon_sym_trait] = ACTIONS(2523), - [anon_sym_type] = ACTIONS(2523), - [anon_sym_union] = ACTIONS(2523), - [anon_sym_unsafe] = ACTIONS(2523), - [anon_sym_use] = ACTIONS(2523), - [anon_sym_while] = ACTIONS(2523), - [anon_sym_POUND] = ACTIONS(2521), - [anon_sym_BANG] = ACTIONS(2521), - [anon_sym_extern] = ACTIONS(2523), - [anon_sym_LT] = ACTIONS(2521), - [anon_sym_COLON_COLON] = ACTIONS(2521), - [anon_sym_AMP] = ACTIONS(2521), - [anon_sym_DOT_DOT] = ACTIONS(2521), - [anon_sym_DASH] = ACTIONS(2521), - [anon_sym_PIPE] = ACTIONS(2521), - [anon_sym_yield] = ACTIONS(2523), - [anon_sym_move] = ACTIONS(2523), - [sym_integer_literal] = ACTIONS(2521), - [aux_sym_string_literal_token1] = ACTIONS(2521), - [sym_char_literal] = ACTIONS(2521), - [anon_sym_true] = ACTIONS(2523), - [anon_sym_false] = ACTIONS(2523), - [anon_sym_u8] = ACTIONS(2523), - [anon_sym_i8] = ACTIONS(2523), - [anon_sym_u16] = ACTIONS(2523), - [anon_sym_i16] = ACTIONS(2523), - [anon_sym_u32] = ACTIONS(2523), - [anon_sym_i32] = ACTIONS(2523), - [anon_sym_u64] = ACTIONS(2523), - [anon_sym_i64] = ACTIONS(2523), - [anon_sym_u128] = ACTIONS(2523), - [anon_sym_i128] = ACTIONS(2523), - [anon_sym_isize] = ACTIONS(2523), - [anon_sym_usize] = ACTIONS(2523), - [anon_sym_f32] = ACTIONS(2523), - [anon_sym_f64] = ACTIONS(2523), - [anon_sym_bool] = ACTIONS(2523), - [anon_sym_str] = ACTIONS(2523), - [anon_sym_char] = ACTIONS(2523), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(2521), - [sym_self] = ACTIONS(2523), - [sym_super] = ACTIONS(2523), - [sym_crate] = ACTIONS(2523), - [sym_metavariable] = ACTIONS(2521), - [sym_grit_metavariable] = ACTIONS(2521), - [sym_raw_string_literal] = ACTIONS(2521), - [sym_float_literal] = ACTIONS(2521), + [ts_builtin_sym_end] = ACTIONS(2519), + [sym__primitive_identifier] = ACTIONS(2521), + [anon_sym_SEMI] = ACTIONS(2519), + [anon_sym_macro_rules_BANG] = ACTIONS(2519), + [anon_sym_LPAREN] = ACTIONS(2519), + [anon_sym_LBRACE] = ACTIONS(2519), + [anon_sym_RBRACE] = ACTIONS(2519), + [anon_sym_LBRACK] = ACTIONS(2519), + [anon_sym_STAR] = ACTIONS(2519), + [anon_sym_SQUOTE] = ACTIONS(2521), + [anon_sym_async] = ACTIONS(2521), + [anon_sym_break] = ACTIONS(2521), + [anon_sym_const] = ACTIONS(2521), + [anon_sym_continue] = ACTIONS(2521), + [anon_sym_default] = ACTIONS(2521), + [anon_sym_enum] = ACTIONS(2521), + [anon_sym_fn] = ACTIONS(2521), + [anon_sym_for] = ACTIONS(2521), + [anon_sym_if] = ACTIONS(2521), + [anon_sym_impl] = ACTIONS(2521), + [anon_sym_let] = ACTIONS(2521), + [anon_sym_loop] = ACTIONS(2521), + [anon_sym_match] = ACTIONS(2521), + [anon_sym_mod] = ACTIONS(2521), + [anon_sym_pub] = ACTIONS(2521), + [anon_sym_return] = ACTIONS(2521), + [anon_sym_static] = ACTIONS(2521), + [anon_sym_struct] = ACTIONS(2521), + [anon_sym_trait] = ACTIONS(2521), + [anon_sym_type] = ACTIONS(2521), + [anon_sym_union] = ACTIONS(2521), + [anon_sym_unsafe] = ACTIONS(2521), + [anon_sym_use] = ACTIONS(2521), + [anon_sym_while] = ACTIONS(2521), + [anon_sym_POUND] = ACTIONS(2519), + [anon_sym_BANG] = ACTIONS(2519), + [anon_sym_extern] = ACTIONS(2521), + [anon_sym_LT] = ACTIONS(2519), + [anon_sym_COLON_COLON] = ACTIONS(2519), + [anon_sym_AMP] = ACTIONS(2519), + [anon_sym_DOT_DOT] = ACTIONS(2519), + [anon_sym_DASH] = ACTIONS(2519), + [anon_sym_PIPE] = ACTIONS(2519), + [anon_sym_yield] = ACTIONS(2521), + [anon_sym_move] = ACTIONS(2521), + [sym_integer_literal] = ACTIONS(2519), + [aux_sym_string_literal_token1] = ACTIONS(2519), + [sym_char_literal] = ACTIONS(2519), + [anon_sym_true] = ACTIONS(2521), + [anon_sym_false] = ACTIONS(2521), + [anon_sym_u8] = ACTIONS(2521), + [anon_sym_i8] = ACTIONS(2521), + [anon_sym_u16] = ACTIONS(2521), + [anon_sym_i16] = ACTIONS(2521), + [anon_sym_u32] = ACTIONS(2521), + [anon_sym_i32] = ACTIONS(2521), + [anon_sym_u64] = ACTIONS(2521), + [anon_sym_i64] = ACTIONS(2521), + [anon_sym_u128] = ACTIONS(2521), + [anon_sym_i128] = ACTIONS(2521), + [anon_sym_isize] = ACTIONS(2521), + [anon_sym_usize] = ACTIONS(2521), + [anon_sym_f32] = ACTIONS(2521), + [anon_sym_f64] = ACTIONS(2521), + [anon_sym_bool] = ACTIONS(2521), + [anon_sym_str] = ACTIONS(2521), + [anon_sym_char] = ACTIONS(2521), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(2519), + [sym_self] = ACTIONS(2521), + [sym_super] = ACTIONS(2521), + [sym_crate] = ACTIONS(2521), + [sym_metavariable] = ACTIONS(2519), + [sym_grit_metavariable] = ACTIONS(2519), + [sym_raw_string_literal] = ACTIONS(2519), + [sym_float_literal] = ACTIONS(2519), [sym_block_comment] = ACTIONS(3), }, [534] = { - [ts_builtin_sym_end] = ACTIONS(2525), - [sym__primitive_identifier] = ACTIONS(2527), - [anon_sym_SEMI] = ACTIONS(2525), - [anon_sym_macro_rules_BANG] = ACTIONS(2525), - [anon_sym_LPAREN] = ACTIONS(2525), - [anon_sym_LBRACE] = ACTIONS(2525), - [anon_sym_RBRACE] = ACTIONS(2525), - [anon_sym_LBRACK] = ACTIONS(2525), - [anon_sym_STAR] = ACTIONS(2525), - [anon_sym_SQUOTE] = ACTIONS(2527), - [anon_sym_async] = ACTIONS(2527), - [anon_sym_break] = ACTIONS(2527), - [anon_sym_const] = ACTIONS(2527), - [anon_sym_continue] = ACTIONS(2527), - [anon_sym_default] = ACTIONS(2527), - [anon_sym_enum] = ACTIONS(2527), - [anon_sym_fn] = ACTIONS(2527), - [anon_sym_for] = ACTIONS(2527), - [anon_sym_if] = ACTIONS(2527), - [anon_sym_impl] = ACTIONS(2527), - [anon_sym_let] = ACTIONS(2527), - [anon_sym_loop] = ACTIONS(2527), - [anon_sym_match] = ACTIONS(2527), - [anon_sym_mod] = ACTIONS(2527), - [anon_sym_pub] = ACTIONS(2527), - [anon_sym_return] = ACTIONS(2527), - [anon_sym_static] = ACTIONS(2527), - [anon_sym_struct] = ACTIONS(2527), - [anon_sym_trait] = ACTIONS(2527), - [anon_sym_type] = ACTIONS(2527), - [anon_sym_union] = ACTIONS(2527), - [anon_sym_unsafe] = ACTIONS(2527), - [anon_sym_use] = ACTIONS(2527), - [anon_sym_while] = ACTIONS(2527), - [anon_sym_POUND] = ACTIONS(2525), - [anon_sym_BANG] = ACTIONS(2525), - [anon_sym_extern] = ACTIONS(2527), - [anon_sym_LT] = ACTIONS(2525), - [anon_sym_COLON_COLON] = ACTIONS(2525), - [anon_sym_AMP] = ACTIONS(2525), - [anon_sym_DOT_DOT] = ACTIONS(2525), - [anon_sym_DASH] = ACTIONS(2525), - [anon_sym_PIPE] = ACTIONS(2525), - [anon_sym_yield] = ACTIONS(2527), - [anon_sym_move] = ACTIONS(2527), - [sym_integer_literal] = ACTIONS(2525), - [aux_sym_string_literal_token1] = ACTIONS(2525), - [sym_char_literal] = ACTIONS(2525), - [anon_sym_true] = ACTIONS(2527), - [anon_sym_false] = ACTIONS(2527), - [anon_sym_u8] = ACTIONS(2527), - [anon_sym_i8] = ACTIONS(2527), - [anon_sym_u16] = ACTIONS(2527), - [anon_sym_i16] = ACTIONS(2527), - [anon_sym_u32] = ACTIONS(2527), - [anon_sym_i32] = ACTIONS(2527), - [anon_sym_u64] = ACTIONS(2527), - [anon_sym_i64] = ACTIONS(2527), - [anon_sym_u128] = ACTIONS(2527), - [anon_sym_i128] = ACTIONS(2527), - [anon_sym_isize] = ACTIONS(2527), - [anon_sym_usize] = ACTIONS(2527), - [anon_sym_f32] = ACTIONS(2527), - [anon_sym_f64] = ACTIONS(2527), - [anon_sym_bool] = ACTIONS(2527), - [anon_sym_str] = ACTIONS(2527), - [anon_sym_char] = ACTIONS(2527), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(2525), - [sym_self] = ACTIONS(2527), - [sym_super] = ACTIONS(2527), - [sym_crate] = ACTIONS(2527), - [sym_metavariable] = ACTIONS(2525), - [sym_grit_metavariable] = ACTIONS(2525), - [sym_raw_string_literal] = ACTIONS(2525), - [sym_float_literal] = ACTIONS(2525), + [ts_builtin_sym_end] = ACTIONS(2523), + [sym__primitive_identifier] = ACTIONS(2525), + [anon_sym_SEMI] = ACTIONS(2523), + [anon_sym_macro_rules_BANG] = ACTIONS(2523), + [anon_sym_LPAREN] = ACTIONS(2523), + [anon_sym_LBRACE] = ACTIONS(2523), + [anon_sym_RBRACE] = ACTIONS(2523), + [anon_sym_LBRACK] = ACTIONS(2523), + [anon_sym_STAR] = ACTIONS(2523), + [anon_sym_SQUOTE] = ACTIONS(2525), + [anon_sym_async] = ACTIONS(2525), + [anon_sym_break] = ACTIONS(2525), + [anon_sym_const] = ACTIONS(2525), + [anon_sym_continue] = ACTIONS(2525), + [anon_sym_default] = ACTIONS(2525), + [anon_sym_enum] = ACTIONS(2525), + [anon_sym_fn] = ACTIONS(2525), + [anon_sym_for] = ACTIONS(2525), + [anon_sym_if] = ACTIONS(2525), + [anon_sym_impl] = ACTIONS(2525), + [anon_sym_let] = ACTIONS(2525), + [anon_sym_loop] = ACTIONS(2525), + [anon_sym_match] = ACTIONS(2525), + [anon_sym_mod] = ACTIONS(2525), + [anon_sym_pub] = ACTIONS(2525), + [anon_sym_return] = ACTIONS(2525), + [anon_sym_static] = ACTIONS(2525), + [anon_sym_struct] = ACTIONS(2525), + [anon_sym_trait] = ACTIONS(2525), + [anon_sym_type] = ACTIONS(2525), + [anon_sym_union] = ACTIONS(2525), + [anon_sym_unsafe] = ACTIONS(2525), + [anon_sym_use] = ACTIONS(2525), + [anon_sym_while] = ACTIONS(2525), + [anon_sym_POUND] = ACTIONS(2523), + [anon_sym_BANG] = ACTIONS(2523), + [anon_sym_extern] = ACTIONS(2525), + [anon_sym_LT] = ACTIONS(2523), + [anon_sym_COLON_COLON] = ACTIONS(2523), + [anon_sym_AMP] = ACTIONS(2523), + [anon_sym_DOT_DOT] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_PIPE] = ACTIONS(2523), + [anon_sym_yield] = ACTIONS(2525), + [anon_sym_move] = ACTIONS(2525), + [sym_integer_literal] = ACTIONS(2523), + [aux_sym_string_literal_token1] = ACTIONS(2523), + [sym_char_literal] = ACTIONS(2523), + [anon_sym_true] = ACTIONS(2525), + [anon_sym_false] = ACTIONS(2525), + [anon_sym_u8] = ACTIONS(2525), + [anon_sym_i8] = ACTIONS(2525), + [anon_sym_u16] = ACTIONS(2525), + [anon_sym_i16] = ACTIONS(2525), + [anon_sym_u32] = ACTIONS(2525), + [anon_sym_i32] = ACTIONS(2525), + [anon_sym_u64] = ACTIONS(2525), + [anon_sym_i64] = ACTIONS(2525), + [anon_sym_u128] = ACTIONS(2525), + [anon_sym_i128] = ACTIONS(2525), + [anon_sym_isize] = ACTIONS(2525), + [anon_sym_usize] = ACTIONS(2525), + [anon_sym_f32] = ACTIONS(2525), + [anon_sym_f64] = ACTIONS(2525), + [anon_sym_bool] = ACTIONS(2525), + [anon_sym_str] = ACTIONS(2525), + [anon_sym_char] = ACTIONS(2525), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(2523), + [sym_self] = ACTIONS(2525), + [sym_super] = ACTIONS(2525), + [sym_crate] = ACTIONS(2525), + [sym_metavariable] = ACTIONS(2523), + [sym_grit_metavariable] = ACTIONS(2523), + [sym_raw_string_literal] = ACTIONS(2523), + [sym_float_literal] = ACTIONS(2523), [sym_block_comment] = ACTIONS(3), }, [535] = { - [sym_delim_token_tree] = STATE(554), - [sym__delim_tokens] = STATE(554), - [sym__non_delim_token] = STATE(554), - [sym__literal] = STATE(554), - [sym_string_literal] = STATE(662), - [sym_boolean_literal] = STATE(662), - [sym_primitive_type] = STATE(554), - [sym_identifier] = STATE(554), - [aux_sym_delim_token_tree_repeat1] = STATE(554), + [ts_builtin_sym_end] = ACTIONS(2527), [sym__primitive_identifier] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2533), - [anon_sym_RBRACE] = ACTIONS(2535), - [anon_sym_LBRACK] = ACTIONS(2537), - [anon_sym_DOLLAR] = ACTIONS(2539), - [aux_sym__non_special_token_token1] = ACTIONS(2541), - [anon_sym_SQUOTE] = ACTIONS(2541), - [anon_sym_as] = ACTIONS(2541), - [anon_sym_async] = ACTIONS(2541), - [anon_sym_await] = ACTIONS(2541), - [anon_sym_break] = ACTIONS(2541), - [anon_sym_const] = ACTIONS(2541), - [anon_sym_continue] = ACTIONS(2541), - [anon_sym_default] = ACTIONS(2541), - [anon_sym_enum] = ACTIONS(2541), - [anon_sym_fn] = ACTIONS(2541), - [anon_sym_for] = ACTIONS(2541), - [anon_sym_if] = ACTIONS(2541), - [anon_sym_impl] = ACTIONS(2541), - [anon_sym_let] = ACTIONS(2541), - [anon_sym_loop] = ACTIONS(2541), - [anon_sym_match] = ACTIONS(2541), - [anon_sym_mod] = ACTIONS(2541), - [anon_sym_pub] = ACTIONS(2541), - [anon_sym_return] = ACTIONS(2541), - [anon_sym_static] = ACTIONS(2541), - [anon_sym_struct] = ACTIONS(2541), - [anon_sym_trait] = ACTIONS(2541), - [anon_sym_type] = ACTIONS(2541), - [anon_sym_union] = ACTIONS(2541), - [anon_sym_unsafe] = ACTIONS(2541), - [anon_sym_use] = ACTIONS(2541), - [anon_sym_where] = ACTIONS(2541), - [anon_sym_while] = ACTIONS(2541), - [sym_mutable_specifier] = ACTIONS(2541), - [sym_integer_literal] = ACTIONS(2543), - [aux_sym_string_literal_token1] = ACTIONS(2545), - [sym_char_literal] = ACTIONS(2543), - [anon_sym_true] = ACTIONS(2547), - [anon_sym_false] = ACTIONS(2547), - [anon_sym_u8] = ACTIONS(2549), - [anon_sym_i8] = ACTIONS(2549), - [anon_sym_u16] = ACTIONS(2549), - [anon_sym_i16] = ACTIONS(2549), - [anon_sym_u32] = ACTIONS(2549), - [anon_sym_i32] = ACTIONS(2549), - [anon_sym_u64] = ACTIONS(2549), - [anon_sym_i64] = ACTIONS(2549), - [anon_sym_u128] = ACTIONS(2549), - [anon_sym_i128] = ACTIONS(2549), - [anon_sym_isize] = ACTIONS(2549), - [anon_sym_usize] = ACTIONS(2549), - [anon_sym_f32] = ACTIONS(2549), - [anon_sym_f64] = ACTIONS(2549), - [anon_sym_bool] = ACTIONS(2549), - [anon_sym_str] = ACTIONS(2549), - [anon_sym_char] = ACTIONS(2549), - [sym_line_comment] = ACTIONS(1172), - [sym__raw_identifier] = ACTIONS(2551), - [sym_self] = ACTIONS(2541), - [sym_super] = ACTIONS(2541), - [sym_crate] = ACTIONS(2541), - [sym_grit_metavariable] = ACTIONS(2553), - [sym_raw_string_literal] = ACTIONS(2543), - [sym_float_literal] = ACTIONS(2543), + [anon_sym_SEMI] = ACTIONS(2527), + [anon_sym_macro_rules_BANG] = ACTIONS(2527), + [anon_sym_LPAREN] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2527), + [anon_sym_RBRACE] = ACTIONS(2527), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2527), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_async] = ACTIONS(2529), + [anon_sym_break] = ACTIONS(2529), + [anon_sym_const] = ACTIONS(2529), + [anon_sym_continue] = ACTIONS(2529), + [anon_sym_default] = ACTIONS(2529), + [anon_sym_enum] = ACTIONS(2529), + [anon_sym_fn] = ACTIONS(2529), + [anon_sym_for] = ACTIONS(2529), + [anon_sym_if] = ACTIONS(2529), + [anon_sym_impl] = ACTIONS(2529), + [anon_sym_let] = ACTIONS(2529), + [anon_sym_loop] = ACTIONS(2529), + [anon_sym_match] = ACTIONS(2529), + [anon_sym_mod] = ACTIONS(2529), + [anon_sym_pub] = ACTIONS(2529), + [anon_sym_return] = ACTIONS(2529), + [anon_sym_static] = ACTIONS(2529), + [anon_sym_struct] = ACTIONS(2529), + [anon_sym_trait] = ACTIONS(2529), + [anon_sym_type] = ACTIONS(2529), + [anon_sym_union] = ACTIONS(2529), + [anon_sym_unsafe] = ACTIONS(2529), + [anon_sym_use] = ACTIONS(2529), + [anon_sym_while] = ACTIONS(2529), + [anon_sym_POUND] = ACTIONS(2527), + [anon_sym_BANG] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2529), + [anon_sym_LT] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2527), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_DOT_DOT] = ACTIONS(2527), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PIPE] = ACTIONS(2527), + [anon_sym_yield] = ACTIONS(2529), + [anon_sym_move] = ACTIONS(2529), + [sym_integer_literal] = ACTIONS(2527), + [aux_sym_string_literal_token1] = ACTIONS(2527), + [sym_char_literal] = ACTIONS(2527), + [anon_sym_true] = ACTIONS(2529), + [anon_sym_false] = ACTIONS(2529), + [anon_sym_u8] = ACTIONS(2529), + [anon_sym_i8] = ACTIONS(2529), + [anon_sym_u16] = ACTIONS(2529), + [anon_sym_i16] = ACTIONS(2529), + [anon_sym_u32] = ACTIONS(2529), + [anon_sym_i32] = ACTIONS(2529), + [anon_sym_u64] = ACTIONS(2529), + [anon_sym_i64] = ACTIONS(2529), + [anon_sym_u128] = ACTIONS(2529), + [anon_sym_i128] = ACTIONS(2529), + [anon_sym_isize] = ACTIONS(2529), + [anon_sym_usize] = ACTIONS(2529), + [anon_sym_f32] = ACTIONS(2529), + [anon_sym_f64] = ACTIONS(2529), + [anon_sym_bool] = ACTIONS(2529), + [anon_sym_str] = ACTIONS(2529), + [anon_sym_char] = ACTIONS(2529), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(2527), + [sym_self] = ACTIONS(2529), + [sym_super] = ACTIONS(2529), + [sym_crate] = ACTIONS(2529), + [sym_metavariable] = ACTIONS(2527), + [sym_grit_metavariable] = ACTIONS(2527), + [sym_raw_string_literal] = ACTIONS(2527), + [sym_float_literal] = ACTIONS(2527), [sym_block_comment] = ACTIONS(3), }, [536] = { - [sym_delim_token_tree] = STATE(563), - [sym__delim_tokens] = STATE(563), - [sym__non_delim_token] = STATE(563), - [sym__literal] = STATE(563), - [sym_string_literal] = STATE(662), - [sym_boolean_literal] = STATE(662), - [sym_primitive_type] = STATE(563), - [sym_identifier] = STATE(563), - [aux_sym_delim_token_tree_repeat1] = STATE(563), - [sym__primitive_identifier] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2533), - [anon_sym_RBRACE] = ACTIONS(2555), + [sym_delim_token_tree] = STATE(271), + [sym__delim_tokens] = STATE(271), + [sym__non_delim_token] = STATE(271), + [sym__literal] = STATE(271), + [sym_string_literal] = STATE(682), + [sym_boolean_literal] = STATE(682), + [sym_primitive_type] = STATE(271), + [sym_identifier] = STATE(271), + [aux_sym_delim_token_tree_repeat1] = STATE(271), + [sym__primitive_identifier] = ACTIONS(2531), + [anon_sym_LPAREN] = ACTIONS(2533), + [anon_sym_LBRACE] = ACTIONS(2535), [anon_sym_LBRACK] = ACTIONS(2537), - [anon_sym_DOLLAR] = ACTIONS(2557), - [aux_sym__non_special_token_token1] = ACTIONS(2559), - [anon_sym_SQUOTE] = ACTIONS(2559), - [anon_sym_as] = ACTIONS(2559), - [anon_sym_async] = ACTIONS(2559), - [anon_sym_await] = ACTIONS(2559), - [anon_sym_break] = ACTIONS(2559), - [anon_sym_const] = ACTIONS(2559), - [anon_sym_continue] = ACTIONS(2559), - [anon_sym_default] = ACTIONS(2559), - [anon_sym_enum] = ACTIONS(2559), - [anon_sym_fn] = ACTIONS(2559), - [anon_sym_for] = ACTIONS(2559), - [anon_sym_if] = ACTIONS(2559), - [anon_sym_impl] = ACTIONS(2559), - [anon_sym_let] = ACTIONS(2559), - [anon_sym_loop] = ACTIONS(2559), - [anon_sym_match] = ACTIONS(2559), - [anon_sym_mod] = ACTIONS(2559), - [anon_sym_pub] = ACTIONS(2559), - [anon_sym_return] = ACTIONS(2559), - [anon_sym_static] = ACTIONS(2559), - [anon_sym_struct] = ACTIONS(2559), - [anon_sym_trait] = ACTIONS(2559), - [anon_sym_type] = ACTIONS(2559), - [anon_sym_union] = ACTIONS(2559), - [anon_sym_unsafe] = ACTIONS(2559), - [anon_sym_use] = ACTIONS(2559), - [anon_sym_where] = ACTIONS(2559), - [anon_sym_while] = ACTIONS(2559), - [sym_mutable_specifier] = ACTIONS(2559), - [sym_integer_literal] = ACTIONS(2543), - [aux_sym_string_literal_token1] = ACTIONS(2545), - [sym_char_literal] = ACTIONS(2543), - [anon_sym_true] = ACTIONS(2547), - [anon_sym_false] = ACTIONS(2547), - [anon_sym_u8] = ACTIONS(2549), - [anon_sym_i8] = ACTIONS(2549), - [anon_sym_u16] = ACTIONS(2549), - [anon_sym_i16] = ACTIONS(2549), - [anon_sym_u32] = ACTIONS(2549), - [anon_sym_i32] = ACTIONS(2549), - [anon_sym_u64] = ACTIONS(2549), - [anon_sym_i64] = ACTIONS(2549), - [anon_sym_u128] = ACTIONS(2549), - [anon_sym_i128] = ACTIONS(2549), - [anon_sym_isize] = ACTIONS(2549), - [anon_sym_usize] = ACTIONS(2549), - [anon_sym_f32] = ACTIONS(2549), - [anon_sym_f64] = ACTIONS(2549), - [anon_sym_bool] = ACTIONS(2549), - [anon_sym_str] = ACTIONS(2549), - [anon_sym_char] = ACTIONS(2549), - [sym_line_comment] = ACTIONS(1172), - [sym__raw_identifier] = ACTIONS(2551), - [sym_self] = ACTIONS(2559), - [sym_super] = ACTIONS(2559), - [sym_crate] = ACTIONS(2559), - [sym_grit_metavariable] = ACTIONS(2553), - [sym_raw_string_literal] = ACTIONS(2543), - [sym_float_literal] = ACTIONS(2543), + [anon_sym_RBRACK] = ACTIONS(2539), + [anon_sym_DOLLAR] = ACTIONS(2541), + [aux_sym__non_special_token_token1] = ACTIONS(2543), + [anon_sym_SQUOTE] = ACTIONS(2543), + [anon_sym_as] = ACTIONS(2543), + [anon_sym_async] = ACTIONS(2543), + [anon_sym_await] = ACTIONS(2543), + [anon_sym_break] = ACTIONS(2543), + [anon_sym_const] = ACTIONS(2543), + [anon_sym_continue] = ACTIONS(2543), + [anon_sym_default] = ACTIONS(2543), + [anon_sym_enum] = ACTIONS(2543), + [anon_sym_fn] = ACTIONS(2543), + [anon_sym_for] = ACTIONS(2543), + [anon_sym_if] = ACTIONS(2543), + [anon_sym_impl] = ACTIONS(2543), + [anon_sym_let] = ACTIONS(2543), + [anon_sym_loop] = ACTIONS(2543), + [anon_sym_match] = ACTIONS(2543), + [anon_sym_mod] = ACTIONS(2543), + [anon_sym_pub] = ACTIONS(2543), + [anon_sym_return] = ACTIONS(2543), + [anon_sym_static] = ACTIONS(2543), + [anon_sym_struct] = ACTIONS(2543), + [anon_sym_trait] = ACTIONS(2543), + [anon_sym_type] = ACTIONS(2543), + [anon_sym_union] = ACTIONS(2543), + [anon_sym_unsafe] = ACTIONS(2543), + [anon_sym_use] = ACTIONS(2543), + [anon_sym_where] = ACTIONS(2543), + [anon_sym_while] = ACTIONS(2543), + [sym_mutable_specifier] = ACTIONS(2543), + [sym_integer_literal] = ACTIONS(2545), + [aux_sym_string_literal_token1] = ACTIONS(2547), + [sym_char_literal] = ACTIONS(2545), + [anon_sym_true] = ACTIONS(2549), + [anon_sym_false] = ACTIONS(2549), + [anon_sym_u8] = ACTIONS(2551), + [anon_sym_i8] = ACTIONS(2551), + [anon_sym_u16] = ACTIONS(2551), + [anon_sym_i16] = ACTIONS(2551), + [anon_sym_u32] = ACTIONS(2551), + [anon_sym_i32] = ACTIONS(2551), + [anon_sym_u64] = ACTIONS(2551), + [anon_sym_i64] = ACTIONS(2551), + [anon_sym_u128] = ACTIONS(2551), + [anon_sym_i128] = ACTIONS(2551), + [anon_sym_isize] = ACTIONS(2551), + [anon_sym_usize] = ACTIONS(2551), + [anon_sym_f32] = ACTIONS(2551), + [anon_sym_f64] = ACTIONS(2551), + [anon_sym_bool] = ACTIONS(2551), + [anon_sym_str] = ACTIONS(2551), + [anon_sym_char] = ACTIONS(2551), + [sym_line_comment] = ACTIONS(1112), + [sym__raw_identifier] = ACTIONS(2553), + [sym_self] = ACTIONS(2543), + [sym_super] = ACTIONS(2543), + [sym_crate] = ACTIONS(2543), + [sym_grit_metavariable] = ACTIONS(2555), + [sym_raw_string_literal] = ACTIONS(2545), + [sym_float_literal] = ACTIONS(2545), [sym_block_comment] = ACTIONS(3), }, [537] = { - [sym_delim_token_tree] = STATE(268), - [sym__delim_tokens] = STATE(268), - [sym__non_delim_token] = STATE(268), - [sym__literal] = STATE(268), - [sym_string_literal] = STATE(662), - [sym_boolean_literal] = STATE(662), - [sym_primitive_type] = STATE(268), - [sym_identifier] = STATE(268), - [aux_sym_delim_token_tree_repeat1] = STATE(268), - [sym__primitive_identifier] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2533), - [anon_sym_RBRACE] = ACTIONS(2561), + [sym_delim_token_tree] = STATE(549), + [sym__delim_tokens] = STATE(549), + [sym__non_delim_token] = STATE(549), + [sym__literal] = STATE(549), + [sym_string_literal] = STATE(682), + [sym_boolean_literal] = STATE(682), + [sym_primitive_type] = STATE(549), + [sym_identifier] = STATE(549), + [aux_sym_delim_token_tree_repeat1] = STATE(549), + [sym__primitive_identifier] = ACTIONS(2531), + [anon_sym_LPAREN] = ACTIONS(2533), + [anon_sym_LBRACE] = ACTIONS(2535), [anon_sym_LBRACK] = ACTIONS(2537), - [anon_sym_DOLLAR] = ACTIONS(2563), - [aux_sym__non_special_token_token1] = ACTIONS(2565), - [anon_sym_SQUOTE] = ACTIONS(2565), - [anon_sym_as] = ACTIONS(2565), - [anon_sym_async] = ACTIONS(2565), - [anon_sym_await] = ACTIONS(2565), - [anon_sym_break] = ACTIONS(2565), - [anon_sym_const] = ACTIONS(2565), - [anon_sym_continue] = ACTIONS(2565), - [anon_sym_default] = ACTIONS(2565), - [anon_sym_enum] = ACTIONS(2565), - [anon_sym_fn] = ACTIONS(2565), - [anon_sym_for] = ACTIONS(2565), - [anon_sym_if] = ACTIONS(2565), - [anon_sym_impl] = ACTIONS(2565), - [anon_sym_let] = ACTIONS(2565), - [anon_sym_loop] = ACTIONS(2565), - [anon_sym_match] = ACTIONS(2565), - [anon_sym_mod] = ACTIONS(2565), - [anon_sym_pub] = ACTIONS(2565), - [anon_sym_return] = ACTIONS(2565), - [anon_sym_static] = ACTIONS(2565), - [anon_sym_struct] = ACTIONS(2565), - [anon_sym_trait] = ACTIONS(2565), - [anon_sym_type] = ACTIONS(2565), - [anon_sym_union] = ACTIONS(2565), - [anon_sym_unsafe] = ACTIONS(2565), - [anon_sym_use] = ACTIONS(2565), - [anon_sym_where] = ACTIONS(2565), - [anon_sym_while] = ACTIONS(2565), - [sym_mutable_specifier] = ACTIONS(2565), - [sym_integer_literal] = ACTIONS(2543), - [aux_sym_string_literal_token1] = ACTIONS(2545), - [sym_char_literal] = ACTIONS(2543), - [anon_sym_true] = ACTIONS(2547), - [anon_sym_false] = ACTIONS(2547), - [anon_sym_u8] = ACTIONS(2549), - [anon_sym_i8] = ACTIONS(2549), - [anon_sym_u16] = ACTIONS(2549), - [anon_sym_i16] = ACTIONS(2549), - [anon_sym_u32] = ACTIONS(2549), - [anon_sym_i32] = ACTIONS(2549), - [anon_sym_u64] = ACTIONS(2549), - [anon_sym_i64] = ACTIONS(2549), - [anon_sym_u128] = ACTIONS(2549), - [anon_sym_i128] = ACTIONS(2549), - [anon_sym_isize] = ACTIONS(2549), - [anon_sym_usize] = ACTIONS(2549), - [anon_sym_f32] = ACTIONS(2549), - [anon_sym_f64] = ACTIONS(2549), - [anon_sym_bool] = ACTIONS(2549), - [anon_sym_str] = ACTIONS(2549), - [anon_sym_char] = ACTIONS(2549), - [sym_line_comment] = ACTIONS(1172), - [sym__raw_identifier] = ACTIONS(2551), - [sym_self] = ACTIONS(2565), - [sym_super] = ACTIONS(2565), - [sym_crate] = ACTIONS(2565), - [sym_grit_metavariable] = ACTIONS(2553), - [sym_raw_string_literal] = ACTIONS(2543), - [sym_float_literal] = ACTIONS(2543), + [anon_sym_RBRACK] = ACTIONS(2557), + [anon_sym_DOLLAR] = ACTIONS(2559), + [aux_sym__non_special_token_token1] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_as] = ACTIONS(2561), + [anon_sym_async] = ACTIONS(2561), + [anon_sym_await] = ACTIONS(2561), + [anon_sym_break] = ACTIONS(2561), + [anon_sym_const] = ACTIONS(2561), + [anon_sym_continue] = ACTIONS(2561), + [anon_sym_default] = ACTIONS(2561), + [anon_sym_enum] = ACTIONS(2561), + [anon_sym_fn] = ACTIONS(2561), + [anon_sym_for] = ACTIONS(2561), + [anon_sym_if] = ACTIONS(2561), + [anon_sym_impl] = ACTIONS(2561), + [anon_sym_let] = ACTIONS(2561), + [anon_sym_loop] = ACTIONS(2561), + [anon_sym_match] = ACTIONS(2561), + [anon_sym_mod] = ACTIONS(2561), + [anon_sym_pub] = ACTIONS(2561), + [anon_sym_return] = ACTIONS(2561), + [anon_sym_static] = ACTIONS(2561), + [anon_sym_struct] = ACTIONS(2561), + [anon_sym_trait] = ACTIONS(2561), + [anon_sym_type] = ACTIONS(2561), + [anon_sym_union] = ACTIONS(2561), + [anon_sym_unsafe] = ACTIONS(2561), + [anon_sym_use] = ACTIONS(2561), + [anon_sym_where] = ACTIONS(2561), + [anon_sym_while] = ACTIONS(2561), + [sym_mutable_specifier] = ACTIONS(2561), + [sym_integer_literal] = ACTIONS(2545), + [aux_sym_string_literal_token1] = ACTIONS(2547), + [sym_char_literal] = ACTIONS(2545), + [anon_sym_true] = ACTIONS(2549), + [anon_sym_false] = ACTIONS(2549), + [anon_sym_u8] = ACTIONS(2551), + [anon_sym_i8] = ACTIONS(2551), + [anon_sym_u16] = ACTIONS(2551), + [anon_sym_i16] = ACTIONS(2551), + [anon_sym_u32] = ACTIONS(2551), + [anon_sym_i32] = ACTIONS(2551), + [anon_sym_u64] = ACTIONS(2551), + [anon_sym_i64] = ACTIONS(2551), + [anon_sym_u128] = ACTIONS(2551), + [anon_sym_i128] = ACTIONS(2551), + [anon_sym_isize] = ACTIONS(2551), + [anon_sym_usize] = ACTIONS(2551), + [anon_sym_f32] = ACTIONS(2551), + [anon_sym_f64] = ACTIONS(2551), + [anon_sym_bool] = ACTIONS(2551), + [anon_sym_str] = ACTIONS(2551), + [anon_sym_char] = ACTIONS(2551), + [sym_line_comment] = ACTIONS(1112), + [sym__raw_identifier] = ACTIONS(2553), + [sym_self] = ACTIONS(2561), + [sym_super] = ACTIONS(2561), + [sym_crate] = ACTIONS(2561), + [sym_grit_metavariable] = ACTIONS(2555), + [sym_raw_string_literal] = ACTIONS(2545), + [sym_float_literal] = ACTIONS(2545), [sym_block_comment] = ACTIONS(3), }, [538] = { - [sym_delim_token_tree] = STATE(537), - [sym__delim_tokens] = STATE(537), - [sym__non_delim_token] = STATE(537), - [sym__literal] = STATE(537), - [sym_string_literal] = STATE(662), - [sym_boolean_literal] = STATE(662), - [sym_primitive_type] = STATE(537), - [sym_identifier] = STATE(537), - [aux_sym_delim_token_tree_repeat1] = STATE(537), - [sym__primitive_identifier] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2533), - [anon_sym_RBRACE] = ACTIONS(2567), + [sym_delim_token_tree] = STATE(550), + [sym__delim_tokens] = STATE(550), + [sym__non_delim_token] = STATE(550), + [sym__literal] = STATE(550), + [sym_string_literal] = STATE(682), + [sym_boolean_literal] = STATE(682), + [sym_primitive_type] = STATE(550), + [sym_identifier] = STATE(550), + [aux_sym_delim_token_tree_repeat1] = STATE(550), + [sym__primitive_identifier] = ACTIONS(2531), + [anon_sym_LPAREN] = ACTIONS(2533), + [anon_sym_RPAREN] = ACTIONS(2563), + [anon_sym_LBRACE] = ACTIONS(2535), [anon_sym_LBRACK] = ACTIONS(2537), - [anon_sym_DOLLAR] = ACTIONS(2569), - [aux_sym__non_special_token_token1] = ACTIONS(2571), - [anon_sym_SQUOTE] = ACTIONS(2571), - [anon_sym_as] = ACTIONS(2571), - [anon_sym_async] = ACTIONS(2571), - [anon_sym_await] = ACTIONS(2571), - [anon_sym_break] = ACTIONS(2571), - [anon_sym_const] = ACTIONS(2571), - [anon_sym_continue] = ACTIONS(2571), - [anon_sym_default] = ACTIONS(2571), - [anon_sym_enum] = ACTIONS(2571), - [anon_sym_fn] = ACTIONS(2571), - [anon_sym_for] = ACTIONS(2571), - [anon_sym_if] = ACTIONS(2571), - [anon_sym_impl] = ACTIONS(2571), - [anon_sym_let] = ACTIONS(2571), - [anon_sym_loop] = ACTIONS(2571), - [anon_sym_match] = ACTIONS(2571), - [anon_sym_mod] = ACTIONS(2571), - [anon_sym_pub] = ACTIONS(2571), - [anon_sym_return] = ACTIONS(2571), - [anon_sym_static] = ACTIONS(2571), - [anon_sym_struct] = ACTIONS(2571), - [anon_sym_trait] = ACTIONS(2571), - [anon_sym_type] = ACTIONS(2571), - [anon_sym_union] = ACTIONS(2571), - [anon_sym_unsafe] = ACTIONS(2571), - [anon_sym_use] = ACTIONS(2571), - [anon_sym_where] = ACTIONS(2571), - [anon_sym_while] = ACTIONS(2571), - [sym_mutable_specifier] = ACTIONS(2571), - [sym_integer_literal] = ACTIONS(2543), - [aux_sym_string_literal_token1] = ACTIONS(2545), - [sym_char_literal] = ACTIONS(2543), - [anon_sym_true] = ACTIONS(2547), - [anon_sym_false] = ACTIONS(2547), - [anon_sym_u8] = ACTIONS(2549), - [anon_sym_i8] = ACTIONS(2549), - [anon_sym_u16] = ACTIONS(2549), - [anon_sym_i16] = ACTIONS(2549), - [anon_sym_u32] = ACTIONS(2549), - [anon_sym_i32] = ACTIONS(2549), - [anon_sym_u64] = ACTIONS(2549), - [anon_sym_i64] = ACTIONS(2549), - [anon_sym_u128] = ACTIONS(2549), - [anon_sym_i128] = ACTIONS(2549), - [anon_sym_isize] = ACTIONS(2549), - [anon_sym_usize] = ACTIONS(2549), - [anon_sym_f32] = ACTIONS(2549), - [anon_sym_f64] = ACTIONS(2549), - [anon_sym_bool] = ACTIONS(2549), - [anon_sym_str] = ACTIONS(2549), - [anon_sym_char] = ACTIONS(2549), - [sym_line_comment] = ACTIONS(1172), - [sym__raw_identifier] = ACTIONS(2551), - [sym_self] = ACTIONS(2571), - [sym_super] = ACTIONS(2571), - [sym_crate] = ACTIONS(2571), - [sym_grit_metavariable] = ACTIONS(2553), - [sym_raw_string_literal] = ACTIONS(2543), - [sym_float_literal] = ACTIONS(2543), + [anon_sym_DOLLAR] = ACTIONS(2565), + [aux_sym__non_special_token_token1] = ACTIONS(2567), + [anon_sym_SQUOTE] = ACTIONS(2567), + [anon_sym_as] = ACTIONS(2567), + [anon_sym_async] = ACTIONS(2567), + [anon_sym_await] = ACTIONS(2567), + [anon_sym_break] = ACTIONS(2567), + [anon_sym_const] = ACTIONS(2567), + [anon_sym_continue] = ACTIONS(2567), + [anon_sym_default] = ACTIONS(2567), + [anon_sym_enum] = ACTIONS(2567), + [anon_sym_fn] = ACTIONS(2567), + [anon_sym_for] = ACTIONS(2567), + [anon_sym_if] = ACTIONS(2567), + [anon_sym_impl] = ACTIONS(2567), + [anon_sym_let] = ACTIONS(2567), + [anon_sym_loop] = ACTIONS(2567), + [anon_sym_match] = ACTIONS(2567), + [anon_sym_mod] = ACTIONS(2567), + [anon_sym_pub] = ACTIONS(2567), + [anon_sym_return] = ACTIONS(2567), + [anon_sym_static] = ACTIONS(2567), + [anon_sym_struct] = ACTIONS(2567), + [anon_sym_trait] = ACTIONS(2567), + [anon_sym_type] = ACTIONS(2567), + [anon_sym_union] = ACTIONS(2567), + [anon_sym_unsafe] = ACTIONS(2567), + [anon_sym_use] = ACTIONS(2567), + [anon_sym_where] = ACTIONS(2567), + [anon_sym_while] = ACTIONS(2567), + [sym_mutable_specifier] = ACTIONS(2567), + [sym_integer_literal] = ACTIONS(2545), + [aux_sym_string_literal_token1] = ACTIONS(2547), + [sym_char_literal] = ACTIONS(2545), + [anon_sym_true] = ACTIONS(2549), + [anon_sym_false] = ACTIONS(2549), + [anon_sym_u8] = ACTIONS(2551), + [anon_sym_i8] = ACTIONS(2551), + [anon_sym_u16] = ACTIONS(2551), + [anon_sym_i16] = ACTIONS(2551), + [anon_sym_u32] = ACTIONS(2551), + [anon_sym_i32] = ACTIONS(2551), + [anon_sym_u64] = ACTIONS(2551), + [anon_sym_i64] = ACTIONS(2551), + [anon_sym_u128] = ACTIONS(2551), + [anon_sym_i128] = ACTIONS(2551), + [anon_sym_isize] = ACTIONS(2551), + [anon_sym_usize] = ACTIONS(2551), + [anon_sym_f32] = ACTIONS(2551), + [anon_sym_f64] = ACTIONS(2551), + [anon_sym_bool] = ACTIONS(2551), + [anon_sym_str] = ACTIONS(2551), + [anon_sym_char] = ACTIONS(2551), + [sym_line_comment] = ACTIONS(1112), + [sym__raw_identifier] = ACTIONS(2553), + [sym_self] = ACTIONS(2567), + [sym_super] = ACTIONS(2567), + [sym_crate] = ACTIONS(2567), + [sym_grit_metavariable] = ACTIONS(2555), + [sym_raw_string_literal] = ACTIONS(2545), + [sym_float_literal] = ACTIONS(2545), [sym_block_comment] = ACTIONS(3), }, [539] = { - [sym_delim_token_tree] = STATE(268), - [sym__delim_tokens] = STATE(268), - [sym__non_delim_token] = STATE(268), - [sym__literal] = STATE(268), - [sym_string_literal] = STATE(662), - [sym_boolean_literal] = STATE(662), - [sym_primitive_type] = STATE(268), - [sym_identifier] = STATE(268), - [aux_sym_delim_token_tree_repeat1] = STATE(268), - [sym__primitive_identifier] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2533), - [anon_sym_LBRACK] = ACTIONS(2537), - [anon_sym_RBRACK] = ACTIONS(2561), - [anon_sym_DOLLAR] = ACTIONS(2563), - [aux_sym__non_special_token_token1] = ACTIONS(2565), - [anon_sym_SQUOTE] = ACTIONS(2565), - [anon_sym_as] = ACTIONS(2565), - [anon_sym_async] = ACTIONS(2565), - [anon_sym_await] = ACTIONS(2565), - [anon_sym_break] = ACTIONS(2565), - [anon_sym_const] = ACTIONS(2565), - [anon_sym_continue] = ACTIONS(2565), - [anon_sym_default] = ACTIONS(2565), - [anon_sym_enum] = ACTIONS(2565), - [anon_sym_fn] = ACTIONS(2565), - [anon_sym_for] = ACTIONS(2565), - [anon_sym_if] = ACTIONS(2565), - [anon_sym_impl] = ACTIONS(2565), - [anon_sym_let] = ACTIONS(2565), - [anon_sym_loop] = ACTIONS(2565), - [anon_sym_match] = ACTIONS(2565), - [anon_sym_mod] = ACTIONS(2565), - [anon_sym_pub] = ACTIONS(2565), - [anon_sym_return] = ACTIONS(2565), - [anon_sym_static] = ACTIONS(2565), - [anon_sym_struct] = ACTIONS(2565), - [anon_sym_trait] = ACTIONS(2565), - [anon_sym_type] = ACTIONS(2565), - [anon_sym_union] = ACTIONS(2565), - [anon_sym_unsafe] = ACTIONS(2565), - [anon_sym_use] = ACTIONS(2565), - [anon_sym_where] = ACTIONS(2565), - [anon_sym_while] = ACTIONS(2565), - [sym_mutable_specifier] = ACTIONS(2565), - [sym_integer_literal] = ACTIONS(2543), - [aux_sym_string_literal_token1] = ACTIONS(2545), - [sym_char_literal] = ACTIONS(2543), - [anon_sym_true] = ACTIONS(2547), - [anon_sym_false] = ACTIONS(2547), - [anon_sym_u8] = ACTIONS(2549), - [anon_sym_i8] = ACTIONS(2549), - [anon_sym_u16] = ACTIONS(2549), - [anon_sym_i16] = ACTIONS(2549), - [anon_sym_u32] = ACTIONS(2549), - [anon_sym_i32] = ACTIONS(2549), - [anon_sym_u64] = ACTIONS(2549), - [anon_sym_i64] = ACTIONS(2549), - [anon_sym_u128] = ACTIONS(2549), - [anon_sym_i128] = ACTIONS(2549), - [anon_sym_isize] = ACTIONS(2549), - [anon_sym_usize] = ACTIONS(2549), - [anon_sym_f32] = ACTIONS(2549), - [anon_sym_f64] = ACTIONS(2549), - [anon_sym_bool] = ACTIONS(2549), - [anon_sym_str] = ACTIONS(2549), - [anon_sym_char] = ACTIONS(2549), - [sym_line_comment] = ACTIONS(1172), - [sym__raw_identifier] = ACTIONS(2551), - [sym_self] = ACTIONS(2565), - [sym_super] = ACTIONS(2565), - [sym_crate] = ACTIONS(2565), - [sym_grit_metavariable] = ACTIONS(2553), - [sym_raw_string_literal] = ACTIONS(2543), - [sym_float_literal] = ACTIONS(2543), + [sym_token_tree] = STATE(259), + [sym_token_repetition] = STATE(259), + [sym__literal] = STATE(259), + [sym_string_literal] = STATE(652), + [sym_boolean_literal] = STATE(652), + [sym_primitive_type] = STATE(259), + [sym_identifier] = STATE(259), + [aux_sym_token_tree_repeat1] = STATE(259), + [sym__primitive_identifier] = ACTIONS(1302), + [anon_sym_LPAREN] = ACTIONS(2569), + [anon_sym_RPAREN] = ACTIONS(2571), + [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LBRACK] = ACTIONS(2575), + [anon_sym_DOLLAR] = ACTIONS(2577), + [aux_sym__non_special_token_token1] = ACTIONS(2579), + [anon_sym_SQUOTE] = ACTIONS(2579), + [anon_sym_as] = ACTIONS(2579), + [anon_sym_async] = ACTIONS(2579), + [anon_sym_await] = ACTIONS(2579), + [anon_sym_break] = ACTIONS(2579), + [anon_sym_const] = ACTIONS(2579), + [anon_sym_continue] = ACTIONS(2579), + [anon_sym_default] = ACTIONS(2579), + [anon_sym_enum] = ACTIONS(2579), + [anon_sym_fn] = ACTIONS(2579), + [anon_sym_for] = ACTIONS(2579), + [anon_sym_if] = ACTIONS(2579), + [anon_sym_impl] = ACTIONS(2579), + [anon_sym_let] = ACTIONS(2579), + [anon_sym_loop] = ACTIONS(2579), + [anon_sym_match] = ACTIONS(2579), + [anon_sym_mod] = ACTIONS(2579), + [anon_sym_pub] = ACTIONS(2579), + [anon_sym_return] = ACTIONS(2579), + [anon_sym_static] = ACTIONS(2579), + [anon_sym_struct] = ACTIONS(2579), + [anon_sym_trait] = ACTIONS(2579), + [anon_sym_type] = ACTIONS(2579), + [anon_sym_union] = ACTIONS(2579), + [anon_sym_unsafe] = ACTIONS(2579), + [anon_sym_use] = ACTIONS(2579), + [anon_sym_where] = ACTIONS(2579), + [anon_sym_while] = ACTIONS(2579), + [sym_mutable_specifier] = ACTIONS(2579), + [sym_integer_literal] = ACTIONS(1316), + [aux_sym_string_literal_token1] = ACTIONS(1318), + [sym_char_literal] = ACTIONS(1316), + [anon_sym_true] = ACTIONS(1320), + [anon_sym_false] = 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), + [sym_line_comment] = ACTIONS(1112), + [sym__raw_identifier] = ACTIONS(1324), + [sym_self] = ACTIONS(2579), + [sym_super] = ACTIONS(2579), + [sym_crate] = ACTIONS(2579), + [sym_metavariable] = ACTIONS(2581), + [sym_grit_metavariable] = ACTIONS(2583), + [sym_raw_string_literal] = ACTIONS(1316), + [sym_float_literal] = ACTIONS(1316), [sym_block_comment] = ACTIONS(3), }, [540] = { - [sym_delim_token_tree] = STATE(562), - [sym__delim_tokens] = STATE(562), - [sym__non_delim_token] = STATE(562), - [sym__literal] = STATE(562), - [sym_string_literal] = STATE(662), - [sym_boolean_literal] = STATE(662), - [sym_primitive_type] = STATE(562), - [sym_identifier] = STATE(562), - [aux_sym_delim_token_tree_repeat1] = STATE(562), - [sym__primitive_identifier] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_RPAREN] = ACTIONS(2555), - [anon_sym_LBRACE] = ACTIONS(2533), + [sym_delim_token_tree] = STATE(552), + [sym__delim_tokens] = STATE(552), + [sym__non_delim_token] = STATE(552), + [sym__literal] = STATE(552), + [sym_string_literal] = STATE(682), + [sym_boolean_literal] = STATE(682), + [sym_primitive_type] = STATE(552), + [sym_identifier] = STATE(552), + [aux_sym_delim_token_tree_repeat1] = STATE(552), + [sym__primitive_identifier] = ACTIONS(2531), + [anon_sym_LPAREN] = ACTIONS(2533), + [anon_sym_LBRACE] = ACTIONS(2535), + [anon_sym_RBRACE] = ACTIONS(2563), [anon_sym_LBRACK] = ACTIONS(2537), - [anon_sym_DOLLAR] = ACTIONS(2573), - [aux_sym__non_special_token_token1] = ACTIONS(2575), - [anon_sym_SQUOTE] = ACTIONS(2575), - [anon_sym_as] = ACTIONS(2575), - [anon_sym_async] = ACTIONS(2575), - [anon_sym_await] = ACTIONS(2575), - [anon_sym_break] = ACTIONS(2575), - [anon_sym_const] = ACTIONS(2575), - [anon_sym_continue] = ACTIONS(2575), - [anon_sym_default] = ACTIONS(2575), - [anon_sym_enum] = ACTIONS(2575), - [anon_sym_fn] = ACTIONS(2575), - [anon_sym_for] = ACTIONS(2575), - [anon_sym_if] = ACTIONS(2575), - [anon_sym_impl] = ACTIONS(2575), - [anon_sym_let] = ACTIONS(2575), - [anon_sym_loop] = ACTIONS(2575), - [anon_sym_match] = ACTIONS(2575), - [anon_sym_mod] = ACTIONS(2575), - [anon_sym_pub] = ACTIONS(2575), - [anon_sym_return] = ACTIONS(2575), - [anon_sym_static] = ACTIONS(2575), - [anon_sym_struct] = ACTIONS(2575), - [anon_sym_trait] = ACTIONS(2575), - [anon_sym_type] = ACTIONS(2575), - [anon_sym_union] = ACTIONS(2575), - [anon_sym_unsafe] = ACTIONS(2575), - [anon_sym_use] = ACTIONS(2575), - [anon_sym_where] = ACTIONS(2575), - [anon_sym_while] = ACTIONS(2575), - [sym_mutable_specifier] = ACTIONS(2575), - [sym_integer_literal] = ACTIONS(2543), - [aux_sym_string_literal_token1] = ACTIONS(2545), - [sym_char_literal] = ACTIONS(2543), - [anon_sym_true] = ACTIONS(2547), - [anon_sym_false] = ACTIONS(2547), - [anon_sym_u8] = ACTIONS(2549), - [anon_sym_i8] = ACTIONS(2549), - [anon_sym_u16] = ACTIONS(2549), - [anon_sym_i16] = ACTIONS(2549), - [anon_sym_u32] = ACTIONS(2549), - [anon_sym_i32] = ACTIONS(2549), - [anon_sym_u64] = ACTIONS(2549), - [anon_sym_i64] = ACTIONS(2549), - [anon_sym_u128] = ACTIONS(2549), - [anon_sym_i128] = ACTIONS(2549), - [anon_sym_isize] = ACTIONS(2549), - [anon_sym_usize] = ACTIONS(2549), - [anon_sym_f32] = ACTIONS(2549), - [anon_sym_f64] = ACTIONS(2549), - [anon_sym_bool] = ACTIONS(2549), - [anon_sym_str] = ACTIONS(2549), - [anon_sym_char] = ACTIONS(2549), - [sym_line_comment] = ACTIONS(1172), - [sym__raw_identifier] = ACTIONS(2551), - [sym_self] = ACTIONS(2575), - [sym_super] = ACTIONS(2575), - [sym_crate] = ACTIONS(2575), - [sym_grit_metavariable] = ACTIONS(2553), - [sym_raw_string_literal] = ACTIONS(2543), - [sym_float_literal] = ACTIONS(2543), + [anon_sym_DOLLAR] = ACTIONS(2585), + [aux_sym__non_special_token_token1] = ACTIONS(2587), + [anon_sym_SQUOTE] = ACTIONS(2587), + [anon_sym_as] = ACTIONS(2587), + [anon_sym_async] = ACTIONS(2587), + [anon_sym_await] = ACTIONS(2587), + [anon_sym_break] = ACTIONS(2587), + [anon_sym_const] = ACTIONS(2587), + [anon_sym_continue] = ACTIONS(2587), + [anon_sym_default] = ACTIONS(2587), + [anon_sym_enum] = ACTIONS(2587), + [anon_sym_fn] = ACTIONS(2587), + [anon_sym_for] = ACTIONS(2587), + [anon_sym_if] = ACTIONS(2587), + [anon_sym_impl] = ACTIONS(2587), + [anon_sym_let] = ACTIONS(2587), + [anon_sym_loop] = ACTIONS(2587), + [anon_sym_match] = ACTIONS(2587), + [anon_sym_mod] = ACTIONS(2587), + [anon_sym_pub] = ACTIONS(2587), + [anon_sym_return] = ACTIONS(2587), + [anon_sym_static] = ACTIONS(2587), + [anon_sym_struct] = ACTIONS(2587), + [anon_sym_trait] = ACTIONS(2587), + [anon_sym_type] = ACTIONS(2587), + [anon_sym_union] = ACTIONS(2587), + [anon_sym_unsafe] = ACTIONS(2587), + [anon_sym_use] = ACTIONS(2587), + [anon_sym_where] = ACTIONS(2587), + [anon_sym_while] = ACTIONS(2587), + [sym_mutable_specifier] = ACTIONS(2587), + [sym_integer_literal] = ACTIONS(2545), + [aux_sym_string_literal_token1] = ACTIONS(2547), + [sym_char_literal] = ACTIONS(2545), + [anon_sym_true] = ACTIONS(2549), + [anon_sym_false] = ACTIONS(2549), + [anon_sym_u8] = ACTIONS(2551), + [anon_sym_i8] = ACTIONS(2551), + [anon_sym_u16] = ACTIONS(2551), + [anon_sym_i16] = ACTIONS(2551), + [anon_sym_u32] = ACTIONS(2551), + [anon_sym_i32] = ACTIONS(2551), + [anon_sym_u64] = ACTIONS(2551), + [anon_sym_i64] = ACTIONS(2551), + [anon_sym_u128] = ACTIONS(2551), + [anon_sym_i128] = ACTIONS(2551), + [anon_sym_isize] = ACTIONS(2551), + [anon_sym_usize] = ACTIONS(2551), + [anon_sym_f32] = ACTIONS(2551), + [anon_sym_f64] = ACTIONS(2551), + [anon_sym_bool] = ACTIONS(2551), + [anon_sym_str] = ACTIONS(2551), + [anon_sym_char] = ACTIONS(2551), + [sym_line_comment] = ACTIONS(1112), + [sym__raw_identifier] = ACTIONS(2553), + [sym_self] = ACTIONS(2587), + [sym_super] = ACTIONS(2587), + [sym_crate] = ACTIONS(2587), + [sym_grit_metavariable] = ACTIONS(2555), + [sym_raw_string_literal] = ACTIONS(2545), + [sym_float_literal] = ACTIONS(2545), [sym_block_comment] = ACTIONS(3), }, [541] = { - [sym_delim_token_tree] = STATE(555), - [sym__delim_tokens] = STATE(555), - [sym__non_delim_token] = STATE(555), - [sym__literal] = STATE(555), - [sym_string_literal] = STATE(662), - [sym_boolean_literal] = STATE(662), - [sym_primitive_type] = STATE(555), - [sym_identifier] = STATE(555), - [aux_sym_delim_token_tree_repeat1] = STATE(555), - [sym__primitive_identifier] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_RPAREN] = ACTIONS(2535), - [anon_sym_LBRACE] = ACTIONS(2533), + [sym_delim_token_tree] = STATE(553), + [sym__delim_tokens] = STATE(553), + [sym__non_delim_token] = STATE(553), + [sym__literal] = STATE(553), + [sym_string_literal] = STATE(682), + [sym_boolean_literal] = STATE(682), + [sym_primitive_type] = STATE(553), + [sym_identifier] = STATE(553), + [aux_sym_delim_token_tree_repeat1] = STATE(553), + [sym__primitive_identifier] = ACTIONS(2531), + [anon_sym_LPAREN] = ACTIONS(2533), + [anon_sym_LBRACE] = ACTIONS(2535), [anon_sym_LBRACK] = ACTIONS(2537), + [anon_sym_RBRACK] = ACTIONS(2563), + [anon_sym_DOLLAR] = ACTIONS(2589), + [aux_sym__non_special_token_token1] = ACTIONS(2591), + [anon_sym_SQUOTE] = ACTIONS(2591), + [anon_sym_as] = ACTIONS(2591), + [anon_sym_async] = ACTIONS(2591), + [anon_sym_await] = ACTIONS(2591), + [anon_sym_break] = ACTIONS(2591), + [anon_sym_const] = ACTIONS(2591), + [anon_sym_continue] = ACTIONS(2591), + [anon_sym_default] = ACTIONS(2591), + [anon_sym_enum] = ACTIONS(2591), + [anon_sym_fn] = ACTIONS(2591), + [anon_sym_for] = ACTIONS(2591), + [anon_sym_if] = ACTIONS(2591), + [anon_sym_impl] = ACTIONS(2591), + [anon_sym_let] = ACTIONS(2591), + [anon_sym_loop] = ACTIONS(2591), + [anon_sym_match] = ACTIONS(2591), + [anon_sym_mod] = ACTIONS(2591), + [anon_sym_pub] = ACTIONS(2591), + [anon_sym_return] = ACTIONS(2591), + [anon_sym_static] = ACTIONS(2591), + [anon_sym_struct] = ACTIONS(2591), + [anon_sym_trait] = ACTIONS(2591), + [anon_sym_type] = ACTIONS(2591), + [anon_sym_union] = ACTIONS(2591), + [anon_sym_unsafe] = ACTIONS(2591), + [anon_sym_use] = ACTIONS(2591), + [anon_sym_where] = ACTIONS(2591), + [anon_sym_while] = ACTIONS(2591), + [sym_mutable_specifier] = ACTIONS(2591), + [sym_integer_literal] = ACTIONS(2545), + [aux_sym_string_literal_token1] = ACTIONS(2547), + [sym_char_literal] = ACTIONS(2545), + [anon_sym_true] = ACTIONS(2549), + [anon_sym_false] = ACTIONS(2549), + [anon_sym_u8] = ACTIONS(2551), + [anon_sym_i8] = ACTIONS(2551), + [anon_sym_u16] = ACTIONS(2551), + [anon_sym_i16] = ACTIONS(2551), + [anon_sym_u32] = ACTIONS(2551), + [anon_sym_i32] = ACTIONS(2551), + [anon_sym_u64] = ACTIONS(2551), + [anon_sym_i64] = ACTIONS(2551), + [anon_sym_u128] = ACTIONS(2551), + [anon_sym_i128] = ACTIONS(2551), + [anon_sym_isize] = ACTIONS(2551), + [anon_sym_usize] = ACTIONS(2551), + [anon_sym_f32] = ACTIONS(2551), + [anon_sym_f64] = ACTIONS(2551), + [anon_sym_bool] = ACTIONS(2551), + [anon_sym_str] = ACTIONS(2551), + [anon_sym_char] = ACTIONS(2551), + [sym_line_comment] = ACTIONS(1112), + [sym__raw_identifier] = ACTIONS(2553), + [sym_self] = ACTIONS(2591), + [sym_super] = ACTIONS(2591), + [sym_crate] = ACTIONS(2591), + [sym_grit_metavariable] = ACTIONS(2555), + [sym_raw_string_literal] = ACTIONS(2545), + [sym_float_literal] = ACTIONS(2545), + [sym_block_comment] = ACTIONS(3), + }, + [542] = { + [sym_token_tree] = STATE(546), + [sym_token_repetition] = STATE(546), + [sym__literal] = STATE(546), + [sym_string_literal] = STATE(652), + [sym_boolean_literal] = STATE(652), + [sym_primitive_type] = STATE(546), + [sym_identifier] = STATE(546), + [aux_sym_token_repetition_repeat1] = STATE(546), + [sym__primitive_identifier] = ACTIONS(1302), + [anon_sym_LPAREN] = ACTIONS(2569), + [anon_sym_RPAREN] = ACTIONS(2593), + [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LBRACK] = ACTIONS(2575), + [anon_sym_DOLLAR] = ACTIONS(2577), + [aux_sym__non_special_token_token1] = ACTIONS(2595), + [anon_sym_SQUOTE] = ACTIONS(2595), + [anon_sym_as] = ACTIONS(2595), + [anon_sym_async] = ACTIONS(2595), + [anon_sym_await] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_fn] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_impl] = ACTIONS(2595), + [anon_sym_let] = ACTIONS(2595), + [anon_sym_loop] = ACTIONS(2595), + [anon_sym_match] = ACTIONS(2595), + [anon_sym_mod] = ACTIONS(2595), + [anon_sym_pub] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_trait] = ACTIONS(2595), + [anon_sym_type] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_unsafe] = ACTIONS(2595), + [anon_sym_use] = ACTIONS(2595), + [anon_sym_where] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [sym_mutable_specifier] = ACTIONS(2595), + [sym_integer_literal] = ACTIONS(1316), + [aux_sym_string_literal_token1] = ACTIONS(1318), + [sym_char_literal] = ACTIONS(1316), + [anon_sym_true] = ACTIONS(1320), + [anon_sym_false] = 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), + [sym_line_comment] = ACTIONS(1112), + [sym__raw_identifier] = ACTIONS(1324), + [sym_self] = ACTIONS(2595), + [sym_super] = ACTIONS(2595), + [sym_crate] = ACTIONS(2595), + [sym_metavariable] = ACTIONS(2597), + [sym_grit_metavariable] = ACTIONS(1328), + [sym_raw_string_literal] = ACTIONS(1316), + [sym_float_literal] = ACTIONS(1316), + [sym_block_comment] = ACTIONS(3), + }, + [543] = { + [sym_delim_token_tree] = STATE(572), + [sym__delim_tokens] = STATE(572), + [sym__non_delim_token] = STATE(572), + [sym__literal] = STATE(572), + [sym_string_literal] = STATE(682), + [sym_boolean_literal] = STATE(682), + [sym_primitive_type] = STATE(572), + [sym_identifier] = STATE(572), + [aux_sym_delim_token_tree_repeat1] = STATE(572), + [sym__primitive_identifier] = ACTIONS(2531), + [anon_sym_LPAREN] = ACTIONS(2533), + [anon_sym_LBRACE] = ACTIONS(2535), + [anon_sym_LBRACK] = ACTIONS(2537), + [anon_sym_RBRACK] = ACTIONS(2599), + [anon_sym_DOLLAR] = ACTIONS(2601), + [aux_sym__non_special_token_token1] = ACTIONS(2603), + [anon_sym_SQUOTE] = ACTIONS(2603), + [anon_sym_as] = ACTIONS(2603), + [anon_sym_async] = ACTIONS(2603), + [anon_sym_await] = ACTIONS(2603), + [anon_sym_break] = ACTIONS(2603), + [anon_sym_const] = ACTIONS(2603), + [anon_sym_continue] = ACTIONS(2603), + [anon_sym_default] = ACTIONS(2603), + [anon_sym_enum] = ACTIONS(2603), + [anon_sym_fn] = ACTIONS(2603), + [anon_sym_for] = ACTIONS(2603), + [anon_sym_if] = ACTIONS(2603), + [anon_sym_impl] = ACTIONS(2603), + [anon_sym_let] = ACTIONS(2603), + [anon_sym_loop] = ACTIONS(2603), + [anon_sym_match] = ACTIONS(2603), + [anon_sym_mod] = ACTIONS(2603), + [anon_sym_pub] = ACTIONS(2603), + [anon_sym_return] = ACTIONS(2603), + [anon_sym_static] = ACTIONS(2603), + [anon_sym_struct] = ACTIONS(2603), + [anon_sym_trait] = ACTIONS(2603), + [anon_sym_type] = ACTIONS(2603), + [anon_sym_union] = ACTIONS(2603), + [anon_sym_unsafe] = ACTIONS(2603), + [anon_sym_use] = ACTIONS(2603), + [anon_sym_where] = ACTIONS(2603), + [anon_sym_while] = ACTIONS(2603), + [sym_mutable_specifier] = ACTIONS(2603), + [sym_integer_literal] = ACTIONS(2545), + [aux_sym_string_literal_token1] = ACTIONS(2547), + [sym_char_literal] = ACTIONS(2545), + [anon_sym_true] = ACTIONS(2549), + [anon_sym_false] = ACTIONS(2549), + [anon_sym_u8] = ACTIONS(2551), + [anon_sym_i8] = ACTIONS(2551), + [anon_sym_u16] = ACTIONS(2551), + [anon_sym_i16] = ACTIONS(2551), + [anon_sym_u32] = ACTIONS(2551), + [anon_sym_i32] = ACTIONS(2551), + [anon_sym_u64] = ACTIONS(2551), + [anon_sym_i64] = ACTIONS(2551), + [anon_sym_u128] = ACTIONS(2551), + [anon_sym_i128] = ACTIONS(2551), + [anon_sym_isize] = ACTIONS(2551), + [anon_sym_usize] = ACTIONS(2551), + [anon_sym_f32] = ACTIONS(2551), + [anon_sym_f64] = ACTIONS(2551), + [anon_sym_bool] = ACTIONS(2551), + [anon_sym_str] = ACTIONS(2551), + [anon_sym_char] = ACTIONS(2551), + [sym_line_comment] = ACTIONS(1112), + [sym__raw_identifier] = ACTIONS(2553), + [sym_self] = ACTIONS(2603), + [sym_super] = ACTIONS(2603), + [sym_crate] = ACTIONS(2603), + [sym_grit_metavariable] = ACTIONS(2555), + [sym_raw_string_literal] = ACTIONS(2545), + [sym_float_literal] = ACTIONS(2545), + [sym_block_comment] = ACTIONS(3), + }, + [544] = { + [sym_delim_token_tree] = STATE(569), + [sym__delim_tokens] = STATE(569), + [sym__non_delim_token] = STATE(569), + [sym__literal] = STATE(569), + [sym_string_literal] = STATE(682), + [sym_boolean_literal] = STATE(682), + [sym_primitive_type] = STATE(569), + [sym_identifier] = STATE(569), + [aux_sym_delim_token_tree_repeat1] = STATE(569), + [sym__primitive_identifier] = ACTIONS(2531), + [anon_sym_LPAREN] = ACTIONS(2533), + [anon_sym_LBRACE] = ACTIONS(2535), + [anon_sym_RBRACE] = ACTIONS(2599), + [anon_sym_LBRACK] = ACTIONS(2537), + [anon_sym_DOLLAR] = ACTIONS(2605), + [aux_sym__non_special_token_token1] = ACTIONS(2607), + [anon_sym_SQUOTE] = ACTIONS(2607), + [anon_sym_as] = ACTIONS(2607), + [anon_sym_async] = ACTIONS(2607), + [anon_sym_await] = ACTIONS(2607), + [anon_sym_break] = ACTIONS(2607), + [anon_sym_const] = ACTIONS(2607), + [anon_sym_continue] = ACTIONS(2607), + [anon_sym_default] = ACTIONS(2607), + [anon_sym_enum] = ACTIONS(2607), + [anon_sym_fn] = ACTIONS(2607), + [anon_sym_for] = ACTIONS(2607), + [anon_sym_if] = ACTIONS(2607), + [anon_sym_impl] = ACTIONS(2607), + [anon_sym_let] = ACTIONS(2607), + [anon_sym_loop] = ACTIONS(2607), + [anon_sym_match] = ACTIONS(2607), + [anon_sym_mod] = ACTIONS(2607), + [anon_sym_pub] = ACTIONS(2607), + [anon_sym_return] = ACTIONS(2607), + [anon_sym_static] = ACTIONS(2607), + [anon_sym_struct] = ACTIONS(2607), + [anon_sym_trait] = ACTIONS(2607), + [anon_sym_type] = ACTIONS(2607), + [anon_sym_union] = ACTIONS(2607), + [anon_sym_unsafe] = ACTIONS(2607), + [anon_sym_use] = ACTIONS(2607), + [anon_sym_where] = ACTIONS(2607), + [anon_sym_while] = ACTIONS(2607), + [sym_mutable_specifier] = ACTIONS(2607), + [sym_integer_literal] = ACTIONS(2545), + [aux_sym_string_literal_token1] = ACTIONS(2547), + [sym_char_literal] = ACTIONS(2545), + [anon_sym_true] = ACTIONS(2549), + [anon_sym_false] = ACTIONS(2549), + [anon_sym_u8] = ACTIONS(2551), + [anon_sym_i8] = ACTIONS(2551), + [anon_sym_u16] = ACTIONS(2551), + [anon_sym_i16] = ACTIONS(2551), + [anon_sym_u32] = ACTIONS(2551), + [anon_sym_i32] = ACTIONS(2551), + [anon_sym_u64] = ACTIONS(2551), + [anon_sym_i64] = ACTIONS(2551), + [anon_sym_u128] = ACTIONS(2551), + [anon_sym_i128] = ACTIONS(2551), + [anon_sym_isize] = ACTIONS(2551), + [anon_sym_usize] = ACTIONS(2551), + [anon_sym_f32] = ACTIONS(2551), + [anon_sym_f64] = ACTIONS(2551), + [anon_sym_bool] = ACTIONS(2551), + [anon_sym_str] = ACTIONS(2551), + [anon_sym_char] = ACTIONS(2551), + [sym_line_comment] = ACTIONS(1112), + [sym__raw_identifier] = ACTIONS(2553), + [sym_self] = ACTIONS(2607), + [sym_super] = ACTIONS(2607), + [sym_crate] = ACTIONS(2607), + [sym_grit_metavariable] = ACTIONS(2555), + [sym_raw_string_literal] = ACTIONS(2545), + [sym_float_literal] = ACTIONS(2545), + [sym_block_comment] = ACTIONS(3), + }, + [545] = { + [sym_token_tree] = STATE(259), + [sym_token_repetition] = STATE(259), + [sym__literal] = STATE(259), + [sym_string_literal] = STATE(652), + [sym_boolean_literal] = STATE(652), + [sym_primitive_type] = STATE(259), + [sym_identifier] = STATE(259), + [aux_sym_token_tree_repeat1] = STATE(259), + [sym__primitive_identifier] = ACTIONS(1302), + [anon_sym_LPAREN] = ACTIONS(2569), + [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_RBRACE] = ACTIONS(2609), + [anon_sym_LBRACK] = ACTIONS(2575), [anon_sym_DOLLAR] = ACTIONS(2577), [aux_sym__non_special_token_token1] = ACTIONS(2579), [anon_sym_SQUOTE] = ACTIONS(2579), @@ -70459,2237 +70839,1302 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2579), [anon_sym_while] = ACTIONS(2579), [sym_mutable_specifier] = ACTIONS(2579), - [sym_integer_literal] = ACTIONS(2543), - [aux_sym_string_literal_token1] = ACTIONS(2545), - [sym_char_literal] = ACTIONS(2543), - [anon_sym_true] = ACTIONS(2547), - [anon_sym_false] = ACTIONS(2547), - [anon_sym_u8] = ACTIONS(2549), - [anon_sym_i8] = ACTIONS(2549), - [anon_sym_u16] = ACTIONS(2549), - [anon_sym_i16] = ACTIONS(2549), - [anon_sym_u32] = ACTIONS(2549), - [anon_sym_i32] = ACTIONS(2549), - [anon_sym_u64] = ACTIONS(2549), - [anon_sym_i64] = ACTIONS(2549), - [anon_sym_u128] = ACTIONS(2549), - [anon_sym_i128] = ACTIONS(2549), - [anon_sym_isize] = ACTIONS(2549), - [anon_sym_usize] = ACTIONS(2549), - [anon_sym_f32] = ACTIONS(2549), - [anon_sym_f64] = ACTIONS(2549), - [anon_sym_bool] = ACTIONS(2549), - [anon_sym_str] = ACTIONS(2549), - [anon_sym_char] = ACTIONS(2549), - [sym_line_comment] = ACTIONS(1172), - [sym__raw_identifier] = ACTIONS(2551), + [sym_integer_literal] = ACTIONS(1316), + [aux_sym_string_literal_token1] = ACTIONS(1318), + [sym_char_literal] = ACTIONS(1316), + [anon_sym_true] = ACTIONS(1320), + [anon_sym_false] = 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), + [sym_line_comment] = ACTIONS(1112), + [sym__raw_identifier] = ACTIONS(1324), [sym_self] = ACTIONS(2579), [sym_super] = ACTIONS(2579), [sym_crate] = ACTIONS(2579), - [sym_grit_metavariable] = ACTIONS(2553), - [sym_raw_string_literal] = ACTIONS(2543), - [sym_float_literal] = ACTIONS(2543), - [sym_block_comment] = ACTIONS(3), - }, - [542] = { - [sym_delim_token_tree] = STATE(564), - [sym__delim_tokens] = STATE(564), - [sym__non_delim_token] = STATE(564), - [sym__literal] = STATE(564), - [sym_string_literal] = STATE(662), - [sym_boolean_literal] = STATE(662), - [sym_primitive_type] = STATE(564), - [sym_identifier] = STATE(564), - [aux_sym_delim_token_tree_repeat1] = STATE(564), - [sym__primitive_identifier] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2533), - [anon_sym_LBRACK] = ACTIONS(2537), - [anon_sym_RBRACK] = ACTIONS(2555), - [anon_sym_DOLLAR] = ACTIONS(2581), - [aux_sym__non_special_token_token1] = ACTIONS(2583), - [anon_sym_SQUOTE] = ACTIONS(2583), - [anon_sym_as] = ACTIONS(2583), - [anon_sym_async] = ACTIONS(2583), - [anon_sym_await] = ACTIONS(2583), - [anon_sym_break] = ACTIONS(2583), - [anon_sym_const] = ACTIONS(2583), - [anon_sym_continue] = ACTIONS(2583), - [anon_sym_default] = ACTIONS(2583), - [anon_sym_enum] = ACTIONS(2583), - [anon_sym_fn] = ACTIONS(2583), - [anon_sym_for] = ACTIONS(2583), - [anon_sym_if] = ACTIONS(2583), - [anon_sym_impl] = ACTIONS(2583), - [anon_sym_let] = ACTIONS(2583), - [anon_sym_loop] = ACTIONS(2583), - [anon_sym_match] = ACTIONS(2583), - [anon_sym_mod] = ACTIONS(2583), - [anon_sym_pub] = ACTIONS(2583), - [anon_sym_return] = ACTIONS(2583), - [anon_sym_static] = ACTIONS(2583), - [anon_sym_struct] = ACTIONS(2583), - [anon_sym_trait] = ACTIONS(2583), - [anon_sym_type] = ACTIONS(2583), - [anon_sym_union] = ACTIONS(2583), - [anon_sym_unsafe] = ACTIONS(2583), - [anon_sym_use] = ACTIONS(2583), - [anon_sym_where] = ACTIONS(2583), - [anon_sym_while] = ACTIONS(2583), - [sym_mutable_specifier] = ACTIONS(2583), - [sym_integer_literal] = ACTIONS(2543), - [aux_sym_string_literal_token1] = ACTIONS(2545), - [sym_char_literal] = ACTIONS(2543), - [anon_sym_true] = ACTIONS(2547), - [anon_sym_false] = ACTIONS(2547), - [anon_sym_u8] = ACTIONS(2549), - [anon_sym_i8] = ACTIONS(2549), - [anon_sym_u16] = ACTIONS(2549), - [anon_sym_i16] = ACTIONS(2549), - [anon_sym_u32] = ACTIONS(2549), - [anon_sym_i32] = ACTIONS(2549), - [anon_sym_u64] = ACTIONS(2549), - [anon_sym_i64] = ACTIONS(2549), - [anon_sym_u128] = ACTIONS(2549), - [anon_sym_i128] = ACTIONS(2549), - [anon_sym_isize] = ACTIONS(2549), - [anon_sym_usize] = ACTIONS(2549), - [anon_sym_f32] = ACTIONS(2549), - [anon_sym_f64] = ACTIONS(2549), - [anon_sym_bool] = ACTIONS(2549), - [anon_sym_str] = ACTIONS(2549), - [anon_sym_char] = ACTIONS(2549), - [sym_line_comment] = ACTIONS(1172), - [sym__raw_identifier] = ACTIONS(2551), - [sym_self] = ACTIONS(2583), - [sym_super] = ACTIONS(2583), - [sym_crate] = ACTIONS(2583), - [sym_grit_metavariable] = ACTIONS(2553), - [sym_raw_string_literal] = ACTIONS(2543), - [sym_float_literal] = ACTIONS(2543), - [sym_block_comment] = ACTIONS(3), - }, - [543] = { - [sym_delim_token_tree] = STATE(579), - [sym__delim_tokens] = STATE(579), - [sym__non_delim_token] = STATE(579), - [sym__literal] = STATE(579), - [sym_string_literal] = STATE(662), - [sym_boolean_literal] = STATE(662), - [sym_primitive_type] = STATE(579), - [sym_identifier] = STATE(579), - [aux_sym_delim_token_tree_repeat1] = STATE(579), - [sym__primitive_identifier] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_RPAREN] = ACTIONS(2567), - [anon_sym_LBRACE] = ACTIONS(2533), - [anon_sym_LBRACK] = ACTIONS(2537), - [anon_sym_DOLLAR] = ACTIONS(2585), - [aux_sym__non_special_token_token1] = ACTIONS(2587), - [anon_sym_SQUOTE] = ACTIONS(2587), - [anon_sym_as] = ACTIONS(2587), - [anon_sym_async] = ACTIONS(2587), - [anon_sym_await] = ACTIONS(2587), - [anon_sym_break] = ACTIONS(2587), - [anon_sym_const] = ACTIONS(2587), - [anon_sym_continue] = ACTIONS(2587), - [anon_sym_default] = ACTIONS(2587), - [anon_sym_enum] = ACTIONS(2587), - [anon_sym_fn] = ACTIONS(2587), - [anon_sym_for] = ACTIONS(2587), - [anon_sym_if] = ACTIONS(2587), - [anon_sym_impl] = ACTIONS(2587), - [anon_sym_let] = ACTIONS(2587), - [anon_sym_loop] = ACTIONS(2587), - [anon_sym_match] = ACTIONS(2587), - [anon_sym_mod] = ACTIONS(2587), - [anon_sym_pub] = ACTIONS(2587), - [anon_sym_return] = ACTIONS(2587), - [anon_sym_static] = ACTIONS(2587), - [anon_sym_struct] = ACTIONS(2587), - [anon_sym_trait] = ACTIONS(2587), - [anon_sym_type] = ACTIONS(2587), - [anon_sym_union] = ACTIONS(2587), - [anon_sym_unsafe] = ACTIONS(2587), - [anon_sym_use] = ACTIONS(2587), - [anon_sym_where] = ACTIONS(2587), - [anon_sym_while] = ACTIONS(2587), - [sym_mutable_specifier] = ACTIONS(2587), - [sym_integer_literal] = ACTIONS(2543), - [aux_sym_string_literal_token1] = ACTIONS(2545), - [sym_char_literal] = ACTIONS(2543), - [anon_sym_true] = ACTIONS(2547), - [anon_sym_false] = ACTIONS(2547), - [anon_sym_u8] = ACTIONS(2549), - [anon_sym_i8] = ACTIONS(2549), - [anon_sym_u16] = ACTIONS(2549), - [anon_sym_i16] = ACTIONS(2549), - [anon_sym_u32] = ACTIONS(2549), - [anon_sym_i32] = ACTIONS(2549), - [anon_sym_u64] = ACTIONS(2549), - [anon_sym_i64] = ACTIONS(2549), - [anon_sym_u128] = ACTIONS(2549), - [anon_sym_i128] = ACTIONS(2549), - [anon_sym_isize] = ACTIONS(2549), - [anon_sym_usize] = ACTIONS(2549), - [anon_sym_f32] = ACTIONS(2549), - [anon_sym_f64] = ACTIONS(2549), - [anon_sym_bool] = ACTIONS(2549), - [anon_sym_str] = ACTIONS(2549), - [anon_sym_char] = ACTIONS(2549), - [sym_line_comment] = ACTIONS(1172), - [sym__raw_identifier] = ACTIONS(2551), - [sym_self] = ACTIONS(2587), - [sym_super] = ACTIONS(2587), - [sym_crate] = ACTIONS(2587), - [sym_grit_metavariable] = ACTIONS(2553), - [sym_raw_string_literal] = ACTIONS(2543), - [sym_float_literal] = ACTIONS(2543), - [sym_block_comment] = ACTIONS(3), - }, - [544] = { - [sym_delim_token_tree] = STATE(268), - [sym__delim_tokens] = STATE(268), - [sym__non_delim_token] = STATE(268), - [sym__literal] = STATE(268), - [sym_string_literal] = STATE(662), - [sym_boolean_literal] = STATE(662), - [sym_primitive_type] = STATE(268), - [sym_identifier] = STATE(268), - [aux_sym_delim_token_tree_repeat1] = STATE(268), - [sym__primitive_identifier] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_RPAREN] = ACTIONS(2589), - [anon_sym_LBRACE] = ACTIONS(2533), - [anon_sym_LBRACK] = ACTIONS(2537), - [anon_sym_DOLLAR] = ACTIONS(2563), - [aux_sym__non_special_token_token1] = ACTIONS(2565), - [anon_sym_SQUOTE] = ACTIONS(2565), - [anon_sym_as] = ACTIONS(2565), - [anon_sym_async] = ACTIONS(2565), - [anon_sym_await] = ACTIONS(2565), - [anon_sym_break] = ACTIONS(2565), - [anon_sym_const] = ACTIONS(2565), - [anon_sym_continue] = ACTIONS(2565), - [anon_sym_default] = ACTIONS(2565), - [anon_sym_enum] = ACTIONS(2565), - [anon_sym_fn] = ACTIONS(2565), - [anon_sym_for] = ACTIONS(2565), - [anon_sym_if] = ACTIONS(2565), - [anon_sym_impl] = ACTIONS(2565), - [anon_sym_let] = ACTIONS(2565), - [anon_sym_loop] = ACTIONS(2565), - [anon_sym_match] = ACTIONS(2565), - [anon_sym_mod] = ACTIONS(2565), - [anon_sym_pub] = ACTIONS(2565), - [anon_sym_return] = ACTIONS(2565), - [anon_sym_static] = ACTIONS(2565), - [anon_sym_struct] = ACTIONS(2565), - [anon_sym_trait] = ACTIONS(2565), - [anon_sym_type] = ACTIONS(2565), - [anon_sym_union] = ACTIONS(2565), - [anon_sym_unsafe] = ACTIONS(2565), - [anon_sym_use] = ACTIONS(2565), - [anon_sym_where] = ACTIONS(2565), - [anon_sym_while] = ACTIONS(2565), - [sym_mutable_specifier] = ACTIONS(2565), - [sym_integer_literal] = ACTIONS(2543), - [aux_sym_string_literal_token1] = ACTIONS(2545), - [sym_char_literal] = ACTIONS(2543), - [anon_sym_true] = ACTIONS(2547), - [anon_sym_false] = ACTIONS(2547), - [anon_sym_u8] = ACTIONS(2549), - [anon_sym_i8] = ACTIONS(2549), - [anon_sym_u16] = ACTIONS(2549), - [anon_sym_i16] = ACTIONS(2549), - [anon_sym_u32] = ACTIONS(2549), - [anon_sym_i32] = ACTIONS(2549), - [anon_sym_u64] = ACTIONS(2549), - [anon_sym_i64] = ACTIONS(2549), - [anon_sym_u128] = ACTIONS(2549), - [anon_sym_i128] = ACTIONS(2549), - [anon_sym_isize] = ACTIONS(2549), - [anon_sym_usize] = ACTIONS(2549), - [anon_sym_f32] = ACTIONS(2549), - [anon_sym_f64] = ACTIONS(2549), - [anon_sym_bool] = ACTIONS(2549), - [anon_sym_str] = ACTIONS(2549), - [anon_sym_char] = ACTIONS(2549), - [sym_line_comment] = ACTIONS(1172), - [sym__raw_identifier] = ACTIONS(2551), - [sym_self] = ACTIONS(2565), - [sym_super] = ACTIONS(2565), - [sym_crate] = ACTIONS(2565), - [sym_grit_metavariable] = ACTIONS(2553), - [sym_raw_string_literal] = ACTIONS(2543), - [sym_float_literal] = ACTIONS(2543), - [sym_block_comment] = ACTIONS(3), - }, - [545] = { - [sym_delim_token_tree] = STATE(268), - [sym__delim_tokens] = STATE(268), - [sym__non_delim_token] = STATE(268), - [sym__literal] = STATE(268), - [sym_string_literal] = STATE(662), - [sym_boolean_literal] = STATE(662), - [sym_primitive_type] = STATE(268), - [sym_identifier] = STATE(268), - [aux_sym_delim_token_tree_repeat1] = STATE(268), - [sym__primitive_identifier] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2533), - [anon_sym_RBRACE] = ACTIONS(2589), - [anon_sym_LBRACK] = ACTIONS(2537), - [anon_sym_DOLLAR] = ACTIONS(2563), - [aux_sym__non_special_token_token1] = ACTIONS(2565), - [anon_sym_SQUOTE] = ACTIONS(2565), - [anon_sym_as] = ACTIONS(2565), - [anon_sym_async] = ACTIONS(2565), - [anon_sym_await] = ACTIONS(2565), - [anon_sym_break] = ACTIONS(2565), - [anon_sym_const] = ACTIONS(2565), - [anon_sym_continue] = ACTIONS(2565), - [anon_sym_default] = ACTIONS(2565), - [anon_sym_enum] = ACTIONS(2565), - [anon_sym_fn] = ACTIONS(2565), - [anon_sym_for] = ACTIONS(2565), - [anon_sym_if] = ACTIONS(2565), - [anon_sym_impl] = ACTIONS(2565), - [anon_sym_let] = ACTIONS(2565), - [anon_sym_loop] = ACTIONS(2565), - [anon_sym_match] = ACTIONS(2565), - [anon_sym_mod] = ACTIONS(2565), - [anon_sym_pub] = ACTIONS(2565), - [anon_sym_return] = ACTIONS(2565), - [anon_sym_static] = ACTIONS(2565), - [anon_sym_struct] = ACTIONS(2565), - [anon_sym_trait] = ACTIONS(2565), - [anon_sym_type] = ACTIONS(2565), - [anon_sym_union] = ACTIONS(2565), - [anon_sym_unsafe] = ACTIONS(2565), - [anon_sym_use] = ACTIONS(2565), - [anon_sym_where] = ACTIONS(2565), - [anon_sym_while] = ACTIONS(2565), - [sym_mutable_specifier] = ACTIONS(2565), - [sym_integer_literal] = ACTIONS(2543), - [aux_sym_string_literal_token1] = ACTIONS(2545), - [sym_char_literal] = ACTIONS(2543), - [anon_sym_true] = ACTIONS(2547), - [anon_sym_false] = ACTIONS(2547), - [anon_sym_u8] = ACTIONS(2549), - [anon_sym_i8] = ACTIONS(2549), - [anon_sym_u16] = ACTIONS(2549), - [anon_sym_i16] = ACTIONS(2549), - [anon_sym_u32] = ACTIONS(2549), - [anon_sym_i32] = ACTIONS(2549), - [anon_sym_u64] = ACTIONS(2549), - [anon_sym_i64] = ACTIONS(2549), - [anon_sym_u128] = ACTIONS(2549), - [anon_sym_i128] = ACTIONS(2549), - [anon_sym_isize] = ACTIONS(2549), - [anon_sym_usize] = ACTIONS(2549), - [anon_sym_f32] = ACTIONS(2549), - [anon_sym_f64] = ACTIONS(2549), - [anon_sym_bool] = ACTIONS(2549), - [anon_sym_str] = ACTIONS(2549), - [anon_sym_char] = ACTIONS(2549), - [sym_line_comment] = ACTIONS(1172), - [sym__raw_identifier] = ACTIONS(2551), - [sym_self] = ACTIONS(2565), - [sym_super] = ACTIONS(2565), - [sym_crate] = ACTIONS(2565), - [sym_grit_metavariable] = ACTIONS(2553), - [sym_raw_string_literal] = ACTIONS(2543), - [sym_float_literal] = ACTIONS(2543), + [sym_metavariable] = ACTIONS(2581), + [sym_grit_metavariable] = ACTIONS(2583), + [sym_raw_string_literal] = ACTIONS(1316), + [sym_float_literal] = ACTIONS(1316), [sym_block_comment] = ACTIONS(3), }, [546] = { - [sym_delim_token_tree] = STATE(268), - [sym__delim_tokens] = STATE(268), - [sym__non_delim_token] = STATE(268), - [sym__literal] = STATE(268), - [sym_string_literal] = STATE(662), - [sym_boolean_literal] = STATE(662), - [sym_primitive_type] = STATE(268), - [sym_identifier] = STATE(268), - [aux_sym_delim_token_tree_repeat1] = STATE(268), - [sym__primitive_identifier] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2533), - [anon_sym_LBRACK] = ACTIONS(2537), - [anon_sym_RBRACK] = ACTIONS(2589), - [anon_sym_DOLLAR] = ACTIONS(2563), - [aux_sym__non_special_token_token1] = ACTIONS(2565), - [anon_sym_SQUOTE] = ACTIONS(2565), - [anon_sym_as] = ACTIONS(2565), - [anon_sym_async] = ACTIONS(2565), - [anon_sym_await] = ACTIONS(2565), - [anon_sym_break] = ACTIONS(2565), - [anon_sym_const] = ACTIONS(2565), - [anon_sym_continue] = ACTIONS(2565), - [anon_sym_default] = ACTIONS(2565), - [anon_sym_enum] = ACTIONS(2565), - [anon_sym_fn] = ACTIONS(2565), - [anon_sym_for] = ACTIONS(2565), - [anon_sym_if] = ACTIONS(2565), - [anon_sym_impl] = ACTIONS(2565), - [anon_sym_let] = ACTIONS(2565), - [anon_sym_loop] = ACTIONS(2565), - [anon_sym_match] = ACTIONS(2565), - [anon_sym_mod] = ACTIONS(2565), - [anon_sym_pub] = ACTIONS(2565), - [anon_sym_return] = ACTIONS(2565), - [anon_sym_static] = ACTIONS(2565), - [anon_sym_struct] = ACTIONS(2565), - [anon_sym_trait] = ACTIONS(2565), - [anon_sym_type] = ACTIONS(2565), - [anon_sym_union] = ACTIONS(2565), - [anon_sym_unsafe] = ACTIONS(2565), - [anon_sym_use] = ACTIONS(2565), - [anon_sym_where] = ACTIONS(2565), - [anon_sym_while] = ACTIONS(2565), - [sym_mutable_specifier] = ACTIONS(2565), - [sym_integer_literal] = ACTIONS(2543), - [aux_sym_string_literal_token1] = ACTIONS(2545), - [sym_char_literal] = ACTIONS(2543), - [anon_sym_true] = ACTIONS(2547), - [anon_sym_false] = ACTIONS(2547), - [anon_sym_u8] = ACTIONS(2549), - [anon_sym_i8] = ACTIONS(2549), - [anon_sym_u16] = ACTIONS(2549), - [anon_sym_i16] = ACTIONS(2549), - [anon_sym_u32] = ACTIONS(2549), - [anon_sym_i32] = ACTIONS(2549), - [anon_sym_u64] = ACTIONS(2549), - [anon_sym_i64] = ACTIONS(2549), - [anon_sym_u128] = ACTIONS(2549), - [anon_sym_i128] = ACTIONS(2549), - [anon_sym_isize] = ACTIONS(2549), - [anon_sym_usize] = ACTIONS(2549), - [anon_sym_f32] = ACTIONS(2549), - [anon_sym_f64] = ACTIONS(2549), - [anon_sym_bool] = ACTIONS(2549), - [anon_sym_str] = ACTIONS(2549), - [anon_sym_char] = ACTIONS(2549), - [sym_line_comment] = ACTIONS(1172), - [sym__raw_identifier] = ACTIONS(2551), - [sym_self] = ACTIONS(2565), - [sym_super] = ACTIONS(2565), - [sym_crate] = ACTIONS(2565), - [sym_grit_metavariable] = ACTIONS(2553), - [sym_raw_string_literal] = ACTIONS(2543), - [sym_float_literal] = ACTIONS(2543), + [sym_token_tree] = STATE(546), + [sym_token_repetition] = STATE(546), + [sym__literal] = STATE(546), + [sym_string_literal] = STATE(652), + [sym_boolean_literal] = STATE(652), + [sym_primitive_type] = STATE(546), + [sym_identifier] = STATE(546), + [aux_sym_token_repetition_repeat1] = STATE(546), + [sym__primitive_identifier] = ACTIONS(2611), + [anon_sym_LPAREN] = ACTIONS(2614), + [anon_sym_RPAREN] = ACTIONS(2617), + [anon_sym_LBRACE] = ACTIONS(2619), + [anon_sym_LBRACK] = ACTIONS(2622), + [anon_sym_DOLLAR] = ACTIONS(2625), + [aux_sym__non_special_token_token1] = ACTIONS(2628), + [anon_sym_SQUOTE] = ACTIONS(2628), + [anon_sym_as] = ACTIONS(2628), + [anon_sym_async] = ACTIONS(2628), + [anon_sym_await] = ACTIONS(2628), + [anon_sym_break] = ACTIONS(2628), + [anon_sym_const] = ACTIONS(2628), + [anon_sym_continue] = ACTIONS(2628), + [anon_sym_default] = ACTIONS(2628), + [anon_sym_enum] = ACTIONS(2628), + [anon_sym_fn] = ACTIONS(2628), + [anon_sym_for] = ACTIONS(2628), + [anon_sym_if] = ACTIONS(2628), + [anon_sym_impl] = ACTIONS(2628), + [anon_sym_let] = ACTIONS(2628), + [anon_sym_loop] = ACTIONS(2628), + [anon_sym_match] = ACTIONS(2628), + [anon_sym_mod] = ACTIONS(2628), + [anon_sym_pub] = ACTIONS(2628), + [anon_sym_return] = ACTIONS(2628), + [anon_sym_static] = ACTIONS(2628), + [anon_sym_struct] = ACTIONS(2628), + [anon_sym_trait] = ACTIONS(2628), + [anon_sym_type] = ACTIONS(2628), + [anon_sym_union] = ACTIONS(2628), + [anon_sym_unsafe] = ACTIONS(2628), + [anon_sym_use] = ACTIONS(2628), + [anon_sym_where] = ACTIONS(2628), + [anon_sym_while] = ACTIONS(2628), + [sym_mutable_specifier] = ACTIONS(2628), + [sym_integer_literal] = ACTIONS(2631), + [aux_sym_string_literal_token1] = ACTIONS(2634), + [sym_char_literal] = ACTIONS(2631), + [anon_sym_true] = ACTIONS(2637), + [anon_sym_false] = ACTIONS(2637), + [anon_sym_u8] = ACTIONS(2640), + [anon_sym_i8] = ACTIONS(2640), + [anon_sym_u16] = ACTIONS(2640), + [anon_sym_i16] = ACTIONS(2640), + [anon_sym_u32] = ACTIONS(2640), + [anon_sym_i32] = ACTIONS(2640), + [anon_sym_u64] = ACTIONS(2640), + [anon_sym_i64] = ACTIONS(2640), + [anon_sym_u128] = ACTIONS(2640), + [anon_sym_i128] = ACTIONS(2640), + [anon_sym_isize] = ACTIONS(2640), + [anon_sym_usize] = ACTIONS(2640), + [anon_sym_f32] = ACTIONS(2640), + [anon_sym_f64] = ACTIONS(2640), + [anon_sym_bool] = ACTIONS(2640), + [anon_sym_str] = ACTIONS(2640), + [anon_sym_char] = ACTIONS(2640), + [sym_line_comment] = ACTIONS(1112), + [sym__raw_identifier] = ACTIONS(2643), + [sym_self] = ACTIONS(2628), + [sym_super] = ACTIONS(2628), + [sym_crate] = ACTIONS(2628), + [sym_metavariable] = ACTIONS(2646), + [sym_grit_metavariable] = ACTIONS(2649), + [sym_raw_string_literal] = ACTIONS(2631), + [sym_float_literal] = ACTIONS(2631), [sym_block_comment] = ACTIONS(3), }, [547] = { - [sym_token_tree] = STATE(263), - [sym_token_repetition] = STATE(263), - [sym__literal] = STATE(263), - [sym_string_literal] = STATE(656), - [sym_boolean_literal] = STATE(656), - [sym_primitive_type] = STATE(263), - [sym_identifier] = STATE(263), - [aux_sym_token_tree_repeat1] = STATE(263), - [sym__primitive_identifier] = ACTIONS(1300), - [anon_sym_LPAREN] = ACTIONS(2591), - [anon_sym_LBRACE] = ACTIONS(2593), - [anon_sym_LBRACK] = ACTIONS(2595), - [anon_sym_RBRACK] = ACTIONS(2597), - [anon_sym_DOLLAR] = ACTIONS(2599), - [aux_sym__non_special_token_token1] = ACTIONS(2601), - [anon_sym_SQUOTE] = ACTIONS(2601), - [anon_sym_as] = ACTIONS(2601), - [anon_sym_async] = ACTIONS(2601), - [anon_sym_await] = 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_where] = ACTIONS(2601), - [anon_sym_while] = ACTIONS(2601), - [sym_mutable_specifier] = ACTIONS(2601), - [sym_integer_literal] = ACTIONS(1314), - [aux_sym_string_literal_token1] = ACTIONS(1316), - [sym_char_literal] = ACTIONS(1314), - [anon_sym_true] = ACTIONS(1318), - [anon_sym_false] = ACTIONS(1318), - [anon_sym_u8] = ACTIONS(1320), - [anon_sym_i8] = ACTIONS(1320), - [anon_sym_u16] = ACTIONS(1320), - [anon_sym_i16] = ACTIONS(1320), - [anon_sym_u32] = ACTIONS(1320), - [anon_sym_i32] = ACTIONS(1320), - [anon_sym_u64] = ACTIONS(1320), - [anon_sym_i64] = ACTIONS(1320), - [anon_sym_u128] = ACTIONS(1320), - [anon_sym_i128] = ACTIONS(1320), - [anon_sym_isize] = ACTIONS(1320), - [anon_sym_usize] = ACTIONS(1320), - [anon_sym_f32] = ACTIONS(1320), - [anon_sym_f64] = ACTIONS(1320), - [anon_sym_bool] = ACTIONS(1320), - [anon_sym_str] = ACTIONS(1320), - [anon_sym_char] = ACTIONS(1320), - [sym_line_comment] = ACTIONS(1172), - [sym__raw_identifier] = ACTIONS(1322), - [sym_self] = ACTIONS(2601), - [sym_super] = ACTIONS(2601), - [sym_crate] = ACTIONS(2601), - [sym_metavariable] = ACTIONS(2603), - [sym_grit_metavariable] = ACTIONS(2605), - [sym_raw_string_literal] = ACTIONS(1314), - [sym_float_literal] = ACTIONS(1314), + [sym_delim_token_tree] = STATE(271), + [sym__delim_tokens] = STATE(271), + [sym__non_delim_token] = STATE(271), + [sym__literal] = STATE(271), + [sym_string_literal] = STATE(682), + [sym_boolean_literal] = STATE(682), + [sym_primitive_type] = STATE(271), + [sym_identifier] = STATE(271), + [aux_sym_delim_token_tree_repeat1] = STATE(271), + [sym__primitive_identifier] = ACTIONS(2531), + [anon_sym_LPAREN] = ACTIONS(2533), + [anon_sym_RPAREN] = ACTIONS(2652), + [anon_sym_LBRACE] = ACTIONS(2535), + [anon_sym_LBRACK] = ACTIONS(2537), + [anon_sym_DOLLAR] = ACTIONS(2541), + [aux_sym__non_special_token_token1] = ACTIONS(2543), + [anon_sym_SQUOTE] = ACTIONS(2543), + [anon_sym_as] = ACTIONS(2543), + [anon_sym_async] = ACTIONS(2543), + [anon_sym_await] = ACTIONS(2543), + [anon_sym_break] = ACTIONS(2543), + [anon_sym_const] = ACTIONS(2543), + [anon_sym_continue] = ACTIONS(2543), + [anon_sym_default] = ACTIONS(2543), + [anon_sym_enum] = ACTIONS(2543), + [anon_sym_fn] = ACTIONS(2543), + [anon_sym_for] = ACTIONS(2543), + [anon_sym_if] = ACTIONS(2543), + [anon_sym_impl] = ACTIONS(2543), + [anon_sym_let] = ACTIONS(2543), + [anon_sym_loop] = ACTIONS(2543), + [anon_sym_match] = ACTIONS(2543), + [anon_sym_mod] = ACTIONS(2543), + [anon_sym_pub] = ACTIONS(2543), + [anon_sym_return] = ACTIONS(2543), + [anon_sym_static] = ACTIONS(2543), + [anon_sym_struct] = ACTIONS(2543), + [anon_sym_trait] = ACTIONS(2543), + [anon_sym_type] = ACTIONS(2543), + [anon_sym_union] = ACTIONS(2543), + [anon_sym_unsafe] = ACTIONS(2543), + [anon_sym_use] = ACTIONS(2543), + [anon_sym_where] = ACTIONS(2543), + [anon_sym_while] = ACTIONS(2543), + [sym_mutable_specifier] = ACTIONS(2543), + [sym_integer_literal] = ACTIONS(2545), + [aux_sym_string_literal_token1] = ACTIONS(2547), + [sym_char_literal] = ACTIONS(2545), + [anon_sym_true] = ACTIONS(2549), + [anon_sym_false] = ACTIONS(2549), + [anon_sym_u8] = ACTIONS(2551), + [anon_sym_i8] = ACTIONS(2551), + [anon_sym_u16] = ACTIONS(2551), + [anon_sym_i16] = ACTIONS(2551), + [anon_sym_u32] = ACTIONS(2551), + [anon_sym_i32] = ACTIONS(2551), + [anon_sym_u64] = ACTIONS(2551), + [anon_sym_i64] = ACTIONS(2551), + [anon_sym_u128] = ACTIONS(2551), + [anon_sym_i128] = ACTIONS(2551), + [anon_sym_isize] = ACTIONS(2551), + [anon_sym_usize] = ACTIONS(2551), + [anon_sym_f32] = ACTIONS(2551), + [anon_sym_f64] = ACTIONS(2551), + [anon_sym_bool] = ACTIONS(2551), + [anon_sym_str] = ACTIONS(2551), + [anon_sym_char] = ACTIONS(2551), + [sym_line_comment] = ACTIONS(1112), + [sym__raw_identifier] = ACTIONS(2553), + [sym_self] = ACTIONS(2543), + [sym_super] = ACTIONS(2543), + [sym_crate] = ACTIONS(2543), + [sym_grit_metavariable] = ACTIONS(2555), + [sym_raw_string_literal] = ACTIONS(2545), + [sym_float_literal] = ACTIONS(2545), [sym_block_comment] = ACTIONS(3), }, [548] = { - [sym_token_tree] = STATE(263), - [sym_token_repetition] = STATE(263), - [sym__literal] = STATE(263), - [sym_string_literal] = STATE(656), - [sym_boolean_literal] = STATE(656), - [sym_primitive_type] = STATE(263), - [sym_identifier] = STATE(263), - [aux_sym_token_tree_repeat1] = STATE(263), - [sym__primitive_identifier] = ACTIONS(1300), - [anon_sym_LPAREN] = ACTIONS(2591), - [anon_sym_LBRACE] = ACTIONS(2593), - [anon_sym_RBRACE] = ACTIONS(2597), - [anon_sym_LBRACK] = ACTIONS(2595), - [anon_sym_DOLLAR] = ACTIONS(2599), - [aux_sym__non_special_token_token1] = ACTIONS(2601), - [anon_sym_SQUOTE] = ACTIONS(2601), - [anon_sym_as] = ACTIONS(2601), - [anon_sym_async] = ACTIONS(2601), - [anon_sym_await] = 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_where] = ACTIONS(2601), - [anon_sym_while] = ACTIONS(2601), - [sym_mutable_specifier] = ACTIONS(2601), - [sym_integer_literal] = ACTIONS(1314), - [aux_sym_string_literal_token1] = ACTIONS(1316), - [sym_char_literal] = ACTIONS(1314), - [anon_sym_true] = ACTIONS(1318), - [anon_sym_false] = ACTIONS(1318), - [anon_sym_u8] = ACTIONS(1320), - [anon_sym_i8] = ACTIONS(1320), - [anon_sym_u16] = ACTIONS(1320), - [anon_sym_i16] = ACTIONS(1320), - [anon_sym_u32] = ACTIONS(1320), - [anon_sym_i32] = ACTIONS(1320), - [anon_sym_u64] = ACTIONS(1320), - [anon_sym_i64] = ACTIONS(1320), - [anon_sym_u128] = ACTIONS(1320), - [anon_sym_i128] = ACTIONS(1320), - [anon_sym_isize] = ACTIONS(1320), - [anon_sym_usize] = ACTIONS(1320), - [anon_sym_f32] = ACTIONS(1320), - [anon_sym_f64] = ACTIONS(1320), - [anon_sym_bool] = ACTIONS(1320), - [anon_sym_str] = ACTIONS(1320), - [anon_sym_char] = ACTIONS(1320), - [sym_line_comment] = ACTIONS(1172), - [sym__raw_identifier] = ACTIONS(1322), - [sym_self] = ACTIONS(2601), - [sym_super] = ACTIONS(2601), - [sym_crate] = ACTIONS(2601), - [sym_metavariable] = ACTIONS(2603), - [sym_grit_metavariable] = ACTIONS(2605), - [sym_raw_string_literal] = ACTIONS(1314), - [sym_float_literal] = ACTIONS(1314), + [sym_delim_token_tree] = STATE(271), + [sym__delim_tokens] = STATE(271), + [sym__non_delim_token] = STATE(271), + [sym__literal] = STATE(271), + [sym_string_literal] = STATE(682), + [sym_boolean_literal] = STATE(682), + [sym_primitive_type] = STATE(271), + [sym_identifier] = STATE(271), + [aux_sym_delim_token_tree_repeat1] = STATE(271), + [sym__primitive_identifier] = ACTIONS(2531), + [anon_sym_LPAREN] = ACTIONS(2533), + [anon_sym_LBRACE] = ACTIONS(2535), + [anon_sym_RBRACE] = ACTIONS(2652), + [anon_sym_LBRACK] = ACTIONS(2537), + [anon_sym_DOLLAR] = ACTIONS(2541), + [aux_sym__non_special_token_token1] = ACTIONS(2543), + [anon_sym_SQUOTE] = ACTIONS(2543), + [anon_sym_as] = ACTIONS(2543), + [anon_sym_async] = ACTIONS(2543), + [anon_sym_await] = ACTIONS(2543), + [anon_sym_break] = ACTIONS(2543), + [anon_sym_const] = ACTIONS(2543), + [anon_sym_continue] = ACTIONS(2543), + [anon_sym_default] = ACTIONS(2543), + [anon_sym_enum] = ACTIONS(2543), + [anon_sym_fn] = ACTIONS(2543), + [anon_sym_for] = ACTIONS(2543), + [anon_sym_if] = ACTIONS(2543), + [anon_sym_impl] = ACTIONS(2543), + [anon_sym_let] = ACTIONS(2543), + [anon_sym_loop] = ACTIONS(2543), + [anon_sym_match] = ACTIONS(2543), + [anon_sym_mod] = ACTIONS(2543), + [anon_sym_pub] = ACTIONS(2543), + [anon_sym_return] = ACTIONS(2543), + [anon_sym_static] = ACTIONS(2543), + [anon_sym_struct] = ACTIONS(2543), + [anon_sym_trait] = ACTIONS(2543), + [anon_sym_type] = ACTIONS(2543), + [anon_sym_union] = ACTIONS(2543), + [anon_sym_unsafe] = ACTIONS(2543), + [anon_sym_use] = ACTIONS(2543), + [anon_sym_where] = ACTIONS(2543), + [anon_sym_while] = ACTIONS(2543), + [sym_mutable_specifier] = ACTIONS(2543), + [sym_integer_literal] = ACTIONS(2545), + [aux_sym_string_literal_token1] = ACTIONS(2547), + [sym_char_literal] = ACTIONS(2545), + [anon_sym_true] = ACTIONS(2549), + [anon_sym_false] = ACTIONS(2549), + [anon_sym_u8] = ACTIONS(2551), + [anon_sym_i8] = ACTIONS(2551), + [anon_sym_u16] = ACTIONS(2551), + [anon_sym_i16] = ACTIONS(2551), + [anon_sym_u32] = ACTIONS(2551), + [anon_sym_i32] = ACTIONS(2551), + [anon_sym_u64] = ACTIONS(2551), + [anon_sym_i64] = ACTIONS(2551), + [anon_sym_u128] = ACTIONS(2551), + [anon_sym_i128] = ACTIONS(2551), + [anon_sym_isize] = ACTIONS(2551), + [anon_sym_usize] = ACTIONS(2551), + [anon_sym_f32] = ACTIONS(2551), + [anon_sym_f64] = ACTIONS(2551), + [anon_sym_bool] = ACTIONS(2551), + [anon_sym_str] = ACTIONS(2551), + [anon_sym_char] = ACTIONS(2551), + [sym_line_comment] = ACTIONS(1112), + [sym__raw_identifier] = ACTIONS(2553), + [sym_self] = ACTIONS(2543), + [sym_super] = ACTIONS(2543), + [sym_crate] = ACTIONS(2543), + [sym_grit_metavariable] = ACTIONS(2555), + [sym_raw_string_literal] = ACTIONS(2545), + [sym_float_literal] = ACTIONS(2545), [sym_block_comment] = ACTIONS(3), }, [549] = { - [sym_token_tree] = STATE(263), - [sym_token_repetition] = STATE(263), - [sym__literal] = STATE(263), - [sym_string_literal] = STATE(656), - [sym_boolean_literal] = STATE(656), - [sym_primitive_type] = STATE(263), - [sym_identifier] = STATE(263), - [aux_sym_token_tree_repeat1] = STATE(263), - [sym__primitive_identifier] = ACTIONS(1300), - [anon_sym_LPAREN] = ACTIONS(2591), - [anon_sym_RPAREN] = ACTIONS(2597), - [anon_sym_LBRACE] = ACTIONS(2593), - [anon_sym_LBRACK] = ACTIONS(2595), - [anon_sym_DOLLAR] = ACTIONS(2599), - [aux_sym__non_special_token_token1] = ACTIONS(2601), - [anon_sym_SQUOTE] = ACTIONS(2601), - [anon_sym_as] = ACTIONS(2601), - [anon_sym_async] = ACTIONS(2601), - [anon_sym_await] = 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_where] = ACTIONS(2601), - [anon_sym_while] = ACTIONS(2601), - [sym_mutable_specifier] = ACTIONS(2601), - [sym_integer_literal] = ACTIONS(1314), - [aux_sym_string_literal_token1] = ACTIONS(1316), - [sym_char_literal] = ACTIONS(1314), - [anon_sym_true] = ACTIONS(1318), - [anon_sym_false] = ACTIONS(1318), - [anon_sym_u8] = ACTIONS(1320), - [anon_sym_i8] = ACTIONS(1320), - [anon_sym_u16] = ACTIONS(1320), - [anon_sym_i16] = ACTIONS(1320), - [anon_sym_u32] = ACTIONS(1320), - [anon_sym_i32] = ACTIONS(1320), - [anon_sym_u64] = ACTIONS(1320), - [anon_sym_i64] = ACTIONS(1320), - [anon_sym_u128] = ACTIONS(1320), - [anon_sym_i128] = ACTIONS(1320), - [anon_sym_isize] = ACTIONS(1320), - [anon_sym_usize] = ACTIONS(1320), - [anon_sym_f32] = ACTIONS(1320), - [anon_sym_f64] = ACTIONS(1320), - [anon_sym_bool] = ACTIONS(1320), - [anon_sym_str] = ACTIONS(1320), - [anon_sym_char] = ACTIONS(1320), - [sym_line_comment] = ACTIONS(1172), - [sym__raw_identifier] = ACTIONS(1322), - [sym_self] = ACTIONS(2601), - [sym_super] = ACTIONS(2601), - [sym_crate] = ACTIONS(2601), - [sym_metavariable] = ACTIONS(2603), - [sym_grit_metavariable] = ACTIONS(2605), - [sym_raw_string_literal] = ACTIONS(1314), - [sym_float_literal] = ACTIONS(1314), + [sym_delim_token_tree] = STATE(271), + [sym__delim_tokens] = STATE(271), + [sym__non_delim_token] = STATE(271), + [sym__literal] = STATE(271), + [sym_string_literal] = STATE(682), + [sym_boolean_literal] = STATE(682), + [sym_primitive_type] = STATE(271), + [sym_identifier] = STATE(271), + [aux_sym_delim_token_tree_repeat1] = STATE(271), + [sym__primitive_identifier] = ACTIONS(2531), + [anon_sym_LPAREN] = ACTIONS(2533), + [anon_sym_LBRACE] = ACTIONS(2535), + [anon_sym_LBRACK] = ACTIONS(2537), + [anon_sym_RBRACK] = ACTIONS(2652), + [anon_sym_DOLLAR] = ACTIONS(2541), + [aux_sym__non_special_token_token1] = ACTIONS(2543), + [anon_sym_SQUOTE] = ACTIONS(2543), + [anon_sym_as] = ACTIONS(2543), + [anon_sym_async] = ACTIONS(2543), + [anon_sym_await] = ACTIONS(2543), + [anon_sym_break] = ACTIONS(2543), + [anon_sym_const] = ACTIONS(2543), + [anon_sym_continue] = ACTIONS(2543), + [anon_sym_default] = ACTIONS(2543), + [anon_sym_enum] = ACTIONS(2543), + [anon_sym_fn] = ACTIONS(2543), + [anon_sym_for] = ACTIONS(2543), + [anon_sym_if] = ACTIONS(2543), + [anon_sym_impl] = ACTIONS(2543), + [anon_sym_let] = ACTIONS(2543), + [anon_sym_loop] = ACTIONS(2543), + [anon_sym_match] = ACTIONS(2543), + [anon_sym_mod] = ACTIONS(2543), + [anon_sym_pub] = ACTIONS(2543), + [anon_sym_return] = ACTIONS(2543), + [anon_sym_static] = ACTIONS(2543), + [anon_sym_struct] = ACTIONS(2543), + [anon_sym_trait] = ACTIONS(2543), + [anon_sym_type] = ACTIONS(2543), + [anon_sym_union] = ACTIONS(2543), + [anon_sym_unsafe] = ACTIONS(2543), + [anon_sym_use] = ACTIONS(2543), + [anon_sym_where] = ACTIONS(2543), + [anon_sym_while] = ACTIONS(2543), + [sym_mutable_specifier] = ACTIONS(2543), + [sym_integer_literal] = ACTIONS(2545), + [aux_sym_string_literal_token1] = ACTIONS(2547), + [sym_char_literal] = ACTIONS(2545), + [anon_sym_true] = ACTIONS(2549), + [anon_sym_false] = ACTIONS(2549), + [anon_sym_u8] = ACTIONS(2551), + [anon_sym_i8] = ACTIONS(2551), + [anon_sym_u16] = ACTIONS(2551), + [anon_sym_i16] = ACTIONS(2551), + [anon_sym_u32] = ACTIONS(2551), + [anon_sym_i32] = ACTIONS(2551), + [anon_sym_u64] = ACTIONS(2551), + [anon_sym_i64] = ACTIONS(2551), + [anon_sym_u128] = ACTIONS(2551), + [anon_sym_i128] = ACTIONS(2551), + [anon_sym_isize] = ACTIONS(2551), + [anon_sym_usize] = ACTIONS(2551), + [anon_sym_f32] = ACTIONS(2551), + [anon_sym_f64] = ACTIONS(2551), + [anon_sym_bool] = ACTIONS(2551), + [anon_sym_str] = ACTIONS(2551), + [anon_sym_char] = ACTIONS(2551), + [sym_line_comment] = ACTIONS(1112), + [sym__raw_identifier] = ACTIONS(2553), + [sym_self] = ACTIONS(2543), + [sym_super] = ACTIONS(2543), + [sym_crate] = ACTIONS(2543), + [sym_grit_metavariable] = ACTIONS(2555), + [sym_raw_string_literal] = ACTIONS(2545), + [sym_float_literal] = ACTIONS(2545), [sym_block_comment] = ACTIONS(3), }, [550] = { - [sym_token_tree] = STATE(547), - [sym_token_repetition] = STATE(547), - [sym__literal] = STATE(547), - [sym_string_literal] = STATE(656), - [sym_boolean_literal] = STATE(656), - [sym_primitive_type] = STATE(547), - [sym_identifier] = STATE(547), - [aux_sym_token_tree_repeat1] = STATE(547), - [sym__primitive_identifier] = ACTIONS(1300), - [anon_sym_LPAREN] = ACTIONS(2591), - [anon_sym_LBRACE] = ACTIONS(2593), - [anon_sym_LBRACK] = ACTIONS(2595), - [anon_sym_RBRACK] = ACTIONS(2607), - [anon_sym_DOLLAR] = ACTIONS(2599), - [aux_sym__non_special_token_token1] = ACTIONS(2609), - [anon_sym_SQUOTE] = ACTIONS(2609), - [anon_sym_as] = ACTIONS(2609), - [anon_sym_async] = ACTIONS(2609), - [anon_sym_await] = 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_where] = ACTIONS(2609), - [anon_sym_while] = ACTIONS(2609), - [sym_mutable_specifier] = ACTIONS(2609), - [sym_integer_literal] = ACTIONS(1314), - [aux_sym_string_literal_token1] = ACTIONS(1316), - [sym_char_literal] = ACTIONS(1314), - [anon_sym_true] = ACTIONS(1318), - [anon_sym_false] = ACTIONS(1318), - [anon_sym_u8] = ACTIONS(1320), - [anon_sym_i8] = ACTIONS(1320), - [anon_sym_u16] = ACTIONS(1320), - [anon_sym_i16] = ACTIONS(1320), - [anon_sym_u32] = ACTIONS(1320), - [anon_sym_i32] = ACTIONS(1320), - [anon_sym_u64] = ACTIONS(1320), - [anon_sym_i64] = ACTIONS(1320), - [anon_sym_u128] = ACTIONS(1320), - [anon_sym_i128] = ACTIONS(1320), - [anon_sym_isize] = ACTIONS(1320), - [anon_sym_usize] = ACTIONS(1320), - [anon_sym_f32] = ACTIONS(1320), - [anon_sym_f64] = ACTIONS(1320), - [anon_sym_bool] = ACTIONS(1320), - [anon_sym_str] = ACTIONS(1320), - [anon_sym_char] = ACTIONS(1320), - [sym_line_comment] = ACTIONS(1172), - [sym__raw_identifier] = ACTIONS(1322), - [sym_self] = ACTIONS(2609), - [sym_super] = ACTIONS(2609), - [sym_crate] = ACTIONS(2609), - [sym_metavariable] = ACTIONS(2611), - [sym_grit_metavariable] = ACTIONS(2605), - [sym_raw_string_literal] = ACTIONS(1314), - [sym_float_literal] = ACTIONS(1314), + [sym_delim_token_tree] = STATE(271), + [sym__delim_tokens] = STATE(271), + [sym__non_delim_token] = STATE(271), + [sym__literal] = STATE(271), + [sym_string_literal] = STATE(682), + [sym_boolean_literal] = STATE(682), + [sym_primitive_type] = STATE(271), + [sym_identifier] = STATE(271), + [aux_sym_delim_token_tree_repeat1] = STATE(271), + [sym__primitive_identifier] = ACTIONS(2531), + [anon_sym_LPAREN] = ACTIONS(2533), + [anon_sym_RPAREN] = ACTIONS(2654), + [anon_sym_LBRACE] = ACTIONS(2535), + [anon_sym_LBRACK] = ACTIONS(2537), + [anon_sym_DOLLAR] = ACTIONS(2541), + [aux_sym__non_special_token_token1] = ACTIONS(2543), + [anon_sym_SQUOTE] = ACTIONS(2543), + [anon_sym_as] = ACTIONS(2543), + [anon_sym_async] = ACTIONS(2543), + [anon_sym_await] = ACTIONS(2543), + [anon_sym_break] = ACTIONS(2543), + [anon_sym_const] = ACTIONS(2543), + [anon_sym_continue] = ACTIONS(2543), + [anon_sym_default] = ACTIONS(2543), + [anon_sym_enum] = ACTIONS(2543), + [anon_sym_fn] = ACTIONS(2543), + [anon_sym_for] = ACTIONS(2543), + [anon_sym_if] = ACTIONS(2543), + [anon_sym_impl] = ACTIONS(2543), + [anon_sym_let] = ACTIONS(2543), + [anon_sym_loop] = ACTIONS(2543), + [anon_sym_match] = ACTIONS(2543), + [anon_sym_mod] = ACTIONS(2543), + [anon_sym_pub] = ACTIONS(2543), + [anon_sym_return] = ACTIONS(2543), + [anon_sym_static] = ACTIONS(2543), + [anon_sym_struct] = ACTIONS(2543), + [anon_sym_trait] = ACTIONS(2543), + [anon_sym_type] = ACTIONS(2543), + [anon_sym_union] = ACTIONS(2543), + [anon_sym_unsafe] = ACTIONS(2543), + [anon_sym_use] = ACTIONS(2543), + [anon_sym_where] = ACTIONS(2543), + [anon_sym_while] = ACTIONS(2543), + [sym_mutable_specifier] = ACTIONS(2543), + [sym_integer_literal] = ACTIONS(2545), + [aux_sym_string_literal_token1] = ACTIONS(2547), + [sym_char_literal] = ACTIONS(2545), + [anon_sym_true] = ACTIONS(2549), + [anon_sym_false] = ACTIONS(2549), + [anon_sym_u8] = ACTIONS(2551), + [anon_sym_i8] = ACTIONS(2551), + [anon_sym_u16] = ACTIONS(2551), + [anon_sym_i16] = ACTIONS(2551), + [anon_sym_u32] = ACTIONS(2551), + [anon_sym_i32] = ACTIONS(2551), + [anon_sym_u64] = ACTIONS(2551), + [anon_sym_i64] = ACTIONS(2551), + [anon_sym_u128] = ACTIONS(2551), + [anon_sym_i128] = ACTIONS(2551), + [anon_sym_isize] = ACTIONS(2551), + [anon_sym_usize] = ACTIONS(2551), + [anon_sym_f32] = ACTIONS(2551), + [anon_sym_f64] = ACTIONS(2551), + [anon_sym_bool] = ACTIONS(2551), + [anon_sym_str] = ACTIONS(2551), + [anon_sym_char] = ACTIONS(2551), + [sym_line_comment] = ACTIONS(1112), + [sym__raw_identifier] = ACTIONS(2553), + [sym_self] = ACTIONS(2543), + [sym_super] = ACTIONS(2543), + [sym_crate] = ACTIONS(2543), + [sym_grit_metavariable] = ACTIONS(2555), + [sym_raw_string_literal] = ACTIONS(2545), + [sym_float_literal] = ACTIONS(2545), [sym_block_comment] = ACTIONS(3), }, [551] = { - [sym_token_tree] = STATE(548), - [sym_token_repetition] = STATE(548), - [sym__literal] = STATE(548), - [sym_string_literal] = STATE(656), - [sym_boolean_literal] = STATE(656), - [sym_primitive_type] = STATE(548), - [sym_identifier] = STATE(548), - [aux_sym_token_tree_repeat1] = STATE(548), - [sym__primitive_identifier] = ACTIONS(1300), - [anon_sym_LPAREN] = ACTIONS(2591), - [anon_sym_LBRACE] = ACTIONS(2593), - [anon_sym_RBRACE] = ACTIONS(2607), - [anon_sym_LBRACK] = ACTIONS(2595), - [anon_sym_DOLLAR] = ACTIONS(2599), - [aux_sym__non_special_token_token1] = ACTIONS(2613), - [anon_sym_SQUOTE] = ACTIONS(2613), - [anon_sym_as] = ACTIONS(2613), - [anon_sym_async] = ACTIONS(2613), - [anon_sym_await] = 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_where] = ACTIONS(2613), - [anon_sym_while] = ACTIONS(2613), - [sym_mutable_specifier] = ACTIONS(2613), - [sym_integer_literal] = ACTIONS(1314), - [aux_sym_string_literal_token1] = ACTIONS(1316), - [sym_char_literal] = ACTIONS(1314), - [anon_sym_true] = ACTIONS(1318), - [anon_sym_false] = ACTIONS(1318), - [anon_sym_u8] = ACTIONS(1320), - [anon_sym_i8] = ACTIONS(1320), - [anon_sym_u16] = ACTIONS(1320), - [anon_sym_i16] = ACTIONS(1320), - [anon_sym_u32] = ACTIONS(1320), - [anon_sym_i32] = ACTIONS(1320), - [anon_sym_u64] = ACTIONS(1320), - [anon_sym_i64] = ACTIONS(1320), - [anon_sym_u128] = ACTIONS(1320), - [anon_sym_i128] = ACTIONS(1320), - [anon_sym_isize] = ACTIONS(1320), - [anon_sym_usize] = ACTIONS(1320), - [anon_sym_f32] = ACTIONS(1320), - [anon_sym_f64] = ACTIONS(1320), - [anon_sym_bool] = ACTIONS(1320), - [anon_sym_str] = ACTIONS(1320), - [anon_sym_char] = ACTIONS(1320), - [sym_line_comment] = ACTIONS(1172), - [sym__raw_identifier] = ACTIONS(1322), - [sym_self] = ACTIONS(2613), - [sym_super] = ACTIONS(2613), - [sym_crate] = ACTIONS(2613), - [sym_metavariable] = ACTIONS(2615), - [sym_grit_metavariable] = ACTIONS(2605), - [sym_raw_string_literal] = ACTIONS(1314), - [sym_float_literal] = ACTIONS(1314), + [sym_delim_token_tree] = STATE(567), + [sym__delim_tokens] = STATE(567), + [sym__non_delim_token] = STATE(567), + [sym__literal] = STATE(567), + [sym_string_literal] = STATE(682), + [sym_boolean_literal] = STATE(682), + [sym_primitive_type] = STATE(567), + [sym_identifier] = STATE(567), + [aux_sym_delim_token_tree_repeat1] = STATE(567), + [sym__primitive_identifier] = ACTIONS(2531), + [anon_sym_LPAREN] = ACTIONS(2533), + [anon_sym_RPAREN] = ACTIONS(2599), + [anon_sym_LBRACE] = ACTIONS(2535), + [anon_sym_LBRACK] = ACTIONS(2537), + [anon_sym_DOLLAR] = ACTIONS(2656), + [aux_sym__non_special_token_token1] = ACTIONS(2658), + [anon_sym_SQUOTE] = ACTIONS(2658), + [anon_sym_as] = ACTIONS(2658), + [anon_sym_async] = ACTIONS(2658), + [anon_sym_await] = ACTIONS(2658), + [anon_sym_break] = ACTIONS(2658), + [anon_sym_const] = ACTIONS(2658), + [anon_sym_continue] = ACTIONS(2658), + [anon_sym_default] = ACTIONS(2658), + [anon_sym_enum] = ACTIONS(2658), + [anon_sym_fn] = ACTIONS(2658), + [anon_sym_for] = ACTIONS(2658), + [anon_sym_if] = ACTIONS(2658), + [anon_sym_impl] = ACTIONS(2658), + [anon_sym_let] = ACTIONS(2658), + [anon_sym_loop] = ACTIONS(2658), + [anon_sym_match] = ACTIONS(2658), + [anon_sym_mod] = ACTIONS(2658), + [anon_sym_pub] = ACTIONS(2658), + [anon_sym_return] = ACTIONS(2658), + [anon_sym_static] = ACTIONS(2658), + [anon_sym_struct] = ACTIONS(2658), + [anon_sym_trait] = ACTIONS(2658), + [anon_sym_type] = ACTIONS(2658), + [anon_sym_union] = ACTIONS(2658), + [anon_sym_unsafe] = ACTIONS(2658), + [anon_sym_use] = ACTIONS(2658), + [anon_sym_where] = ACTIONS(2658), + [anon_sym_while] = ACTIONS(2658), + [sym_mutable_specifier] = ACTIONS(2658), + [sym_integer_literal] = ACTIONS(2545), + [aux_sym_string_literal_token1] = ACTIONS(2547), + [sym_char_literal] = ACTIONS(2545), + [anon_sym_true] = ACTIONS(2549), + [anon_sym_false] = ACTIONS(2549), + [anon_sym_u8] = ACTIONS(2551), + [anon_sym_i8] = ACTIONS(2551), + [anon_sym_u16] = ACTIONS(2551), + [anon_sym_i16] = ACTIONS(2551), + [anon_sym_u32] = ACTIONS(2551), + [anon_sym_i32] = ACTIONS(2551), + [anon_sym_u64] = ACTIONS(2551), + [anon_sym_i64] = ACTIONS(2551), + [anon_sym_u128] = ACTIONS(2551), + [anon_sym_i128] = ACTIONS(2551), + [anon_sym_isize] = ACTIONS(2551), + [anon_sym_usize] = ACTIONS(2551), + [anon_sym_f32] = ACTIONS(2551), + [anon_sym_f64] = ACTIONS(2551), + [anon_sym_bool] = ACTIONS(2551), + [anon_sym_str] = ACTIONS(2551), + [anon_sym_char] = ACTIONS(2551), + [sym_line_comment] = ACTIONS(1112), + [sym__raw_identifier] = ACTIONS(2553), + [sym_self] = ACTIONS(2658), + [sym_super] = ACTIONS(2658), + [sym_crate] = ACTIONS(2658), + [sym_grit_metavariable] = ACTIONS(2555), + [sym_raw_string_literal] = ACTIONS(2545), + [sym_float_literal] = ACTIONS(2545), [sym_block_comment] = ACTIONS(3), }, [552] = { - [sym_token_tree] = STATE(549), - [sym_token_repetition] = STATE(549), - [sym__literal] = STATE(549), - [sym_string_literal] = STATE(656), - [sym_boolean_literal] = STATE(656), - [sym_primitive_type] = STATE(549), - [sym_identifier] = STATE(549), - [aux_sym_token_tree_repeat1] = STATE(549), - [sym__primitive_identifier] = ACTIONS(1300), - [anon_sym_LPAREN] = ACTIONS(2591), - [anon_sym_RPAREN] = ACTIONS(2607), - [anon_sym_LBRACE] = ACTIONS(2593), - [anon_sym_LBRACK] = ACTIONS(2595), - [anon_sym_DOLLAR] = ACTIONS(2599), - [aux_sym__non_special_token_token1] = ACTIONS(2617), - [anon_sym_SQUOTE] = ACTIONS(2617), - [anon_sym_as] = ACTIONS(2617), - [anon_sym_async] = ACTIONS(2617), - [anon_sym_await] = ACTIONS(2617), - [anon_sym_break] = ACTIONS(2617), - [anon_sym_const] = ACTIONS(2617), - [anon_sym_continue] = ACTIONS(2617), - [anon_sym_default] = ACTIONS(2617), - [anon_sym_enum] = ACTIONS(2617), - [anon_sym_fn] = ACTIONS(2617), - [anon_sym_for] = ACTIONS(2617), - [anon_sym_if] = ACTIONS(2617), - [anon_sym_impl] = ACTIONS(2617), - [anon_sym_let] = ACTIONS(2617), - [anon_sym_loop] = ACTIONS(2617), - [anon_sym_match] = ACTIONS(2617), - [anon_sym_mod] = ACTIONS(2617), - [anon_sym_pub] = ACTIONS(2617), - [anon_sym_return] = ACTIONS(2617), - [anon_sym_static] = ACTIONS(2617), - [anon_sym_struct] = ACTIONS(2617), - [anon_sym_trait] = ACTIONS(2617), - [anon_sym_type] = ACTIONS(2617), - [anon_sym_union] = ACTIONS(2617), - [anon_sym_unsafe] = ACTIONS(2617), - [anon_sym_use] = ACTIONS(2617), - [anon_sym_where] = ACTIONS(2617), - [anon_sym_while] = ACTIONS(2617), - [sym_mutable_specifier] = ACTIONS(2617), - [sym_integer_literal] = ACTIONS(1314), - [aux_sym_string_literal_token1] = ACTIONS(1316), - [sym_char_literal] = ACTIONS(1314), - [anon_sym_true] = ACTIONS(1318), - [anon_sym_false] = ACTIONS(1318), - [anon_sym_u8] = ACTIONS(1320), - [anon_sym_i8] = ACTIONS(1320), - [anon_sym_u16] = ACTIONS(1320), - [anon_sym_i16] = ACTIONS(1320), - [anon_sym_u32] = ACTIONS(1320), - [anon_sym_i32] = ACTIONS(1320), - [anon_sym_u64] = ACTIONS(1320), - [anon_sym_i64] = ACTIONS(1320), - [anon_sym_u128] = ACTIONS(1320), - [anon_sym_i128] = ACTIONS(1320), - [anon_sym_isize] = ACTIONS(1320), - [anon_sym_usize] = ACTIONS(1320), - [anon_sym_f32] = ACTIONS(1320), - [anon_sym_f64] = ACTIONS(1320), - [anon_sym_bool] = ACTIONS(1320), - [anon_sym_str] = ACTIONS(1320), - [anon_sym_char] = ACTIONS(1320), - [sym_line_comment] = ACTIONS(1172), - [sym__raw_identifier] = ACTIONS(1322), - [sym_self] = ACTIONS(2617), - [sym_super] = ACTIONS(2617), - [sym_crate] = ACTIONS(2617), - [sym_metavariable] = ACTIONS(2619), - [sym_grit_metavariable] = ACTIONS(2605), - [sym_raw_string_literal] = ACTIONS(1314), - [sym_float_literal] = ACTIONS(1314), + [sym_delim_token_tree] = STATE(271), + [sym__delim_tokens] = STATE(271), + [sym__non_delim_token] = STATE(271), + [sym__literal] = STATE(271), + [sym_string_literal] = STATE(682), + [sym_boolean_literal] = STATE(682), + [sym_primitive_type] = STATE(271), + [sym_identifier] = STATE(271), + [aux_sym_delim_token_tree_repeat1] = STATE(271), + [sym__primitive_identifier] = ACTIONS(2531), + [anon_sym_LPAREN] = ACTIONS(2533), + [anon_sym_LBRACE] = ACTIONS(2535), + [anon_sym_RBRACE] = ACTIONS(2654), + [anon_sym_LBRACK] = ACTIONS(2537), + [anon_sym_DOLLAR] = ACTIONS(2541), + [aux_sym__non_special_token_token1] = ACTIONS(2543), + [anon_sym_SQUOTE] = ACTIONS(2543), + [anon_sym_as] = ACTIONS(2543), + [anon_sym_async] = ACTIONS(2543), + [anon_sym_await] = ACTIONS(2543), + [anon_sym_break] = ACTIONS(2543), + [anon_sym_const] = ACTIONS(2543), + [anon_sym_continue] = ACTIONS(2543), + [anon_sym_default] = ACTIONS(2543), + [anon_sym_enum] = ACTIONS(2543), + [anon_sym_fn] = ACTIONS(2543), + [anon_sym_for] = ACTIONS(2543), + [anon_sym_if] = ACTIONS(2543), + [anon_sym_impl] = ACTIONS(2543), + [anon_sym_let] = ACTIONS(2543), + [anon_sym_loop] = ACTIONS(2543), + [anon_sym_match] = ACTIONS(2543), + [anon_sym_mod] = ACTIONS(2543), + [anon_sym_pub] = ACTIONS(2543), + [anon_sym_return] = ACTIONS(2543), + [anon_sym_static] = ACTIONS(2543), + [anon_sym_struct] = ACTIONS(2543), + [anon_sym_trait] = ACTIONS(2543), + [anon_sym_type] = ACTIONS(2543), + [anon_sym_union] = ACTIONS(2543), + [anon_sym_unsafe] = ACTIONS(2543), + [anon_sym_use] = ACTIONS(2543), + [anon_sym_where] = ACTIONS(2543), + [anon_sym_while] = ACTIONS(2543), + [sym_mutable_specifier] = ACTIONS(2543), + [sym_integer_literal] = ACTIONS(2545), + [aux_sym_string_literal_token1] = ACTIONS(2547), + [sym_char_literal] = ACTIONS(2545), + [anon_sym_true] = ACTIONS(2549), + [anon_sym_false] = ACTIONS(2549), + [anon_sym_u8] = ACTIONS(2551), + [anon_sym_i8] = ACTIONS(2551), + [anon_sym_u16] = ACTIONS(2551), + [anon_sym_i16] = ACTIONS(2551), + [anon_sym_u32] = ACTIONS(2551), + [anon_sym_i32] = ACTIONS(2551), + [anon_sym_u64] = ACTIONS(2551), + [anon_sym_i64] = ACTIONS(2551), + [anon_sym_u128] = ACTIONS(2551), + [anon_sym_i128] = ACTIONS(2551), + [anon_sym_isize] = ACTIONS(2551), + [anon_sym_usize] = ACTIONS(2551), + [anon_sym_f32] = ACTIONS(2551), + [anon_sym_f64] = ACTIONS(2551), + [anon_sym_bool] = ACTIONS(2551), + [anon_sym_str] = ACTIONS(2551), + [anon_sym_char] = ACTIONS(2551), + [sym_line_comment] = ACTIONS(1112), + [sym__raw_identifier] = ACTIONS(2553), + [sym_self] = ACTIONS(2543), + [sym_super] = ACTIONS(2543), + [sym_crate] = ACTIONS(2543), + [sym_grit_metavariable] = ACTIONS(2555), + [sym_raw_string_literal] = ACTIONS(2545), + [sym_float_literal] = ACTIONS(2545), [sym_block_comment] = ACTIONS(3), }, [553] = { - [sym_delim_token_tree] = STATE(268), - [sym__delim_tokens] = STATE(268), - [sym__non_delim_token] = STATE(268), - [sym__literal] = STATE(268), - [sym_string_literal] = STATE(662), - [sym_boolean_literal] = STATE(662), - [sym_primitive_type] = STATE(268), - [sym_identifier] = STATE(268), - [aux_sym_delim_token_tree_repeat1] = STATE(268), - [sym__primitive_identifier] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2533), + [sym_delim_token_tree] = STATE(271), + [sym__delim_tokens] = STATE(271), + [sym__non_delim_token] = STATE(271), + [sym__literal] = STATE(271), + [sym_string_literal] = STATE(682), + [sym_boolean_literal] = STATE(682), + [sym_primitive_type] = STATE(271), + [sym_identifier] = STATE(271), + [aux_sym_delim_token_tree_repeat1] = STATE(271), + [sym__primitive_identifier] = ACTIONS(2531), + [anon_sym_LPAREN] = ACTIONS(2533), + [anon_sym_LBRACE] = ACTIONS(2535), [anon_sym_LBRACK] = ACTIONS(2537), - [anon_sym_RBRACK] = ACTIONS(2621), - [anon_sym_DOLLAR] = ACTIONS(2563), - [aux_sym__non_special_token_token1] = ACTIONS(2565), - [anon_sym_SQUOTE] = ACTIONS(2565), - [anon_sym_as] = ACTIONS(2565), - [anon_sym_async] = ACTIONS(2565), - [anon_sym_await] = ACTIONS(2565), - [anon_sym_break] = ACTIONS(2565), - [anon_sym_const] = ACTIONS(2565), - [anon_sym_continue] = ACTIONS(2565), - [anon_sym_default] = ACTIONS(2565), - [anon_sym_enum] = ACTIONS(2565), - [anon_sym_fn] = ACTIONS(2565), - [anon_sym_for] = ACTIONS(2565), - [anon_sym_if] = ACTIONS(2565), - [anon_sym_impl] = ACTIONS(2565), - [anon_sym_let] = ACTIONS(2565), - [anon_sym_loop] = ACTIONS(2565), - [anon_sym_match] = ACTIONS(2565), - [anon_sym_mod] = ACTIONS(2565), - [anon_sym_pub] = ACTIONS(2565), - [anon_sym_return] = ACTIONS(2565), - [anon_sym_static] = ACTIONS(2565), - [anon_sym_struct] = ACTIONS(2565), - [anon_sym_trait] = ACTIONS(2565), - [anon_sym_type] = ACTIONS(2565), - [anon_sym_union] = ACTIONS(2565), - [anon_sym_unsafe] = ACTIONS(2565), - [anon_sym_use] = ACTIONS(2565), - [anon_sym_where] = ACTIONS(2565), - [anon_sym_while] = ACTIONS(2565), - [sym_mutable_specifier] = ACTIONS(2565), - [sym_integer_literal] = ACTIONS(2543), - [aux_sym_string_literal_token1] = ACTIONS(2545), - [sym_char_literal] = ACTIONS(2543), - [anon_sym_true] = ACTIONS(2547), - [anon_sym_false] = ACTIONS(2547), - [anon_sym_u8] = ACTIONS(2549), - [anon_sym_i8] = ACTIONS(2549), - [anon_sym_u16] = ACTIONS(2549), - [anon_sym_i16] = ACTIONS(2549), - [anon_sym_u32] = ACTIONS(2549), - [anon_sym_i32] = ACTIONS(2549), - [anon_sym_u64] = ACTIONS(2549), - [anon_sym_i64] = ACTIONS(2549), - [anon_sym_u128] = ACTIONS(2549), - [anon_sym_i128] = ACTIONS(2549), - [anon_sym_isize] = ACTIONS(2549), - [anon_sym_usize] = ACTIONS(2549), - [anon_sym_f32] = ACTIONS(2549), - [anon_sym_f64] = ACTIONS(2549), - [anon_sym_bool] = ACTIONS(2549), - [anon_sym_str] = ACTIONS(2549), - [anon_sym_char] = ACTIONS(2549), - [sym_line_comment] = ACTIONS(1172), - [sym__raw_identifier] = ACTIONS(2551), - [sym_self] = ACTIONS(2565), - [sym_super] = ACTIONS(2565), - [sym_crate] = ACTIONS(2565), - [sym_grit_metavariable] = ACTIONS(2553), - [sym_raw_string_literal] = ACTIONS(2543), - [sym_float_literal] = ACTIONS(2543), + [anon_sym_RBRACK] = ACTIONS(2654), + [anon_sym_DOLLAR] = ACTIONS(2541), + [aux_sym__non_special_token_token1] = ACTIONS(2543), + [anon_sym_SQUOTE] = ACTIONS(2543), + [anon_sym_as] = ACTIONS(2543), + [anon_sym_async] = ACTIONS(2543), + [anon_sym_await] = ACTIONS(2543), + [anon_sym_break] = ACTIONS(2543), + [anon_sym_const] = ACTIONS(2543), + [anon_sym_continue] = ACTIONS(2543), + [anon_sym_default] = ACTIONS(2543), + [anon_sym_enum] = ACTIONS(2543), + [anon_sym_fn] = ACTIONS(2543), + [anon_sym_for] = ACTIONS(2543), + [anon_sym_if] = ACTIONS(2543), + [anon_sym_impl] = ACTIONS(2543), + [anon_sym_let] = ACTIONS(2543), + [anon_sym_loop] = ACTIONS(2543), + [anon_sym_match] = ACTIONS(2543), + [anon_sym_mod] = ACTIONS(2543), + [anon_sym_pub] = ACTIONS(2543), + [anon_sym_return] = ACTIONS(2543), + [anon_sym_static] = ACTIONS(2543), + [anon_sym_struct] = ACTIONS(2543), + [anon_sym_trait] = ACTIONS(2543), + [anon_sym_type] = ACTIONS(2543), + [anon_sym_union] = ACTIONS(2543), + [anon_sym_unsafe] = ACTIONS(2543), + [anon_sym_use] = ACTIONS(2543), + [anon_sym_where] = ACTIONS(2543), + [anon_sym_while] = ACTIONS(2543), + [sym_mutable_specifier] = ACTIONS(2543), + [sym_integer_literal] = ACTIONS(2545), + [aux_sym_string_literal_token1] = ACTIONS(2547), + [sym_char_literal] = ACTIONS(2545), + [anon_sym_true] = ACTIONS(2549), + [anon_sym_false] = ACTIONS(2549), + [anon_sym_u8] = ACTIONS(2551), + [anon_sym_i8] = ACTIONS(2551), + [anon_sym_u16] = ACTIONS(2551), + [anon_sym_i16] = ACTIONS(2551), + [anon_sym_u32] = ACTIONS(2551), + [anon_sym_i32] = ACTIONS(2551), + [anon_sym_u64] = ACTIONS(2551), + [anon_sym_i64] = ACTIONS(2551), + [anon_sym_u128] = ACTIONS(2551), + [anon_sym_i128] = ACTIONS(2551), + [anon_sym_isize] = ACTIONS(2551), + [anon_sym_usize] = ACTIONS(2551), + [anon_sym_f32] = ACTIONS(2551), + [anon_sym_f64] = ACTIONS(2551), + [anon_sym_bool] = ACTIONS(2551), + [anon_sym_str] = ACTIONS(2551), + [anon_sym_char] = ACTIONS(2551), + [sym_line_comment] = ACTIONS(1112), + [sym__raw_identifier] = ACTIONS(2553), + [sym_self] = ACTIONS(2543), + [sym_super] = ACTIONS(2543), + [sym_crate] = ACTIONS(2543), + [sym_grit_metavariable] = ACTIONS(2555), + [sym_raw_string_literal] = ACTIONS(2545), + [sym_float_literal] = ACTIONS(2545), [sym_block_comment] = ACTIONS(3), }, [554] = { - [sym_delim_token_tree] = STATE(268), - [sym__delim_tokens] = STATE(268), - [sym__non_delim_token] = STATE(268), - [sym__literal] = STATE(268), - [sym_string_literal] = STATE(662), - [sym_boolean_literal] = STATE(662), - [sym_primitive_type] = STATE(268), - [sym_identifier] = STATE(268), - [aux_sym_delim_token_tree_repeat1] = STATE(268), - [sym__primitive_identifier] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2533), - [anon_sym_RBRACE] = ACTIONS(2621), - [anon_sym_LBRACK] = ACTIONS(2537), - [anon_sym_DOLLAR] = ACTIONS(2563), - [aux_sym__non_special_token_token1] = ACTIONS(2565), - [anon_sym_SQUOTE] = ACTIONS(2565), - [anon_sym_as] = ACTIONS(2565), - [anon_sym_async] = ACTIONS(2565), - [anon_sym_await] = ACTIONS(2565), - [anon_sym_break] = ACTIONS(2565), - [anon_sym_const] = ACTIONS(2565), - [anon_sym_continue] = ACTIONS(2565), - [anon_sym_default] = ACTIONS(2565), - [anon_sym_enum] = ACTIONS(2565), - [anon_sym_fn] = ACTIONS(2565), - [anon_sym_for] = ACTIONS(2565), - [anon_sym_if] = ACTIONS(2565), - [anon_sym_impl] = ACTIONS(2565), - [anon_sym_let] = ACTIONS(2565), - [anon_sym_loop] = ACTIONS(2565), - [anon_sym_match] = ACTIONS(2565), - [anon_sym_mod] = ACTIONS(2565), - [anon_sym_pub] = ACTIONS(2565), - [anon_sym_return] = ACTIONS(2565), - [anon_sym_static] = ACTIONS(2565), - [anon_sym_struct] = ACTIONS(2565), - [anon_sym_trait] = ACTIONS(2565), - [anon_sym_type] = ACTIONS(2565), - [anon_sym_union] = ACTIONS(2565), - [anon_sym_unsafe] = ACTIONS(2565), - [anon_sym_use] = ACTIONS(2565), - [anon_sym_where] = ACTIONS(2565), - [anon_sym_while] = ACTIONS(2565), - [sym_mutable_specifier] = ACTIONS(2565), - [sym_integer_literal] = ACTIONS(2543), - [aux_sym_string_literal_token1] = ACTIONS(2545), - [sym_char_literal] = ACTIONS(2543), - [anon_sym_true] = ACTIONS(2547), - [anon_sym_false] = ACTIONS(2547), - [anon_sym_u8] = ACTIONS(2549), - [anon_sym_i8] = ACTIONS(2549), - [anon_sym_u16] = ACTIONS(2549), - [anon_sym_i16] = ACTIONS(2549), - [anon_sym_u32] = ACTIONS(2549), - [anon_sym_i32] = ACTIONS(2549), - [anon_sym_u64] = ACTIONS(2549), - [anon_sym_i64] = ACTIONS(2549), - [anon_sym_u128] = ACTIONS(2549), - [anon_sym_i128] = ACTIONS(2549), - [anon_sym_isize] = ACTIONS(2549), - [anon_sym_usize] = ACTIONS(2549), - [anon_sym_f32] = ACTIONS(2549), - [anon_sym_f64] = ACTIONS(2549), - [anon_sym_bool] = ACTIONS(2549), - [anon_sym_str] = ACTIONS(2549), - [anon_sym_char] = ACTIONS(2549), - [sym_line_comment] = ACTIONS(1172), - [sym__raw_identifier] = ACTIONS(2551), - [sym_self] = ACTIONS(2565), - [sym_super] = ACTIONS(2565), - [sym_crate] = ACTIONS(2565), - [sym_grit_metavariable] = ACTIONS(2553), - [sym_raw_string_literal] = ACTIONS(2543), - [sym_float_literal] = ACTIONS(2543), + [ts_builtin_sym_end] = ACTIONS(2660), + [sym__primitive_identifier] = ACTIONS(2662), + [anon_sym_SEMI] = ACTIONS(2660), + [anon_sym_macro_rules_BANG] = ACTIONS(2660), + [anon_sym_LPAREN] = ACTIONS(2660), + [anon_sym_LBRACE] = ACTIONS(2660), + [anon_sym_LBRACK] = ACTIONS(2660), + [anon_sym_STAR] = ACTIONS(2660), + [anon_sym_SQUOTE] = ACTIONS(2662), + [anon_sym_async] = ACTIONS(2662), + [anon_sym_break] = ACTIONS(2662), + [anon_sym_const] = ACTIONS(2662), + [anon_sym_continue] = ACTIONS(2662), + [anon_sym_default] = ACTIONS(2662), + [anon_sym_enum] = ACTIONS(2662), + [anon_sym_fn] = ACTIONS(2662), + [anon_sym_for] = ACTIONS(2662), + [anon_sym_if] = ACTIONS(2662), + [anon_sym_impl] = ACTIONS(2662), + [anon_sym_let] = ACTIONS(2662), + [anon_sym_loop] = ACTIONS(2662), + [anon_sym_match] = ACTIONS(2662), + [anon_sym_mod] = ACTIONS(2662), + [anon_sym_pub] = ACTIONS(2662), + [anon_sym_return] = ACTIONS(2662), + [anon_sym_static] = ACTIONS(2662), + [anon_sym_struct] = ACTIONS(2662), + [anon_sym_trait] = ACTIONS(2662), + [anon_sym_type] = ACTIONS(2662), + [anon_sym_union] = ACTIONS(2662), + [anon_sym_unsafe] = ACTIONS(2662), + [anon_sym_use] = ACTIONS(2662), + [anon_sym_while] = ACTIONS(2662), + [anon_sym_POUND] = ACTIONS(2660), + [anon_sym_BANG] = ACTIONS(2660), + [anon_sym_extern] = ACTIONS(2662), + [anon_sym_LT] = ACTIONS(2660), + [anon_sym_COLON_COLON] = ACTIONS(2660), + [anon_sym_AMP] = ACTIONS(2660), + [anon_sym_DOT_DOT] = ACTIONS(2660), + [anon_sym_DASH] = ACTIONS(2660), + [anon_sym_PIPE] = ACTIONS(2660), + [anon_sym_yield] = ACTIONS(2662), + [anon_sym_move] = ACTIONS(2662), + [sym_integer_literal] = ACTIONS(2660), + [aux_sym_string_literal_token1] = ACTIONS(2660), + [sym_char_literal] = ACTIONS(2660), + [anon_sym_true] = ACTIONS(2662), + [anon_sym_false] = ACTIONS(2662), + [anon_sym_u8] = ACTIONS(2662), + [anon_sym_i8] = ACTIONS(2662), + [anon_sym_u16] = ACTIONS(2662), + [anon_sym_i16] = ACTIONS(2662), + [anon_sym_u32] = ACTIONS(2662), + [anon_sym_i32] = ACTIONS(2662), + [anon_sym_u64] = ACTIONS(2662), + [anon_sym_i64] = ACTIONS(2662), + [anon_sym_u128] = ACTIONS(2662), + [anon_sym_i128] = ACTIONS(2662), + [anon_sym_isize] = ACTIONS(2662), + [anon_sym_usize] = ACTIONS(2662), + [anon_sym_f32] = ACTIONS(2662), + [anon_sym_f64] = ACTIONS(2662), + [anon_sym_bool] = ACTIONS(2662), + [anon_sym_str] = ACTIONS(2662), + [anon_sym_char] = ACTIONS(2662), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(2660), + [sym_self] = ACTIONS(2662), + [sym_super] = ACTIONS(2662), + [sym_crate] = ACTIONS(2662), + [sym_metavariable] = ACTIONS(2660), + [sym_grit_metavariable] = ACTIONS(2660), + [sym_raw_string_literal] = ACTIONS(2660), + [sym_float_literal] = ACTIONS(2660), [sym_block_comment] = ACTIONS(3), }, [555] = { - [sym_delim_token_tree] = STATE(268), - [sym__delim_tokens] = STATE(268), - [sym__non_delim_token] = STATE(268), - [sym__literal] = STATE(268), - [sym_string_literal] = STATE(662), - [sym_boolean_literal] = STATE(662), - [sym_primitive_type] = STATE(268), - [sym_identifier] = STATE(268), - [aux_sym_delim_token_tree_repeat1] = STATE(268), - [sym__primitive_identifier] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_RPAREN] = ACTIONS(2621), - [anon_sym_LBRACE] = ACTIONS(2533), + [sym_delim_token_tree] = STATE(271), + [sym__delim_tokens] = STATE(271), + [sym__non_delim_token] = STATE(271), + [sym__literal] = STATE(271), + [sym_string_literal] = STATE(682), + [sym_boolean_literal] = STATE(682), + [sym_primitive_type] = STATE(271), + [sym_identifier] = STATE(271), + [aux_sym_delim_token_tree_repeat1] = STATE(271), + [sym__primitive_identifier] = ACTIONS(2531), + [anon_sym_LPAREN] = ACTIONS(2533), + [anon_sym_LBRACE] = ACTIONS(2535), + [anon_sym_RBRACE] = ACTIONS(2539), [anon_sym_LBRACK] = ACTIONS(2537), - [anon_sym_DOLLAR] = ACTIONS(2563), - [aux_sym__non_special_token_token1] = ACTIONS(2565), - [anon_sym_SQUOTE] = ACTIONS(2565), - [anon_sym_as] = ACTIONS(2565), - [anon_sym_async] = ACTIONS(2565), - [anon_sym_await] = ACTIONS(2565), - [anon_sym_break] = ACTIONS(2565), - [anon_sym_const] = ACTIONS(2565), - [anon_sym_continue] = ACTIONS(2565), - [anon_sym_default] = ACTIONS(2565), - [anon_sym_enum] = ACTIONS(2565), - [anon_sym_fn] = ACTIONS(2565), - [anon_sym_for] = ACTIONS(2565), - [anon_sym_if] = ACTIONS(2565), - [anon_sym_impl] = ACTIONS(2565), - [anon_sym_let] = ACTIONS(2565), - [anon_sym_loop] = ACTIONS(2565), - [anon_sym_match] = ACTIONS(2565), - [anon_sym_mod] = ACTIONS(2565), - [anon_sym_pub] = ACTIONS(2565), - [anon_sym_return] = ACTIONS(2565), - [anon_sym_static] = ACTIONS(2565), - [anon_sym_struct] = ACTIONS(2565), - [anon_sym_trait] = ACTIONS(2565), - [anon_sym_type] = ACTIONS(2565), - [anon_sym_union] = ACTIONS(2565), - [anon_sym_unsafe] = ACTIONS(2565), - [anon_sym_use] = ACTIONS(2565), - [anon_sym_where] = ACTIONS(2565), - [anon_sym_while] = ACTIONS(2565), - [sym_mutable_specifier] = ACTIONS(2565), - [sym_integer_literal] = ACTIONS(2543), - [aux_sym_string_literal_token1] = ACTIONS(2545), - [sym_char_literal] = ACTIONS(2543), - [anon_sym_true] = ACTIONS(2547), - [anon_sym_false] = ACTIONS(2547), - [anon_sym_u8] = ACTIONS(2549), - [anon_sym_i8] = ACTIONS(2549), - [anon_sym_u16] = ACTIONS(2549), - [anon_sym_i16] = ACTIONS(2549), - [anon_sym_u32] = ACTIONS(2549), - [anon_sym_i32] = ACTIONS(2549), - [anon_sym_u64] = ACTIONS(2549), - [anon_sym_i64] = ACTIONS(2549), - [anon_sym_u128] = ACTIONS(2549), - [anon_sym_i128] = ACTIONS(2549), - [anon_sym_isize] = ACTIONS(2549), - [anon_sym_usize] = ACTIONS(2549), - [anon_sym_f32] = ACTIONS(2549), - [anon_sym_f64] = ACTIONS(2549), - [anon_sym_bool] = ACTIONS(2549), - [anon_sym_str] = ACTIONS(2549), - [anon_sym_char] = ACTIONS(2549), - [sym_line_comment] = ACTIONS(1172), - [sym__raw_identifier] = ACTIONS(2551), - [sym_self] = ACTIONS(2565), - [sym_super] = ACTIONS(2565), - [sym_crate] = ACTIONS(2565), - [sym_grit_metavariable] = ACTIONS(2553), - [sym_raw_string_literal] = ACTIONS(2543), - [sym_float_literal] = ACTIONS(2543), + [anon_sym_DOLLAR] = ACTIONS(2541), + [aux_sym__non_special_token_token1] = ACTIONS(2543), + [anon_sym_SQUOTE] = ACTIONS(2543), + [anon_sym_as] = ACTIONS(2543), + [anon_sym_async] = ACTIONS(2543), + [anon_sym_await] = ACTIONS(2543), + [anon_sym_break] = ACTIONS(2543), + [anon_sym_const] = ACTIONS(2543), + [anon_sym_continue] = ACTIONS(2543), + [anon_sym_default] = ACTIONS(2543), + [anon_sym_enum] = ACTIONS(2543), + [anon_sym_fn] = ACTIONS(2543), + [anon_sym_for] = ACTIONS(2543), + [anon_sym_if] = ACTIONS(2543), + [anon_sym_impl] = ACTIONS(2543), + [anon_sym_let] = ACTIONS(2543), + [anon_sym_loop] = ACTIONS(2543), + [anon_sym_match] = ACTIONS(2543), + [anon_sym_mod] = ACTIONS(2543), + [anon_sym_pub] = ACTIONS(2543), + [anon_sym_return] = ACTIONS(2543), + [anon_sym_static] = ACTIONS(2543), + [anon_sym_struct] = ACTIONS(2543), + [anon_sym_trait] = ACTIONS(2543), + [anon_sym_type] = ACTIONS(2543), + [anon_sym_union] = ACTIONS(2543), + [anon_sym_unsafe] = ACTIONS(2543), + [anon_sym_use] = ACTIONS(2543), + [anon_sym_where] = ACTIONS(2543), + [anon_sym_while] = ACTIONS(2543), + [sym_mutable_specifier] = ACTIONS(2543), + [sym_integer_literal] = ACTIONS(2545), + [aux_sym_string_literal_token1] = ACTIONS(2547), + [sym_char_literal] = ACTIONS(2545), + [anon_sym_true] = ACTIONS(2549), + [anon_sym_false] = ACTIONS(2549), + [anon_sym_u8] = ACTIONS(2551), + [anon_sym_i8] = ACTIONS(2551), + [anon_sym_u16] = ACTIONS(2551), + [anon_sym_i16] = ACTIONS(2551), + [anon_sym_u32] = ACTIONS(2551), + [anon_sym_i32] = ACTIONS(2551), + [anon_sym_u64] = ACTIONS(2551), + [anon_sym_i64] = ACTIONS(2551), + [anon_sym_u128] = ACTIONS(2551), + [anon_sym_i128] = ACTIONS(2551), + [anon_sym_isize] = ACTIONS(2551), + [anon_sym_usize] = ACTIONS(2551), + [anon_sym_f32] = ACTIONS(2551), + [anon_sym_f64] = ACTIONS(2551), + [anon_sym_bool] = ACTIONS(2551), + [anon_sym_str] = ACTIONS(2551), + [anon_sym_char] = ACTIONS(2551), + [sym_line_comment] = ACTIONS(1112), + [sym__raw_identifier] = ACTIONS(2553), + [sym_self] = ACTIONS(2543), + [sym_super] = ACTIONS(2543), + [sym_crate] = ACTIONS(2543), + [sym_grit_metavariable] = ACTIONS(2555), + [sym_raw_string_literal] = ACTIONS(2545), + [sym_float_literal] = ACTIONS(2545), [sym_block_comment] = ACTIONS(3), }, [556] = { - [sym_delim_token_tree] = STATE(553), - [sym__delim_tokens] = STATE(553), - [sym__non_delim_token] = STATE(553), - [sym__literal] = STATE(553), - [sym_string_literal] = STATE(662), - [sym_boolean_literal] = STATE(662), - [sym_primitive_type] = STATE(553), - [sym_identifier] = STATE(553), - [aux_sym_delim_token_tree_repeat1] = STATE(553), - [sym__primitive_identifier] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2533), + [sym_delim_token_tree] = STATE(271), + [sym__delim_tokens] = STATE(271), + [sym__non_delim_token] = STATE(271), + [sym__literal] = STATE(271), + [sym_string_literal] = STATE(682), + [sym_boolean_literal] = STATE(682), + [sym_primitive_type] = STATE(271), + [sym_identifier] = STATE(271), + [aux_sym_delim_token_tree_repeat1] = STATE(271), + [sym__primitive_identifier] = ACTIONS(2531), + [anon_sym_LPAREN] = ACTIONS(2533), + [anon_sym_RPAREN] = ACTIONS(2539), + [anon_sym_LBRACE] = ACTIONS(2535), [anon_sym_LBRACK] = ACTIONS(2537), - [anon_sym_RBRACK] = ACTIONS(2535), - [anon_sym_DOLLAR] = ACTIONS(2623), - [aux_sym__non_special_token_token1] = ACTIONS(2625), - [anon_sym_SQUOTE] = ACTIONS(2625), - [anon_sym_as] = ACTIONS(2625), - [anon_sym_async] = ACTIONS(2625), - [anon_sym_await] = ACTIONS(2625), - [anon_sym_break] = ACTIONS(2625), - [anon_sym_const] = ACTIONS(2625), - [anon_sym_continue] = ACTIONS(2625), - [anon_sym_default] = ACTIONS(2625), - [anon_sym_enum] = ACTIONS(2625), - [anon_sym_fn] = ACTIONS(2625), - [anon_sym_for] = ACTIONS(2625), - [anon_sym_if] = ACTIONS(2625), - [anon_sym_impl] = ACTIONS(2625), - [anon_sym_let] = ACTIONS(2625), - [anon_sym_loop] = ACTIONS(2625), - [anon_sym_match] = ACTIONS(2625), - [anon_sym_mod] = ACTIONS(2625), - [anon_sym_pub] = ACTIONS(2625), - [anon_sym_return] = ACTIONS(2625), - [anon_sym_static] = ACTIONS(2625), - [anon_sym_struct] = ACTIONS(2625), - [anon_sym_trait] = ACTIONS(2625), - [anon_sym_type] = ACTIONS(2625), - [anon_sym_union] = ACTIONS(2625), - [anon_sym_unsafe] = ACTIONS(2625), - [anon_sym_use] = ACTIONS(2625), - [anon_sym_where] = ACTIONS(2625), - [anon_sym_while] = ACTIONS(2625), - [sym_mutable_specifier] = ACTIONS(2625), - [sym_integer_literal] = ACTIONS(2543), - [aux_sym_string_literal_token1] = ACTIONS(2545), - [sym_char_literal] = ACTIONS(2543), - [anon_sym_true] = ACTIONS(2547), - [anon_sym_false] = ACTIONS(2547), - [anon_sym_u8] = ACTIONS(2549), - [anon_sym_i8] = ACTIONS(2549), - [anon_sym_u16] = ACTIONS(2549), - [anon_sym_i16] = ACTIONS(2549), - [anon_sym_u32] = ACTIONS(2549), - [anon_sym_i32] = ACTIONS(2549), - [anon_sym_u64] = ACTIONS(2549), - [anon_sym_i64] = ACTIONS(2549), - [anon_sym_u128] = ACTIONS(2549), - [anon_sym_i128] = ACTIONS(2549), - [anon_sym_isize] = ACTIONS(2549), - [anon_sym_usize] = ACTIONS(2549), - [anon_sym_f32] = ACTIONS(2549), - [anon_sym_f64] = ACTIONS(2549), - [anon_sym_bool] = ACTIONS(2549), - [anon_sym_str] = ACTIONS(2549), - [anon_sym_char] = ACTIONS(2549), - [sym_line_comment] = ACTIONS(1172), - [sym__raw_identifier] = ACTIONS(2551), - [sym_self] = ACTIONS(2625), - [sym_super] = ACTIONS(2625), - [sym_crate] = ACTIONS(2625), - [sym_grit_metavariable] = ACTIONS(2553), - [sym_raw_string_literal] = ACTIONS(2543), - [sym_float_literal] = ACTIONS(2543), + [anon_sym_DOLLAR] = ACTIONS(2541), + [aux_sym__non_special_token_token1] = ACTIONS(2543), + [anon_sym_SQUOTE] = ACTIONS(2543), + [anon_sym_as] = ACTIONS(2543), + [anon_sym_async] = ACTIONS(2543), + [anon_sym_await] = ACTIONS(2543), + [anon_sym_break] = ACTIONS(2543), + [anon_sym_const] = ACTIONS(2543), + [anon_sym_continue] = ACTIONS(2543), + [anon_sym_default] = ACTIONS(2543), + [anon_sym_enum] = ACTIONS(2543), + [anon_sym_fn] = ACTIONS(2543), + [anon_sym_for] = ACTIONS(2543), + [anon_sym_if] = ACTIONS(2543), + [anon_sym_impl] = ACTIONS(2543), + [anon_sym_let] = ACTIONS(2543), + [anon_sym_loop] = ACTIONS(2543), + [anon_sym_match] = ACTIONS(2543), + [anon_sym_mod] = ACTIONS(2543), + [anon_sym_pub] = ACTIONS(2543), + [anon_sym_return] = ACTIONS(2543), + [anon_sym_static] = ACTIONS(2543), + [anon_sym_struct] = ACTIONS(2543), + [anon_sym_trait] = ACTIONS(2543), + [anon_sym_type] = ACTIONS(2543), + [anon_sym_union] = ACTIONS(2543), + [anon_sym_unsafe] = ACTIONS(2543), + [anon_sym_use] = ACTIONS(2543), + [anon_sym_where] = ACTIONS(2543), + [anon_sym_while] = ACTIONS(2543), + [sym_mutable_specifier] = ACTIONS(2543), + [sym_integer_literal] = ACTIONS(2545), + [aux_sym_string_literal_token1] = ACTIONS(2547), + [sym_char_literal] = ACTIONS(2545), + [anon_sym_true] = ACTIONS(2549), + [anon_sym_false] = ACTIONS(2549), + [anon_sym_u8] = ACTIONS(2551), + [anon_sym_i8] = ACTIONS(2551), + [anon_sym_u16] = ACTIONS(2551), + [anon_sym_i16] = ACTIONS(2551), + [anon_sym_u32] = ACTIONS(2551), + [anon_sym_i32] = ACTIONS(2551), + [anon_sym_u64] = ACTIONS(2551), + [anon_sym_i64] = ACTIONS(2551), + [anon_sym_u128] = ACTIONS(2551), + [anon_sym_i128] = ACTIONS(2551), + [anon_sym_isize] = ACTIONS(2551), + [anon_sym_usize] = ACTIONS(2551), + [anon_sym_f32] = ACTIONS(2551), + [anon_sym_f64] = ACTIONS(2551), + [anon_sym_bool] = ACTIONS(2551), + [anon_sym_str] = ACTIONS(2551), + [anon_sym_char] = ACTIONS(2551), + [sym_line_comment] = ACTIONS(1112), + [sym__raw_identifier] = ACTIONS(2553), + [sym_self] = ACTIONS(2543), + [sym_super] = ACTIONS(2543), + [sym_crate] = ACTIONS(2543), + [sym_grit_metavariable] = ACTIONS(2555), + [sym_raw_string_literal] = ACTIONS(2545), + [sym_float_literal] = ACTIONS(2545), [sym_block_comment] = ACTIONS(3), }, [557] = { - [sym_delim_token_tree] = STATE(544), - [sym__delim_tokens] = STATE(544), - [sym__non_delim_token] = STATE(544), - [sym__literal] = STATE(544), - [sym_string_literal] = STATE(662), - [sym_boolean_literal] = STATE(662), - [sym_primitive_type] = STATE(544), - [sym_identifier] = STATE(544), - [aux_sym_delim_token_tree_repeat1] = STATE(544), - [sym__primitive_identifier] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_RPAREN] = ACTIONS(2627), - [anon_sym_LBRACE] = ACTIONS(2533), + [sym_delim_token_tree] = STATE(536), + [sym__delim_tokens] = STATE(536), + [sym__non_delim_token] = STATE(536), + [sym__literal] = STATE(536), + [sym_string_literal] = STATE(682), + [sym_boolean_literal] = STATE(682), + [sym_primitive_type] = STATE(536), + [sym_identifier] = STATE(536), + [aux_sym_delim_token_tree_repeat1] = STATE(536), + [sym__primitive_identifier] = ACTIONS(2531), + [anon_sym_LPAREN] = ACTIONS(2533), + [anon_sym_LBRACE] = ACTIONS(2535), [anon_sym_LBRACK] = ACTIONS(2537), - [anon_sym_DOLLAR] = ACTIONS(2629), - [aux_sym__non_special_token_token1] = ACTIONS(2631), - [anon_sym_SQUOTE] = ACTIONS(2631), - [anon_sym_as] = ACTIONS(2631), - [anon_sym_async] = ACTIONS(2631), - [anon_sym_await] = ACTIONS(2631), - [anon_sym_break] = ACTIONS(2631), - [anon_sym_const] = ACTIONS(2631), - [anon_sym_continue] = ACTIONS(2631), - [anon_sym_default] = ACTIONS(2631), - [anon_sym_enum] = ACTIONS(2631), - [anon_sym_fn] = ACTIONS(2631), - [anon_sym_for] = ACTIONS(2631), - [anon_sym_if] = ACTIONS(2631), - [anon_sym_impl] = ACTIONS(2631), - [anon_sym_let] = ACTIONS(2631), - [anon_sym_loop] = ACTIONS(2631), - [anon_sym_match] = ACTIONS(2631), - [anon_sym_mod] = ACTIONS(2631), - [anon_sym_pub] = ACTIONS(2631), - [anon_sym_return] = ACTIONS(2631), - [anon_sym_static] = ACTIONS(2631), - [anon_sym_struct] = ACTIONS(2631), - [anon_sym_trait] = ACTIONS(2631), - [anon_sym_type] = ACTIONS(2631), - [anon_sym_union] = ACTIONS(2631), - [anon_sym_unsafe] = ACTIONS(2631), - [anon_sym_use] = ACTIONS(2631), - [anon_sym_where] = ACTIONS(2631), - [anon_sym_while] = ACTIONS(2631), - [sym_mutable_specifier] = ACTIONS(2631), - [sym_integer_literal] = ACTIONS(2543), - [aux_sym_string_literal_token1] = ACTIONS(2545), - [sym_char_literal] = ACTIONS(2543), - [anon_sym_true] = ACTIONS(2547), - [anon_sym_false] = ACTIONS(2547), - [anon_sym_u8] = ACTIONS(2549), - [anon_sym_i8] = ACTIONS(2549), - [anon_sym_u16] = ACTIONS(2549), - [anon_sym_i16] = ACTIONS(2549), - [anon_sym_u32] = ACTIONS(2549), - [anon_sym_i32] = ACTIONS(2549), - [anon_sym_u64] = ACTIONS(2549), - [anon_sym_i64] = ACTIONS(2549), - [anon_sym_u128] = ACTIONS(2549), - [anon_sym_i128] = ACTIONS(2549), - [anon_sym_isize] = ACTIONS(2549), - [anon_sym_usize] = ACTIONS(2549), - [anon_sym_f32] = ACTIONS(2549), - [anon_sym_f64] = ACTIONS(2549), - [anon_sym_bool] = ACTIONS(2549), - [anon_sym_str] = ACTIONS(2549), - [anon_sym_char] = ACTIONS(2549), - [sym_line_comment] = ACTIONS(1172), - [sym__raw_identifier] = ACTIONS(2551), - [sym_self] = ACTIONS(2631), - [sym_super] = ACTIONS(2631), - [sym_crate] = ACTIONS(2631), - [sym_grit_metavariable] = ACTIONS(2553), - [sym_raw_string_literal] = ACTIONS(2543), - [sym_float_literal] = ACTIONS(2543), + [anon_sym_RBRACK] = ACTIONS(2664), + [anon_sym_DOLLAR] = ACTIONS(2666), + [aux_sym__non_special_token_token1] = ACTIONS(2668), + [anon_sym_SQUOTE] = ACTIONS(2668), + [anon_sym_as] = ACTIONS(2668), + [anon_sym_async] = ACTIONS(2668), + [anon_sym_await] = ACTIONS(2668), + [anon_sym_break] = ACTIONS(2668), + [anon_sym_const] = ACTIONS(2668), + [anon_sym_continue] = ACTIONS(2668), + [anon_sym_default] = ACTIONS(2668), + [anon_sym_enum] = ACTIONS(2668), + [anon_sym_fn] = ACTIONS(2668), + [anon_sym_for] = ACTIONS(2668), + [anon_sym_if] = ACTIONS(2668), + [anon_sym_impl] = ACTIONS(2668), + [anon_sym_let] = ACTIONS(2668), + [anon_sym_loop] = ACTIONS(2668), + [anon_sym_match] = ACTIONS(2668), + [anon_sym_mod] = ACTIONS(2668), + [anon_sym_pub] = ACTIONS(2668), + [anon_sym_return] = ACTIONS(2668), + [anon_sym_static] = ACTIONS(2668), + [anon_sym_struct] = ACTIONS(2668), + [anon_sym_trait] = ACTIONS(2668), + [anon_sym_type] = ACTIONS(2668), + [anon_sym_union] = ACTIONS(2668), + [anon_sym_unsafe] = ACTIONS(2668), + [anon_sym_use] = ACTIONS(2668), + [anon_sym_where] = ACTIONS(2668), + [anon_sym_while] = ACTIONS(2668), + [sym_mutable_specifier] = ACTIONS(2668), + [sym_integer_literal] = ACTIONS(2545), + [aux_sym_string_literal_token1] = ACTIONS(2547), + [sym_char_literal] = ACTIONS(2545), + [anon_sym_true] = ACTIONS(2549), + [anon_sym_false] = ACTIONS(2549), + [anon_sym_u8] = ACTIONS(2551), + [anon_sym_i8] = ACTIONS(2551), + [anon_sym_u16] = ACTIONS(2551), + [anon_sym_i16] = ACTIONS(2551), + [anon_sym_u32] = ACTIONS(2551), + [anon_sym_i32] = ACTIONS(2551), + [anon_sym_u64] = ACTIONS(2551), + [anon_sym_i64] = ACTIONS(2551), + [anon_sym_u128] = ACTIONS(2551), + [anon_sym_i128] = ACTIONS(2551), + [anon_sym_isize] = ACTIONS(2551), + [anon_sym_usize] = ACTIONS(2551), + [anon_sym_f32] = ACTIONS(2551), + [anon_sym_f64] = ACTIONS(2551), + [anon_sym_bool] = ACTIONS(2551), + [anon_sym_str] = ACTIONS(2551), + [anon_sym_char] = ACTIONS(2551), + [sym_line_comment] = ACTIONS(1112), + [sym__raw_identifier] = ACTIONS(2553), + [sym_self] = ACTIONS(2668), + [sym_super] = ACTIONS(2668), + [sym_crate] = ACTIONS(2668), + [sym_grit_metavariable] = ACTIONS(2555), + [sym_raw_string_literal] = ACTIONS(2545), + [sym_float_literal] = ACTIONS(2545), [sym_block_comment] = ACTIONS(3), }, [558] = { - [sym_delim_token_tree] = STATE(539), - [sym__delim_tokens] = STATE(539), - [sym__non_delim_token] = STATE(539), - [sym__literal] = STATE(539), - [sym_string_literal] = STATE(662), - [sym_boolean_literal] = STATE(662), - [sym_primitive_type] = STATE(539), - [sym_identifier] = STATE(539), - [aux_sym_delim_token_tree_repeat1] = STATE(539), - [sym__primitive_identifier] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2533), + [sym_delim_token_tree] = STATE(556), + [sym__delim_tokens] = STATE(556), + [sym__non_delim_token] = STATE(556), + [sym__literal] = STATE(556), + [sym_string_literal] = STATE(682), + [sym_boolean_literal] = STATE(682), + [sym_primitive_type] = STATE(556), + [sym_identifier] = STATE(556), + [aux_sym_delim_token_tree_repeat1] = STATE(556), + [sym__primitive_identifier] = ACTIONS(2531), + [anon_sym_LPAREN] = ACTIONS(2533), + [anon_sym_RPAREN] = ACTIONS(2664), + [anon_sym_LBRACE] = ACTIONS(2535), [anon_sym_LBRACK] = ACTIONS(2537), - [anon_sym_RBRACK] = ACTIONS(2567), - [anon_sym_DOLLAR] = ACTIONS(2633), - [aux_sym__non_special_token_token1] = ACTIONS(2635), - [anon_sym_SQUOTE] = ACTIONS(2635), - [anon_sym_as] = ACTIONS(2635), - [anon_sym_async] = ACTIONS(2635), - [anon_sym_await] = ACTIONS(2635), - [anon_sym_break] = ACTIONS(2635), - [anon_sym_const] = ACTIONS(2635), - [anon_sym_continue] = ACTIONS(2635), - [anon_sym_default] = ACTIONS(2635), - [anon_sym_enum] = ACTIONS(2635), - [anon_sym_fn] = ACTIONS(2635), - [anon_sym_for] = ACTIONS(2635), - [anon_sym_if] = ACTIONS(2635), - [anon_sym_impl] = ACTIONS(2635), - [anon_sym_let] = ACTIONS(2635), - [anon_sym_loop] = ACTIONS(2635), - [anon_sym_match] = ACTIONS(2635), - [anon_sym_mod] = ACTIONS(2635), - [anon_sym_pub] = ACTIONS(2635), - [anon_sym_return] = ACTIONS(2635), - [anon_sym_static] = ACTIONS(2635), - [anon_sym_struct] = ACTIONS(2635), - [anon_sym_trait] = ACTIONS(2635), - [anon_sym_type] = ACTIONS(2635), - [anon_sym_union] = ACTIONS(2635), - [anon_sym_unsafe] = ACTIONS(2635), - [anon_sym_use] = ACTIONS(2635), - [anon_sym_where] = ACTIONS(2635), - [anon_sym_while] = ACTIONS(2635), - [sym_mutable_specifier] = ACTIONS(2635), - [sym_integer_literal] = ACTIONS(2543), - [aux_sym_string_literal_token1] = ACTIONS(2545), - [sym_char_literal] = ACTIONS(2543), - [anon_sym_true] = ACTIONS(2547), - [anon_sym_false] = ACTIONS(2547), - [anon_sym_u8] = ACTIONS(2549), - [anon_sym_i8] = ACTIONS(2549), - [anon_sym_u16] = ACTIONS(2549), - [anon_sym_i16] = ACTIONS(2549), - [anon_sym_u32] = ACTIONS(2549), - [anon_sym_i32] = ACTIONS(2549), - [anon_sym_u64] = ACTIONS(2549), - [anon_sym_i64] = ACTIONS(2549), - [anon_sym_u128] = ACTIONS(2549), - [anon_sym_i128] = ACTIONS(2549), - [anon_sym_isize] = ACTIONS(2549), - [anon_sym_usize] = ACTIONS(2549), - [anon_sym_f32] = ACTIONS(2549), - [anon_sym_f64] = ACTIONS(2549), - [anon_sym_bool] = ACTIONS(2549), - [anon_sym_str] = ACTIONS(2549), - [anon_sym_char] = ACTIONS(2549), - [sym_line_comment] = ACTIONS(1172), - [sym__raw_identifier] = ACTIONS(2551), - [sym_self] = ACTIONS(2635), - [sym_super] = ACTIONS(2635), - [sym_crate] = ACTIONS(2635), - [sym_grit_metavariable] = ACTIONS(2553), - [sym_raw_string_literal] = ACTIONS(2543), - [sym_float_literal] = ACTIONS(2543), + [anon_sym_DOLLAR] = ACTIONS(2670), + [aux_sym__non_special_token_token1] = ACTIONS(2672), + [anon_sym_SQUOTE] = ACTIONS(2672), + [anon_sym_as] = ACTIONS(2672), + [anon_sym_async] = ACTIONS(2672), + [anon_sym_await] = ACTIONS(2672), + [anon_sym_break] = ACTIONS(2672), + [anon_sym_const] = ACTIONS(2672), + [anon_sym_continue] = ACTIONS(2672), + [anon_sym_default] = ACTIONS(2672), + [anon_sym_enum] = ACTIONS(2672), + [anon_sym_fn] = ACTIONS(2672), + [anon_sym_for] = ACTIONS(2672), + [anon_sym_if] = ACTIONS(2672), + [anon_sym_impl] = ACTIONS(2672), + [anon_sym_let] = ACTIONS(2672), + [anon_sym_loop] = ACTIONS(2672), + [anon_sym_match] = ACTIONS(2672), + [anon_sym_mod] = ACTIONS(2672), + [anon_sym_pub] = ACTIONS(2672), + [anon_sym_return] = ACTIONS(2672), + [anon_sym_static] = ACTIONS(2672), + [anon_sym_struct] = ACTIONS(2672), + [anon_sym_trait] = ACTIONS(2672), + [anon_sym_type] = ACTIONS(2672), + [anon_sym_union] = ACTIONS(2672), + [anon_sym_unsafe] = ACTIONS(2672), + [anon_sym_use] = ACTIONS(2672), + [anon_sym_where] = ACTIONS(2672), + [anon_sym_while] = ACTIONS(2672), + [sym_mutable_specifier] = ACTIONS(2672), + [sym_integer_literal] = ACTIONS(2545), + [aux_sym_string_literal_token1] = ACTIONS(2547), + [sym_char_literal] = ACTIONS(2545), + [anon_sym_true] = ACTIONS(2549), + [anon_sym_false] = ACTIONS(2549), + [anon_sym_u8] = ACTIONS(2551), + [anon_sym_i8] = ACTIONS(2551), + [anon_sym_u16] = ACTIONS(2551), + [anon_sym_i16] = ACTIONS(2551), + [anon_sym_u32] = ACTIONS(2551), + [anon_sym_i32] = ACTIONS(2551), + [anon_sym_u64] = ACTIONS(2551), + [anon_sym_i64] = ACTIONS(2551), + [anon_sym_u128] = ACTIONS(2551), + [anon_sym_i128] = ACTIONS(2551), + [anon_sym_isize] = ACTIONS(2551), + [anon_sym_usize] = ACTIONS(2551), + [anon_sym_f32] = ACTIONS(2551), + [anon_sym_f64] = ACTIONS(2551), + [anon_sym_bool] = ACTIONS(2551), + [anon_sym_str] = ACTIONS(2551), + [anon_sym_char] = ACTIONS(2551), + [sym_line_comment] = ACTIONS(1112), + [sym__raw_identifier] = ACTIONS(2553), + [sym_self] = ACTIONS(2672), + [sym_super] = ACTIONS(2672), + [sym_crate] = ACTIONS(2672), + [sym_grit_metavariable] = ACTIONS(2555), + [sym_raw_string_literal] = ACTIONS(2545), + [sym_float_literal] = ACTIONS(2545), [sym_block_comment] = ACTIONS(3), }, [559] = { - [ts_builtin_sym_end] = ACTIONS(2637), - [sym__primitive_identifier] = ACTIONS(2639), - [anon_sym_SEMI] = ACTIONS(2637), - [anon_sym_macro_rules_BANG] = ACTIONS(2637), - [anon_sym_LPAREN] = ACTIONS(2637), - [anon_sym_LBRACE] = ACTIONS(2637), - [anon_sym_LBRACK] = ACTIONS(2637), - [anon_sym_STAR] = 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_POUND] = ACTIONS(2637), - [anon_sym_BANG] = ACTIONS(2637), - [anon_sym_extern] = ACTIONS(2639), - [anon_sym_LT] = ACTIONS(2637), - [anon_sym_COLON_COLON] = ACTIONS(2637), - [anon_sym_AMP] = ACTIONS(2637), - [anon_sym_DOT_DOT] = ACTIONS(2637), - [anon_sym_DASH] = ACTIONS(2637), - [anon_sym_PIPE] = ACTIONS(2637), - [anon_sym_yield] = ACTIONS(2639), - [anon_sym_move] = 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_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), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(2637), - [sym_self] = ACTIONS(2639), - [sym_super] = ACTIONS(2639), - [sym_crate] = ACTIONS(2639), - [sym_metavariable] = ACTIONS(2637), - [sym_grit_metavariable] = ACTIONS(2637), - [sym_raw_string_literal] = ACTIONS(2637), - [sym_float_literal] = ACTIONS(2637), + [sym_token_tree] = STATE(539), + [sym_token_repetition] = STATE(539), + [sym__literal] = STATE(539), + [sym_string_literal] = STATE(652), + [sym_boolean_literal] = STATE(652), + [sym_primitive_type] = STATE(539), + [sym_identifier] = STATE(539), + [aux_sym_token_tree_repeat1] = STATE(539), + [sym__primitive_identifier] = ACTIONS(1302), + [anon_sym_LPAREN] = ACTIONS(2569), + [anon_sym_RPAREN] = ACTIONS(2674), + [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LBRACK] = ACTIONS(2575), + [anon_sym_DOLLAR] = ACTIONS(2577), + [aux_sym__non_special_token_token1] = ACTIONS(2676), + [anon_sym_SQUOTE] = ACTIONS(2676), + [anon_sym_as] = ACTIONS(2676), + [anon_sym_async] = ACTIONS(2676), + [anon_sym_await] = ACTIONS(2676), + [anon_sym_break] = ACTIONS(2676), + [anon_sym_const] = ACTIONS(2676), + [anon_sym_continue] = ACTIONS(2676), + [anon_sym_default] = ACTIONS(2676), + [anon_sym_enum] = ACTIONS(2676), + [anon_sym_fn] = ACTIONS(2676), + [anon_sym_for] = ACTIONS(2676), + [anon_sym_if] = ACTIONS(2676), + [anon_sym_impl] = ACTIONS(2676), + [anon_sym_let] = ACTIONS(2676), + [anon_sym_loop] = ACTIONS(2676), + [anon_sym_match] = ACTIONS(2676), + [anon_sym_mod] = ACTIONS(2676), + [anon_sym_pub] = ACTIONS(2676), + [anon_sym_return] = ACTIONS(2676), + [anon_sym_static] = ACTIONS(2676), + [anon_sym_struct] = ACTIONS(2676), + [anon_sym_trait] = ACTIONS(2676), + [anon_sym_type] = ACTIONS(2676), + [anon_sym_union] = ACTIONS(2676), + [anon_sym_unsafe] = ACTIONS(2676), + [anon_sym_use] = ACTIONS(2676), + [anon_sym_where] = ACTIONS(2676), + [anon_sym_while] = ACTIONS(2676), + [sym_mutable_specifier] = ACTIONS(2676), + [sym_integer_literal] = ACTIONS(1316), + [aux_sym_string_literal_token1] = ACTIONS(1318), + [sym_char_literal] = ACTIONS(1316), + [anon_sym_true] = ACTIONS(1320), + [anon_sym_false] = 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), + [sym_line_comment] = ACTIONS(1112), + [sym__raw_identifier] = ACTIONS(1324), + [sym_self] = ACTIONS(2676), + [sym_super] = ACTIONS(2676), + [sym_crate] = ACTIONS(2676), + [sym_metavariable] = ACTIONS(2678), + [sym_grit_metavariable] = ACTIONS(2583), + [sym_raw_string_literal] = ACTIONS(1316), + [sym_float_literal] = ACTIONS(1316), [sym_block_comment] = ACTIONS(3), }, [560] = { - [sym_token_tree] = STATE(570), - [sym_token_repetition] = STATE(570), - [sym__literal] = STATE(570), - [sym_string_literal] = STATE(656), - [sym_boolean_literal] = STATE(656), - [sym_primitive_type] = STATE(570), - [sym_identifier] = STATE(570), - [aux_sym_token_repetition_repeat1] = STATE(570), - [sym__primitive_identifier] = ACTIONS(1300), - [anon_sym_LPAREN] = ACTIONS(2591), - [anon_sym_RPAREN] = ACTIONS(2641), - [anon_sym_LBRACE] = ACTIONS(2593), - [anon_sym_LBRACK] = ACTIONS(2595), - [anon_sym_DOLLAR] = ACTIONS(2599), - [aux_sym__non_special_token_token1] = ACTIONS(2643), - [anon_sym_SQUOTE] = ACTIONS(2643), - [anon_sym_as] = ACTIONS(2643), - [anon_sym_async] = ACTIONS(2643), - [anon_sym_await] = 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_where] = ACTIONS(2643), - [anon_sym_while] = ACTIONS(2643), - [sym_mutable_specifier] = ACTIONS(2643), - [sym_integer_literal] = ACTIONS(1314), - [aux_sym_string_literal_token1] = ACTIONS(1316), - [sym_char_literal] = ACTIONS(1314), - [anon_sym_true] = ACTIONS(1318), - [anon_sym_false] = ACTIONS(1318), - [anon_sym_u8] = ACTIONS(1320), - [anon_sym_i8] = ACTIONS(1320), - [anon_sym_u16] = ACTIONS(1320), - [anon_sym_i16] = ACTIONS(1320), - [anon_sym_u32] = ACTIONS(1320), - [anon_sym_i32] = ACTIONS(1320), - [anon_sym_u64] = ACTIONS(1320), - [anon_sym_i64] = ACTIONS(1320), - [anon_sym_u128] = ACTIONS(1320), - [anon_sym_i128] = ACTIONS(1320), - [anon_sym_isize] = ACTIONS(1320), - [anon_sym_usize] = ACTIONS(1320), - [anon_sym_f32] = ACTIONS(1320), - [anon_sym_f64] = ACTIONS(1320), - [anon_sym_bool] = ACTIONS(1320), - [anon_sym_str] = ACTIONS(1320), - [anon_sym_char] = ACTIONS(1320), - [sym_line_comment] = ACTIONS(1172), - [sym__raw_identifier] = ACTIONS(1322), - [sym_self] = ACTIONS(2643), - [sym_super] = ACTIONS(2643), - [sym_crate] = ACTIONS(2643), - [sym_metavariable] = ACTIONS(2645), - [sym_grit_metavariable] = ACTIONS(1326), - [sym_raw_string_literal] = ACTIONS(1314), - [sym_float_literal] = ACTIONS(1314), - [sym_block_comment] = ACTIONS(3), - }, - [561] = { - [sym_token_tree] = STATE(568), - [sym_token_repetition] = STATE(568), - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(656), - [sym_boolean_literal] = STATE(656), - [sym_primitive_type] = STATE(568), - [sym_identifier] = STATE(568), - [aux_sym_token_tree_repeat1] = STATE(568), - [sym__primitive_identifier] = ACTIONS(1300), - [anon_sym_LPAREN] = ACTIONS(2591), - [anon_sym_RPAREN] = ACTIONS(2647), - [anon_sym_LBRACE] = ACTIONS(2593), - [anon_sym_LBRACK] = ACTIONS(2595), - [anon_sym_DOLLAR] = ACTIONS(2599), - [aux_sym__non_special_token_token1] = ACTIONS(2649), - [anon_sym_SQUOTE] = ACTIONS(2649), - [anon_sym_as] = ACTIONS(2649), - [anon_sym_async] = ACTIONS(2649), - [anon_sym_await] = 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_where] = ACTIONS(2649), - [anon_sym_while] = ACTIONS(2649), - [sym_mutable_specifier] = ACTIONS(2649), - [sym_integer_literal] = ACTIONS(1314), - [aux_sym_string_literal_token1] = ACTIONS(1316), - [sym_char_literal] = ACTIONS(1314), - [anon_sym_true] = ACTIONS(1318), - [anon_sym_false] = ACTIONS(1318), - [anon_sym_u8] = ACTIONS(1320), - [anon_sym_i8] = ACTIONS(1320), - [anon_sym_u16] = ACTIONS(1320), - [anon_sym_i16] = ACTIONS(1320), - [anon_sym_u32] = ACTIONS(1320), - [anon_sym_i32] = ACTIONS(1320), - [anon_sym_u64] = ACTIONS(1320), - [anon_sym_i64] = ACTIONS(1320), - [anon_sym_u128] = ACTIONS(1320), - [anon_sym_i128] = ACTIONS(1320), - [anon_sym_isize] = ACTIONS(1320), - [anon_sym_usize] = ACTIONS(1320), - [anon_sym_f32] = ACTIONS(1320), - [anon_sym_f64] = ACTIONS(1320), - [anon_sym_bool] = ACTIONS(1320), - [anon_sym_str] = ACTIONS(1320), - [anon_sym_char] = ACTIONS(1320), - [sym_line_comment] = ACTIONS(1172), - [sym__raw_identifier] = ACTIONS(1322), - [sym_self] = ACTIONS(2649), - [sym_super] = ACTIONS(2649), - [sym_crate] = ACTIONS(2649), - [sym_metavariable] = ACTIONS(2651), - [sym_grit_metavariable] = ACTIONS(2605), - [sym_raw_string_literal] = ACTIONS(1314), - [sym_float_literal] = ACTIONS(1314), - [sym_block_comment] = ACTIONS(3), - }, - [562] = { - [sym_delim_token_tree] = STATE(268), - [sym__delim_tokens] = STATE(268), - [sym__non_delim_token] = STATE(268), - [sym__literal] = STATE(268), - [sym_string_literal] = STATE(662), - [sym_boolean_literal] = STATE(662), - [sym_primitive_type] = STATE(268), - [sym_identifier] = STATE(268), - [aux_sym_delim_token_tree_repeat1] = STATE(268), - [sym__primitive_identifier] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_RPAREN] = ACTIONS(2653), - [anon_sym_LBRACE] = ACTIONS(2533), - [anon_sym_LBRACK] = ACTIONS(2537), - [anon_sym_DOLLAR] = ACTIONS(2563), - [aux_sym__non_special_token_token1] = ACTIONS(2565), - [anon_sym_SQUOTE] = ACTIONS(2565), - [anon_sym_as] = ACTIONS(2565), - [anon_sym_async] = ACTIONS(2565), - [anon_sym_await] = ACTIONS(2565), - [anon_sym_break] = ACTIONS(2565), - [anon_sym_const] = ACTIONS(2565), - [anon_sym_continue] = ACTIONS(2565), - [anon_sym_default] = ACTIONS(2565), - [anon_sym_enum] = ACTIONS(2565), - [anon_sym_fn] = ACTIONS(2565), - [anon_sym_for] = ACTIONS(2565), - [anon_sym_if] = ACTIONS(2565), - [anon_sym_impl] = ACTIONS(2565), - [anon_sym_let] = ACTIONS(2565), - [anon_sym_loop] = ACTIONS(2565), - [anon_sym_match] = ACTIONS(2565), - [anon_sym_mod] = ACTIONS(2565), - [anon_sym_pub] = ACTIONS(2565), - [anon_sym_return] = ACTIONS(2565), - [anon_sym_static] = ACTIONS(2565), - [anon_sym_struct] = ACTIONS(2565), - [anon_sym_trait] = ACTIONS(2565), - [anon_sym_type] = ACTIONS(2565), - [anon_sym_union] = ACTIONS(2565), - [anon_sym_unsafe] = ACTIONS(2565), - [anon_sym_use] = ACTIONS(2565), - [anon_sym_where] = ACTIONS(2565), - [anon_sym_while] = ACTIONS(2565), - [sym_mutable_specifier] = ACTIONS(2565), - [sym_integer_literal] = ACTIONS(2543), - [aux_sym_string_literal_token1] = ACTIONS(2545), - [sym_char_literal] = ACTIONS(2543), - [anon_sym_true] = ACTIONS(2547), - [anon_sym_false] = ACTIONS(2547), - [anon_sym_u8] = ACTIONS(2549), - [anon_sym_i8] = ACTIONS(2549), - [anon_sym_u16] = ACTIONS(2549), - [anon_sym_i16] = ACTIONS(2549), - [anon_sym_u32] = ACTIONS(2549), - [anon_sym_i32] = ACTIONS(2549), - [anon_sym_u64] = ACTIONS(2549), - [anon_sym_i64] = ACTIONS(2549), - [anon_sym_u128] = ACTIONS(2549), - [anon_sym_i128] = ACTIONS(2549), - [anon_sym_isize] = ACTIONS(2549), - [anon_sym_usize] = ACTIONS(2549), - [anon_sym_f32] = ACTIONS(2549), - [anon_sym_f64] = ACTIONS(2549), - [anon_sym_bool] = ACTIONS(2549), - [anon_sym_str] = ACTIONS(2549), - [anon_sym_char] = ACTIONS(2549), - [sym_line_comment] = ACTIONS(1172), - [sym__raw_identifier] = ACTIONS(2551), - [sym_self] = ACTIONS(2565), - [sym_super] = ACTIONS(2565), - [sym_crate] = ACTIONS(2565), - [sym_grit_metavariable] = ACTIONS(2553), - [sym_raw_string_literal] = ACTIONS(2543), - [sym_float_literal] = ACTIONS(2543), - [sym_block_comment] = ACTIONS(3), - }, - [563] = { - [sym_delim_token_tree] = STATE(268), - [sym__delim_tokens] = STATE(268), - [sym__non_delim_token] = STATE(268), - [sym__literal] = STATE(268), - [sym_string_literal] = STATE(662), - [sym_boolean_literal] = STATE(662), - [sym_primitive_type] = STATE(268), - [sym_identifier] = STATE(268), - [aux_sym_delim_token_tree_repeat1] = STATE(268), - [sym__primitive_identifier] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2533), - [anon_sym_RBRACE] = ACTIONS(2653), - [anon_sym_LBRACK] = ACTIONS(2537), - [anon_sym_DOLLAR] = ACTIONS(2563), - [aux_sym__non_special_token_token1] = ACTIONS(2565), - [anon_sym_SQUOTE] = ACTIONS(2565), - [anon_sym_as] = ACTIONS(2565), - [anon_sym_async] = ACTIONS(2565), - [anon_sym_await] = ACTIONS(2565), - [anon_sym_break] = ACTIONS(2565), - [anon_sym_const] = ACTIONS(2565), - [anon_sym_continue] = ACTIONS(2565), - [anon_sym_default] = ACTIONS(2565), - [anon_sym_enum] = ACTIONS(2565), - [anon_sym_fn] = ACTIONS(2565), - [anon_sym_for] = ACTIONS(2565), - [anon_sym_if] = ACTIONS(2565), - [anon_sym_impl] = ACTIONS(2565), - [anon_sym_let] = ACTIONS(2565), - [anon_sym_loop] = ACTIONS(2565), - [anon_sym_match] = ACTIONS(2565), - [anon_sym_mod] = ACTIONS(2565), - [anon_sym_pub] = ACTIONS(2565), - [anon_sym_return] = ACTIONS(2565), - [anon_sym_static] = ACTIONS(2565), - [anon_sym_struct] = ACTIONS(2565), - [anon_sym_trait] = ACTIONS(2565), - [anon_sym_type] = ACTIONS(2565), - [anon_sym_union] = ACTIONS(2565), - [anon_sym_unsafe] = ACTIONS(2565), - [anon_sym_use] = ACTIONS(2565), - [anon_sym_where] = ACTIONS(2565), - [anon_sym_while] = ACTIONS(2565), - [sym_mutable_specifier] = ACTIONS(2565), - [sym_integer_literal] = ACTIONS(2543), - [aux_sym_string_literal_token1] = ACTIONS(2545), - [sym_char_literal] = ACTIONS(2543), - [anon_sym_true] = ACTIONS(2547), - [anon_sym_false] = ACTIONS(2547), - [anon_sym_u8] = ACTIONS(2549), - [anon_sym_i8] = ACTIONS(2549), - [anon_sym_u16] = ACTIONS(2549), - [anon_sym_i16] = ACTIONS(2549), - [anon_sym_u32] = ACTIONS(2549), - [anon_sym_i32] = ACTIONS(2549), - [anon_sym_u64] = ACTIONS(2549), - [anon_sym_i64] = ACTIONS(2549), - [anon_sym_u128] = ACTIONS(2549), - [anon_sym_i128] = ACTIONS(2549), - [anon_sym_isize] = ACTIONS(2549), - [anon_sym_usize] = ACTIONS(2549), - [anon_sym_f32] = ACTIONS(2549), - [anon_sym_f64] = ACTIONS(2549), - [anon_sym_bool] = ACTIONS(2549), - [anon_sym_str] = ACTIONS(2549), - [anon_sym_char] = ACTIONS(2549), - [sym_line_comment] = ACTIONS(1172), - [sym__raw_identifier] = ACTIONS(2551), - [sym_self] = ACTIONS(2565), - [sym_super] = ACTIONS(2565), - [sym_crate] = ACTIONS(2565), - [sym_grit_metavariable] = ACTIONS(2553), - [sym_raw_string_literal] = ACTIONS(2543), - [sym_float_literal] = ACTIONS(2543), - [sym_block_comment] = ACTIONS(3), - }, - [564] = { - [sym_delim_token_tree] = STATE(268), - [sym__delim_tokens] = STATE(268), - [sym__non_delim_token] = STATE(268), - [sym__literal] = STATE(268), - [sym_string_literal] = STATE(662), - [sym_boolean_literal] = STATE(662), - [sym_primitive_type] = STATE(268), - [sym_identifier] = STATE(268), - [aux_sym_delim_token_tree_repeat1] = STATE(268), - [sym__primitive_identifier] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2533), - [anon_sym_LBRACK] = ACTIONS(2537), - [anon_sym_RBRACK] = ACTIONS(2653), - [anon_sym_DOLLAR] = ACTIONS(2563), - [aux_sym__non_special_token_token1] = ACTIONS(2565), - [anon_sym_SQUOTE] = ACTIONS(2565), - [anon_sym_as] = ACTIONS(2565), - [anon_sym_async] = ACTIONS(2565), - [anon_sym_await] = ACTIONS(2565), - [anon_sym_break] = ACTIONS(2565), - [anon_sym_const] = ACTIONS(2565), - [anon_sym_continue] = ACTIONS(2565), - [anon_sym_default] = ACTIONS(2565), - [anon_sym_enum] = ACTIONS(2565), - [anon_sym_fn] = ACTIONS(2565), - [anon_sym_for] = ACTIONS(2565), - [anon_sym_if] = ACTIONS(2565), - [anon_sym_impl] = ACTIONS(2565), - [anon_sym_let] = ACTIONS(2565), - [anon_sym_loop] = ACTIONS(2565), - [anon_sym_match] = ACTIONS(2565), - [anon_sym_mod] = ACTIONS(2565), - [anon_sym_pub] = ACTIONS(2565), - [anon_sym_return] = ACTIONS(2565), - [anon_sym_static] = ACTIONS(2565), - [anon_sym_struct] = ACTIONS(2565), - [anon_sym_trait] = ACTIONS(2565), - [anon_sym_type] = ACTIONS(2565), - [anon_sym_union] = ACTIONS(2565), - [anon_sym_unsafe] = ACTIONS(2565), - [anon_sym_use] = ACTIONS(2565), - [anon_sym_where] = ACTIONS(2565), - [anon_sym_while] = ACTIONS(2565), - [sym_mutable_specifier] = ACTIONS(2565), - [sym_integer_literal] = ACTIONS(2543), - [aux_sym_string_literal_token1] = ACTIONS(2545), - [sym_char_literal] = ACTIONS(2543), - [anon_sym_true] = ACTIONS(2547), - [anon_sym_false] = ACTIONS(2547), - [anon_sym_u8] = ACTIONS(2549), - [anon_sym_i8] = ACTIONS(2549), - [anon_sym_u16] = ACTIONS(2549), - [anon_sym_i16] = ACTIONS(2549), - [anon_sym_u32] = ACTIONS(2549), - [anon_sym_i32] = ACTIONS(2549), - [anon_sym_u64] = ACTIONS(2549), - [anon_sym_i64] = ACTIONS(2549), - [anon_sym_u128] = ACTIONS(2549), - [anon_sym_i128] = ACTIONS(2549), - [anon_sym_isize] = ACTIONS(2549), - [anon_sym_usize] = ACTIONS(2549), - [anon_sym_f32] = ACTIONS(2549), - [anon_sym_f64] = ACTIONS(2549), - [anon_sym_bool] = ACTIONS(2549), - [anon_sym_str] = ACTIONS(2549), - [anon_sym_char] = ACTIONS(2549), - [sym_line_comment] = ACTIONS(1172), - [sym__raw_identifier] = ACTIONS(2551), - [sym_self] = ACTIONS(2565), - [sym_super] = ACTIONS(2565), - [sym_crate] = ACTIONS(2565), - [sym_grit_metavariable] = ACTIONS(2553), - [sym_raw_string_literal] = ACTIONS(2543), - [sym_float_literal] = ACTIONS(2543), - [sym_block_comment] = ACTIONS(3), - }, - [565] = { - [sym_delim_token_tree] = STATE(576), - [sym__delim_tokens] = STATE(576), - [sym__non_delim_token] = STATE(576), - [sym__literal] = STATE(576), - [sym_string_literal] = STATE(662), - [sym_boolean_literal] = STATE(662), - [sym_primitive_type] = STATE(576), - [sym_identifier] = STATE(576), - [aux_sym_delim_token_tree_repeat1] = STATE(576), - [sym__primitive_identifier] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_RPAREN] = ACTIONS(2655), - [anon_sym_LBRACE] = ACTIONS(2533), + [sym_delim_token_tree] = STATE(555), + [sym__delim_tokens] = STATE(555), + [sym__non_delim_token] = STATE(555), + [sym__literal] = STATE(555), + [sym_string_literal] = STATE(682), + [sym_boolean_literal] = STATE(682), + [sym_primitive_type] = STATE(555), + [sym_identifier] = STATE(555), + [aux_sym_delim_token_tree_repeat1] = STATE(555), + [sym__primitive_identifier] = ACTIONS(2531), + [anon_sym_LPAREN] = ACTIONS(2533), + [anon_sym_LBRACE] = ACTIONS(2535), + [anon_sym_RBRACE] = ACTIONS(2664), [anon_sym_LBRACK] = ACTIONS(2537), - [anon_sym_DOLLAR] = ACTIONS(2657), - [aux_sym__non_special_token_token1] = ACTIONS(2659), - [anon_sym_SQUOTE] = ACTIONS(2659), - [anon_sym_as] = ACTIONS(2659), - [anon_sym_async] = ACTIONS(2659), - [anon_sym_await] = 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_where] = ACTIONS(2659), - [anon_sym_while] = ACTIONS(2659), - [sym_mutable_specifier] = ACTIONS(2659), - [sym_integer_literal] = ACTIONS(2543), - [aux_sym_string_literal_token1] = ACTIONS(2545), - [sym_char_literal] = ACTIONS(2543), - [anon_sym_true] = ACTIONS(2547), - [anon_sym_false] = ACTIONS(2547), - [anon_sym_u8] = ACTIONS(2549), - [anon_sym_i8] = ACTIONS(2549), - [anon_sym_u16] = ACTIONS(2549), - [anon_sym_i16] = ACTIONS(2549), - [anon_sym_u32] = ACTIONS(2549), - [anon_sym_i32] = ACTIONS(2549), - [anon_sym_u64] = ACTIONS(2549), - [anon_sym_i64] = ACTIONS(2549), - [anon_sym_u128] = ACTIONS(2549), - [anon_sym_i128] = ACTIONS(2549), - [anon_sym_isize] = ACTIONS(2549), - [anon_sym_usize] = ACTIONS(2549), - [anon_sym_f32] = ACTIONS(2549), - [anon_sym_f64] = ACTIONS(2549), - [anon_sym_bool] = ACTIONS(2549), - [anon_sym_str] = ACTIONS(2549), - [anon_sym_char] = ACTIONS(2549), - [sym_line_comment] = ACTIONS(1172), - [sym__raw_identifier] = ACTIONS(2551), - [sym_self] = ACTIONS(2659), - [sym_super] = ACTIONS(2659), - [sym_crate] = ACTIONS(2659), - [sym_grit_metavariable] = ACTIONS(2553), - [sym_raw_string_literal] = ACTIONS(2543), - [sym_float_literal] = ACTIONS(2543), - [sym_block_comment] = ACTIONS(3), - }, - [566] = { - [sym_token_tree] = STATE(569), - [sym_token_repetition] = STATE(569), - [sym__literal] = STATE(569), - [sym_string_literal] = STATE(656), - [sym_boolean_literal] = STATE(656), - [sym_primitive_type] = STATE(569), - [sym_identifier] = STATE(569), - [aux_sym_token_tree_repeat1] = STATE(569), - [sym__primitive_identifier] = ACTIONS(1300), - [anon_sym_LPAREN] = ACTIONS(2591), - [anon_sym_LBRACE] = ACTIONS(2593), - [anon_sym_RBRACE] = ACTIONS(2647), - [anon_sym_LBRACK] = ACTIONS(2595), - [anon_sym_DOLLAR] = ACTIONS(2599), - [aux_sym__non_special_token_token1] = ACTIONS(2661), - [anon_sym_SQUOTE] = ACTIONS(2661), - [anon_sym_as] = ACTIONS(2661), - [anon_sym_async] = ACTIONS(2661), - [anon_sym_await] = 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_where] = ACTIONS(2661), - [anon_sym_while] = ACTIONS(2661), - [sym_mutable_specifier] = ACTIONS(2661), - [sym_integer_literal] = ACTIONS(1314), - [aux_sym_string_literal_token1] = ACTIONS(1316), - [sym_char_literal] = ACTIONS(1314), - [anon_sym_true] = ACTIONS(1318), - [anon_sym_false] = ACTIONS(1318), - [anon_sym_u8] = ACTIONS(1320), - [anon_sym_i8] = ACTIONS(1320), - [anon_sym_u16] = ACTIONS(1320), - [anon_sym_i16] = ACTIONS(1320), - [anon_sym_u32] = ACTIONS(1320), - [anon_sym_i32] = ACTIONS(1320), - [anon_sym_u64] = ACTIONS(1320), - [anon_sym_i64] = ACTIONS(1320), - [anon_sym_u128] = ACTIONS(1320), - [anon_sym_i128] = ACTIONS(1320), - [anon_sym_isize] = ACTIONS(1320), - [anon_sym_usize] = ACTIONS(1320), - [anon_sym_f32] = ACTIONS(1320), - [anon_sym_f64] = ACTIONS(1320), - [anon_sym_bool] = ACTIONS(1320), - [anon_sym_str] = ACTIONS(1320), - [anon_sym_char] = ACTIONS(1320), - [sym_line_comment] = ACTIONS(1172), - [sym__raw_identifier] = ACTIONS(1322), - [sym_self] = ACTIONS(2661), - [sym_super] = ACTIONS(2661), - [sym_crate] = ACTIONS(2661), - [sym_metavariable] = ACTIONS(2663), - [sym_grit_metavariable] = ACTIONS(2605), - [sym_raw_string_literal] = ACTIONS(1314), - [sym_float_literal] = ACTIONS(1314), + [anon_sym_DOLLAR] = ACTIONS(2680), + [aux_sym__non_special_token_token1] = ACTIONS(2682), + [anon_sym_SQUOTE] = ACTIONS(2682), + [anon_sym_as] = ACTIONS(2682), + [anon_sym_async] = ACTIONS(2682), + [anon_sym_await] = ACTIONS(2682), + [anon_sym_break] = ACTIONS(2682), + [anon_sym_const] = ACTIONS(2682), + [anon_sym_continue] = ACTIONS(2682), + [anon_sym_default] = ACTIONS(2682), + [anon_sym_enum] = ACTIONS(2682), + [anon_sym_fn] = ACTIONS(2682), + [anon_sym_for] = ACTIONS(2682), + [anon_sym_if] = ACTIONS(2682), + [anon_sym_impl] = ACTIONS(2682), + [anon_sym_let] = ACTIONS(2682), + [anon_sym_loop] = ACTIONS(2682), + [anon_sym_match] = ACTIONS(2682), + [anon_sym_mod] = ACTIONS(2682), + [anon_sym_pub] = ACTIONS(2682), + [anon_sym_return] = ACTIONS(2682), + [anon_sym_static] = ACTIONS(2682), + [anon_sym_struct] = ACTIONS(2682), + [anon_sym_trait] = ACTIONS(2682), + [anon_sym_type] = ACTIONS(2682), + [anon_sym_union] = ACTIONS(2682), + [anon_sym_unsafe] = ACTIONS(2682), + [anon_sym_use] = ACTIONS(2682), + [anon_sym_where] = ACTIONS(2682), + [anon_sym_while] = ACTIONS(2682), + [sym_mutable_specifier] = ACTIONS(2682), + [sym_integer_literal] = ACTIONS(2545), + [aux_sym_string_literal_token1] = ACTIONS(2547), + [sym_char_literal] = ACTIONS(2545), + [anon_sym_true] = ACTIONS(2549), + [anon_sym_false] = ACTIONS(2549), + [anon_sym_u8] = ACTIONS(2551), + [anon_sym_i8] = ACTIONS(2551), + [anon_sym_u16] = ACTIONS(2551), + [anon_sym_i16] = ACTIONS(2551), + [anon_sym_u32] = ACTIONS(2551), + [anon_sym_i32] = ACTIONS(2551), + [anon_sym_u64] = ACTIONS(2551), + [anon_sym_i64] = ACTIONS(2551), + [anon_sym_u128] = ACTIONS(2551), + [anon_sym_i128] = ACTIONS(2551), + [anon_sym_isize] = ACTIONS(2551), + [anon_sym_usize] = ACTIONS(2551), + [anon_sym_f32] = ACTIONS(2551), + [anon_sym_f64] = ACTIONS(2551), + [anon_sym_bool] = ACTIONS(2551), + [anon_sym_str] = ACTIONS(2551), + [anon_sym_char] = ACTIONS(2551), + [sym_line_comment] = ACTIONS(1112), + [sym__raw_identifier] = ACTIONS(2553), + [sym_self] = ACTIONS(2682), + [sym_super] = ACTIONS(2682), + [sym_crate] = ACTIONS(2682), + [sym_grit_metavariable] = ACTIONS(2555), + [sym_raw_string_literal] = ACTIONS(2545), + [sym_float_literal] = ACTIONS(2545), [sym_block_comment] = ACTIONS(3), }, - [567] = { + [561] = { [sym_token_tree] = STATE(571), [sym_token_repetition] = STATE(571), [sym__literal] = STATE(571), - [sym_string_literal] = STATE(656), - [sym_boolean_literal] = STATE(656), + [sym_string_literal] = STATE(652), + [sym_boolean_literal] = STATE(652), [sym_primitive_type] = STATE(571), [sym_identifier] = STATE(571), [aux_sym_token_tree_repeat1] = STATE(571), - [sym__primitive_identifier] = ACTIONS(1300), - [anon_sym_LPAREN] = ACTIONS(2591), - [anon_sym_LBRACE] = ACTIONS(2593), - [anon_sym_LBRACK] = ACTIONS(2595), - [anon_sym_RBRACK] = ACTIONS(2647), - [anon_sym_DOLLAR] = ACTIONS(2599), - [aux_sym__non_special_token_token1] = ACTIONS(2665), - [anon_sym_SQUOTE] = ACTIONS(2665), - [anon_sym_as] = ACTIONS(2665), - [anon_sym_async] = ACTIONS(2665), - [anon_sym_await] = 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_where] = ACTIONS(2665), - [anon_sym_while] = ACTIONS(2665), - [sym_mutable_specifier] = ACTIONS(2665), - [sym_integer_literal] = ACTIONS(1314), - [aux_sym_string_literal_token1] = ACTIONS(1316), - [sym_char_literal] = ACTIONS(1314), - [anon_sym_true] = ACTIONS(1318), - [anon_sym_false] = ACTIONS(1318), - [anon_sym_u8] = ACTIONS(1320), - [anon_sym_i8] = ACTIONS(1320), - [anon_sym_u16] = ACTIONS(1320), - [anon_sym_i16] = ACTIONS(1320), - [anon_sym_u32] = ACTIONS(1320), - [anon_sym_i32] = ACTIONS(1320), - [anon_sym_u64] = ACTIONS(1320), - [anon_sym_i64] = ACTIONS(1320), - [anon_sym_u128] = ACTIONS(1320), - [anon_sym_i128] = ACTIONS(1320), - [anon_sym_isize] = ACTIONS(1320), - [anon_sym_usize] = ACTIONS(1320), - [anon_sym_f32] = ACTIONS(1320), - [anon_sym_f64] = ACTIONS(1320), - [anon_sym_bool] = ACTIONS(1320), - [anon_sym_str] = ACTIONS(1320), - [anon_sym_char] = ACTIONS(1320), - [sym_line_comment] = ACTIONS(1172), - [sym__raw_identifier] = ACTIONS(1322), - [sym_self] = ACTIONS(2665), - [sym_super] = ACTIONS(2665), - [sym_crate] = ACTIONS(2665), - [sym_metavariable] = ACTIONS(2667), - [sym_grit_metavariable] = ACTIONS(2605), - [sym_raw_string_literal] = ACTIONS(1314), - [sym_float_literal] = ACTIONS(1314), - [sym_block_comment] = ACTIONS(3), - }, - [568] = { - [sym_token_tree] = STATE(263), - [sym_token_repetition] = STATE(263), - [sym__literal] = STATE(263), - [sym_string_literal] = STATE(656), - [sym_boolean_literal] = STATE(656), - [sym_primitive_type] = STATE(263), - [sym_identifier] = STATE(263), - [aux_sym_token_tree_repeat1] = STATE(263), - [sym__primitive_identifier] = ACTIONS(1300), - [anon_sym_LPAREN] = ACTIONS(2591), - [anon_sym_RPAREN] = ACTIONS(2669), - [anon_sym_LBRACE] = ACTIONS(2593), - [anon_sym_LBRACK] = ACTIONS(2595), - [anon_sym_DOLLAR] = ACTIONS(2599), - [aux_sym__non_special_token_token1] = ACTIONS(2601), - [anon_sym_SQUOTE] = ACTIONS(2601), - [anon_sym_as] = ACTIONS(2601), - [anon_sym_async] = ACTIONS(2601), - [anon_sym_await] = 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_where] = ACTIONS(2601), - [anon_sym_while] = ACTIONS(2601), - [sym_mutable_specifier] = ACTIONS(2601), - [sym_integer_literal] = ACTIONS(1314), - [aux_sym_string_literal_token1] = ACTIONS(1316), - [sym_char_literal] = ACTIONS(1314), - [anon_sym_true] = ACTIONS(1318), - [anon_sym_false] = ACTIONS(1318), - [anon_sym_u8] = ACTIONS(1320), - [anon_sym_i8] = ACTIONS(1320), - [anon_sym_u16] = ACTIONS(1320), - [anon_sym_i16] = ACTIONS(1320), - [anon_sym_u32] = ACTIONS(1320), - [anon_sym_i32] = ACTIONS(1320), - [anon_sym_u64] = ACTIONS(1320), - [anon_sym_i64] = ACTIONS(1320), - [anon_sym_u128] = ACTIONS(1320), - [anon_sym_i128] = ACTIONS(1320), - [anon_sym_isize] = ACTIONS(1320), - [anon_sym_usize] = ACTIONS(1320), - [anon_sym_f32] = ACTIONS(1320), - [anon_sym_f64] = ACTIONS(1320), - [anon_sym_bool] = ACTIONS(1320), - [anon_sym_str] = ACTIONS(1320), - [anon_sym_char] = ACTIONS(1320), - [sym_line_comment] = ACTIONS(1172), - [sym__raw_identifier] = ACTIONS(1322), - [sym_self] = ACTIONS(2601), - [sym_super] = ACTIONS(2601), - [sym_crate] = ACTIONS(2601), - [sym_metavariable] = ACTIONS(2603), - [sym_grit_metavariable] = ACTIONS(2605), - [sym_raw_string_literal] = ACTIONS(1314), - [sym_float_literal] = ACTIONS(1314), - [sym_block_comment] = ACTIONS(3), - }, - [569] = { - [sym_token_tree] = STATE(263), - [sym_token_repetition] = STATE(263), - [sym__literal] = STATE(263), - [sym_string_literal] = STATE(656), - [sym_boolean_literal] = STATE(656), - [sym_primitive_type] = STATE(263), - [sym_identifier] = STATE(263), - [aux_sym_token_tree_repeat1] = STATE(263), - [sym__primitive_identifier] = ACTIONS(1300), - [anon_sym_LPAREN] = ACTIONS(2591), - [anon_sym_LBRACE] = ACTIONS(2593), - [anon_sym_RBRACE] = ACTIONS(2669), - [anon_sym_LBRACK] = ACTIONS(2595), - [anon_sym_DOLLAR] = ACTIONS(2599), - [aux_sym__non_special_token_token1] = ACTIONS(2601), - [anon_sym_SQUOTE] = ACTIONS(2601), - [anon_sym_as] = ACTIONS(2601), - [anon_sym_async] = ACTIONS(2601), - [anon_sym_await] = 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_where] = ACTIONS(2601), - [anon_sym_while] = ACTIONS(2601), - [sym_mutable_specifier] = ACTIONS(2601), - [sym_integer_literal] = ACTIONS(1314), - [aux_sym_string_literal_token1] = ACTIONS(1316), - [sym_char_literal] = ACTIONS(1314), - [anon_sym_true] = ACTIONS(1318), - [anon_sym_false] = ACTIONS(1318), - [anon_sym_u8] = ACTIONS(1320), - [anon_sym_i8] = ACTIONS(1320), - [anon_sym_u16] = ACTIONS(1320), - [anon_sym_i16] = ACTIONS(1320), - [anon_sym_u32] = ACTIONS(1320), - [anon_sym_i32] = ACTIONS(1320), - [anon_sym_u64] = ACTIONS(1320), - [anon_sym_i64] = ACTIONS(1320), - [anon_sym_u128] = ACTIONS(1320), - [anon_sym_i128] = ACTIONS(1320), - [anon_sym_isize] = ACTIONS(1320), - [anon_sym_usize] = ACTIONS(1320), - [anon_sym_f32] = ACTIONS(1320), - [anon_sym_f64] = ACTIONS(1320), - [anon_sym_bool] = ACTIONS(1320), - [anon_sym_str] = ACTIONS(1320), - [anon_sym_char] = ACTIONS(1320), - [sym_line_comment] = ACTIONS(1172), - [sym__raw_identifier] = ACTIONS(1322), - [sym_self] = ACTIONS(2601), - [sym_super] = ACTIONS(2601), - [sym_crate] = ACTIONS(2601), - [sym_metavariable] = ACTIONS(2603), - [sym_grit_metavariable] = ACTIONS(2605), - [sym_raw_string_literal] = ACTIONS(1314), - [sym_float_literal] = ACTIONS(1314), + [sym__primitive_identifier] = ACTIONS(1302), + [anon_sym_LPAREN] = ACTIONS(2569), + [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_RBRACE] = ACTIONS(2674), + [anon_sym_LBRACK] = ACTIONS(2575), + [anon_sym_DOLLAR] = ACTIONS(2577), + [aux_sym__non_special_token_token1] = ACTIONS(2684), + [anon_sym_SQUOTE] = ACTIONS(2684), + [anon_sym_as] = ACTIONS(2684), + [anon_sym_async] = ACTIONS(2684), + [anon_sym_await] = ACTIONS(2684), + [anon_sym_break] = ACTIONS(2684), + [anon_sym_const] = ACTIONS(2684), + [anon_sym_continue] = ACTIONS(2684), + [anon_sym_default] = ACTIONS(2684), + [anon_sym_enum] = ACTIONS(2684), + [anon_sym_fn] = ACTIONS(2684), + [anon_sym_for] = ACTIONS(2684), + [anon_sym_if] = ACTIONS(2684), + [anon_sym_impl] = ACTIONS(2684), + [anon_sym_let] = ACTIONS(2684), + [anon_sym_loop] = ACTIONS(2684), + [anon_sym_match] = ACTIONS(2684), + [anon_sym_mod] = ACTIONS(2684), + [anon_sym_pub] = ACTIONS(2684), + [anon_sym_return] = ACTIONS(2684), + [anon_sym_static] = ACTIONS(2684), + [anon_sym_struct] = ACTIONS(2684), + [anon_sym_trait] = ACTIONS(2684), + [anon_sym_type] = ACTIONS(2684), + [anon_sym_union] = ACTIONS(2684), + [anon_sym_unsafe] = ACTIONS(2684), + [anon_sym_use] = ACTIONS(2684), + [anon_sym_where] = ACTIONS(2684), + [anon_sym_while] = ACTIONS(2684), + [sym_mutable_specifier] = ACTIONS(2684), + [sym_integer_literal] = ACTIONS(1316), + [aux_sym_string_literal_token1] = ACTIONS(1318), + [sym_char_literal] = ACTIONS(1316), + [anon_sym_true] = ACTIONS(1320), + [anon_sym_false] = 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), + [sym_line_comment] = ACTIONS(1112), + [sym__raw_identifier] = ACTIONS(1324), + [sym_self] = ACTIONS(2684), + [sym_super] = ACTIONS(2684), + [sym_crate] = ACTIONS(2684), + [sym_metavariable] = ACTIONS(2686), + [sym_grit_metavariable] = ACTIONS(2583), + [sym_raw_string_literal] = ACTIONS(1316), + [sym_float_literal] = ACTIONS(1316), [sym_block_comment] = ACTIONS(3), }, - [570] = { - [sym_token_tree] = STATE(570), - [sym_token_repetition] = STATE(570), - [sym__literal] = STATE(570), - [sym_string_literal] = STATE(656), - [sym_boolean_literal] = STATE(656), - [sym_primitive_type] = STATE(570), - [sym_identifier] = STATE(570), - [aux_sym_token_repetition_repeat1] = STATE(570), - [sym__primitive_identifier] = ACTIONS(2671), - [anon_sym_LPAREN] = ACTIONS(2674), - [anon_sym_RPAREN] = ACTIONS(2677), - [anon_sym_LBRACE] = ACTIONS(2679), - [anon_sym_LBRACK] = ACTIONS(2682), - [anon_sym_DOLLAR] = ACTIONS(2685), + [562] = { + [sym_token_tree] = STATE(576), + [sym_token_repetition] = STATE(576), + [sym__literal] = STATE(576), + [sym_string_literal] = STATE(652), + [sym_boolean_literal] = STATE(652), + [sym_primitive_type] = STATE(576), + [sym_identifier] = STATE(576), + [aux_sym_token_tree_repeat1] = STATE(576), + [sym__primitive_identifier] = ACTIONS(1302), + [anon_sym_LPAREN] = ACTIONS(2569), + [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LBRACK] = ACTIONS(2575), + [anon_sym_RBRACK] = ACTIONS(2674), + [anon_sym_DOLLAR] = ACTIONS(2577), [aux_sym__non_special_token_token1] = ACTIONS(2688), [anon_sym_SQUOTE] = ACTIONS(2688), [anon_sym_as] = ACTIONS(2688), @@ -72720,133 +72165,990 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2688), [anon_sym_while] = ACTIONS(2688), [sym_mutable_specifier] = ACTIONS(2688), - [sym_integer_literal] = ACTIONS(2691), - [aux_sym_string_literal_token1] = ACTIONS(2694), - [sym_char_literal] = ACTIONS(2691), - [anon_sym_true] = ACTIONS(2697), - [anon_sym_false] = ACTIONS(2697), - [anon_sym_u8] = ACTIONS(2700), - [anon_sym_i8] = ACTIONS(2700), - [anon_sym_u16] = ACTIONS(2700), - [anon_sym_i16] = ACTIONS(2700), - [anon_sym_u32] = ACTIONS(2700), - [anon_sym_i32] = ACTIONS(2700), - [anon_sym_u64] = ACTIONS(2700), - [anon_sym_i64] = ACTIONS(2700), - [anon_sym_u128] = ACTIONS(2700), - [anon_sym_i128] = ACTIONS(2700), - [anon_sym_isize] = ACTIONS(2700), - [anon_sym_usize] = ACTIONS(2700), - [anon_sym_f32] = ACTIONS(2700), - [anon_sym_f64] = ACTIONS(2700), - [anon_sym_bool] = ACTIONS(2700), - [anon_sym_str] = ACTIONS(2700), - [anon_sym_char] = ACTIONS(2700), - [sym_line_comment] = ACTIONS(1172), - [sym__raw_identifier] = ACTIONS(2703), + [sym_integer_literal] = ACTIONS(1316), + [aux_sym_string_literal_token1] = ACTIONS(1318), + [sym_char_literal] = ACTIONS(1316), + [anon_sym_true] = ACTIONS(1320), + [anon_sym_false] = 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), + [sym_line_comment] = ACTIONS(1112), + [sym__raw_identifier] = ACTIONS(1324), [sym_self] = ACTIONS(2688), [sym_super] = ACTIONS(2688), [sym_crate] = ACTIONS(2688), - [sym_metavariable] = ACTIONS(2706), - [sym_grit_metavariable] = ACTIONS(2709), - [sym_raw_string_literal] = ACTIONS(2691), - [sym_float_literal] = ACTIONS(2691), + [sym_metavariable] = ACTIONS(2690), + [sym_grit_metavariable] = ACTIONS(2583), + [sym_raw_string_literal] = ACTIONS(1316), + [sym_float_literal] = ACTIONS(1316), + [sym_block_comment] = ACTIONS(3), + }, + [563] = { + [sym_token_tree] = STATE(259), + [sym_token_repetition] = STATE(259), + [sym__literal] = STATE(259), + [sym_string_literal] = STATE(652), + [sym_boolean_literal] = STATE(652), + [sym_primitive_type] = STATE(259), + [sym_identifier] = STATE(259), + [aux_sym_token_tree_repeat1] = STATE(259), + [sym__primitive_identifier] = ACTIONS(1302), + [anon_sym_LPAREN] = ACTIONS(2569), + [anon_sym_RPAREN] = ACTIONS(2609), + [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LBRACK] = ACTIONS(2575), + [anon_sym_DOLLAR] = ACTIONS(2577), + [aux_sym__non_special_token_token1] = ACTIONS(2579), + [anon_sym_SQUOTE] = ACTIONS(2579), + [anon_sym_as] = ACTIONS(2579), + [anon_sym_async] = ACTIONS(2579), + [anon_sym_await] = ACTIONS(2579), + [anon_sym_break] = ACTIONS(2579), + [anon_sym_const] = ACTIONS(2579), + [anon_sym_continue] = ACTIONS(2579), + [anon_sym_default] = ACTIONS(2579), + [anon_sym_enum] = ACTIONS(2579), + [anon_sym_fn] = ACTIONS(2579), + [anon_sym_for] = ACTIONS(2579), + [anon_sym_if] = ACTIONS(2579), + [anon_sym_impl] = ACTIONS(2579), + [anon_sym_let] = ACTIONS(2579), + [anon_sym_loop] = ACTIONS(2579), + [anon_sym_match] = ACTIONS(2579), + [anon_sym_mod] = ACTIONS(2579), + [anon_sym_pub] = ACTIONS(2579), + [anon_sym_return] = ACTIONS(2579), + [anon_sym_static] = ACTIONS(2579), + [anon_sym_struct] = ACTIONS(2579), + [anon_sym_trait] = ACTIONS(2579), + [anon_sym_type] = ACTIONS(2579), + [anon_sym_union] = ACTIONS(2579), + [anon_sym_unsafe] = ACTIONS(2579), + [anon_sym_use] = ACTIONS(2579), + [anon_sym_where] = ACTIONS(2579), + [anon_sym_while] = ACTIONS(2579), + [sym_mutable_specifier] = ACTIONS(2579), + [sym_integer_literal] = ACTIONS(1316), + [aux_sym_string_literal_token1] = ACTIONS(1318), + [sym_char_literal] = ACTIONS(1316), + [anon_sym_true] = ACTIONS(1320), + [anon_sym_false] = 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), + [sym_line_comment] = ACTIONS(1112), + [sym__raw_identifier] = ACTIONS(1324), + [sym_self] = ACTIONS(2579), + [sym_super] = ACTIONS(2579), + [sym_crate] = ACTIONS(2579), + [sym_metavariable] = ACTIONS(2581), + [sym_grit_metavariable] = ACTIONS(2583), + [sym_raw_string_literal] = ACTIONS(1316), + [sym_float_literal] = ACTIONS(1316), + [sym_block_comment] = ACTIONS(3), + }, + [564] = { + [sym_delim_token_tree] = STATE(271), + [sym__delim_tokens] = STATE(271), + [sym__non_delim_token] = STATE(271), + [sym__literal] = STATE(271), + [sym_string_literal] = STATE(682), + [sym_boolean_literal] = STATE(682), + [sym_primitive_type] = STATE(271), + [sym_identifier] = STATE(271), + [aux_sym_delim_token_tree_repeat1] = STATE(271), + [sym__primitive_identifier] = ACTIONS(2531), + [anon_sym_LPAREN] = ACTIONS(2533), + [anon_sym_LBRACE] = ACTIONS(2535), + [anon_sym_LBRACK] = ACTIONS(2537), + [anon_sym_RBRACK] = ACTIONS(2692), + [anon_sym_DOLLAR] = ACTIONS(2541), + [aux_sym__non_special_token_token1] = ACTIONS(2543), + [anon_sym_SQUOTE] = ACTIONS(2543), + [anon_sym_as] = ACTIONS(2543), + [anon_sym_async] = ACTIONS(2543), + [anon_sym_await] = ACTIONS(2543), + [anon_sym_break] = ACTIONS(2543), + [anon_sym_const] = ACTIONS(2543), + [anon_sym_continue] = ACTIONS(2543), + [anon_sym_default] = ACTIONS(2543), + [anon_sym_enum] = ACTIONS(2543), + [anon_sym_fn] = ACTIONS(2543), + [anon_sym_for] = ACTIONS(2543), + [anon_sym_if] = ACTIONS(2543), + [anon_sym_impl] = ACTIONS(2543), + [anon_sym_let] = ACTIONS(2543), + [anon_sym_loop] = ACTIONS(2543), + [anon_sym_match] = ACTIONS(2543), + [anon_sym_mod] = ACTIONS(2543), + [anon_sym_pub] = ACTIONS(2543), + [anon_sym_return] = ACTIONS(2543), + [anon_sym_static] = ACTIONS(2543), + [anon_sym_struct] = ACTIONS(2543), + [anon_sym_trait] = ACTIONS(2543), + [anon_sym_type] = ACTIONS(2543), + [anon_sym_union] = ACTIONS(2543), + [anon_sym_unsafe] = ACTIONS(2543), + [anon_sym_use] = ACTIONS(2543), + [anon_sym_where] = ACTIONS(2543), + [anon_sym_while] = ACTIONS(2543), + [sym_mutable_specifier] = ACTIONS(2543), + [sym_integer_literal] = ACTIONS(2545), + [aux_sym_string_literal_token1] = ACTIONS(2547), + [sym_char_literal] = ACTIONS(2545), + [anon_sym_true] = ACTIONS(2549), + [anon_sym_false] = ACTIONS(2549), + [anon_sym_u8] = ACTIONS(2551), + [anon_sym_i8] = ACTIONS(2551), + [anon_sym_u16] = ACTIONS(2551), + [anon_sym_i16] = ACTIONS(2551), + [anon_sym_u32] = ACTIONS(2551), + [anon_sym_i32] = ACTIONS(2551), + [anon_sym_u64] = ACTIONS(2551), + [anon_sym_i64] = ACTIONS(2551), + [anon_sym_u128] = ACTIONS(2551), + [anon_sym_i128] = ACTIONS(2551), + [anon_sym_isize] = ACTIONS(2551), + [anon_sym_usize] = ACTIONS(2551), + [anon_sym_f32] = ACTIONS(2551), + [anon_sym_f64] = ACTIONS(2551), + [anon_sym_bool] = ACTIONS(2551), + [anon_sym_str] = ACTIONS(2551), + [anon_sym_char] = ACTIONS(2551), + [sym_line_comment] = ACTIONS(1112), + [sym__raw_identifier] = ACTIONS(2553), + [sym_self] = ACTIONS(2543), + [sym_super] = ACTIONS(2543), + [sym_crate] = ACTIONS(2543), + [sym_grit_metavariable] = ACTIONS(2555), + [sym_raw_string_literal] = ACTIONS(2545), + [sym_float_literal] = ACTIONS(2545), + [sym_block_comment] = ACTIONS(3), + }, + [565] = { + [sym_delim_token_tree] = STATE(271), + [sym__delim_tokens] = STATE(271), + [sym__non_delim_token] = STATE(271), + [sym__literal] = STATE(271), + [sym_string_literal] = STATE(682), + [sym_boolean_literal] = STATE(682), + [sym_primitive_type] = STATE(271), + [sym_identifier] = STATE(271), + [aux_sym_delim_token_tree_repeat1] = STATE(271), + [sym__primitive_identifier] = ACTIONS(2531), + [anon_sym_LPAREN] = ACTIONS(2533), + [anon_sym_LBRACE] = ACTIONS(2535), + [anon_sym_RBRACE] = ACTIONS(2692), + [anon_sym_LBRACK] = ACTIONS(2537), + [anon_sym_DOLLAR] = ACTIONS(2541), + [aux_sym__non_special_token_token1] = ACTIONS(2543), + [anon_sym_SQUOTE] = ACTIONS(2543), + [anon_sym_as] = ACTIONS(2543), + [anon_sym_async] = ACTIONS(2543), + [anon_sym_await] = ACTIONS(2543), + [anon_sym_break] = ACTIONS(2543), + [anon_sym_const] = ACTIONS(2543), + [anon_sym_continue] = ACTIONS(2543), + [anon_sym_default] = ACTIONS(2543), + [anon_sym_enum] = ACTIONS(2543), + [anon_sym_fn] = ACTIONS(2543), + [anon_sym_for] = ACTIONS(2543), + [anon_sym_if] = ACTIONS(2543), + [anon_sym_impl] = ACTIONS(2543), + [anon_sym_let] = ACTIONS(2543), + [anon_sym_loop] = ACTIONS(2543), + [anon_sym_match] = ACTIONS(2543), + [anon_sym_mod] = ACTIONS(2543), + [anon_sym_pub] = ACTIONS(2543), + [anon_sym_return] = ACTIONS(2543), + [anon_sym_static] = ACTIONS(2543), + [anon_sym_struct] = ACTIONS(2543), + [anon_sym_trait] = ACTIONS(2543), + [anon_sym_type] = ACTIONS(2543), + [anon_sym_union] = ACTIONS(2543), + [anon_sym_unsafe] = ACTIONS(2543), + [anon_sym_use] = ACTIONS(2543), + [anon_sym_where] = ACTIONS(2543), + [anon_sym_while] = ACTIONS(2543), + [sym_mutable_specifier] = ACTIONS(2543), + [sym_integer_literal] = ACTIONS(2545), + [aux_sym_string_literal_token1] = ACTIONS(2547), + [sym_char_literal] = ACTIONS(2545), + [anon_sym_true] = ACTIONS(2549), + [anon_sym_false] = ACTIONS(2549), + [anon_sym_u8] = ACTIONS(2551), + [anon_sym_i8] = ACTIONS(2551), + [anon_sym_u16] = ACTIONS(2551), + [anon_sym_i16] = ACTIONS(2551), + [anon_sym_u32] = ACTIONS(2551), + [anon_sym_i32] = ACTIONS(2551), + [anon_sym_u64] = ACTIONS(2551), + [anon_sym_i64] = ACTIONS(2551), + [anon_sym_u128] = ACTIONS(2551), + [anon_sym_i128] = ACTIONS(2551), + [anon_sym_isize] = ACTIONS(2551), + [anon_sym_usize] = ACTIONS(2551), + [anon_sym_f32] = ACTIONS(2551), + [anon_sym_f64] = ACTIONS(2551), + [anon_sym_bool] = ACTIONS(2551), + [anon_sym_str] = ACTIONS(2551), + [anon_sym_char] = ACTIONS(2551), + [sym_line_comment] = ACTIONS(1112), + [sym__raw_identifier] = ACTIONS(2553), + [sym_self] = ACTIONS(2543), + [sym_super] = ACTIONS(2543), + [sym_crate] = ACTIONS(2543), + [sym_grit_metavariable] = ACTIONS(2555), + [sym_raw_string_literal] = ACTIONS(2545), + [sym_float_literal] = ACTIONS(2545), + [sym_block_comment] = ACTIONS(3), + }, + [566] = { + [sym_delim_token_tree] = STATE(271), + [sym__delim_tokens] = STATE(271), + [sym__non_delim_token] = STATE(271), + [sym__literal] = STATE(271), + [sym_string_literal] = STATE(682), + [sym_boolean_literal] = STATE(682), + [sym_primitive_type] = STATE(271), + [sym_identifier] = STATE(271), + [aux_sym_delim_token_tree_repeat1] = STATE(271), + [sym__primitive_identifier] = ACTIONS(2531), + [anon_sym_LPAREN] = ACTIONS(2533), + [anon_sym_RPAREN] = ACTIONS(2692), + [anon_sym_LBRACE] = ACTIONS(2535), + [anon_sym_LBRACK] = ACTIONS(2537), + [anon_sym_DOLLAR] = ACTIONS(2541), + [aux_sym__non_special_token_token1] = ACTIONS(2543), + [anon_sym_SQUOTE] = ACTIONS(2543), + [anon_sym_as] = ACTIONS(2543), + [anon_sym_async] = ACTIONS(2543), + [anon_sym_await] = ACTIONS(2543), + [anon_sym_break] = ACTIONS(2543), + [anon_sym_const] = ACTIONS(2543), + [anon_sym_continue] = ACTIONS(2543), + [anon_sym_default] = ACTIONS(2543), + [anon_sym_enum] = ACTIONS(2543), + [anon_sym_fn] = ACTIONS(2543), + [anon_sym_for] = ACTIONS(2543), + [anon_sym_if] = ACTIONS(2543), + [anon_sym_impl] = ACTIONS(2543), + [anon_sym_let] = ACTIONS(2543), + [anon_sym_loop] = ACTIONS(2543), + [anon_sym_match] = ACTIONS(2543), + [anon_sym_mod] = ACTIONS(2543), + [anon_sym_pub] = ACTIONS(2543), + [anon_sym_return] = ACTIONS(2543), + [anon_sym_static] = ACTIONS(2543), + [anon_sym_struct] = ACTIONS(2543), + [anon_sym_trait] = ACTIONS(2543), + [anon_sym_type] = ACTIONS(2543), + [anon_sym_union] = ACTIONS(2543), + [anon_sym_unsafe] = ACTIONS(2543), + [anon_sym_use] = ACTIONS(2543), + [anon_sym_where] = ACTIONS(2543), + [anon_sym_while] = ACTIONS(2543), + [sym_mutable_specifier] = ACTIONS(2543), + [sym_integer_literal] = ACTIONS(2545), + [aux_sym_string_literal_token1] = ACTIONS(2547), + [sym_char_literal] = ACTIONS(2545), + [anon_sym_true] = ACTIONS(2549), + [anon_sym_false] = ACTIONS(2549), + [anon_sym_u8] = ACTIONS(2551), + [anon_sym_i8] = ACTIONS(2551), + [anon_sym_u16] = ACTIONS(2551), + [anon_sym_i16] = ACTIONS(2551), + [anon_sym_u32] = ACTIONS(2551), + [anon_sym_i32] = ACTIONS(2551), + [anon_sym_u64] = ACTIONS(2551), + [anon_sym_i64] = ACTIONS(2551), + [anon_sym_u128] = ACTIONS(2551), + [anon_sym_i128] = ACTIONS(2551), + [anon_sym_isize] = ACTIONS(2551), + [anon_sym_usize] = ACTIONS(2551), + [anon_sym_f32] = ACTIONS(2551), + [anon_sym_f64] = ACTIONS(2551), + [anon_sym_bool] = ACTIONS(2551), + [anon_sym_str] = ACTIONS(2551), + [anon_sym_char] = ACTIONS(2551), + [sym_line_comment] = ACTIONS(1112), + [sym__raw_identifier] = ACTIONS(2553), + [sym_self] = ACTIONS(2543), + [sym_super] = ACTIONS(2543), + [sym_crate] = ACTIONS(2543), + [sym_grit_metavariable] = ACTIONS(2555), + [sym_raw_string_literal] = ACTIONS(2545), + [sym_float_literal] = ACTIONS(2545), + [sym_block_comment] = ACTIONS(3), + }, + [567] = { + [sym_delim_token_tree] = STATE(271), + [sym__delim_tokens] = STATE(271), + [sym__non_delim_token] = STATE(271), + [sym__literal] = STATE(271), + [sym_string_literal] = STATE(682), + [sym_boolean_literal] = STATE(682), + [sym_primitive_type] = STATE(271), + [sym_identifier] = STATE(271), + [aux_sym_delim_token_tree_repeat1] = STATE(271), + [sym__primitive_identifier] = ACTIONS(2531), + [anon_sym_LPAREN] = ACTIONS(2533), + [anon_sym_RPAREN] = ACTIONS(2694), + [anon_sym_LBRACE] = ACTIONS(2535), + [anon_sym_LBRACK] = ACTIONS(2537), + [anon_sym_DOLLAR] = ACTIONS(2541), + [aux_sym__non_special_token_token1] = ACTIONS(2543), + [anon_sym_SQUOTE] = ACTIONS(2543), + [anon_sym_as] = ACTIONS(2543), + [anon_sym_async] = ACTIONS(2543), + [anon_sym_await] = ACTIONS(2543), + [anon_sym_break] = ACTIONS(2543), + [anon_sym_const] = ACTIONS(2543), + [anon_sym_continue] = ACTIONS(2543), + [anon_sym_default] = ACTIONS(2543), + [anon_sym_enum] = ACTIONS(2543), + [anon_sym_fn] = ACTIONS(2543), + [anon_sym_for] = ACTIONS(2543), + [anon_sym_if] = ACTIONS(2543), + [anon_sym_impl] = ACTIONS(2543), + [anon_sym_let] = ACTIONS(2543), + [anon_sym_loop] = ACTIONS(2543), + [anon_sym_match] = ACTIONS(2543), + [anon_sym_mod] = ACTIONS(2543), + [anon_sym_pub] = ACTIONS(2543), + [anon_sym_return] = ACTIONS(2543), + [anon_sym_static] = ACTIONS(2543), + [anon_sym_struct] = ACTIONS(2543), + [anon_sym_trait] = ACTIONS(2543), + [anon_sym_type] = ACTIONS(2543), + [anon_sym_union] = ACTIONS(2543), + [anon_sym_unsafe] = ACTIONS(2543), + [anon_sym_use] = ACTIONS(2543), + [anon_sym_where] = ACTIONS(2543), + [anon_sym_while] = ACTIONS(2543), + [sym_mutable_specifier] = ACTIONS(2543), + [sym_integer_literal] = ACTIONS(2545), + [aux_sym_string_literal_token1] = ACTIONS(2547), + [sym_char_literal] = ACTIONS(2545), + [anon_sym_true] = ACTIONS(2549), + [anon_sym_false] = ACTIONS(2549), + [anon_sym_u8] = ACTIONS(2551), + [anon_sym_i8] = ACTIONS(2551), + [anon_sym_u16] = ACTIONS(2551), + [anon_sym_i16] = ACTIONS(2551), + [anon_sym_u32] = ACTIONS(2551), + [anon_sym_i32] = ACTIONS(2551), + [anon_sym_u64] = ACTIONS(2551), + [anon_sym_i64] = ACTIONS(2551), + [anon_sym_u128] = ACTIONS(2551), + [anon_sym_i128] = ACTIONS(2551), + [anon_sym_isize] = ACTIONS(2551), + [anon_sym_usize] = ACTIONS(2551), + [anon_sym_f32] = ACTIONS(2551), + [anon_sym_f64] = ACTIONS(2551), + [anon_sym_bool] = ACTIONS(2551), + [anon_sym_str] = ACTIONS(2551), + [anon_sym_char] = ACTIONS(2551), + [sym_line_comment] = ACTIONS(1112), + [sym__raw_identifier] = ACTIONS(2553), + [sym_self] = ACTIONS(2543), + [sym_super] = ACTIONS(2543), + [sym_crate] = ACTIONS(2543), + [sym_grit_metavariable] = ACTIONS(2555), + [sym_raw_string_literal] = ACTIONS(2545), + [sym_float_literal] = ACTIONS(2545), + [sym_block_comment] = ACTIONS(3), + }, + [568] = { + [sym_delim_token_tree] = STATE(548), + [sym__delim_tokens] = STATE(548), + [sym__non_delim_token] = STATE(548), + [sym__literal] = STATE(548), + [sym_string_literal] = STATE(682), + [sym_boolean_literal] = STATE(682), + [sym_primitive_type] = STATE(548), + [sym_identifier] = STATE(548), + [aux_sym_delim_token_tree_repeat1] = STATE(548), + [sym__primitive_identifier] = ACTIONS(2531), + [anon_sym_LPAREN] = ACTIONS(2533), + [anon_sym_LBRACE] = ACTIONS(2535), + [anon_sym_RBRACE] = ACTIONS(2557), + [anon_sym_LBRACK] = ACTIONS(2537), + [anon_sym_DOLLAR] = ACTIONS(2696), + [aux_sym__non_special_token_token1] = ACTIONS(2698), + [anon_sym_SQUOTE] = ACTIONS(2698), + [anon_sym_as] = ACTIONS(2698), + [anon_sym_async] = ACTIONS(2698), + [anon_sym_await] = ACTIONS(2698), + [anon_sym_break] = ACTIONS(2698), + [anon_sym_const] = ACTIONS(2698), + [anon_sym_continue] = ACTIONS(2698), + [anon_sym_default] = ACTIONS(2698), + [anon_sym_enum] = ACTIONS(2698), + [anon_sym_fn] = ACTIONS(2698), + [anon_sym_for] = ACTIONS(2698), + [anon_sym_if] = ACTIONS(2698), + [anon_sym_impl] = ACTIONS(2698), + [anon_sym_let] = ACTIONS(2698), + [anon_sym_loop] = ACTIONS(2698), + [anon_sym_match] = ACTIONS(2698), + [anon_sym_mod] = ACTIONS(2698), + [anon_sym_pub] = ACTIONS(2698), + [anon_sym_return] = ACTIONS(2698), + [anon_sym_static] = ACTIONS(2698), + [anon_sym_struct] = ACTIONS(2698), + [anon_sym_trait] = ACTIONS(2698), + [anon_sym_type] = ACTIONS(2698), + [anon_sym_union] = ACTIONS(2698), + [anon_sym_unsafe] = ACTIONS(2698), + [anon_sym_use] = ACTIONS(2698), + [anon_sym_where] = ACTIONS(2698), + [anon_sym_while] = ACTIONS(2698), + [sym_mutable_specifier] = ACTIONS(2698), + [sym_integer_literal] = ACTIONS(2545), + [aux_sym_string_literal_token1] = ACTIONS(2547), + [sym_char_literal] = ACTIONS(2545), + [anon_sym_true] = ACTIONS(2549), + [anon_sym_false] = ACTIONS(2549), + [anon_sym_u8] = ACTIONS(2551), + [anon_sym_i8] = ACTIONS(2551), + [anon_sym_u16] = ACTIONS(2551), + [anon_sym_i16] = ACTIONS(2551), + [anon_sym_u32] = ACTIONS(2551), + [anon_sym_i32] = ACTIONS(2551), + [anon_sym_u64] = ACTIONS(2551), + [anon_sym_i64] = ACTIONS(2551), + [anon_sym_u128] = ACTIONS(2551), + [anon_sym_i128] = ACTIONS(2551), + [anon_sym_isize] = ACTIONS(2551), + [anon_sym_usize] = ACTIONS(2551), + [anon_sym_f32] = ACTIONS(2551), + [anon_sym_f64] = ACTIONS(2551), + [anon_sym_bool] = ACTIONS(2551), + [anon_sym_str] = ACTIONS(2551), + [anon_sym_char] = ACTIONS(2551), + [sym_line_comment] = ACTIONS(1112), + [sym__raw_identifier] = ACTIONS(2553), + [sym_self] = ACTIONS(2698), + [sym_super] = ACTIONS(2698), + [sym_crate] = ACTIONS(2698), + [sym_grit_metavariable] = ACTIONS(2555), + [sym_raw_string_literal] = ACTIONS(2545), + [sym_float_literal] = ACTIONS(2545), + [sym_block_comment] = ACTIONS(3), + }, + [569] = { + [sym_delim_token_tree] = STATE(271), + [sym__delim_tokens] = STATE(271), + [sym__non_delim_token] = STATE(271), + [sym__literal] = STATE(271), + [sym_string_literal] = STATE(682), + [sym_boolean_literal] = STATE(682), + [sym_primitive_type] = STATE(271), + [sym_identifier] = STATE(271), + [aux_sym_delim_token_tree_repeat1] = STATE(271), + [sym__primitive_identifier] = ACTIONS(2531), + [anon_sym_LPAREN] = ACTIONS(2533), + [anon_sym_LBRACE] = ACTIONS(2535), + [anon_sym_RBRACE] = ACTIONS(2694), + [anon_sym_LBRACK] = ACTIONS(2537), + [anon_sym_DOLLAR] = ACTIONS(2541), + [aux_sym__non_special_token_token1] = ACTIONS(2543), + [anon_sym_SQUOTE] = ACTIONS(2543), + [anon_sym_as] = ACTIONS(2543), + [anon_sym_async] = ACTIONS(2543), + [anon_sym_await] = ACTIONS(2543), + [anon_sym_break] = ACTIONS(2543), + [anon_sym_const] = ACTIONS(2543), + [anon_sym_continue] = ACTIONS(2543), + [anon_sym_default] = ACTIONS(2543), + [anon_sym_enum] = ACTIONS(2543), + [anon_sym_fn] = ACTIONS(2543), + [anon_sym_for] = ACTIONS(2543), + [anon_sym_if] = ACTIONS(2543), + [anon_sym_impl] = ACTIONS(2543), + [anon_sym_let] = ACTIONS(2543), + [anon_sym_loop] = ACTIONS(2543), + [anon_sym_match] = ACTIONS(2543), + [anon_sym_mod] = ACTIONS(2543), + [anon_sym_pub] = ACTIONS(2543), + [anon_sym_return] = ACTIONS(2543), + [anon_sym_static] = ACTIONS(2543), + [anon_sym_struct] = ACTIONS(2543), + [anon_sym_trait] = ACTIONS(2543), + [anon_sym_type] = ACTIONS(2543), + [anon_sym_union] = ACTIONS(2543), + [anon_sym_unsafe] = ACTIONS(2543), + [anon_sym_use] = ACTIONS(2543), + [anon_sym_where] = ACTIONS(2543), + [anon_sym_while] = ACTIONS(2543), + [sym_mutable_specifier] = ACTIONS(2543), + [sym_integer_literal] = ACTIONS(2545), + [aux_sym_string_literal_token1] = ACTIONS(2547), + [sym_char_literal] = ACTIONS(2545), + [anon_sym_true] = ACTIONS(2549), + [anon_sym_false] = ACTIONS(2549), + [anon_sym_u8] = ACTIONS(2551), + [anon_sym_i8] = ACTIONS(2551), + [anon_sym_u16] = ACTIONS(2551), + [anon_sym_i16] = ACTIONS(2551), + [anon_sym_u32] = ACTIONS(2551), + [anon_sym_i32] = ACTIONS(2551), + [anon_sym_u64] = ACTIONS(2551), + [anon_sym_i64] = ACTIONS(2551), + [anon_sym_u128] = ACTIONS(2551), + [anon_sym_i128] = ACTIONS(2551), + [anon_sym_isize] = ACTIONS(2551), + [anon_sym_usize] = ACTIONS(2551), + [anon_sym_f32] = ACTIONS(2551), + [anon_sym_f64] = ACTIONS(2551), + [anon_sym_bool] = ACTIONS(2551), + [anon_sym_str] = ACTIONS(2551), + [anon_sym_char] = ACTIONS(2551), + [sym_line_comment] = ACTIONS(1112), + [sym__raw_identifier] = ACTIONS(2553), + [sym_self] = ACTIONS(2543), + [sym_super] = ACTIONS(2543), + [sym_crate] = ACTIONS(2543), + [sym_grit_metavariable] = ACTIONS(2555), + [sym_raw_string_literal] = ACTIONS(2545), + [sym_float_literal] = ACTIONS(2545), + [sym_block_comment] = ACTIONS(3), + }, + [570] = { + [sym_delim_token_tree] = STATE(547), + [sym__delim_tokens] = STATE(547), + [sym__non_delim_token] = STATE(547), + [sym__literal] = STATE(547), + [sym_string_literal] = STATE(682), + [sym_boolean_literal] = STATE(682), + [sym_primitive_type] = STATE(547), + [sym_identifier] = STATE(547), + [aux_sym_delim_token_tree_repeat1] = STATE(547), + [sym__primitive_identifier] = ACTIONS(2531), + [anon_sym_LPAREN] = ACTIONS(2533), + [anon_sym_RPAREN] = ACTIONS(2557), + [anon_sym_LBRACE] = ACTIONS(2535), + [anon_sym_LBRACK] = ACTIONS(2537), + [anon_sym_DOLLAR] = ACTIONS(2700), + [aux_sym__non_special_token_token1] = ACTIONS(2702), + [anon_sym_SQUOTE] = ACTIONS(2702), + [anon_sym_as] = ACTIONS(2702), + [anon_sym_async] = ACTIONS(2702), + [anon_sym_await] = ACTIONS(2702), + [anon_sym_break] = ACTIONS(2702), + [anon_sym_const] = ACTIONS(2702), + [anon_sym_continue] = ACTIONS(2702), + [anon_sym_default] = ACTIONS(2702), + [anon_sym_enum] = ACTIONS(2702), + [anon_sym_fn] = ACTIONS(2702), + [anon_sym_for] = ACTIONS(2702), + [anon_sym_if] = ACTIONS(2702), + [anon_sym_impl] = ACTIONS(2702), + [anon_sym_let] = ACTIONS(2702), + [anon_sym_loop] = ACTIONS(2702), + [anon_sym_match] = ACTIONS(2702), + [anon_sym_mod] = ACTIONS(2702), + [anon_sym_pub] = ACTIONS(2702), + [anon_sym_return] = ACTIONS(2702), + [anon_sym_static] = ACTIONS(2702), + [anon_sym_struct] = ACTIONS(2702), + [anon_sym_trait] = ACTIONS(2702), + [anon_sym_type] = ACTIONS(2702), + [anon_sym_union] = ACTIONS(2702), + [anon_sym_unsafe] = ACTIONS(2702), + [anon_sym_use] = ACTIONS(2702), + [anon_sym_where] = ACTIONS(2702), + [anon_sym_while] = ACTIONS(2702), + [sym_mutable_specifier] = ACTIONS(2702), + [sym_integer_literal] = ACTIONS(2545), + [aux_sym_string_literal_token1] = ACTIONS(2547), + [sym_char_literal] = ACTIONS(2545), + [anon_sym_true] = ACTIONS(2549), + [anon_sym_false] = ACTIONS(2549), + [anon_sym_u8] = ACTIONS(2551), + [anon_sym_i8] = ACTIONS(2551), + [anon_sym_u16] = ACTIONS(2551), + [anon_sym_i16] = ACTIONS(2551), + [anon_sym_u32] = ACTIONS(2551), + [anon_sym_i32] = ACTIONS(2551), + [anon_sym_u64] = ACTIONS(2551), + [anon_sym_i64] = ACTIONS(2551), + [anon_sym_u128] = ACTIONS(2551), + [anon_sym_i128] = ACTIONS(2551), + [anon_sym_isize] = ACTIONS(2551), + [anon_sym_usize] = ACTIONS(2551), + [anon_sym_f32] = ACTIONS(2551), + [anon_sym_f64] = ACTIONS(2551), + [anon_sym_bool] = ACTIONS(2551), + [anon_sym_str] = ACTIONS(2551), + [anon_sym_char] = ACTIONS(2551), + [sym_line_comment] = ACTIONS(1112), + [sym__raw_identifier] = ACTIONS(2553), + [sym_self] = ACTIONS(2702), + [sym_super] = ACTIONS(2702), + [sym_crate] = ACTIONS(2702), + [sym_grit_metavariable] = ACTIONS(2555), + [sym_raw_string_literal] = ACTIONS(2545), + [sym_float_literal] = ACTIONS(2545), [sym_block_comment] = ACTIONS(3), }, [571] = { - [sym_token_tree] = STATE(263), - [sym_token_repetition] = STATE(263), - [sym__literal] = STATE(263), - [sym_string_literal] = STATE(656), - [sym_boolean_literal] = STATE(656), - [sym_primitive_type] = STATE(263), - [sym_identifier] = STATE(263), - [aux_sym_token_tree_repeat1] = STATE(263), - [sym__primitive_identifier] = ACTIONS(1300), - [anon_sym_LPAREN] = ACTIONS(2591), - [anon_sym_LBRACE] = ACTIONS(2593), - [anon_sym_LBRACK] = ACTIONS(2595), - [anon_sym_RBRACK] = ACTIONS(2669), - [anon_sym_DOLLAR] = ACTIONS(2599), - [aux_sym__non_special_token_token1] = ACTIONS(2601), - [anon_sym_SQUOTE] = ACTIONS(2601), - [anon_sym_as] = ACTIONS(2601), - [anon_sym_async] = ACTIONS(2601), - [anon_sym_await] = 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_where] = ACTIONS(2601), - [anon_sym_while] = ACTIONS(2601), - [sym_mutable_specifier] = ACTIONS(2601), - [sym_integer_literal] = ACTIONS(1314), - [aux_sym_string_literal_token1] = ACTIONS(1316), - [sym_char_literal] = ACTIONS(1314), - [anon_sym_true] = ACTIONS(1318), - [anon_sym_false] = ACTIONS(1318), - [anon_sym_u8] = ACTIONS(1320), - [anon_sym_i8] = ACTIONS(1320), - [anon_sym_u16] = ACTIONS(1320), - [anon_sym_i16] = ACTIONS(1320), - [anon_sym_u32] = ACTIONS(1320), - [anon_sym_i32] = ACTIONS(1320), - [anon_sym_u64] = ACTIONS(1320), - [anon_sym_i64] = ACTIONS(1320), - [anon_sym_u128] = ACTIONS(1320), - [anon_sym_i128] = ACTIONS(1320), - [anon_sym_isize] = ACTIONS(1320), - [anon_sym_usize] = ACTIONS(1320), - [anon_sym_f32] = ACTIONS(1320), - [anon_sym_f64] = ACTIONS(1320), - [anon_sym_bool] = ACTIONS(1320), - [anon_sym_str] = ACTIONS(1320), - [anon_sym_char] = ACTIONS(1320), - [sym_line_comment] = ACTIONS(1172), - [sym__raw_identifier] = ACTIONS(1322), - [sym_self] = ACTIONS(2601), - [sym_super] = ACTIONS(2601), - [sym_crate] = ACTIONS(2601), - [sym_metavariable] = ACTIONS(2603), - [sym_grit_metavariable] = ACTIONS(2605), - [sym_raw_string_literal] = ACTIONS(1314), - [sym_float_literal] = ACTIONS(1314), + [sym_token_tree] = STATE(259), + [sym_token_repetition] = STATE(259), + [sym__literal] = STATE(259), + [sym_string_literal] = STATE(652), + [sym_boolean_literal] = STATE(652), + [sym_primitive_type] = STATE(259), + [sym_identifier] = STATE(259), + [aux_sym_token_tree_repeat1] = STATE(259), + [sym__primitive_identifier] = ACTIONS(1302), + [anon_sym_LPAREN] = ACTIONS(2569), + [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_RBRACE] = ACTIONS(2571), + [anon_sym_LBRACK] = ACTIONS(2575), + [anon_sym_DOLLAR] = ACTIONS(2577), + [aux_sym__non_special_token_token1] = ACTIONS(2579), + [anon_sym_SQUOTE] = ACTIONS(2579), + [anon_sym_as] = ACTIONS(2579), + [anon_sym_async] = ACTIONS(2579), + [anon_sym_await] = ACTIONS(2579), + [anon_sym_break] = ACTIONS(2579), + [anon_sym_const] = ACTIONS(2579), + [anon_sym_continue] = ACTIONS(2579), + [anon_sym_default] = ACTIONS(2579), + [anon_sym_enum] = ACTIONS(2579), + [anon_sym_fn] = ACTIONS(2579), + [anon_sym_for] = ACTIONS(2579), + [anon_sym_if] = ACTIONS(2579), + [anon_sym_impl] = ACTIONS(2579), + [anon_sym_let] = ACTIONS(2579), + [anon_sym_loop] = ACTIONS(2579), + [anon_sym_match] = ACTIONS(2579), + [anon_sym_mod] = ACTIONS(2579), + [anon_sym_pub] = ACTIONS(2579), + [anon_sym_return] = ACTIONS(2579), + [anon_sym_static] = ACTIONS(2579), + [anon_sym_struct] = ACTIONS(2579), + [anon_sym_trait] = ACTIONS(2579), + [anon_sym_type] = ACTIONS(2579), + [anon_sym_union] = ACTIONS(2579), + [anon_sym_unsafe] = ACTIONS(2579), + [anon_sym_use] = ACTIONS(2579), + [anon_sym_where] = ACTIONS(2579), + [anon_sym_while] = ACTIONS(2579), + [sym_mutable_specifier] = ACTIONS(2579), + [sym_integer_literal] = ACTIONS(1316), + [aux_sym_string_literal_token1] = ACTIONS(1318), + [sym_char_literal] = ACTIONS(1316), + [anon_sym_true] = ACTIONS(1320), + [anon_sym_false] = 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), + [sym_line_comment] = ACTIONS(1112), + [sym__raw_identifier] = ACTIONS(1324), + [sym_self] = ACTIONS(2579), + [sym_super] = ACTIONS(2579), + [sym_crate] = ACTIONS(2579), + [sym_metavariable] = ACTIONS(2581), + [sym_grit_metavariable] = ACTIONS(2583), + [sym_raw_string_literal] = ACTIONS(1316), + [sym_float_literal] = ACTIONS(1316), [sym_block_comment] = ACTIONS(3), }, [572] = { - [sym_delim_token_tree] = STATE(577), - [sym__delim_tokens] = STATE(577), - [sym__non_delim_token] = STATE(577), - [sym__literal] = STATE(577), - [sym_string_literal] = STATE(662), - [sym_boolean_literal] = STATE(662), - [sym_primitive_type] = STATE(577), - [sym_identifier] = STATE(577), - [aux_sym_delim_token_tree_repeat1] = STATE(577), - [sym__primitive_identifier] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2533), - [anon_sym_RBRACE] = ACTIONS(2655), + [sym_delim_token_tree] = STATE(271), + [sym__delim_tokens] = STATE(271), + [sym__non_delim_token] = STATE(271), + [sym__literal] = STATE(271), + [sym_string_literal] = STATE(682), + [sym_boolean_literal] = STATE(682), + [sym_primitive_type] = STATE(271), + [sym_identifier] = STATE(271), + [aux_sym_delim_token_tree_repeat1] = STATE(271), + [sym__primitive_identifier] = ACTIONS(2531), + [anon_sym_LPAREN] = ACTIONS(2533), + [anon_sym_LBRACE] = ACTIONS(2535), [anon_sym_LBRACK] = ACTIONS(2537), - [anon_sym_DOLLAR] = ACTIONS(2712), + [anon_sym_RBRACK] = ACTIONS(2694), + [anon_sym_DOLLAR] = ACTIONS(2541), + [aux_sym__non_special_token_token1] = ACTIONS(2543), + [anon_sym_SQUOTE] = ACTIONS(2543), + [anon_sym_as] = ACTIONS(2543), + [anon_sym_async] = ACTIONS(2543), + [anon_sym_await] = ACTIONS(2543), + [anon_sym_break] = ACTIONS(2543), + [anon_sym_const] = ACTIONS(2543), + [anon_sym_continue] = ACTIONS(2543), + [anon_sym_default] = ACTIONS(2543), + [anon_sym_enum] = ACTIONS(2543), + [anon_sym_fn] = ACTIONS(2543), + [anon_sym_for] = ACTIONS(2543), + [anon_sym_if] = ACTIONS(2543), + [anon_sym_impl] = ACTIONS(2543), + [anon_sym_let] = ACTIONS(2543), + [anon_sym_loop] = ACTIONS(2543), + [anon_sym_match] = ACTIONS(2543), + [anon_sym_mod] = ACTIONS(2543), + [anon_sym_pub] = ACTIONS(2543), + [anon_sym_return] = ACTIONS(2543), + [anon_sym_static] = ACTIONS(2543), + [anon_sym_struct] = ACTIONS(2543), + [anon_sym_trait] = ACTIONS(2543), + [anon_sym_type] = ACTIONS(2543), + [anon_sym_union] = ACTIONS(2543), + [anon_sym_unsafe] = ACTIONS(2543), + [anon_sym_use] = ACTIONS(2543), + [anon_sym_where] = ACTIONS(2543), + [anon_sym_while] = ACTIONS(2543), + [sym_mutable_specifier] = ACTIONS(2543), + [sym_integer_literal] = ACTIONS(2545), + [aux_sym_string_literal_token1] = ACTIONS(2547), + [sym_char_literal] = ACTIONS(2545), + [anon_sym_true] = ACTIONS(2549), + [anon_sym_false] = ACTIONS(2549), + [anon_sym_u8] = ACTIONS(2551), + [anon_sym_i8] = ACTIONS(2551), + [anon_sym_u16] = ACTIONS(2551), + [anon_sym_i16] = ACTIONS(2551), + [anon_sym_u32] = ACTIONS(2551), + [anon_sym_i32] = ACTIONS(2551), + [anon_sym_u64] = ACTIONS(2551), + [anon_sym_i64] = ACTIONS(2551), + [anon_sym_u128] = ACTIONS(2551), + [anon_sym_i128] = ACTIONS(2551), + [anon_sym_isize] = ACTIONS(2551), + [anon_sym_usize] = ACTIONS(2551), + [anon_sym_f32] = ACTIONS(2551), + [anon_sym_f64] = ACTIONS(2551), + [anon_sym_bool] = ACTIONS(2551), + [anon_sym_str] = ACTIONS(2551), + [anon_sym_char] = ACTIONS(2551), + [sym_line_comment] = ACTIONS(1112), + [sym__raw_identifier] = ACTIONS(2553), + [sym_self] = ACTIONS(2543), + [sym_super] = ACTIONS(2543), + [sym_crate] = ACTIONS(2543), + [sym_grit_metavariable] = ACTIONS(2555), + [sym_raw_string_literal] = ACTIONS(2545), + [sym_float_literal] = ACTIONS(2545), + [sym_block_comment] = ACTIONS(3), + }, + [573] = { + [sym_token_tree] = STATE(563), + [sym_token_repetition] = STATE(563), + [sym__literal] = STATE(563), + [sym_string_literal] = STATE(652), + [sym_boolean_literal] = STATE(652), + [sym_primitive_type] = STATE(563), + [sym_identifier] = STATE(563), + [aux_sym_token_tree_repeat1] = STATE(563), + [sym__primitive_identifier] = ACTIONS(1302), + [anon_sym_LPAREN] = ACTIONS(2569), + [anon_sym_RPAREN] = ACTIONS(2704), + [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LBRACK] = ACTIONS(2575), + [anon_sym_DOLLAR] = ACTIONS(2577), + [aux_sym__non_special_token_token1] = ACTIONS(2706), + [anon_sym_SQUOTE] = ACTIONS(2706), + [anon_sym_as] = ACTIONS(2706), + [anon_sym_async] = ACTIONS(2706), + [anon_sym_await] = ACTIONS(2706), + [anon_sym_break] = ACTIONS(2706), + [anon_sym_const] = ACTIONS(2706), + [anon_sym_continue] = ACTIONS(2706), + [anon_sym_default] = ACTIONS(2706), + [anon_sym_enum] = ACTIONS(2706), + [anon_sym_fn] = ACTIONS(2706), + [anon_sym_for] = ACTIONS(2706), + [anon_sym_if] = ACTIONS(2706), + [anon_sym_impl] = ACTIONS(2706), + [anon_sym_let] = ACTIONS(2706), + [anon_sym_loop] = ACTIONS(2706), + [anon_sym_match] = ACTIONS(2706), + [anon_sym_mod] = ACTIONS(2706), + [anon_sym_pub] = ACTIONS(2706), + [anon_sym_return] = ACTIONS(2706), + [anon_sym_static] = ACTIONS(2706), + [anon_sym_struct] = ACTIONS(2706), + [anon_sym_trait] = ACTIONS(2706), + [anon_sym_type] = ACTIONS(2706), + [anon_sym_union] = ACTIONS(2706), + [anon_sym_unsafe] = ACTIONS(2706), + [anon_sym_use] = ACTIONS(2706), + [anon_sym_where] = ACTIONS(2706), + [anon_sym_while] = ACTIONS(2706), + [sym_mutable_specifier] = ACTIONS(2706), + [sym_integer_literal] = ACTIONS(1316), + [aux_sym_string_literal_token1] = ACTIONS(1318), + [sym_char_literal] = ACTIONS(1316), + [anon_sym_true] = ACTIONS(1320), + [anon_sym_false] = 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), + [sym_line_comment] = ACTIONS(1112), + [sym__raw_identifier] = ACTIONS(1324), + [sym_self] = ACTIONS(2706), + [sym_super] = ACTIONS(2706), + [sym_crate] = ACTIONS(2706), + [sym_metavariable] = ACTIONS(2708), + [sym_grit_metavariable] = ACTIONS(2583), + [sym_raw_string_literal] = ACTIONS(1316), + [sym_float_literal] = ACTIONS(1316), + [sym_block_comment] = ACTIONS(3), + }, + [574] = { + [sym_token_tree] = STATE(545), + [sym_token_repetition] = STATE(545), + [sym__literal] = STATE(545), + [sym_string_literal] = STATE(652), + [sym_boolean_literal] = STATE(652), + [sym_primitive_type] = STATE(545), + [sym_identifier] = STATE(545), + [aux_sym_token_tree_repeat1] = STATE(545), + [sym__primitive_identifier] = ACTIONS(1302), + [anon_sym_LPAREN] = ACTIONS(2569), + [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_RBRACE] = ACTIONS(2704), + [anon_sym_LBRACK] = ACTIONS(2575), + [anon_sym_DOLLAR] = ACTIONS(2577), + [aux_sym__non_special_token_token1] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2710), + [anon_sym_as] = ACTIONS(2710), + [anon_sym_async] = ACTIONS(2710), + [anon_sym_await] = ACTIONS(2710), + [anon_sym_break] = ACTIONS(2710), + [anon_sym_const] = ACTIONS(2710), + [anon_sym_continue] = ACTIONS(2710), + [anon_sym_default] = ACTIONS(2710), + [anon_sym_enum] = ACTIONS(2710), + [anon_sym_fn] = ACTIONS(2710), + [anon_sym_for] = ACTIONS(2710), + [anon_sym_if] = ACTIONS(2710), + [anon_sym_impl] = ACTIONS(2710), + [anon_sym_let] = ACTIONS(2710), + [anon_sym_loop] = ACTIONS(2710), + [anon_sym_match] = ACTIONS(2710), + [anon_sym_mod] = ACTIONS(2710), + [anon_sym_pub] = ACTIONS(2710), + [anon_sym_return] = ACTIONS(2710), + [anon_sym_static] = ACTIONS(2710), + [anon_sym_struct] = ACTIONS(2710), + [anon_sym_trait] = ACTIONS(2710), + [anon_sym_type] = ACTIONS(2710), + [anon_sym_union] = ACTIONS(2710), + [anon_sym_unsafe] = ACTIONS(2710), + [anon_sym_use] = ACTIONS(2710), + [anon_sym_where] = ACTIONS(2710), + [anon_sym_while] = ACTIONS(2710), + [sym_mutable_specifier] = ACTIONS(2710), + [sym_integer_literal] = ACTIONS(1316), + [aux_sym_string_literal_token1] = ACTIONS(1318), + [sym_char_literal] = ACTIONS(1316), + [anon_sym_true] = ACTIONS(1320), + [anon_sym_false] = 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), + [sym_line_comment] = ACTIONS(1112), + [sym__raw_identifier] = ACTIONS(1324), + [sym_self] = ACTIONS(2710), + [sym_super] = ACTIONS(2710), + [sym_crate] = ACTIONS(2710), + [sym_metavariable] = ACTIONS(2712), + [sym_grit_metavariable] = ACTIONS(2583), + [sym_raw_string_literal] = ACTIONS(1316), + [sym_float_literal] = ACTIONS(1316), + [sym_block_comment] = ACTIONS(3), + }, + [575] = { + [sym_token_tree] = STATE(578), + [sym_token_repetition] = STATE(578), + [sym__literal] = STATE(578), + [sym_string_literal] = STATE(652), + [sym_boolean_literal] = STATE(652), + [sym_primitive_type] = STATE(578), + [sym_identifier] = STATE(578), + [aux_sym_token_tree_repeat1] = STATE(578), + [sym__primitive_identifier] = ACTIONS(1302), + [anon_sym_LPAREN] = ACTIONS(2569), + [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LBRACK] = ACTIONS(2575), + [anon_sym_RBRACK] = ACTIONS(2704), + [anon_sym_DOLLAR] = ACTIONS(2577), [aux_sym__non_special_token_token1] = ACTIONS(2714), [anon_sym_SQUOTE] = ACTIONS(2714), [anon_sym_as] = ACTIONS(2714), @@ -72877,444 +73179,444 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2714), [anon_sym_while] = ACTIONS(2714), [sym_mutable_specifier] = ACTIONS(2714), - [sym_integer_literal] = ACTIONS(2543), - [aux_sym_string_literal_token1] = ACTIONS(2545), - [sym_char_literal] = ACTIONS(2543), - [anon_sym_true] = ACTIONS(2547), - [anon_sym_false] = ACTIONS(2547), - [anon_sym_u8] = ACTIONS(2549), - [anon_sym_i8] = ACTIONS(2549), - [anon_sym_u16] = ACTIONS(2549), - [anon_sym_i16] = ACTIONS(2549), - [anon_sym_u32] = ACTIONS(2549), - [anon_sym_i32] = ACTIONS(2549), - [anon_sym_u64] = ACTIONS(2549), - [anon_sym_i64] = ACTIONS(2549), - [anon_sym_u128] = ACTIONS(2549), - [anon_sym_i128] = ACTIONS(2549), - [anon_sym_isize] = ACTIONS(2549), - [anon_sym_usize] = ACTIONS(2549), - [anon_sym_f32] = ACTIONS(2549), - [anon_sym_f64] = ACTIONS(2549), - [anon_sym_bool] = ACTIONS(2549), - [anon_sym_str] = ACTIONS(2549), - [anon_sym_char] = ACTIONS(2549), - [sym_line_comment] = ACTIONS(1172), - [sym__raw_identifier] = ACTIONS(2551), + [sym_integer_literal] = ACTIONS(1316), + [aux_sym_string_literal_token1] = ACTIONS(1318), + [sym_char_literal] = ACTIONS(1316), + [anon_sym_true] = ACTIONS(1320), + [anon_sym_false] = 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), + [sym_line_comment] = ACTIONS(1112), + [sym__raw_identifier] = ACTIONS(1324), [sym_self] = ACTIONS(2714), [sym_super] = ACTIONS(2714), [sym_crate] = ACTIONS(2714), - [sym_grit_metavariable] = ACTIONS(2553), - [sym_raw_string_literal] = ACTIONS(2543), - [sym_float_literal] = ACTIONS(2543), + [sym_metavariable] = ACTIONS(2716), + [sym_grit_metavariable] = ACTIONS(2583), + [sym_raw_string_literal] = ACTIONS(1316), + [sym_float_literal] = ACTIONS(1316), [sym_block_comment] = ACTIONS(3), }, - [573] = { - [sym_token_tree] = STATE(560), - [sym_token_repetition] = STATE(560), - [sym__literal] = STATE(560), - [sym_string_literal] = STATE(656), - [sym_boolean_literal] = STATE(656), - [sym_primitive_type] = STATE(560), - [sym_identifier] = STATE(560), - [aux_sym_token_repetition_repeat1] = STATE(560), - [sym__primitive_identifier] = ACTIONS(1300), - [anon_sym_LPAREN] = ACTIONS(2591), - [anon_sym_RPAREN] = ACTIONS(2716), - [anon_sym_LBRACE] = ACTIONS(2593), - [anon_sym_LBRACK] = ACTIONS(2595), - [anon_sym_DOLLAR] = ACTIONS(2599), - [aux_sym__non_special_token_token1] = ACTIONS(2718), - [anon_sym_SQUOTE] = ACTIONS(2718), - [anon_sym_as] = ACTIONS(2718), - [anon_sym_async] = ACTIONS(2718), - [anon_sym_await] = ACTIONS(2718), - [anon_sym_break] = ACTIONS(2718), - [anon_sym_const] = ACTIONS(2718), - [anon_sym_continue] = ACTIONS(2718), - [anon_sym_default] = ACTIONS(2718), - [anon_sym_enum] = ACTIONS(2718), - [anon_sym_fn] = ACTIONS(2718), - [anon_sym_for] = ACTIONS(2718), - [anon_sym_if] = ACTIONS(2718), - [anon_sym_impl] = ACTIONS(2718), - [anon_sym_let] = ACTIONS(2718), - [anon_sym_loop] = ACTIONS(2718), - [anon_sym_match] = ACTIONS(2718), - [anon_sym_mod] = ACTIONS(2718), - [anon_sym_pub] = ACTIONS(2718), - [anon_sym_return] = ACTIONS(2718), - [anon_sym_static] = ACTIONS(2718), - [anon_sym_struct] = ACTIONS(2718), - [anon_sym_trait] = ACTIONS(2718), - [anon_sym_type] = ACTIONS(2718), - [anon_sym_union] = ACTIONS(2718), - [anon_sym_unsafe] = ACTIONS(2718), - [anon_sym_use] = ACTIONS(2718), - [anon_sym_where] = ACTIONS(2718), - [anon_sym_while] = ACTIONS(2718), - [sym_mutable_specifier] = ACTIONS(2718), - [sym_integer_literal] = ACTIONS(1314), - [aux_sym_string_literal_token1] = ACTIONS(1316), - [sym_char_literal] = ACTIONS(1314), - [anon_sym_true] = ACTIONS(1318), - [anon_sym_false] = ACTIONS(1318), - [anon_sym_u8] = ACTIONS(1320), - [anon_sym_i8] = ACTIONS(1320), - [anon_sym_u16] = ACTIONS(1320), - [anon_sym_i16] = ACTIONS(1320), - [anon_sym_u32] = ACTIONS(1320), - [anon_sym_i32] = ACTIONS(1320), - [anon_sym_u64] = ACTIONS(1320), - [anon_sym_i64] = ACTIONS(1320), - [anon_sym_u128] = ACTIONS(1320), - [anon_sym_i128] = ACTIONS(1320), - [anon_sym_isize] = ACTIONS(1320), - [anon_sym_usize] = ACTIONS(1320), - [anon_sym_f32] = ACTIONS(1320), - [anon_sym_f64] = ACTIONS(1320), - [anon_sym_bool] = ACTIONS(1320), - [anon_sym_str] = ACTIONS(1320), - [anon_sym_char] = ACTIONS(1320), - [sym_line_comment] = ACTIONS(1172), - [sym__raw_identifier] = ACTIONS(1322), - [sym_self] = ACTIONS(2718), - [sym_super] = ACTIONS(2718), - [sym_crate] = ACTIONS(2718), - [sym_metavariable] = ACTIONS(2720), - [sym_grit_metavariable] = ACTIONS(1326), - [sym_raw_string_literal] = ACTIONS(1314), - [sym_float_literal] = ACTIONS(1314), + [576] = { + [sym_token_tree] = STATE(259), + [sym_token_repetition] = STATE(259), + [sym__literal] = STATE(259), + [sym_string_literal] = STATE(652), + [sym_boolean_literal] = STATE(652), + [sym_primitive_type] = STATE(259), + [sym_identifier] = STATE(259), + [aux_sym_token_tree_repeat1] = STATE(259), + [sym__primitive_identifier] = ACTIONS(1302), + [anon_sym_LPAREN] = ACTIONS(2569), + [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LBRACK] = ACTIONS(2575), + [anon_sym_RBRACK] = ACTIONS(2571), + [anon_sym_DOLLAR] = ACTIONS(2577), + [aux_sym__non_special_token_token1] = ACTIONS(2579), + [anon_sym_SQUOTE] = ACTIONS(2579), + [anon_sym_as] = ACTIONS(2579), + [anon_sym_async] = ACTIONS(2579), + [anon_sym_await] = ACTIONS(2579), + [anon_sym_break] = ACTIONS(2579), + [anon_sym_const] = ACTIONS(2579), + [anon_sym_continue] = ACTIONS(2579), + [anon_sym_default] = ACTIONS(2579), + [anon_sym_enum] = ACTIONS(2579), + [anon_sym_fn] = ACTIONS(2579), + [anon_sym_for] = ACTIONS(2579), + [anon_sym_if] = ACTIONS(2579), + [anon_sym_impl] = ACTIONS(2579), + [anon_sym_let] = ACTIONS(2579), + [anon_sym_loop] = ACTIONS(2579), + [anon_sym_match] = ACTIONS(2579), + [anon_sym_mod] = ACTIONS(2579), + [anon_sym_pub] = ACTIONS(2579), + [anon_sym_return] = ACTIONS(2579), + [anon_sym_static] = ACTIONS(2579), + [anon_sym_struct] = ACTIONS(2579), + [anon_sym_trait] = ACTIONS(2579), + [anon_sym_type] = ACTIONS(2579), + [anon_sym_union] = ACTIONS(2579), + [anon_sym_unsafe] = ACTIONS(2579), + [anon_sym_use] = ACTIONS(2579), + [anon_sym_where] = ACTIONS(2579), + [anon_sym_while] = ACTIONS(2579), + [sym_mutable_specifier] = ACTIONS(2579), + [sym_integer_literal] = ACTIONS(1316), + [aux_sym_string_literal_token1] = ACTIONS(1318), + [sym_char_literal] = ACTIONS(1316), + [anon_sym_true] = ACTIONS(1320), + [anon_sym_false] = 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), + [sym_line_comment] = ACTIONS(1112), + [sym__raw_identifier] = ACTIONS(1324), + [sym_self] = ACTIONS(2579), + [sym_super] = ACTIONS(2579), + [sym_crate] = ACTIONS(2579), + [sym_metavariable] = ACTIONS(2581), + [sym_grit_metavariable] = ACTIONS(2583), + [sym_raw_string_literal] = ACTIONS(1316), + [sym_float_literal] = ACTIONS(1316), [sym_block_comment] = ACTIONS(3), }, - [574] = { - [sym_delim_token_tree] = STATE(546), - [sym__delim_tokens] = STATE(546), - [sym__non_delim_token] = STATE(546), - [sym__literal] = STATE(546), - [sym_string_literal] = STATE(662), - [sym_boolean_literal] = STATE(662), - [sym_primitive_type] = STATE(546), - [sym_identifier] = STATE(546), - [aux_sym_delim_token_tree_repeat1] = STATE(546), - [sym__primitive_identifier] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2533), + [577] = { + [sym_delim_token_tree] = STATE(564), + [sym__delim_tokens] = STATE(564), + [sym__non_delim_token] = STATE(564), + [sym__literal] = STATE(564), + [sym_string_literal] = STATE(682), + [sym_boolean_literal] = STATE(682), + [sym_primitive_type] = STATE(564), + [sym_identifier] = STATE(564), + [aux_sym_delim_token_tree_repeat1] = STATE(564), + [sym__primitive_identifier] = ACTIONS(2531), + [anon_sym_LPAREN] = ACTIONS(2533), + [anon_sym_LBRACE] = ACTIONS(2535), [anon_sym_LBRACK] = ACTIONS(2537), - [anon_sym_RBRACK] = ACTIONS(2627), - [anon_sym_DOLLAR] = ACTIONS(2722), - [aux_sym__non_special_token_token1] = ACTIONS(2724), - [anon_sym_SQUOTE] = ACTIONS(2724), - [anon_sym_as] = ACTIONS(2724), - [anon_sym_async] = ACTIONS(2724), - [anon_sym_await] = ACTIONS(2724), - [anon_sym_break] = ACTIONS(2724), - [anon_sym_const] = ACTIONS(2724), - [anon_sym_continue] = ACTIONS(2724), - [anon_sym_default] = ACTIONS(2724), - [anon_sym_enum] = ACTIONS(2724), - [anon_sym_fn] = ACTIONS(2724), - [anon_sym_for] = ACTIONS(2724), - [anon_sym_if] = ACTIONS(2724), - [anon_sym_impl] = ACTIONS(2724), - [anon_sym_let] = ACTIONS(2724), - [anon_sym_loop] = ACTIONS(2724), - [anon_sym_match] = ACTIONS(2724), - [anon_sym_mod] = ACTIONS(2724), - [anon_sym_pub] = ACTIONS(2724), - [anon_sym_return] = ACTIONS(2724), - [anon_sym_static] = ACTIONS(2724), - [anon_sym_struct] = ACTIONS(2724), - [anon_sym_trait] = ACTIONS(2724), - [anon_sym_type] = ACTIONS(2724), - [anon_sym_union] = ACTIONS(2724), - [anon_sym_unsafe] = ACTIONS(2724), - [anon_sym_use] = ACTIONS(2724), - [anon_sym_where] = ACTIONS(2724), - [anon_sym_while] = ACTIONS(2724), - [sym_mutable_specifier] = ACTIONS(2724), - [sym_integer_literal] = ACTIONS(2543), - [aux_sym_string_literal_token1] = ACTIONS(2545), - [sym_char_literal] = ACTIONS(2543), - [anon_sym_true] = ACTIONS(2547), - [anon_sym_false] = ACTIONS(2547), - [anon_sym_u8] = ACTIONS(2549), - [anon_sym_i8] = ACTIONS(2549), - [anon_sym_u16] = ACTIONS(2549), - [anon_sym_i16] = ACTIONS(2549), - [anon_sym_u32] = ACTIONS(2549), - [anon_sym_i32] = ACTIONS(2549), - [anon_sym_u64] = ACTIONS(2549), - [anon_sym_i64] = ACTIONS(2549), - [anon_sym_u128] = ACTIONS(2549), - [anon_sym_i128] = ACTIONS(2549), - [anon_sym_isize] = ACTIONS(2549), - [anon_sym_usize] = ACTIONS(2549), - [anon_sym_f32] = ACTIONS(2549), - [anon_sym_f64] = ACTIONS(2549), - [anon_sym_bool] = ACTIONS(2549), - [anon_sym_str] = ACTIONS(2549), - [anon_sym_char] = ACTIONS(2549), - [sym_line_comment] = ACTIONS(1172), - [sym__raw_identifier] = ACTIONS(2551), - [sym_self] = ACTIONS(2724), - [sym_super] = ACTIONS(2724), - [sym_crate] = ACTIONS(2724), - [sym_grit_metavariable] = ACTIONS(2553), - [sym_raw_string_literal] = ACTIONS(2543), - [sym_float_literal] = ACTIONS(2543), + [anon_sym_RBRACK] = ACTIONS(2718), + [anon_sym_DOLLAR] = ACTIONS(2720), + [aux_sym__non_special_token_token1] = ACTIONS(2722), + [anon_sym_SQUOTE] = ACTIONS(2722), + [anon_sym_as] = ACTIONS(2722), + [anon_sym_async] = ACTIONS(2722), + [anon_sym_await] = ACTIONS(2722), + [anon_sym_break] = ACTIONS(2722), + [anon_sym_const] = ACTIONS(2722), + [anon_sym_continue] = ACTIONS(2722), + [anon_sym_default] = ACTIONS(2722), + [anon_sym_enum] = ACTIONS(2722), + [anon_sym_fn] = ACTIONS(2722), + [anon_sym_for] = ACTIONS(2722), + [anon_sym_if] = ACTIONS(2722), + [anon_sym_impl] = ACTIONS(2722), + [anon_sym_let] = ACTIONS(2722), + [anon_sym_loop] = ACTIONS(2722), + [anon_sym_match] = ACTIONS(2722), + [anon_sym_mod] = ACTIONS(2722), + [anon_sym_pub] = ACTIONS(2722), + [anon_sym_return] = ACTIONS(2722), + [anon_sym_static] = ACTIONS(2722), + [anon_sym_struct] = ACTIONS(2722), + [anon_sym_trait] = ACTIONS(2722), + [anon_sym_type] = ACTIONS(2722), + [anon_sym_union] = ACTIONS(2722), + [anon_sym_unsafe] = ACTIONS(2722), + [anon_sym_use] = ACTIONS(2722), + [anon_sym_where] = ACTIONS(2722), + [anon_sym_while] = ACTIONS(2722), + [sym_mutable_specifier] = ACTIONS(2722), + [sym_integer_literal] = ACTIONS(2545), + [aux_sym_string_literal_token1] = ACTIONS(2547), + [sym_char_literal] = ACTIONS(2545), + [anon_sym_true] = ACTIONS(2549), + [anon_sym_false] = ACTIONS(2549), + [anon_sym_u8] = ACTIONS(2551), + [anon_sym_i8] = ACTIONS(2551), + [anon_sym_u16] = ACTIONS(2551), + [anon_sym_i16] = ACTIONS(2551), + [anon_sym_u32] = ACTIONS(2551), + [anon_sym_i32] = ACTIONS(2551), + [anon_sym_u64] = ACTIONS(2551), + [anon_sym_i64] = ACTIONS(2551), + [anon_sym_u128] = ACTIONS(2551), + [anon_sym_i128] = ACTIONS(2551), + [anon_sym_isize] = ACTIONS(2551), + [anon_sym_usize] = ACTIONS(2551), + [anon_sym_f32] = ACTIONS(2551), + [anon_sym_f64] = ACTIONS(2551), + [anon_sym_bool] = ACTIONS(2551), + [anon_sym_str] = ACTIONS(2551), + [anon_sym_char] = ACTIONS(2551), + [sym_line_comment] = ACTIONS(1112), + [sym__raw_identifier] = ACTIONS(2553), + [sym_self] = ACTIONS(2722), + [sym_super] = ACTIONS(2722), + [sym_crate] = ACTIONS(2722), + [sym_grit_metavariable] = ACTIONS(2555), + [sym_raw_string_literal] = ACTIONS(2545), + [sym_float_literal] = ACTIONS(2545), [sym_block_comment] = ACTIONS(3), }, - [575] = { - [sym_delim_token_tree] = STATE(580), - [sym__delim_tokens] = STATE(580), - [sym__non_delim_token] = STATE(580), - [sym__literal] = STATE(580), - [sym_string_literal] = STATE(662), - [sym_boolean_literal] = STATE(662), - [sym_primitive_type] = STATE(580), - [sym_identifier] = STATE(580), - [aux_sym_delim_token_tree_repeat1] = STATE(580), - [sym__primitive_identifier] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2533), - [anon_sym_LBRACK] = ACTIONS(2537), - [anon_sym_RBRACK] = ACTIONS(2655), - [anon_sym_DOLLAR] = ACTIONS(2726), - [aux_sym__non_special_token_token1] = ACTIONS(2728), - [anon_sym_SQUOTE] = ACTIONS(2728), - [anon_sym_as] = ACTIONS(2728), - [anon_sym_async] = ACTIONS(2728), - [anon_sym_await] = ACTIONS(2728), - [anon_sym_break] = ACTIONS(2728), - [anon_sym_const] = ACTIONS(2728), - [anon_sym_continue] = ACTIONS(2728), - [anon_sym_default] = ACTIONS(2728), - [anon_sym_enum] = ACTIONS(2728), - [anon_sym_fn] = ACTIONS(2728), - [anon_sym_for] = ACTIONS(2728), - [anon_sym_if] = ACTIONS(2728), - [anon_sym_impl] = ACTIONS(2728), - [anon_sym_let] = ACTIONS(2728), - [anon_sym_loop] = ACTIONS(2728), - [anon_sym_match] = ACTIONS(2728), - [anon_sym_mod] = ACTIONS(2728), - [anon_sym_pub] = ACTIONS(2728), - [anon_sym_return] = ACTIONS(2728), - [anon_sym_static] = ACTIONS(2728), - [anon_sym_struct] = ACTIONS(2728), - [anon_sym_trait] = ACTIONS(2728), - [anon_sym_type] = ACTIONS(2728), - [anon_sym_union] = ACTIONS(2728), - [anon_sym_unsafe] = ACTIONS(2728), - [anon_sym_use] = ACTIONS(2728), - [anon_sym_where] = ACTIONS(2728), - [anon_sym_while] = ACTIONS(2728), - [sym_mutable_specifier] = ACTIONS(2728), - [sym_integer_literal] = ACTIONS(2543), - [aux_sym_string_literal_token1] = ACTIONS(2545), - [sym_char_literal] = ACTIONS(2543), - [anon_sym_true] = ACTIONS(2547), - [anon_sym_false] = ACTIONS(2547), - [anon_sym_u8] = ACTIONS(2549), - [anon_sym_i8] = ACTIONS(2549), - [anon_sym_u16] = ACTIONS(2549), - [anon_sym_i16] = ACTIONS(2549), - [anon_sym_u32] = ACTIONS(2549), - [anon_sym_i32] = ACTIONS(2549), - [anon_sym_u64] = ACTIONS(2549), - [anon_sym_i64] = ACTIONS(2549), - [anon_sym_u128] = ACTIONS(2549), - [anon_sym_i128] = ACTIONS(2549), - [anon_sym_isize] = ACTIONS(2549), - [anon_sym_usize] = ACTIONS(2549), - [anon_sym_f32] = ACTIONS(2549), - [anon_sym_f64] = ACTIONS(2549), - [anon_sym_bool] = ACTIONS(2549), - [anon_sym_str] = ACTIONS(2549), - [anon_sym_char] = ACTIONS(2549), - [sym_line_comment] = ACTIONS(1172), - [sym__raw_identifier] = ACTIONS(2551), - [sym_self] = ACTIONS(2728), - [sym_super] = ACTIONS(2728), - [sym_crate] = ACTIONS(2728), - [sym_grit_metavariable] = ACTIONS(2553), - [sym_raw_string_literal] = ACTIONS(2543), - [sym_float_literal] = ACTIONS(2543), + [578] = { + [sym_token_tree] = STATE(259), + [sym_token_repetition] = STATE(259), + [sym__literal] = STATE(259), + [sym_string_literal] = STATE(652), + [sym_boolean_literal] = STATE(652), + [sym_primitive_type] = STATE(259), + [sym_identifier] = STATE(259), + [aux_sym_token_tree_repeat1] = STATE(259), + [sym__primitive_identifier] = ACTIONS(1302), + [anon_sym_LPAREN] = ACTIONS(2569), + [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LBRACK] = ACTIONS(2575), + [anon_sym_RBRACK] = ACTIONS(2609), + [anon_sym_DOLLAR] = ACTIONS(2577), + [aux_sym__non_special_token_token1] = ACTIONS(2579), + [anon_sym_SQUOTE] = ACTIONS(2579), + [anon_sym_as] = ACTIONS(2579), + [anon_sym_async] = ACTIONS(2579), + [anon_sym_await] = ACTIONS(2579), + [anon_sym_break] = ACTIONS(2579), + [anon_sym_const] = ACTIONS(2579), + [anon_sym_continue] = ACTIONS(2579), + [anon_sym_default] = ACTIONS(2579), + [anon_sym_enum] = ACTIONS(2579), + [anon_sym_fn] = ACTIONS(2579), + [anon_sym_for] = ACTIONS(2579), + [anon_sym_if] = ACTIONS(2579), + [anon_sym_impl] = ACTIONS(2579), + [anon_sym_let] = ACTIONS(2579), + [anon_sym_loop] = ACTIONS(2579), + [anon_sym_match] = ACTIONS(2579), + [anon_sym_mod] = ACTIONS(2579), + [anon_sym_pub] = ACTIONS(2579), + [anon_sym_return] = ACTIONS(2579), + [anon_sym_static] = ACTIONS(2579), + [anon_sym_struct] = ACTIONS(2579), + [anon_sym_trait] = ACTIONS(2579), + [anon_sym_type] = ACTIONS(2579), + [anon_sym_union] = ACTIONS(2579), + [anon_sym_unsafe] = ACTIONS(2579), + [anon_sym_use] = ACTIONS(2579), + [anon_sym_where] = ACTIONS(2579), + [anon_sym_while] = ACTIONS(2579), + [sym_mutable_specifier] = ACTIONS(2579), + [sym_integer_literal] = ACTIONS(1316), + [aux_sym_string_literal_token1] = ACTIONS(1318), + [sym_char_literal] = ACTIONS(1316), + [anon_sym_true] = ACTIONS(1320), + [anon_sym_false] = 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), + [sym_line_comment] = ACTIONS(1112), + [sym__raw_identifier] = ACTIONS(1324), + [sym_self] = ACTIONS(2579), + [sym_super] = ACTIONS(2579), + [sym_crate] = ACTIONS(2579), + [sym_metavariable] = ACTIONS(2581), + [sym_grit_metavariable] = ACTIONS(2583), + [sym_raw_string_literal] = ACTIONS(1316), + [sym_float_literal] = ACTIONS(1316), [sym_block_comment] = ACTIONS(3), }, - [576] = { - [sym_delim_token_tree] = STATE(268), - [sym__delim_tokens] = STATE(268), - [sym__non_delim_token] = STATE(268), - [sym__literal] = STATE(268), - [sym_string_literal] = STATE(662), - [sym_boolean_literal] = STATE(662), - [sym_primitive_type] = STATE(268), - [sym_identifier] = STATE(268), - [aux_sym_delim_token_tree_repeat1] = STATE(268), - [sym__primitive_identifier] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_RPAREN] = ACTIONS(2730), - [anon_sym_LBRACE] = ACTIONS(2533), + [579] = { + [sym_delim_token_tree] = STATE(565), + [sym__delim_tokens] = STATE(565), + [sym__non_delim_token] = STATE(565), + [sym__literal] = STATE(565), + [sym_string_literal] = STATE(682), + [sym_boolean_literal] = STATE(682), + [sym_primitive_type] = STATE(565), + [sym_identifier] = STATE(565), + [aux_sym_delim_token_tree_repeat1] = STATE(565), + [sym__primitive_identifier] = ACTIONS(2531), + [anon_sym_LPAREN] = ACTIONS(2533), + [anon_sym_LBRACE] = ACTIONS(2535), + [anon_sym_RBRACE] = ACTIONS(2718), [anon_sym_LBRACK] = ACTIONS(2537), - [anon_sym_DOLLAR] = ACTIONS(2563), - [aux_sym__non_special_token_token1] = ACTIONS(2565), - [anon_sym_SQUOTE] = ACTIONS(2565), - [anon_sym_as] = ACTIONS(2565), - [anon_sym_async] = ACTIONS(2565), - [anon_sym_await] = ACTIONS(2565), - [anon_sym_break] = ACTIONS(2565), - [anon_sym_const] = ACTIONS(2565), - [anon_sym_continue] = ACTIONS(2565), - [anon_sym_default] = ACTIONS(2565), - [anon_sym_enum] = ACTIONS(2565), - [anon_sym_fn] = ACTIONS(2565), - [anon_sym_for] = ACTIONS(2565), - [anon_sym_if] = ACTIONS(2565), - [anon_sym_impl] = ACTIONS(2565), - [anon_sym_let] = ACTIONS(2565), - [anon_sym_loop] = ACTIONS(2565), - [anon_sym_match] = ACTIONS(2565), - [anon_sym_mod] = ACTIONS(2565), - [anon_sym_pub] = ACTIONS(2565), - [anon_sym_return] = ACTIONS(2565), - [anon_sym_static] = ACTIONS(2565), - [anon_sym_struct] = ACTIONS(2565), - [anon_sym_trait] = ACTIONS(2565), - [anon_sym_type] = ACTIONS(2565), - [anon_sym_union] = ACTIONS(2565), - [anon_sym_unsafe] = ACTIONS(2565), - [anon_sym_use] = ACTIONS(2565), - [anon_sym_where] = ACTIONS(2565), - [anon_sym_while] = ACTIONS(2565), - [sym_mutable_specifier] = ACTIONS(2565), - [sym_integer_literal] = ACTIONS(2543), - [aux_sym_string_literal_token1] = ACTIONS(2545), - [sym_char_literal] = ACTIONS(2543), - [anon_sym_true] = ACTIONS(2547), - [anon_sym_false] = ACTIONS(2547), - [anon_sym_u8] = ACTIONS(2549), - [anon_sym_i8] = ACTIONS(2549), - [anon_sym_u16] = ACTIONS(2549), - [anon_sym_i16] = ACTIONS(2549), - [anon_sym_u32] = ACTIONS(2549), - [anon_sym_i32] = ACTIONS(2549), - [anon_sym_u64] = ACTIONS(2549), - [anon_sym_i64] = ACTIONS(2549), - [anon_sym_u128] = ACTIONS(2549), - [anon_sym_i128] = ACTIONS(2549), - [anon_sym_isize] = ACTIONS(2549), - [anon_sym_usize] = ACTIONS(2549), - [anon_sym_f32] = ACTIONS(2549), - [anon_sym_f64] = ACTIONS(2549), - [anon_sym_bool] = ACTIONS(2549), - [anon_sym_str] = ACTIONS(2549), - [anon_sym_char] = ACTIONS(2549), - [sym_line_comment] = ACTIONS(1172), - [sym__raw_identifier] = ACTIONS(2551), - [sym_self] = ACTIONS(2565), - [sym_super] = ACTIONS(2565), - [sym_crate] = ACTIONS(2565), - [sym_grit_metavariable] = ACTIONS(2553), - [sym_raw_string_literal] = ACTIONS(2543), - [sym_float_literal] = ACTIONS(2543), + [anon_sym_DOLLAR] = ACTIONS(2724), + [aux_sym__non_special_token_token1] = ACTIONS(2726), + [anon_sym_SQUOTE] = ACTIONS(2726), + [anon_sym_as] = ACTIONS(2726), + [anon_sym_async] = ACTIONS(2726), + [anon_sym_await] = ACTIONS(2726), + [anon_sym_break] = ACTIONS(2726), + [anon_sym_const] = ACTIONS(2726), + [anon_sym_continue] = ACTIONS(2726), + [anon_sym_default] = ACTIONS(2726), + [anon_sym_enum] = ACTIONS(2726), + [anon_sym_fn] = ACTIONS(2726), + [anon_sym_for] = ACTIONS(2726), + [anon_sym_if] = ACTIONS(2726), + [anon_sym_impl] = ACTIONS(2726), + [anon_sym_let] = ACTIONS(2726), + [anon_sym_loop] = ACTIONS(2726), + [anon_sym_match] = ACTIONS(2726), + [anon_sym_mod] = ACTIONS(2726), + [anon_sym_pub] = ACTIONS(2726), + [anon_sym_return] = ACTIONS(2726), + [anon_sym_static] = ACTIONS(2726), + [anon_sym_struct] = ACTIONS(2726), + [anon_sym_trait] = ACTIONS(2726), + [anon_sym_type] = ACTIONS(2726), + [anon_sym_union] = ACTIONS(2726), + [anon_sym_unsafe] = ACTIONS(2726), + [anon_sym_use] = ACTIONS(2726), + [anon_sym_where] = ACTIONS(2726), + [anon_sym_while] = ACTIONS(2726), + [sym_mutable_specifier] = ACTIONS(2726), + [sym_integer_literal] = ACTIONS(2545), + [aux_sym_string_literal_token1] = ACTIONS(2547), + [sym_char_literal] = ACTIONS(2545), + [anon_sym_true] = ACTIONS(2549), + [anon_sym_false] = ACTIONS(2549), + [anon_sym_u8] = ACTIONS(2551), + [anon_sym_i8] = ACTIONS(2551), + [anon_sym_u16] = ACTIONS(2551), + [anon_sym_i16] = ACTIONS(2551), + [anon_sym_u32] = ACTIONS(2551), + [anon_sym_i32] = ACTIONS(2551), + [anon_sym_u64] = ACTIONS(2551), + [anon_sym_i64] = ACTIONS(2551), + [anon_sym_u128] = ACTIONS(2551), + [anon_sym_i128] = ACTIONS(2551), + [anon_sym_isize] = ACTIONS(2551), + [anon_sym_usize] = ACTIONS(2551), + [anon_sym_f32] = ACTIONS(2551), + [anon_sym_f64] = ACTIONS(2551), + [anon_sym_bool] = ACTIONS(2551), + [anon_sym_str] = ACTIONS(2551), + [anon_sym_char] = ACTIONS(2551), + [sym_line_comment] = ACTIONS(1112), + [sym__raw_identifier] = ACTIONS(2553), + [sym_self] = ACTIONS(2726), + [sym_super] = ACTIONS(2726), + [sym_crate] = ACTIONS(2726), + [sym_grit_metavariable] = ACTIONS(2555), + [sym_raw_string_literal] = ACTIONS(2545), + [sym_float_literal] = ACTIONS(2545), [sym_block_comment] = ACTIONS(3), }, - [577] = { - [sym_delim_token_tree] = STATE(268), - [sym__delim_tokens] = STATE(268), - [sym__non_delim_token] = STATE(268), - [sym__literal] = STATE(268), - [sym_string_literal] = STATE(662), - [sym_boolean_literal] = STATE(662), - [sym_primitive_type] = STATE(268), - [sym_identifier] = STATE(268), - [aux_sym_delim_token_tree_repeat1] = STATE(268), - [sym__primitive_identifier] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2533), - [anon_sym_RBRACE] = ACTIONS(2730), + [580] = { + [sym_delim_token_tree] = STATE(566), + [sym__delim_tokens] = STATE(566), + [sym__non_delim_token] = STATE(566), + [sym__literal] = STATE(566), + [sym_string_literal] = STATE(682), + [sym_boolean_literal] = STATE(682), + [sym_primitive_type] = STATE(566), + [sym_identifier] = STATE(566), + [aux_sym_delim_token_tree_repeat1] = STATE(566), + [sym__primitive_identifier] = ACTIONS(2531), + [anon_sym_LPAREN] = ACTIONS(2533), + [anon_sym_RPAREN] = ACTIONS(2718), + [anon_sym_LBRACE] = ACTIONS(2535), [anon_sym_LBRACK] = ACTIONS(2537), - [anon_sym_DOLLAR] = ACTIONS(2563), - [aux_sym__non_special_token_token1] = ACTIONS(2565), - [anon_sym_SQUOTE] = ACTIONS(2565), - [anon_sym_as] = ACTIONS(2565), - [anon_sym_async] = ACTIONS(2565), - [anon_sym_await] = ACTIONS(2565), - [anon_sym_break] = ACTIONS(2565), - [anon_sym_const] = ACTIONS(2565), - [anon_sym_continue] = ACTIONS(2565), - [anon_sym_default] = ACTIONS(2565), - [anon_sym_enum] = ACTIONS(2565), - [anon_sym_fn] = ACTIONS(2565), - [anon_sym_for] = ACTIONS(2565), - [anon_sym_if] = ACTIONS(2565), - [anon_sym_impl] = ACTIONS(2565), - [anon_sym_let] = ACTIONS(2565), - [anon_sym_loop] = ACTIONS(2565), - [anon_sym_match] = ACTIONS(2565), - [anon_sym_mod] = ACTIONS(2565), - [anon_sym_pub] = ACTIONS(2565), - [anon_sym_return] = ACTIONS(2565), - [anon_sym_static] = ACTIONS(2565), - [anon_sym_struct] = ACTIONS(2565), - [anon_sym_trait] = ACTIONS(2565), - [anon_sym_type] = ACTIONS(2565), - [anon_sym_union] = ACTIONS(2565), - [anon_sym_unsafe] = ACTIONS(2565), - [anon_sym_use] = ACTIONS(2565), - [anon_sym_where] = ACTIONS(2565), - [anon_sym_while] = ACTIONS(2565), - [sym_mutable_specifier] = ACTIONS(2565), - [sym_integer_literal] = ACTIONS(2543), - [aux_sym_string_literal_token1] = ACTIONS(2545), - [sym_char_literal] = ACTIONS(2543), - [anon_sym_true] = ACTIONS(2547), - [anon_sym_false] = ACTIONS(2547), - [anon_sym_u8] = ACTIONS(2549), - [anon_sym_i8] = ACTIONS(2549), - [anon_sym_u16] = ACTIONS(2549), - [anon_sym_i16] = ACTIONS(2549), - [anon_sym_u32] = ACTIONS(2549), - [anon_sym_i32] = ACTIONS(2549), - [anon_sym_u64] = ACTIONS(2549), - [anon_sym_i64] = ACTIONS(2549), - [anon_sym_u128] = ACTIONS(2549), - [anon_sym_i128] = ACTIONS(2549), - [anon_sym_isize] = ACTIONS(2549), - [anon_sym_usize] = ACTIONS(2549), - [anon_sym_f32] = ACTIONS(2549), - [anon_sym_f64] = ACTIONS(2549), - [anon_sym_bool] = ACTIONS(2549), - [anon_sym_str] = ACTIONS(2549), - [anon_sym_char] = ACTIONS(2549), - [sym_line_comment] = ACTIONS(1172), - [sym__raw_identifier] = ACTIONS(2551), - [sym_self] = ACTIONS(2565), - [sym_super] = ACTIONS(2565), - [sym_crate] = ACTIONS(2565), - [sym_grit_metavariable] = ACTIONS(2553), - [sym_raw_string_literal] = ACTIONS(2543), - [sym_float_literal] = ACTIONS(2543), + [anon_sym_DOLLAR] = ACTIONS(2728), + [aux_sym__non_special_token_token1] = ACTIONS(2730), + [anon_sym_SQUOTE] = ACTIONS(2730), + [anon_sym_as] = ACTIONS(2730), + [anon_sym_async] = ACTIONS(2730), + [anon_sym_await] = ACTIONS(2730), + [anon_sym_break] = ACTIONS(2730), + [anon_sym_const] = ACTIONS(2730), + [anon_sym_continue] = ACTIONS(2730), + [anon_sym_default] = ACTIONS(2730), + [anon_sym_enum] = ACTIONS(2730), + [anon_sym_fn] = ACTIONS(2730), + [anon_sym_for] = ACTIONS(2730), + [anon_sym_if] = ACTIONS(2730), + [anon_sym_impl] = ACTIONS(2730), + [anon_sym_let] = ACTIONS(2730), + [anon_sym_loop] = ACTIONS(2730), + [anon_sym_match] = ACTIONS(2730), + [anon_sym_mod] = ACTIONS(2730), + [anon_sym_pub] = ACTIONS(2730), + [anon_sym_return] = ACTIONS(2730), + [anon_sym_static] = ACTIONS(2730), + [anon_sym_struct] = ACTIONS(2730), + [anon_sym_trait] = ACTIONS(2730), + [anon_sym_type] = ACTIONS(2730), + [anon_sym_union] = ACTIONS(2730), + [anon_sym_unsafe] = ACTIONS(2730), + [anon_sym_use] = ACTIONS(2730), + [anon_sym_where] = ACTIONS(2730), + [anon_sym_while] = ACTIONS(2730), + [sym_mutable_specifier] = ACTIONS(2730), + [sym_integer_literal] = ACTIONS(2545), + [aux_sym_string_literal_token1] = ACTIONS(2547), + [sym_char_literal] = ACTIONS(2545), + [anon_sym_true] = ACTIONS(2549), + [anon_sym_false] = ACTIONS(2549), + [anon_sym_u8] = ACTIONS(2551), + [anon_sym_i8] = ACTIONS(2551), + [anon_sym_u16] = ACTIONS(2551), + [anon_sym_i16] = ACTIONS(2551), + [anon_sym_u32] = ACTIONS(2551), + [anon_sym_i32] = ACTIONS(2551), + [anon_sym_u64] = ACTIONS(2551), + [anon_sym_i64] = ACTIONS(2551), + [anon_sym_u128] = ACTIONS(2551), + [anon_sym_i128] = ACTIONS(2551), + [anon_sym_isize] = ACTIONS(2551), + [anon_sym_usize] = ACTIONS(2551), + [anon_sym_f32] = ACTIONS(2551), + [anon_sym_f64] = ACTIONS(2551), + [anon_sym_bool] = ACTIONS(2551), + [anon_sym_str] = ACTIONS(2551), + [anon_sym_char] = ACTIONS(2551), + [sym_line_comment] = ACTIONS(1112), + [sym__raw_identifier] = ACTIONS(2553), + [sym_self] = ACTIONS(2730), + [sym_super] = ACTIONS(2730), + [sym_crate] = ACTIONS(2730), + [sym_grit_metavariable] = ACTIONS(2555), + [sym_raw_string_literal] = ACTIONS(2545), + [sym_float_literal] = ACTIONS(2545), [sym_block_comment] = ACTIONS(3), }, - [578] = { - [sym_delim_token_tree] = STATE(545), - [sym__delim_tokens] = STATE(545), - [sym__non_delim_token] = STATE(545), - [sym__literal] = STATE(545), - [sym_string_literal] = STATE(662), - [sym_boolean_literal] = STATE(662), - [sym_primitive_type] = STATE(545), - [sym_identifier] = STATE(545), - [aux_sym_delim_token_tree_repeat1] = STATE(545), - [sym__primitive_identifier] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2533), - [anon_sym_RBRACE] = ACTIONS(2627), - [anon_sym_LBRACK] = ACTIONS(2537), - [anon_sym_DOLLAR] = ACTIONS(2732), + [581] = { + [sym_token_tree] = STATE(542), + [sym_token_repetition] = STATE(542), + [sym__literal] = STATE(542), + [sym_string_literal] = STATE(652), + [sym_boolean_literal] = STATE(652), + [sym_primitive_type] = STATE(542), + [sym_identifier] = STATE(542), + [aux_sym_token_repetition_repeat1] = STATE(542), + [sym__primitive_identifier] = ACTIONS(1302), + [anon_sym_LPAREN] = ACTIONS(2569), + [anon_sym_RPAREN] = ACTIONS(2732), + [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LBRACK] = ACTIONS(2575), + [anon_sym_DOLLAR] = ACTIONS(2577), [aux_sym__non_special_token_token1] = ACTIONS(2734), [anon_sym_SQUOTE] = ACTIONS(2734), [anon_sym_as] = ACTIONS(2734), @@ -73345,5340 +73647,5041 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2734), [anon_sym_while] = ACTIONS(2734), [sym_mutable_specifier] = ACTIONS(2734), - [sym_integer_literal] = ACTIONS(2543), - [aux_sym_string_literal_token1] = ACTIONS(2545), - [sym_char_literal] = ACTIONS(2543), - [anon_sym_true] = ACTIONS(2547), - [anon_sym_false] = ACTIONS(2547), - [anon_sym_u8] = ACTIONS(2549), - [anon_sym_i8] = ACTIONS(2549), - [anon_sym_u16] = ACTIONS(2549), - [anon_sym_i16] = ACTIONS(2549), - [anon_sym_u32] = ACTIONS(2549), - [anon_sym_i32] = ACTIONS(2549), - [anon_sym_u64] = ACTIONS(2549), - [anon_sym_i64] = ACTIONS(2549), - [anon_sym_u128] = ACTIONS(2549), - [anon_sym_i128] = ACTIONS(2549), - [anon_sym_isize] = ACTIONS(2549), - [anon_sym_usize] = ACTIONS(2549), - [anon_sym_f32] = ACTIONS(2549), - [anon_sym_f64] = ACTIONS(2549), - [anon_sym_bool] = ACTIONS(2549), - [anon_sym_str] = ACTIONS(2549), - [anon_sym_char] = ACTIONS(2549), - [sym_line_comment] = ACTIONS(1172), - [sym__raw_identifier] = ACTIONS(2551), + [sym_integer_literal] = ACTIONS(1316), + [aux_sym_string_literal_token1] = ACTIONS(1318), + [sym_char_literal] = ACTIONS(1316), + [anon_sym_true] = ACTIONS(1320), + [anon_sym_false] = 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), + [sym_line_comment] = ACTIONS(1112), + [sym__raw_identifier] = ACTIONS(1324), [sym_self] = ACTIONS(2734), [sym_super] = ACTIONS(2734), [sym_crate] = ACTIONS(2734), - [sym_grit_metavariable] = ACTIONS(2553), - [sym_raw_string_literal] = ACTIONS(2543), - [sym_float_literal] = ACTIONS(2543), - [sym_block_comment] = ACTIONS(3), - }, - [579] = { - [sym_delim_token_tree] = STATE(268), - [sym__delim_tokens] = STATE(268), - [sym__non_delim_token] = STATE(268), - [sym__literal] = STATE(268), - [sym_string_literal] = STATE(662), - [sym_boolean_literal] = STATE(662), - [sym_primitive_type] = STATE(268), - [sym_identifier] = STATE(268), - [aux_sym_delim_token_tree_repeat1] = STATE(268), - [sym__primitive_identifier] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_RPAREN] = ACTIONS(2561), - [anon_sym_LBRACE] = ACTIONS(2533), - [anon_sym_LBRACK] = ACTIONS(2537), - [anon_sym_DOLLAR] = ACTIONS(2563), - [aux_sym__non_special_token_token1] = ACTIONS(2565), - [anon_sym_SQUOTE] = ACTIONS(2565), - [anon_sym_as] = ACTIONS(2565), - [anon_sym_async] = ACTIONS(2565), - [anon_sym_await] = ACTIONS(2565), - [anon_sym_break] = ACTIONS(2565), - [anon_sym_const] = ACTIONS(2565), - [anon_sym_continue] = ACTIONS(2565), - [anon_sym_default] = ACTIONS(2565), - [anon_sym_enum] = ACTIONS(2565), - [anon_sym_fn] = ACTIONS(2565), - [anon_sym_for] = ACTIONS(2565), - [anon_sym_if] = ACTIONS(2565), - [anon_sym_impl] = ACTIONS(2565), - [anon_sym_let] = ACTIONS(2565), - [anon_sym_loop] = ACTIONS(2565), - [anon_sym_match] = ACTIONS(2565), - [anon_sym_mod] = ACTIONS(2565), - [anon_sym_pub] = ACTIONS(2565), - [anon_sym_return] = ACTIONS(2565), - [anon_sym_static] = ACTIONS(2565), - [anon_sym_struct] = ACTIONS(2565), - [anon_sym_trait] = ACTIONS(2565), - [anon_sym_type] = ACTIONS(2565), - [anon_sym_union] = ACTIONS(2565), - [anon_sym_unsafe] = ACTIONS(2565), - [anon_sym_use] = ACTIONS(2565), - [anon_sym_where] = ACTIONS(2565), - [anon_sym_while] = ACTIONS(2565), - [sym_mutable_specifier] = ACTIONS(2565), - [sym_integer_literal] = ACTIONS(2543), - [aux_sym_string_literal_token1] = ACTIONS(2545), - [sym_char_literal] = ACTIONS(2543), - [anon_sym_true] = ACTIONS(2547), - [anon_sym_false] = ACTIONS(2547), - [anon_sym_u8] = ACTIONS(2549), - [anon_sym_i8] = ACTIONS(2549), - [anon_sym_u16] = ACTIONS(2549), - [anon_sym_i16] = ACTIONS(2549), - [anon_sym_u32] = ACTIONS(2549), - [anon_sym_i32] = ACTIONS(2549), - [anon_sym_u64] = ACTIONS(2549), - [anon_sym_i64] = ACTIONS(2549), - [anon_sym_u128] = ACTIONS(2549), - [anon_sym_i128] = ACTIONS(2549), - [anon_sym_isize] = ACTIONS(2549), - [anon_sym_usize] = ACTIONS(2549), - [anon_sym_f32] = ACTIONS(2549), - [anon_sym_f64] = ACTIONS(2549), - [anon_sym_bool] = ACTIONS(2549), - [anon_sym_str] = ACTIONS(2549), - [anon_sym_char] = ACTIONS(2549), - [sym_line_comment] = ACTIONS(1172), - [sym__raw_identifier] = ACTIONS(2551), - [sym_self] = ACTIONS(2565), - [sym_super] = ACTIONS(2565), - [sym_crate] = ACTIONS(2565), - [sym_grit_metavariable] = ACTIONS(2553), - [sym_raw_string_literal] = ACTIONS(2543), - [sym_float_literal] = ACTIONS(2543), - [sym_block_comment] = ACTIONS(3), - }, - [580] = { - [sym_delim_token_tree] = STATE(268), - [sym__delim_tokens] = STATE(268), - [sym__non_delim_token] = STATE(268), - [sym__literal] = STATE(268), - [sym_string_literal] = STATE(662), - [sym_boolean_literal] = STATE(662), - [sym_primitive_type] = STATE(268), - [sym_identifier] = STATE(268), - [aux_sym_delim_token_tree_repeat1] = STATE(268), - [sym__primitive_identifier] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2533), - [anon_sym_LBRACK] = ACTIONS(2537), - [anon_sym_RBRACK] = ACTIONS(2730), - [anon_sym_DOLLAR] = ACTIONS(2563), - [aux_sym__non_special_token_token1] = ACTIONS(2565), - [anon_sym_SQUOTE] = ACTIONS(2565), - [anon_sym_as] = ACTIONS(2565), - [anon_sym_async] = ACTIONS(2565), - [anon_sym_await] = ACTIONS(2565), - [anon_sym_break] = ACTIONS(2565), - [anon_sym_const] = ACTIONS(2565), - [anon_sym_continue] = ACTIONS(2565), - [anon_sym_default] = ACTIONS(2565), - [anon_sym_enum] = ACTIONS(2565), - [anon_sym_fn] = ACTIONS(2565), - [anon_sym_for] = ACTIONS(2565), - [anon_sym_if] = ACTIONS(2565), - [anon_sym_impl] = ACTIONS(2565), - [anon_sym_let] = ACTIONS(2565), - [anon_sym_loop] = ACTIONS(2565), - [anon_sym_match] = ACTIONS(2565), - [anon_sym_mod] = ACTIONS(2565), - [anon_sym_pub] = ACTIONS(2565), - [anon_sym_return] = ACTIONS(2565), - [anon_sym_static] = ACTIONS(2565), - [anon_sym_struct] = ACTIONS(2565), - [anon_sym_trait] = ACTIONS(2565), - [anon_sym_type] = ACTIONS(2565), - [anon_sym_union] = ACTIONS(2565), - [anon_sym_unsafe] = ACTIONS(2565), - [anon_sym_use] = ACTIONS(2565), - [anon_sym_where] = ACTIONS(2565), - [anon_sym_while] = ACTIONS(2565), - [sym_mutable_specifier] = ACTIONS(2565), - [sym_integer_literal] = ACTIONS(2543), - [aux_sym_string_literal_token1] = ACTIONS(2545), - [sym_char_literal] = ACTIONS(2543), - [anon_sym_true] = ACTIONS(2547), - [anon_sym_false] = ACTIONS(2547), - [anon_sym_u8] = ACTIONS(2549), - [anon_sym_i8] = ACTIONS(2549), - [anon_sym_u16] = ACTIONS(2549), - [anon_sym_i16] = ACTIONS(2549), - [anon_sym_u32] = ACTIONS(2549), - [anon_sym_i32] = ACTIONS(2549), - [anon_sym_u64] = ACTIONS(2549), - [anon_sym_i64] = ACTIONS(2549), - [anon_sym_u128] = ACTIONS(2549), - [anon_sym_i128] = ACTIONS(2549), - [anon_sym_isize] = ACTIONS(2549), - [anon_sym_usize] = ACTIONS(2549), - [anon_sym_f32] = ACTIONS(2549), - [anon_sym_f64] = ACTIONS(2549), - [anon_sym_bool] = ACTIONS(2549), - [anon_sym_str] = ACTIONS(2549), - [anon_sym_char] = ACTIONS(2549), - [sym_line_comment] = ACTIONS(1172), - [sym__raw_identifier] = ACTIONS(2551), - [sym_self] = ACTIONS(2565), - [sym_super] = ACTIONS(2565), - [sym_crate] = ACTIONS(2565), - [sym_grit_metavariable] = ACTIONS(2553), - [sym_raw_string_literal] = ACTIONS(2543), - [sym_float_literal] = ACTIONS(2543), - [sym_block_comment] = ACTIONS(3), - }, - [581] = { - [sym_attribute_item] = STATE(799), - [sym_bracketed_type] = STATE(2658), - [sym_generic_type] = STATE(2655), - [sym_generic_type_with_turbofish] = STATE(2638), - [sym_macro_invocation] = STATE(1616), - [sym_scoped_identifier] = STATE(1451), - [sym_scoped_type_identifier] = STATE(2231), - [sym_match_pattern] = STATE(2714), - [sym_const_block] = STATE(1616), - [sym_pattern] = STATE(2278), - [sym_tuple_pattern] = STATE(1616), - [sym_slice_pattern] = STATE(1616), - [sym_tuple_struct_pattern] = STATE(1616), - [sym_struct_pattern] = STATE(1616), - [sym_remaining_field_pattern] = STATE(1616), - [sym_mut_pattern] = STATE(1616), - [sym_range_pattern] = STATE(1616), - [sym_ref_pattern] = STATE(1616), - [sym_captured_pattern] = STATE(1616), - [sym_reference_pattern] = STATE(1616), - [sym_or_pattern] = STATE(1616), - [sym__literal_pattern] = STATE(1496), - [sym_negative_literal] = STATE(1513), - [sym_string_literal] = STATE(1513), - [sym_boolean_literal] = STATE(1513), - [sym_primitive_type] = STATE(1471), - [sym_identifier] = STATE(1428), - [aux_sym_enum_variant_list_repeat1] = STATE(799), - [sym__primitive_identifier] = ACTIONS(842), - [sym_underscore] = ACTIONS(972), - [anon_sym_LPAREN] = ACTIONS(1272), - [anon_sym_LBRACK] = ACTIONS(1276), - [anon_sym_const] = ACTIONS(1278), - [anon_sym_default] = ACTIONS(1280), - [anon_sym_union] = ACTIONS(1280), - [anon_sym_POUND] = ACTIONS(533), - [anon_sym_ref] = ACTIONS(878), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1282), - [anon_sym_AMP] = ACTIONS(1284), - [sym_mutable_specifier] = ACTIONS(980), - [anon_sym_DOT_DOT] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(892), - [sym_integer_literal] = ACTIONS(894), - [aux_sym_string_literal_token1] = ACTIONS(896), - [sym_char_literal] = ACTIONS(894), - [anon_sym_true] = ACTIONS(898), - [anon_sym_false] = ACTIONS(898), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1286), - [sym_super] = ACTIONS(1286), - [sym_crate] = ACTIONS(1286), - [sym_metavariable] = ACTIONS(1288), - [sym_grit_metavariable] = ACTIONS(984), - [sym_raw_string_literal] = ACTIONS(894), - [sym_float_literal] = ACTIONS(894), + [sym_metavariable] = ACTIONS(2736), + [sym_grit_metavariable] = ACTIONS(1328), + [sym_raw_string_literal] = ACTIONS(1316), + [sym_float_literal] = ACTIONS(1316), [sym_block_comment] = ACTIONS(3), }, [582] = { - [sym_attribute_item] = STATE(799), - [sym_bracketed_type] = STATE(2658), - [sym_generic_type] = STATE(2655), - [sym_generic_type_with_turbofish] = STATE(2638), - [sym_macro_invocation] = STATE(1616), - [sym_scoped_identifier] = STATE(1451), - [sym_scoped_type_identifier] = STATE(2231), - [sym_match_pattern] = STATE(2679), - [sym_const_block] = STATE(1616), - [sym_pattern] = STATE(2278), - [sym_tuple_pattern] = STATE(1616), - [sym_slice_pattern] = STATE(1616), - [sym_tuple_struct_pattern] = STATE(1616), - [sym_struct_pattern] = STATE(1616), - [sym_remaining_field_pattern] = STATE(1616), - [sym_mut_pattern] = STATE(1616), - [sym_range_pattern] = STATE(1616), - [sym_ref_pattern] = STATE(1616), - [sym_captured_pattern] = STATE(1616), - [sym_reference_pattern] = STATE(1616), - [sym_or_pattern] = STATE(1616), - [sym__literal_pattern] = STATE(1496), - [sym_negative_literal] = STATE(1513), - [sym_string_literal] = STATE(1513), - [sym_boolean_literal] = STATE(1513), - [sym_primitive_type] = STATE(1471), - [sym_identifier] = STATE(1428), - [aux_sym_enum_variant_list_repeat1] = STATE(799), - [sym__primitive_identifier] = ACTIONS(842), - [sym_underscore] = ACTIONS(972), - [anon_sym_LPAREN] = ACTIONS(1272), - [anon_sym_LBRACK] = ACTIONS(1276), - [anon_sym_const] = ACTIONS(1278), - [anon_sym_default] = ACTIONS(1280), - [anon_sym_union] = ACTIONS(1280), + [sym_attribute_item] = STATE(705), + [sym_bracketed_type] = STATE(2684), + [sym_generic_type] = STATE(2683), + [sym_generic_type_with_turbofish] = STATE(2682), + [sym_macro_invocation] = STATE(1615), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier] = STATE(2202), + [sym_match_pattern] = STATE(2671), + [sym_const_block] = STATE(1615), + [sym_pattern] = STATE(2353), + [sym_tuple_pattern] = STATE(1615), + [sym_slice_pattern] = STATE(1615), + [sym_tuple_struct_pattern] = STATE(1615), + [sym_struct_pattern] = STATE(1615), + [sym_remaining_field_pattern] = STATE(1615), + [sym_mut_pattern] = STATE(1615), + [sym_range_pattern] = STATE(1615), + [sym_ref_pattern] = STATE(1615), + [sym_captured_pattern] = STATE(1615), + [sym_reference_pattern] = STATE(1615), + [sym_or_pattern] = STATE(1615), + [sym__literal_pattern] = STATE(1492), + [sym_negative_literal] = STATE(1521), + [sym_string_literal] = STATE(1521), + [sym_boolean_literal] = STATE(1521), + [sym_primitive_type] = STATE(1479), + [sym_identifier] = STATE(1432), + [aux_sym_enum_variant_list_repeat1] = STATE(705), + [sym__primitive_identifier] = ACTIONS(844), + [sym_underscore] = ACTIONS(974), + [anon_sym_LPAREN] = ACTIONS(1274), + [anon_sym_LBRACK] = ACTIONS(1278), + [anon_sym_const] = ACTIONS(1280), + [anon_sym_default] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1282), [anon_sym_POUND] = ACTIONS(533), - [anon_sym_ref] = ACTIONS(878), + [anon_sym_ref] = ACTIONS(880), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1282), - [anon_sym_AMP] = ACTIONS(1284), - [sym_mutable_specifier] = ACTIONS(980), - [anon_sym_DOT_DOT] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(892), - [sym_integer_literal] = ACTIONS(894), - [aux_sym_string_literal_token1] = ACTIONS(896), - [sym_char_literal] = ACTIONS(894), - [anon_sym_true] = ACTIONS(898), - [anon_sym_false] = ACTIONS(898), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1286), - [sym_super] = ACTIONS(1286), - [sym_crate] = ACTIONS(1286), - [sym_metavariable] = ACTIONS(1288), - [sym_grit_metavariable] = ACTIONS(984), - [sym_raw_string_literal] = ACTIONS(894), - [sym_float_literal] = ACTIONS(894), + [anon_sym_COLON_COLON] = ACTIONS(1284), + [anon_sym_AMP] = ACTIONS(1286), + [sym_mutable_specifier] = ACTIONS(982), + [anon_sym_DOT_DOT] = ACTIONS(984), + [anon_sym_DASH] = ACTIONS(894), + [sym_integer_literal] = ACTIONS(896), + [aux_sym_string_literal_token1] = ACTIONS(898), + [sym_char_literal] = ACTIONS(896), + [anon_sym_true] = ACTIONS(900), + [anon_sym_false] = ACTIONS(900), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1288), + [sym_super] = ACTIONS(1288), + [sym_crate] = ACTIONS(1288), + [sym_metavariable] = ACTIONS(1290), + [sym_grit_metavariable] = ACTIONS(986), + [sym_raw_string_literal] = ACTIONS(896), + [sym_float_literal] = ACTIONS(896), [sym_block_comment] = ACTIONS(3), }, [583] = { - [sym_attribute_item] = STATE(590), - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym_visibility_modifier] = STATE(708), - [sym__type] = STATE(1984), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), + [sym_attribute_item] = STATE(705), + [sym_bracketed_type] = STATE(2684), + [sym_generic_type] = STATE(2683), + [sym_generic_type_with_turbofish] = STATE(2682), + [sym_macro_invocation] = STATE(1615), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier] = STATE(2202), + [sym_match_pattern] = STATE(2748), + [sym_const_block] = STATE(1615), + [sym_pattern] = STATE(2353), + [sym_tuple_pattern] = STATE(1615), + [sym_slice_pattern] = STATE(1615), + [sym_tuple_struct_pattern] = STATE(1615), + [sym_struct_pattern] = STATE(1615), + [sym_remaining_field_pattern] = STATE(1615), + [sym_mut_pattern] = STATE(1615), + [sym_range_pattern] = STATE(1615), + [sym_ref_pattern] = STATE(1615), + [sym_captured_pattern] = STATE(1615), + [sym_reference_pattern] = STATE(1615), + [sym_or_pattern] = STATE(1615), + [sym__literal_pattern] = STATE(1492), + [sym_negative_literal] = STATE(1521), + [sym_string_literal] = STATE(1521), + [sym_boolean_literal] = STATE(1521), [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_enum_variant_list_repeat1] = STATE(590), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_RPAREN] = ACTIONS(2736), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_pub] = ACTIONS(2740), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_POUND] = ACTIONS(2742), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_COMMA] = ACTIONS(2744), - [anon_sym_extern] = ACTIONS(876), + [sym_identifier] = STATE(1432), + [aux_sym_enum_variant_list_repeat1] = STATE(705), + [sym__primitive_identifier] = ACTIONS(844), + [sym_underscore] = ACTIONS(974), + [anon_sym_LPAREN] = ACTIONS(1274), + [anon_sym_LBRACK] = ACTIONS(1278), + [anon_sym_const] = ACTIONS(1280), + [anon_sym_default] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1282), + [anon_sym_POUND] = ACTIONS(533), + [anon_sym_ref] = ACTIONS(880), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(2746), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(2748), + [anon_sym_COLON_COLON] = ACTIONS(1284), + [anon_sym_AMP] = ACTIONS(1286), + [sym_mutable_specifier] = ACTIONS(982), + [anon_sym_DOT_DOT] = ACTIONS(984), + [anon_sym_DASH] = ACTIONS(894), + [sym_integer_literal] = ACTIONS(896), + [aux_sym_string_literal_token1] = ACTIONS(898), + [sym_char_literal] = ACTIONS(896), + [anon_sym_true] = ACTIONS(900), + [anon_sym_false] = ACTIONS(900), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1288), + [sym_super] = ACTIONS(1288), + [sym_crate] = ACTIONS(1288), + [sym_metavariable] = ACTIONS(1290), + [sym_grit_metavariable] = ACTIONS(986), + [sym_raw_string_literal] = ACTIONS(896), + [sym_float_literal] = ACTIONS(896), [sym_block_comment] = ACTIONS(3), }, [584] = { [sym_attribute_item] = STATE(591), - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym_visibility_modifier] = STATE(728), - [sym__type] = STATE(2241), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym_visibility_modifier] = STATE(711), + [sym__type] = STATE(2089), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), [aux_sym_enum_variant_list_repeat1] = STATE(591), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_RPAREN] = ACTIONS(2750), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_pub] = ACTIONS(2740), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_POUND] = ACTIONS(2742), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_RPAREN] = ACTIONS(2738), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_pub] = ACTIONS(2742), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_POUND] = ACTIONS(2744), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_COMMA] = ACTIONS(2746), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(2746), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(2748), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(2748), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(2750), [sym_block_comment] = ACTIONS(3), }, [585] = { - [sym_attribute_item] = STATE(591), - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym_visibility_modifier] = STATE(728), - [sym__type] = STATE(2241), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_enum_variant_list_repeat1] = STATE(591), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), + [sym_attribute_item] = STATE(595), + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym_visibility_modifier] = STATE(699), + [sym__type] = STATE(2253), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_enum_variant_list_repeat1] = STATE(595), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), [anon_sym_RPAREN] = ACTIONS(2752), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_pub] = ACTIONS(2740), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_POUND] = ACTIONS(2742), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_pub] = ACTIONS(2742), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_POUND] = ACTIONS(2744), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(2746), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(2748), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(2748), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(2750), [sym_block_comment] = ACTIONS(3), }, [586] = { - [sym_attribute_item] = STATE(591), - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym_visibility_modifier] = STATE(728), - [sym__type] = STATE(2241), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_enum_variant_list_repeat1] = STATE(591), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), + [sym_attribute_item] = STATE(595), + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym_visibility_modifier] = STATE(699), + [sym__type] = STATE(2253), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_enum_variant_list_repeat1] = STATE(595), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), [anon_sym_RPAREN] = ACTIONS(2754), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_pub] = ACTIONS(2740), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_POUND] = ACTIONS(2742), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_pub] = ACTIONS(2742), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_POUND] = ACTIONS(2744), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(2746), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(2748), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(2748), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(2750), [sym_block_comment] = ACTIONS(3), }, [587] = { - [sym_attribute_item] = STATE(591), - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym_visibility_modifier] = STATE(728), - [sym__type] = STATE(2241), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_enum_variant_list_repeat1] = STATE(591), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), + [sym_attribute_item] = STATE(595), + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym_visibility_modifier] = STATE(699), + [sym__type] = STATE(2253), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_enum_variant_list_repeat1] = STATE(595), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), [anon_sym_RPAREN] = ACTIONS(2756), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_pub] = ACTIONS(2740), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_POUND] = ACTIONS(2742), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_pub] = ACTIONS(2742), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_POUND] = ACTIONS(2744), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(2746), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(2748), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(2748), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(2750), [sym_block_comment] = ACTIONS(3), }, [588] = { - [sym_attribute_item] = STATE(591), - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym_visibility_modifier] = STATE(728), - [sym__type] = STATE(2241), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_enum_variant_list_repeat1] = STATE(591), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), + [sym_attribute_item] = STATE(595), + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym_visibility_modifier] = STATE(699), + [sym__type] = STATE(2253), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_enum_variant_list_repeat1] = STATE(595), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), [anon_sym_RPAREN] = ACTIONS(2758), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_pub] = ACTIONS(2740), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_POUND] = ACTIONS(2742), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_pub] = ACTIONS(2742), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_POUND] = ACTIONS(2744), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(2746), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(2748), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(2748), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(2750), [sym_block_comment] = ACTIONS(3), }, [589] = { - [sym_attribute_item] = STATE(591), - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym_visibility_modifier] = STATE(728), - [sym__type] = STATE(2241), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_enum_variant_list_repeat1] = STATE(591), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), + [sym_attribute_item] = STATE(595), + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym_visibility_modifier] = STATE(699), + [sym__type] = STATE(2253), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_enum_variant_list_repeat1] = STATE(595), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), [anon_sym_RPAREN] = ACTIONS(2760), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_pub] = ACTIONS(2740), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_POUND] = ACTIONS(2742), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_pub] = ACTIONS(2742), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_POUND] = ACTIONS(2744), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(2746), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(2748), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(2748), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(2750), [sym_block_comment] = ACTIONS(3), }, [590] = { - [sym_attribute_item] = STATE(1110), - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym_visibility_modifier] = STATE(774), - [sym__type] = STATE(2050), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_enum_variant_list_repeat1] = STATE(1110), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_pub] = ACTIONS(2740), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_POUND] = ACTIONS(2742), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [sym_attribute_item] = STATE(595), + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym_visibility_modifier] = STATE(699), + [sym__type] = STATE(2253), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_enum_variant_list_repeat1] = STATE(595), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_RPAREN] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_pub] = ACTIONS(2742), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_POUND] = ACTIONS(2744), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(2746), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(2748), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(2748), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(2750), [sym_block_comment] = ACTIONS(3), }, [591] = { [sym_attribute_item] = STATE(1110), - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym_visibility_modifier] = STATE(689), - [sym__type] = STATE(2198), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym_visibility_modifier] = STATE(781), + [sym__type] = STATE(2067), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), [aux_sym_enum_variant_list_repeat1] = STATE(1110), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_pub] = ACTIONS(2740), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_POUND] = ACTIONS(2742), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_pub] = ACTIONS(2742), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_POUND] = ACTIONS(2744), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(2746), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(2748), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(2748), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(2750), [sym_block_comment] = ACTIONS(3), }, [592] = { - [sym_parameter] = STATE(2164), - [sym_bracketed_type] = STATE(2658), - [sym_generic_type] = STATE(2655), - [sym_generic_type_with_turbofish] = STATE(2638), - [sym_macro_invocation] = STATE(1616), - [sym_scoped_identifier] = STATE(1451), - [sym_scoped_type_identifier] = STATE(2231), - [sym_const_block] = STATE(1616), - [sym_pattern] = STATE(2044), - [sym_tuple_pattern] = STATE(1616), - [sym_slice_pattern] = STATE(1616), - [sym_tuple_struct_pattern] = STATE(1616), - [sym_struct_pattern] = STATE(1616), - [sym_remaining_field_pattern] = STATE(1616), - [sym_mut_pattern] = STATE(1616), - [sym_range_pattern] = STATE(1616), - [sym_ref_pattern] = STATE(1616), - [sym_captured_pattern] = STATE(1616), - [sym_reference_pattern] = STATE(1616), - [sym_or_pattern] = STATE(1616), - [sym__literal_pattern] = STATE(1496), - [sym_negative_literal] = STATE(1513), - [sym_string_literal] = STATE(1513), - [sym_boolean_literal] = STATE(1513), - [sym_primitive_type] = STATE(1471), - [sym_identifier] = STATE(1428), - [sym__primitive_identifier] = ACTIONS(842), - [sym_underscore] = ACTIONS(972), - [anon_sym_LPAREN] = ACTIONS(1272), - [anon_sym_LBRACK] = ACTIONS(1276), - [anon_sym_const] = ACTIONS(1278), - [anon_sym_default] = ACTIONS(1280), - [anon_sym_union] = ACTIONS(1280), - [anon_sym_ref] = ACTIONS(878), + [sym_bracketed_type] = STATE(2684), + [sym_generic_type] = STATE(2683), + [sym_generic_type_with_turbofish] = STATE(2682), + [sym_macro_invocation] = STATE(1615), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier] = STATE(2202), + [sym_const_block] = STATE(1615), + [sym_pattern] = STATE(1979), + [sym_tuple_pattern] = STATE(1615), + [sym_slice_pattern] = STATE(1615), + [sym_tuple_struct_pattern] = STATE(1615), + [sym_struct_pattern] = STATE(1615), + [sym_remaining_field_pattern] = STATE(1615), + [sym_mut_pattern] = STATE(1615), + [sym_range_pattern] = STATE(1615), + [sym_ref_pattern] = STATE(1615), + [sym_captured_pattern] = STATE(1615), + [sym_reference_pattern] = STATE(1615), + [sym_or_pattern] = STATE(1615), + [sym__literal_pattern] = STATE(1492), + [sym_negative_literal] = STATE(1521), + [sym_string_literal] = STATE(1521), + [sym_boolean_literal] = STATE(1521), + [sym_primitive_type] = STATE(1479), + [sym_identifier] = STATE(1432), + [sym__primitive_identifier] = ACTIONS(844), + [sym_underscore] = ACTIONS(974), + [anon_sym_LPAREN] = ACTIONS(1274), + [anon_sym_RPAREN] = ACTIONS(2764), + [anon_sym_LBRACK] = ACTIONS(1278), + [anon_sym_const] = ACTIONS(1280), + [anon_sym_default] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1282), + [anon_sym_COMMA] = ACTIONS(978), + [anon_sym_ref] = ACTIONS(880), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1282), - [anon_sym_AMP] = ACTIONS(1284), - [sym_mutable_specifier] = ACTIONS(2762), - [anon_sym_DOT_DOT] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(892), - [anon_sym_PIPE] = ACTIONS(2764), - [sym_integer_literal] = ACTIONS(894), - [aux_sym_string_literal_token1] = ACTIONS(896), - [sym_char_literal] = ACTIONS(894), - [anon_sym_true] = ACTIONS(898), - [anon_sym_false] = ACTIONS(898), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(2766), - [sym_super] = ACTIONS(1286), - [sym_crate] = ACTIONS(1286), - [sym_metavariable] = ACTIONS(1288), - [sym_grit_metavariable] = ACTIONS(984), - [sym_raw_string_literal] = ACTIONS(894), - [sym_float_literal] = ACTIONS(894), + [anon_sym_COLON_COLON] = ACTIONS(1284), + [anon_sym_AMP] = ACTIONS(1286), + [sym_mutable_specifier] = ACTIONS(982), + [anon_sym_DOT_DOT] = ACTIONS(984), + [anon_sym_DASH] = ACTIONS(894), + [sym_integer_literal] = ACTIONS(896), + [aux_sym_string_literal_token1] = ACTIONS(898), + [sym_char_literal] = ACTIONS(896), + [anon_sym_true] = ACTIONS(900), + [anon_sym_false] = ACTIONS(900), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1288), + [sym_super] = ACTIONS(1288), + [sym_crate] = ACTIONS(1288), + [sym_metavariable] = ACTIONS(1290), + [sym_grit_metavariable] = ACTIONS(986), + [sym_raw_string_literal] = ACTIONS(896), + [sym_float_literal] = ACTIONS(896), [sym_block_comment] = ACTIONS(3), }, [593] = { - [sym_attribute_item] = STATE(591), - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym_visibility_modifier] = STATE(728), - [sym__type] = STATE(2241), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), + [sym_bracketed_type] = STATE(2684), + [sym_generic_type] = STATE(2683), + [sym_generic_type_with_turbofish] = STATE(2682), + [sym_macro_invocation] = STATE(1615), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier] = STATE(2202), + [sym_const_block] = STATE(1615), + [sym_pattern] = STATE(1980), + [sym_tuple_pattern] = STATE(1615), + [sym_slice_pattern] = STATE(1615), + [sym_tuple_struct_pattern] = STATE(1615), + [sym_struct_pattern] = STATE(1615), + [sym_remaining_field_pattern] = STATE(1615), + [sym_mut_pattern] = STATE(1615), + [sym_range_pattern] = STATE(1615), + [sym_ref_pattern] = STATE(1615), + [sym_captured_pattern] = STATE(1615), + [sym_reference_pattern] = STATE(1615), + [sym_or_pattern] = STATE(1615), + [sym__literal_pattern] = STATE(1492), + [sym_negative_literal] = STATE(1521), + [sym_string_literal] = STATE(1521), + [sym_boolean_literal] = STATE(1521), [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_enum_variant_list_repeat1] = STATE(591), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_pub] = ACTIONS(2740), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_POUND] = ACTIONS(2742), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [sym_identifier] = STATE(1432), + [sym__primitive_identifier] = ACTIONS(844), + [sym_underscore] = ACTIONS(974), + [anon_sym_LPAREN] = ACTIONS(1274), + [anon_sym_LBRACK] = ACTIONS(1278), + [anon_sym_RBRACK] = ACTIONS(990), + [anon_sym_const] = ACTIONS(1280), + [anon_sym_default] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1282), + [anon_sym_COMMA] = ACTIONS(996), + [anon_sym_ref] = ACTIONS(880), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(2746), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(2748), + [anon_sym_COLON_COLON] = ACTIONS(1284), + [anon_sym_AMP] = ACTIONS(1286), + [sym_mutable_specifier] = ACTIONS(982), + [anon_sym_DOT_DOT] = ACTIONS(984), + [anon_sym_DASH] = ACTIONS(894), + [sym_integer_literal] = ACTIONS(896), + [aux_sym_string_literal_token1] = ACTIONS(898), + [sym_char_literal] = ACTIONS(896), + [anon_sym_true] = ACTIONS(900), + [anon_sym_false] = ACTIONS(900), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1288), + [sym_super] = ACTIONS(1288), + [sym_crate] = ACTIONS(1288), + [sym_metavariable] = ACTIONS(1290), + [sym_grit_metavariable] = ACTIONS(986), + [sym_raw_string_literal] = ACTIONS(896), + [sym_float_literal] = ACTIONS(896), [sym_block_comment] = ACTIONS(3), }, [594] = { - [sym_bracketed_type] = STATE(2658), - [sym_generic_type] = STATE(2655), - [sym_generic_type_with_turbofish] = STATE(2638), - [sym_macro_invocation] = STATE(1616), - [sym_scoped_identifier] = STATE(1451), - [sym_scoped_type_identifier] = STATE(2231), - [sym_const_block] = STATE(1616), - [sym_pattern] = STATE(1964), - [sym_tuple_pattern] = STATE(1616), - [sym_slice_pattern] = STATE(1616), - [sym_tuple_struct_pattern] = STATE(1616), - [sym_struct_pattern] = STATE(1616), - [sym_remaining_field_pattern] = STATE(1616), - [sym_mut_pattern] = STATE(1616), - [sym_range_pattern] = STATE(1616), - [sym_ref_pattern] = STATE(1616), - [sym_captured_pattern] = STATE(1616), - [sym_reference_pattern] = STATE(1616), - [sym_or_pattern] = STATE(1616), - [sym__literal_pattern] = STATE(1496), - [sym_negative_literal] = STATE(1513), - [sym_string_literal] = STATE(1513), - [sym_boolean_literal] = STATE(1513), - [sym_primitive_type] = STATE(1471), - [sym_identifier] = STATE(1428), - [sym__primitive_identifier] = ACTIONS(842), - [sym_underscore] = ACTIONS(972), - [anon_sym_LPAREN] = ACTIONS(1272), - [anon_sym_RPAREN] = ACTIONS(2768), - [anon_sym_LBRACK] = ACTIONS(1276), - [anon_sym_const] = ACTIONS(1278), - [anon_sym_default] = ACTIONS(1280), - [anon_sym_union] = ACTIONS(1280), - [anon_sym_COMMA] = ACTIONS(976), - [anon_sym_ref] = ACTIONS(878), + [sym_parameter] = STATE(2228), + [sym_bracketed_type] = STATE(2684), + [sym_generic_type] = STATE(2683), + [sym_generic_type_with_turbofish] = STATE(2682), + [sym_macro_invocation] = STATE(1615), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier] = STATE(2202), + [sym_const_block] = STATE(1615), + [sym_pattern] = STATE(1962), + [sym_tuple_pattern] = STATE(1615), + [sym_slice_pattern] = STATE(1615), + [sym_tuple_struct_pattern] = STATE(1615), + [sym_struct_pattern] = STATE(1615), + [sym_remaining_field_pattern] = STATE(1615), + [sym_mut_pattern] = STATE(1615), + [sym_range_pattern] = STATE(1615), + [sym_ref_pattern] = STATE(1615), + [sym_captured_pattern] = STATE(1615), + [sym_reference_pattern] = STATE(1615), + [sym_or_pattern] = STATE(1615), + [sym__literal_pattern] = STATE(1492), + [sym_negative_literal] = STATE(1521), + [sym_string_literal] = STATE(1521), + [sym_boolean_literal] = STATE(1521), + [sym_primitive_type] = STATE(1479), + [sym_identifier] = STATE(1432), + [sym__primitive_identifier] = ACTIONS(844), + [sym_underscore] = ACTIONS(974), + [anon_sym_LPAREN] = ACTIONS(1274), + [anon_sym_LBRACK] = ACTIONS(1278), + [anon_sym_const] = ACTIONS(1280), + [anon_sym_default] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1282), + [anon_sym_ref] = ACTIONS(880), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1282), - [anon_sym_AMP] = ACTIONS(1284), - [sym_mutable_specifier] = ACTIONS(980), - [anon_sym_DOT_DOT] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(892), - [sym_integer_literal] = ACTIONS(894), - [aux_sym_string_literal_token1] = ACTIONS(896), - [sym_char_literal] = ACTIONS(894), - [anon_sym_true] = ACTIONS(898), - [anon_sym_false] = ACTIONS(898), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1286), - [sym_super] = ACTIONS(1286), - [sym_crate] = ACTIONS(1286), - [sym_metavariable] = ACTIONS(1288), - [sym_grit_metavariable] = ACTIONS(984), - [sym_raw_string_literal] = ACTIONS(894), - [sym_float_literal] = ACTIONS(894), + [anon_sym_COLON_COLON] = ACTIONS(1284), + [anon_sym_AMP] = ACTIONS(1286), + [sym_mutable_specifier] = ACTIONS(2766), + [anon_sym_DOT_DOT] = ACTIONS(984), + [anon_sym_DASH] = ACTIONS(894), + [anon_sym_PIPE] = ACTIONS(2768), + [sym_integer_literal] = ACTIONS(896), + [aux_sym_string_literal_token1] = ACTIONS(898), + [sym_char_literal] = ACTIONS(896), + [anon_sym_true] = ACTIONS(900), + [anon_sym_false] = ACTIONS(900), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(2770), + [sym_super] = ACTIONS(1288), + [sym_crate] = ACTIONS(1288), + [sym_metavariable] = ACTIONS(1290), + [sym_grit_metavariable] = ACTIONS(986), + [sym_raw_string_literal] = ACTIONS(896), + [sym_float_literal] = ACTIONS(896), [sym_block_comment] = ACTIONS(3), }, [595] = { - [sym_bracketed_type] = STATE(2658), - [sym_generic_type] = STATE(2655), - [sym_generic_type_with_turbofish] = STATE(2638), - [sym_macro_invocation] = STATE(1616), - [sym_scoped_identifier] = STATE(1451), - [sym_scoped_type_identifier] = STATE(2231), - [sym_const_block] = STATE(1616), - [sym_pattern] = STATE(2089), - [sym_tuple_pattern] = STATE(1616), - [sym_slice_pattern] = STATE(1616), - [sym_tuple_struct_pattern] = STATE(1616), - [sym_struct_pattern] = STATE(1616), - [sym_remaining_field_pattern] = STATE(1616), - [sym_mut_pattern] = STATE(1616), - [sym_range_pattern] = STATE(1616), - [sym_ref_pattern] = STATE(1616), - [sym_captured_pattern] = STATE(1616), - [sym_reference_pattern] = STATE(1616), - [sym_or_pattern] = STATE(1616), - [sym__literal_pattern] = STATE(1496), - [sym_negative_literal] = STATE(1513), - [sym_string_literal] = STATE(1513), - [sym_boolean_literal] = STATE(1513), - [sym_primitive_type] = STATE(1471), - [sym_identifier] = STATE(1428), - [sym__primitive_identifier] = ACTIONS(842), - [sym_underscore] = ACTIONS(972), - [anon_sym_LPAREN] = ACTIONS(1272), - [anon_sym_LBRACK] = ACTIONS(1276), - [anon_sym_RBRACK] = ACTIONS(988), - [anon_sym_const] = ACTIONS(1278), - [anon_sym_default] = ACTIONS(1280), - [anon_sym_union] = ACTIONS(1280), - [anon_sym_COMMA] = ACTIONS(994), - [anon_sym_ref] = ACTIONS(878), + [sym_attribute_item] = STATE(1110), + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym_visibility_modifier] = STATE(723), + [sym__type] = STATE(2198), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_enum_variant_list_repeat1] = STATE(1110), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_pub] = ACTIONS(2742), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_POUND] = ACTIONS(2744), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1282), - [anon_sym_AMP] = ACTIONS(1284), - [sym_mutable_specifier] = ACTIONS(980), - [anon_sym_DOT_DOT] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(892), - [sym_integer_literal] = ACTIONS(894), - [aux_sym_string_literal_token1] = ACTIONS(896), - [sym_char_literal] = ACTIONS(894), - [anon_sym_true] = ACTIONS(898), - [anon_sym_false] = ACTIONS(898), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1286), - [sym_super] = ACTIONS(1286), - [sym_crate] = ACTIONS(1286), - [sym_metavariable] = ACTIONS(1288), - [sym_grit_metavariable] = ACTIONS(984), - [sym_raw_string_literal] = ACTIONS(894), - [sym_float_literal] = ACTIONS(894), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(2748), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(2750), [sym_block_comment] = ACTIONS(3), }, [596] = { - [sym_bracketed_type] = STATE(2658), - [sym_generic_type] = STATE(2655), - [sym_generic_type_with_turbofish] = STATE(2638), - [sym_macro_invocation] = STATE(1616), - [sym_scoped_identifier] = STATE(1451), - [sym_scoped_type_identifier] = STATE(2231), - [sym_const_block] = STATE(1616), - [sym_pattern] = STATE(2006), - [sym_tuple_pattern] = STATE(1616), - [sym_slice_pattern] = STATE(1616), - [sym_tuple_struct_pattern] = STATE(1616), - [sym_struct_pattern] = STATE(1616), - [sym_remaining_field_pattern] = STATE(1616), - [sym_mut_pattern] = STATE(1616), - [sym_range_pattern] = STATE(1616), - [sym_ref_pattern] = STATE(1616), - [sym_captured_pattern] = STATE(1616), - [sym_reference_pattern] = STATE(1616), - [sym_or_pattern] = STATE(1616), - [sym__literal_pattern] = STATE(1496), - [sym_negative_literal] = STATE(1513), - [sym_string_literal] = STATE(1513), - [sym_boolean_literal] = STATE(1513), - [sym_primitive_type] = STATE(1471), - [sym_identifier] = STATE(1428), - [sym__primitive_identifier] = ACTIONS(842), - [sym_underscore] = ACTIONS(972), - [anon_sym_LPAREN] = ACTIONS(1272), - [anon_sym_RPAREN] = ACTIONS(2770), - [anon_sym_LBRACK] = ACTIONS(1276), - [anon_sym_const] = ACTIONS(1278), - [anon_sym_default] = ACTIONS(1280), - [anon_sym_union] = ACTIONS(1280), - [anon_sym_COMMA] = ACTIONS(2772), - [anon_sym_ref] = ACTIONS(878), + [sym_bracketed_type] = STATE(2684), + [sym_generic_type] = STATE(2683), + [sym_generic_type_with_turbofish] = STATE(2682), + [sym_macro_invocation] = STATE(1615), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier] = STATE(2202), + [sym_const_block] = STATE(1615), + [sym_pattern] = STATE(2071), + [sym_tuple_pattern] = STATE(1615), + [sym_slice_pattern] = STATE(1615), + [sym_tuple_struct_pattern] = STATE(1615), + [sym_struct_pattern] = STATE(1615), + [sym_remaining_field_pattern] = STATE(1615), + [sym_mut_pattern] = STATE(1615), + [sym_range_pattern] = STATE(1615), + [sym_ref_pattern] = STATE(1615), + [sym_captured_pattern] = STATE(1615), + [sym_reference_pattern] = STATE(1615), + [sym_or_pattern] = STATE(1615), + [sym__literal_pattern] = STATE(1492), + [sym_negative_literal] = STATE(1521), + [sym_string_literal] = STATE(1521), + [sym_boolean_literal] = STATE(1521), + [sym_primitive_type] = STATE(1479), + [sym_identifier] = STATE(1432), + [sym__primitive_identifier] = ACTIONS(844), + [sym_underscore] = ACTIONS(974), + [anon_sym_LPAREN] = ACTIONS(1274), + [anon_sym_RPAREN] = ACTIONS(2772), + [anon_sym_LBRACK] = ACTIONS(1278), + [anon_sym_const] = ACTIONS(1280), + [anon_sym_default] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1282), + [anon_sym_COMMA] = ACTIONS(2774), + [anon_sym_ref] = ACTIONS(880), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1282), - [anon_sym_AMP] = ACTIONS(1284), - [sym_mutable_specifier] = ACTIONS(980), - [anon_sym_DOT_DOT] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(892), - [sym_integer_literal] = ACTIONS(894), - [aux_sym_string_literal_token1] = ACTIONS(896), - [sym_char_literal] = ACTIONS(894), - [anon_sym_true] = ACTIONS(898), - [anon_sym_false] = ACTIONS(898), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1286), - [sym_super] = ACTIONS(1286), - [sym_crate] = ACTIONS(1286), - [sym_metavariable] = ACTIONS(1288), - [sym_grit_metavariable] = ACTIONS(984), - [sym_raw_string_literal] = ACTIONS(894), - [sym_float_literal] = ACTIONS(894), + [anon_sym_COLON_COLON] = ACTIONS(1284), + [anon_sym_AMP] = ACTIONS(1286), + [sym_mutable_specifier] = ACTIONS(982), + [anon_sym_DOT_DOT] = ACTIONS(984), + [anon_sym_DASH] = ACTIONS(894), + [sym_integer_literal] = ACTIONS(896), + [aux_sym_string_literal_token1] = ACTIONS(898), + [sym_char_literal] = ACTIONS(896), + [anon_sym_true] = ACTIONS(900), + [anon_sym_false] = ACTIONS(900), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1288), + [sym_super] = ACTIONS(1288), + [sym_crate] = ACTIONS(1288), + [sym_metavariable] = ACTIONS(1290), + [sym_grit_metavariable] = ACTIONS(986), + [sym_raw_string_literal] = ACTIONS(896), + [sym_float_literal] = ACTIONS(896), [sym_block_comment] = ACTIONS(3), }, [597] = { - [sym_bracketed_type] = STATE(2658), - [sym_generic_type] = STATE(2655), - [sym_generic_type_with_turbofish] = STATE(2638), - [sym_macro_invocation] = STATE(1616), - [sym_scoped_identifier] = STATE(1451), - [sym_scoped_type_identifier] = STATE(2231), - [sym_const_block] = STATE(1616), - [sym_pattern] = STATE(1992), - [sym_tuple_pattern] = STATE(1616), - [sym_slice_pattern] = STATE(1616), - [sym_tuple_struct_pattern] = STATE(1616), - [sym_struct_pattern] = STATE(1616), - [sym_remaining_field_pattern] = STATE(1616), - [sym_mut_pattern] = STATE(1616), - [sym_range_pattern] = STATE(1616), - [sym_ref_pattern] = STATE(1616), - [sym_captured_pattern] = STATE(1616), - [sym_reference_pattern] = STATE(1616), - [sym_or_pattern] = STATE(1616), - [sym__literal_pattern] = STATE(1496), - [sym_negative_literal] = STATE(1513), - [sym_string_literal] = STATE(1513), - [sym_boolean_literal] = STATE(1513), - [sym_primitive_type] = STATE(1471), - [sym_identifier] = STATE(1428), - [sym__primitive_identifier] = ACTIONS(842), - [sym_underscore] = ACTIONS(972), - [anon_sym_LPAREN] = ACTIONS(1272), - [anon_sym_RPAREN] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(1276), - [anon_sym_const] = ACTIONS(1278), - [anon_sym_default] = ACTIONS(1280), - [anon_sym_union] = ACTIONS(1280), - [anon_sym_ref] = ACTIONS(878), + [sym_attribute_item] = STATE(595), + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym_visibility_modifier] = STATE(699), + [sym__type] = STATE(2253), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_enum_variant_list_repeat1] = STATE(595), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_pub] = ACTIONS(2742), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_POUND] = ACTIONS(2744), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1282), - [anon_sym_AMP] = ACTIONS(1284), - [sym_mutable_specifier] = ACTIONS(980), - [anon_sym_DOT_DOT] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(892), - [sym_integer_literal] = ACTIONS(894), - [aux_sym_string_literal_token1] = ACTIONS(896), - [sym_char_literal] = ACTIONS(894), - [anon_sym_true] = ACTIONS(898), - [anon_sym_false] = ACTIONS(898), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1286), - [sym_super] = ACTIONS(1286), - [sym_crate] = ACTIONS(1286), - [sym_metavariable] = ACTIONS(1288), - [sym_grit_metavariable] = ACTIONS(984), - [sym_raw_string_literal] = ACTIONS(894), - [sym_float_literal] = ACTIONS(894), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(2748), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(2750), [sym_block_comment] = ACTIONS(3), }, [598] = { - [sym_bracketed_type] = STATE(2658), - [sym_generic_type] = STATE(2655), - [sym_generic_type_with_turbofish] = STATE(2638), - [sym_macro_invocation] = STATE(1616), - [sym_scoped_identifier] = STATE(1451), - [sym_scoped_type_identifier] = STATE(2231), - [sym_const_block] = STATE(1616), - [sym_pattern] = STATE(1992), - [sym_tuple_pattern] = STATE(1616), - [sym_slice_pattern] = STATE(1616), - [sym_tuple_struct_pattern] = STATE(1616), - [sym_struct_pattern] = STATE(1616), - [sym_remaining_field_pattern] = STATE(1616), - [sym_mut_pattern] = STATE(1616), - [sym_range_pattern] = STATE(1616), - [sym_ref_pattern] = STATE(1616), - [sym_captured_pattern] = STATE(1616), - [sym_reference_pattern] = STATE(1616), - [sym_or_pattern] = STATE(1616), - [sym__literal_pattern] = STATE(1496), - [sym_negative_literal] = STATE(1513), - [sym_string_literal] = STATE(1513), - [sym_boolean_literal] = STATE(1513), - [sym_primitive_type] = STATE(1471), - [sym_identifier] = STATE(1428), - [sym__primitive_identifier] = ACTIONS(842), - [sym_underscore] = ACTIONS(972), - [anon_sym_LPAREN] = ACTIONS(1272), + [sym_bracketed_type] = STATE(2684), + [sym_generic_type] = STATE(2683), + [sym_generic_type_with_turbofish] = STATE(2682), + [sym_macro_invocation] = STATE(1615), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier] = STATE(2202), + [sym_const_block] = STATE(1615), + [sym_pattern] = STATE(2120), + [sym_tuple_pattern] = STATE(1615), + [sym_slice_pattern] = STATE(1615), + [sym_tuple_struct_pattern] = STATE(1615), + [sym_struct_pattern] = STATE(1615), + [sym_remaining_field_pattern] = STATE(1615), + [sym_mut_pattern] = STATE(1615), + [sym_range_pattern] = STATE(1615), + [sym_ref_pattern] = STATE(1615), + [sym_captured_pattern] = STATE(1615), + [sym_reference_pattern] = STATE(1615), + [sym_or_pattern] = STATE(1615), + [sym__literal_pattern] = STATE(1492), + [sym_negative_literal] = STATE(1521), + [sym_string_literal] = STATE(1521), + [sym_boolean_literal] = STATE(1521), + [sym_primitive_type] = STATE(1479), + [sym_identifier] = STATE(1432), + [sym__primitive_identifier] = ACTIONS(844), + [sym_underscore] = ACTIONS(974), + [anon_sym_LPAREN] = ACTIONS(1274), [anon_sym_RPAREN] = ACTIONS(2776), - [anon_sym_LBRACK] = ACTIONS(1276), - [anon_sym_const] = ACTIONS(1278), - [anon_sym_default] = ACTIONS(1280), - [anon_sym_union] = ACTIONS(1280), - [anon_sym_ref] = ACTIONS(878), + [anon_sym_LBRACK] = ACTIONS(1278), + [anon_sym_const] = ACTIONS(1280), + [anon_sym_default] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1282), + [anon_sym_ref] = ACTIONS(880), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1282), - [anon_sym_AMP] = ACTIONS(1284), - [sym_mutable_specifier] = ACTIONS(980), - [anon_sym_DOT_DOT] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(892), - [sym_integer_literal] = ACTIONS(894), - [aux_sym_string_literal_token1] = ACTIONS(896), - [sym_char_literal] = ACTIONS(894), - [anon_sym_true] = ACTIONS(898), - [anon_sym_false] = ACTIONS(898), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1286), - [sym_super] = ACTIONS(1286), - [sym_crate] = ACTIONS(1286), - [sym_metavariable] = ACTIONS(1288), - [sym_grit_metavariable] = ACTIONS(984), - [sym_raw_string_literal] = ACTIONS(894), - [sym_float_literal] = ACTIONS(894), + [anon_sym_COLON_COLON] = ACTIONS(1284), + [anon_sym_AMP] = ACTIONS(1286), + [sym_mutable_specifier] = ACTIONS(982), + [anon_sym_DOT_DOT] = ACTIONS(984), + [anon_sym_DASH] = ACTIONS(894), + [sym_integer_literal] = ACTIONS(896), + [aux_sym_string_literal_token1] = ACTIONS(898), + [sym_char_literal] = ACTIONS(896), + [anon_sym_true] = ACTIONS(900), + [anon_sym_false] = ACTIONS(900), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1288), + [sym_super] = ACTIONS(1288), + [sym_crate] = ACTIONS(1288), + [sym_metavariable] = ACTIONS(1290), + [sym_grit_metavariable] = ACTIONS(986), + [sym_raw_string_literal] = ACTIONS(896), + [sym_float_literal] = ACTIONS(896), [sym_block_comment] = ACTIONS(3), }, [599] = { - [sym_parameter] = STATE(2475), - [sym_bracketed_type] = STATE(2658), - [sym_generic_type] = STATE(2655), - [sym_generic_type_with_turbofish] = STATE(2638), - [sym_macro_invocation] = STATE(1616), - [sym_scoped_identifier] = STATE(1451), - [sym_scoped_type_identifier] = STATE(2231), - [sym_const_block] = STATE(1616), - [sym_pattern] = STATE(2193), - [sym_tuple_pattern] = STATE(1616), - [sym_slice_pattern] = STATE(1616), - [sym_tuple_struct_pattern] = STATE(1616), - [sym_struct_pattern] = STATE(1616), - [sym_remaining_field_pattern] = STATE(1616), - [sym_mut_pattern] = STATE(1616), - [sym_range_pattern] = STATE(1616), - [sym_ref_pattern] = STATE(1616), - [sym_captured_pattern] = STATE(1616), - [sym_reference_pattern] = STATE(1616), - [sym_or_pattern] = STATE(1616), - [sym__literal_pattern] = STATE(1496), - [sym_negative_literal] = STATE(1513), - [sym_string_literal] = STATE(1513), - [sym_boolean_literal] = STATE(1513), - [sym_primitive_type] = STATE(1471), - [sym_identifier] = STATE(1428), - [sym__primitive_identifier] = ACTIONS(842), - [sym_underscore] = ACTIONS(972), - [anon_sym_LPAREN] = ACTIONS(1272), - [anon_sym_LBRACK] = ACTIONS(1276), - [anon_sym_const] = ACTIONS(1278), - [anon_sym_default] = ACTIONS(1280), - [anon_sym_union] = ACTIONS(1280), - [anon_sym_ref] = ACTIONS(878), + [sym_bracketed_type] = STATE(2684), + [sym_generic_type] = STATE(2683), + [sym_generic_type_with_turbofish] = STATE(2682), + [sym_macro_invocation] = STATE(1615), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier] = STATE(2202), + [sym_const_block] = STATE(1615), + [sym_pattern] = STATE(2120), + [sym_tuple_pattern] = STATE(1615), + [sym_slice_pattern] = STATE(1615), + [sym_tuple_struct_pattern] = STATE(1615), + [sym_struct_pattern] = STATE(1615), + [sym_remaining_field_pattern] = STATE(1615), + [sym_mut_pattern] = STATE(1615), + [sym_range_pattern] = STATE(1615), + [sym_ref_pattern] = STATE(1615), + [sym_captured_pattern] = STATE(1615), + [sym_reference_pattern] = STATE(1615), + [sym_or_pattern] = STATE(1615), + [sym__literal_pattern] = STATE(1492), + [sym_negative_literal] = STATE(1521), + [sym_string_literal] = STATE(1521), + [sym_boolean_literal] = STATE(1521), + [sym_primitive_type] = STATE(1479), + [sym_identifier] = STATE(1432), + [sym__primitive_identifier] = ACTIONS(844), + [sym_underscore] = ACTIONS(974), + [anon_sym_LPAREN] = ACTIONS(1274), + [anon_sym_RPAREN] = ACTIONS(2778), + [anon_sym_LBRACK] = ACTIONS(1278), + [anon_sym_const] = ACTIONS(1280), + [anon_sym_default] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1282), + [anon_sym_ref] = ACTIONS(880), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1282), - [anon_sym_AMP] = ACTIONS(1284), - [sym_mutable_specifier] = ACTIONS(2762), - [anon_sym_DOT_DOT] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(892), - [sym_integer_literal] = ACTIONS(894), - [aux_sym_string_literal_token1] = ACTIONS(896), - [sym_char_literal] = ACTIONS(894), - [anon_sym_true] = ACTIONS(898), - [anon_sym_false] = ACTIONS(898), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(2766), - [sym_super] = ACTIONS(1286), - [sym_crate] = ACTIONS(1286), - [sym_metavariable] = ACTIONS(1288), - [sym_grit_metavariable] = ACTIONS(984), - [sym_raw_string_literal] = ACTIONS(894), - [sym_float_literal] = ACTIONS(894), + [anon_sym_COLON_COLON] = ACTIONS(1284), + [anon_sym_AMP] = ACTIONS(1286), + [sym_mutable_specifier] = ACTIONS(982), + [anon_sym_DOT_DOT] = ACTIONS(984), + [anon_sym_DASH] = ACTIONS(894), + [sym_integer_literal] = ACTIONS(896), + [aux_sym_string_literal_token1] = ACTIONS(898), + [sym_char_literal] = ACTIONS(896), + [anon_sym_true] = ACTIONS(900), + [anon_sym_false] = ACTIONS(900), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1288), + [sym_super] = ACTIONS(1288), + [sym_crate] = ACTIONS(1288), + [sym_metavariable] = ACTIONS(1290), + [sym_grit_metavariable] = ACTIONS(986), + [sym_raw_string_literal] = ACTIONS(896), + [sym_float_literal] = ACTIONS(896), [sym_block_comment] = ACTIONS(3), }, [600] = { - [sym_bracketed_type] = STATE(2658), - [sym_generic_type] = STATE(2655), - [sym_generic_type_with_turbofish] = STATE(2638), - [sym_macro_invocation] = STATE(1616), - [sym_scoped_identifier] = STATE(1451), - [sym_scoped_type_identifier] = STATE(2231), - [sym_const_block] = STATE(1616), - [sym_pattern] = STATE(1992), - [sym_tuple_pattern] = STATE(1616), - [sym_slice_pattern] = STATE(1616), - [sym_tuple_struct_pattern] = STATE(1616), - [sym_struct_pattern] = STATE(1616), - [sym_remaining_field_pattern] = STATE(1616), - [sym_mut_pattern] = STATE(1616), - [sym_range_pattern] = STATE(1616), - [sym_ref_pattern] = STATE(1616), - [sym_captured_pattern] = STATE(1616), - [sym_reference_pattern] = STATE(1616), - [sym_or_pattern] = STATE(1616), - [sym__literal_pattern] = STATE(1496), - [sym_negative_literal] = STATE(1513), - [sym_string_literal] = STATE(1513), - [sym_boolean_literal] = STATE(1513), - [sym_primitive_type] = STATE(1471), - [sym_identifier] = STATE(1428), - [sym__primitive_identifier] = ACTIONS(842), - [sym_underscore] = ACTIONS(972), - [anon_sym_LPAREN] = ACTIONS(1272), - [anon_sym_RPAREN] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(1276), - [anon_sym_const] = ACTIONS(1278), - [anon_sym_default] = ACTIONS(1280), - [anon_sym_union] = ACTIONS(1280), - [anon_sym_ref] = ACTIONS(878), + [sym_parameter] = STATE(2554), + [sym_bracketed_type] = STATE(2684), + [sym_generic_type] = STATE(2683), + [sym_generic_type_with_turbofish] = STATE(2682), + [sym_macro_invocation] = STATE(1615), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier] = STATE(2202), + [sym_const_block] = STATE(1615), + [sym_pattern] = STATE(2224), + [sym_tuple_pattern] = STATE(1615), + [sym_slice_pattern] = STATE(1615), + [sym_tuple_struct_pattern] = STATE(1615), + [sym_struct_pattern] = STATE(1615), + [sym_remaining_field_pattern] = STATE(1615), + [sym_mut_pattern] = STATE(1615), + [sym_range_pattern] = STATE(1615), + [sym_ref_pattern] = STATE(1615), + [sym_captured_pattern] = STATE(1615), + [sym_reference_pattern] = STATE(1615), + [sym_or_pattern] = STATE(1615), + [sym__literal_pattern] = STATE(1492), + [sym_negative_literal] = STATE(1521), + [sym_string_literal] = STATE(1521), + [sym_boolean_literal] = STATE(1521), + [sym_primitive_type] = STATE(1479), + [sym_identifier] = STATE(1432), + [sym__primitive_identifier] = ACTIONS(844), + [sym_underscore] = ACTIONS(974), + [anon_sym_LPAREN] = ACTIONS(1274), + [anon_sym_LBRACK] = ACTIONS(1278), + [anon_sym_const] = ACTIONS(1280), + [anon_sym_default] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1282), + [anon_sym_ref] = ACTIONS(880), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1282), - [anon_sym_AMP] = ACTIONS(1284), - [sym_mutable_specifier] = ACTIONS(980), - [anon_sym_DOT_DOT] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(892), - [sym_integer_literal] = ACTIONS(894), - [aux_sym_string_literal_token1] = ACTIONS(896), - [sym_char_literal] = ACTIONS(894), - [anon_sym_true] = ACTIONS(898), - [anon_sym_false] = ACTIONS(898), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1286), - [sym_super] = ACTIONS(1286), - [sym_crate] = ACTIONS(1286), - [sym_metavariable] = ACTIONS(1288), - [sym_grit_metavariable] = ACTIONS(984), - [sym_raw_string_literal] = ACTIONS(894), - [sym_float_literal] = ACTIONS(894), + [anon_sym_COLON_COLON] = ACTIONS(1284), + [anon_sym_AMP] = ACTIONS(1286), + [sym_mutable_specifier] = ACTIONS(2766), + [anon_sym_DOT_DOT] = ACTIONS(984), + [anon_sym_DASH] = ACTIONS(894), + [sym_integer_literal] = ACTIONS(896), + [aux_sym_string_literal_token1] = ACTIONS(898), + [sym_char_literal] = ACTIONS(896), + [anon_sym_true] = ACTIONS(900), + [anon_sym_false] = ACTIONS(900), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(2770), + [sym_super] = ACTIONS(1288), + [sym_crate] = ACTIONS(1288), + [sym_metavariable] = ACTIONS(1290), + [sym_grit_metavariable] = ACTIONS(986), + [sym_raw_string_literal] = ACTIONS(896), + [sym_float_literal] = ACTIONS(896), [sym_block_comment] = ACTIONS(3), }, [601] = { - [sym_bracketed_type] = STATE(2658), - [sym_generic_type] = STATE(2655), - [sym_generic_type_with_turbofish] = STATE(2638), - [sym_macro_invocation] = STATE(1616), - [sym_scoped_identifier] = STATE(1451), - [sym_scoped_type_identifier] = STATE(2231), - [sym_const_block] = STATE(1616), - [sym_pattern] = STATE(1992), - [sym_tuple_pattern] = STATE(1616), - [sym_slice_pattern] = STATE(1616), - [sym_tuple_struct_pattern] = STATE(1616), - [sym_struct_pattern] = STATE(1616), - [sym_remaining_field_pattern] = STATE(1616), - [sym_mut_pattern] = STATE(1616), - [sym_range_pattern] = STATE(1616), - [sym_ref_pattern] = STATE(1616), - [sym_captured_pattern] = STATE(1616), - [sym_reference_pattern] = STATE(1616), - [sym_or_pattern] = STATE(1616), - [sym__literal_pattern] = STATE(1496), - [sym_negative_literal] = STATE(1513), - [sym_string_literal] = STATE(1513), - [sym_boolean_literal] = STATE(1513), - [sym_primitive_type] = STATE(1471), - [sym_identifier] = STATE(1428), - [sym__primitive_identifier] = ACTIONS(842), - [sym_underscore] = ACTIONS(972), - [anon_sym_LPAREN] = ACTIONS(1272), - [anon_sym_LBRACK] = ACTIONS(1276), - [anon_sym_RBRACK] = ACTIONS(2780), - [anon_sym_const] = ACTIONS(1278), - [anon_sym_default] = ACTIONS(1280), - [anon_sym_union] = ACTIONS(1280), - [anon_sym_ref] = ACTIONS(878), + [sym_function_modifiers] = STATE(2667), + [sym_const_parameter] = STATE(2258), + [sym_constrained_type_parameter] = STATE(1990), + [sym_optional_type_parameter] = STATE(2258), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(2215), + [sym_bracketed_type] = STATE(2652), + [sym_qualified_type] = STATE(2639), + [sym_lifetime] = STATE(1811), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1532), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(2780), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1282), - [anon_sym_AMP] = ACTIONS(1284), - [sym_mutable_specifier] = ACTIONS(980), - [anon_sym_DOT_DOT] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(892), - [sym_integer_literal] = ACTIONS(894), - [aux_sym_string_literal_token1] = ACTIONS(896), - [sym_char_literal] = ACTIONS(894), - [anon_sym_true] = ACTIONS(898), - [anon_sym_false] = ACTIONS(898), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1286), - [sym_super] = ACTIONS(1286), - [sym_crate] = ACTIONS(1286), - [sym_metavariable] = ACTIONS(1288), - [sym_grit_metavariable] = ACTIONS(984), - [sym_raw_string_literal] = ACTIONS(894), - [sym_float_literal] = ACTIONS(894), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(2782), + [sym_grit_metavariable] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, [602] = { - [sym_function_modifiers] = STATE(2724), - [sym_const_parameter] = STATE(2261), - [sym_constrained_type_parameter] = STATE(2143), - [sym_optional_type_parameter] = STATE(2261), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(2163), - [sym_bracketed_type] = STATE(2646), - [sym_qualified_type] = STATE(2753), - [sym_lifetime] = STATE(1869), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), + [sym_bracketed_type] = STATE(2684), + [sym_generic_type] = STATE(2683), + [sym_generic_type_with_turbofish] = STATE(2682), + [sym_macro_invocation] = STATE(1615), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier] = STATE(2202), + [sym_const_block] = STATE(1615), + [sym_pattern] = STATE(2120), + [sym_tuple_pattern] = STATE(1615), + [sym_slice_pattern] = STATE(1615), + [sym_tuple_struct_pattern] = STATE(1615), + [sym_struct_pattern] = STATE(1615), + [sym_remaining_field_pattern] = STATE(1615), + [sym_mut_pattern] = STATE(1615), + [sym_range_pattern] = STATE(1615), + [sym_ref_pattern] = STATE(1615), + [sym_captured_pattern] = STATE(1615), + [sym_reference_pattern] = STATE(1615), + [sym_or_pattern] = STATE(1615), + [sym__literal_pattern] = STATE(1492), + [sym_negative_literal] = STATE(1521), + [sym_string_literal] = STATE(1521), + [sym_boolean_literal] = STATE(1521), [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1510), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(2782), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [sym_identifier] = STATE(1432), + [sym__primitive_identifier] = ACTIONS(844), + [sym_underscore] = ACTIONS(974), + [anon_sym_LPAREN] = ACTIONS(1274), + [anon_sym_RPAREN] = ACTIONS(2784), + [anon_sym_LBRACK] = ACTIONS(1278), + [anon_sym_const] = ACTIONS(1280), + [anon_sym_default] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1282), + [anon_sym_ref] = ACTIONS(880), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(2784), - [sym_grit_metavariable] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(1284), + [anon_sym_AMP] = ACTIONS(1286), + [sym_mutable_specifier] = ACTIONS(982), + [anon_sym_DOT_DOT] = ACTIONS(984), + [anon_sym_DASH] = ACTIONS(894), + [sym_integer_literal] = ACTIONS(896), + [aux_sym_string_literal_token1] = ACTIONS(898), + [sym_char_literal] = ACTIONS(896), + [anon_sym_true] = ACTIONS(900), + [anon_sym_false] = ACTIONS(900), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1288), + [sym_super] = ACTIONS(1288), + [sym_crate] = ACTIONS(1288), + [sym_metavariable] = ACTIONS(1290), + [sym_grit_metavariable] = ACTIONS(986), + [sym_raw_string_literal] = ACTIONS(896), + [sym_float_literal] = ACTIONS(896), [sym_block_comment] = ACTIONS(3), }, [603] = { - [sym_bracketed_type] = STATE(2658), - [sym_generic_type] = STATE(2655), - [sym_generic_type_with_turbofish] = STATE(2638), - [sym_macro_invocation] = STATE(1616), - [sym_scoped_identifier] = STATE(1451), - [sym_scoped_type_identifier] = STATE(2231), - [sym_const_block] = STATE(1616), - [sym_pattern] = STATE(1992), - [sym_tuple_pattern] = STATE(1616), - [sym_slice_pattern] = STATE(1616), - [sym_tuple_struct_pattern] = STATE(1616), - [sym_struct_pattern] = STATE(1616), - [sym_remaining_field_pattern] = STATE(1616), - [sym_mut_pattern] = STATE(1616), - [sym_range_pattern] = STATE(1616), - [sym_ref_pattern] = STATE(1616), - [sym_captured_pattern] = STATE(1616), - [sym_reference_pattern] = STATE(1616), - [sym_or_pattern] = STATE(1616), - [sym__literal_pattern] = STATE(1496), - [sym_negative_literal] = STATE(1513), - [sym_string_literal] = STATE(1513), - [sym_boolean_literal] = STATE(1513), - [sym_primitive_type] = STATE(1471), - [sym_identifier] = STATE(1428), - [sym__primitive_identifier] = ACTIONS(842), - [sym_underscore] = ACTIONS(972), - [anon_sym_LPAREN] = ACTIONS(1272), - [anon_sym_LBRACK] = ACTIONS(1276), + [sym_bracketed_type] = STATE(2684), + [sym_generic_type] = STATE(2683), + [sym_generic_type_with_turbofish] = STATE(2682), + [sym_macro_invocation] = STATE(1615), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier] = STATE(2202), + [sym_const_block] = STATE(1615), + [sym_pattern] = STATE(2120), + [sym_tuple_pattern] = STATE(1615), + [sym_slice_pattern] = STATE(1615), + [sym_tuple_struct_pattern] = STATE(1615), + [sym_struct_pattern] = STATE(1615), + [sym_remaining_field_pattern] = STATE(1615), + [sym_mut_pattern] = STATE(1615), + [sym_range_pattern] = STATE(1615), + [sym_ref_pattern] = STATE(1615), + [sym_captured_pattern] = STATE(1615), + [sym_reference_pattern] = STATE(1615), + [sym_or_pattern] = STATE(1615), + [sym__literal_pattern] = STATE(1492), + [sym_negative_literal] = STATE(1521), + [sym_string_literal] = STATE(1521), + [sym_boolean_literal] = STATE(1521), + [sym_primitive_type] = STATE(1479), + [sym_identifier] = STATE(1432), + [sym__primitive_identifier] = ACTIONS(844), + [sym_underscore] = ACTIONS(974), + [anon_sym_LPAREN] = ACTIONS(1274), + [anon_sym_LBRACK] = ACTIONS(1278), [anon_sym_RBRACK] = ACTIONS(2786), - [anon_sym_const] = ACTIONS(1278), - [anon_sym_default] = ACTIONS(1280), - [anon_sym_union] = ACTIONS(1280), - [anon_sym_ref] = ACTIONS(878), + [anon_sym_const] = ACTIONS(1280), + [anon_sym_default] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1282), + [anon_sym_ref] = ACTIONS(880), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1282), - [anon_sym_AMP] = ACTIONS(1284), - [sym_mutable_specifier] = ACTIONS(980), - [anon_sym_DOT_DOT] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(892), - [sym_integer_literal] = ACTIONS(894), - [aux_sym_string_literal_token1] = ACTIONS(896), - [sym_char_literal] = ACTIONS(894), - [anon_sym_true] = ACTIONS(898), - [anon_sym_false] = ACTIONS(898), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1286), - [sym_super] = ACTIONS(1286), - [sym_crate] = ACTIONS(1286), - [sym_metavariable] = ACTIONS(1288), - [sym_grit_metavariable] = ACTIONS(984), - [sym_raw_string_literal] = ACTIONS(894), - [sym_float_literal] = ACTIONS(894), + [anon_sym_COLON_COLON] = ACTIONS(1284), + [anon_sym_AMP] = ACTIONS(1286), + [sym_mutable_specifier] = ACTIONS(982), + [anon_sym_DOT_DOT] = ACTIONS(984), + [anon_sym_DASH] = ACTIONS(894), + [sym_integer_literal] = ACTIONS(896), + [aux_sym_string_literal_token1] = ACTIONS(898), + [sym_char_literal] = ACTIONS(896), + [anon_sym_true] = ACTIONS(900), + [anon_sym_false] = ACTIONS(900), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1288), + [sym_super] = ACTIONS(1288), + [sym_crate] = ACTIONS(1288), + [sym_metavariable] = ACTIONS(1290), + [sym_grit_metavariable] = ACTIONS(986), + [sym_raw_string_literal] = ACTIONS(896), + [sym_float_literal] = ACTIONS(896), [sym_block_comment] = ACTIONS(3), }, [604] = { - [sym_bracketed_type] = STATE(2658), - [sym_generic_type] = STATE(2655), - [sym_generic_type_with_turbofish] = STATE(2638), - [sym_macro_invocation] = STATE(1616), - [sym_scoped_identifier] = STATE(1451), - [sym_scoped_type_identifier] = STATE(2231), - [sym_const_block] = STATE(1616), - [sym_pattern] = STATE(1992), - [sym_tuple_pattern] = STATE(1616), - [sym_slice_pattern] = STATE(1616), - [sym_tuple_struct_pattern] = STATE(1616), - [sym_struct_pattern] = STATE(1616), - [sym_remaining_field_pattern] = STATE(1616), - [sym_mut_pattern] = STATE(1616), - [sym_range_pattern] = STATE(1616), - [sym_ref_pattern] = STATE(1616), - [sym_captured_pattern] = STATE(1616), - [sym_reference_pattern] = STATE(1616), - [sym_or_pattern] = STATE(1616), - [sym__literal_pattern] = STATE(1496), - [sym_negative_literal] = STATE(1513), - [sym_string_literal] = STATE(1513), - [sym_boolean_literal] = STATE(1513), - [sym_primitive_type] = STATE(1471), - [sym_identifier] = STATE(1428), - [sym__primitive_identifier] = ACTIONS(842), - [sym_underscore] = ACTIONS(972), - [anon_sym_LPAREN] = ACTIONS(1272), - [anon_sym_RPAREN] = ACTIONS(2788), - [anon_sym_LBRACK] = ACTIONS(1276), - [anon_sym_const] = ACTIONS(1278), - [anon_sym_default] = ACTIONS(1280), - [anon_sym_union] = ACTIONS(1280), - [anon_sym_ref] = ACTIONS(878), + [sym_bracketed_type] = STATE(2684), + [sym_generic_type] = STATE(2683), + [sym_generic_type_with_turbofish] = STATE(2682), + [sym_macro_invocation] = STATE(1615), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier] = STATE(2202), + [sym_const_block] = STATE(1615), + [sym_pattern] = STATE(2120), + [sym_tuple_pattern] = STATE(1615), + [sym_slice_pattern] = STATE(1615), + [sym_tuple_struct_pattern] = STATE(1615), + [sym_struct_pattern] = STATE(1615), + [sym_remaining_field_pattern] = STATE(1615), + [sym_mut_pattern] = STATE(1615), + [sym_range_pattern] = STATE(1615), + [sym_ref_pattern] = STATE(1615), + [sym_captured_pattern] = STATE(1615), + [sym_reference_pattern] = STATE(1615), + [sym_or_pattern] = STATE(1615), + [sym__literal_pattern] = STATE(1492), + [sym_negative_literal] = STATE(1521), + [sym_string_literal] = STATE(1521), + [sym_boolean_literal] = STATE(1521), + [sym_primitive_type] = STATE(1479), + [sym_identifier] = STATE(1432), + [sym__primitive_identifier] = ACTIONS(844), + [sym_underscore] = ACTIONS(974), + [anon_sym_LPAREN] = ACTIONS(1274), + [anon_sym_LBRACK] = ACTIONS(1278), + [anon_sym_RBRACK] = ACTIONS(2788), + [anon_sym_const] = ACTIONS(1280), + [anon_sym_default] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1282), + [anon_sym_ref] = ACTIONS(880), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1282), - [anon_sym_AMP] = ACTIONS(1284), - [sym_mutable_specifier] = ACTIONS(980), - [anon_sym_DOT_DOT] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(892), - [sym_integer_literal] = ACTIONS(894), - [aux_sym_string_literal_token1] = ACTIONS(896), - [sym_char_literal] = ACTIONS(894), - [anon_sym_true] = ACTIONS(898), - [anon_sym_false] = ACTIONS(898), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1286), - [sym_super] = ACTIONS(1286), - [sym_crate] = ACTIONS(1286), - [sym_metavariable] = ACTIONS(1288), - [sym_grit_metavariable] = ACTIONS(984), - [sym_raw_string_literal] = ACTIONS(894), - [sym_float_literal] = ACTIONS(894), + [anon_sym_COLON_COLON] = ACTIONS(1284), + [anon_sym_AMP] = ACTIONS(1286), + [sym_mutable_specifier] = ACTIONS(982), + [anon_sym_DOT_DOT] = ACTIONS(984), + [anon_sym_DASH] = ACTIONS(894), + [sym_integer_literal] = ACTIONS(896), + [aux_sym_string_literal_token1] = ACTIONS(898), + [sym_char_literal] = ACTIONS(896), + [anon_sym_true] = ACTIONS(900), + [anon_sym_false] = ACTIONS(900), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1288), + [sym_super] = ACTIONS(1288), + [sym_crate] = ACTIONS(1288), + [sym_metavariable] = ACTIONS(1290), + [sym_grit_metavariable] = ACTIONS(986), + [sym_raw_string_literal] = ACTIONS(896), + [sym_float_literal] = ACTIONS(896), [sym_block_comment] = ACTIONS(3), }, [605] = { - [sym_bracketed_type] = STATE(2658), - [sym_generic_type] = STATE(2655), - [sym_generic_type_with_turbofish] = STATE(2638), - [sym_macro_invocation] = STATE(1616), - [sym_scoped_identifier] = STATE(1451), - [sym_scoped_type_identifier] = STATE(2231), - [sym_const_block] = STATE(1616), - [sym_pattern] = STATE(2581), - [sym_tuple_pattern] = STATE(1616), - [sym_slice_pattern] = STATE(1616), - [sym_tuple_struct_pattern] = STATE(1616), - [sym_struct_pattern] = STATE(1616), - [sym_remaining_field_pattern] = STATE(1616), - [sym_mut_pattern] = STATE(1616), - [sym_range_pattern] = STATE(1616), - [sym_ref_pattern] = STATE(1616), - [sym_captured_pattern] = STATE(1616), - [sym_reference_pattern] = STATE(1616), - [sym_or_pattern] = STATE(1616), - [sym__literal_pattern] = STATE(1496), - [sym_negative_literal] = STATE(1513), - [sym_string_literal] = STATE(1513), - [sym_boolean_literal] = STATE(1513), - [sym_primitive_type] = STATE(1471), - [sym_identifier] = STATE(1428), - [sym__primitive_identifier] = ACTIONS(842), - [sym_underscore] = ACTIONS(972), - [anon_sym_LPAREN] = ACTIONS(1272), - [anon_sym_LBRACK] = ACTIONS(1276), - [anon_sym_const] = ACTIONS(1278), - [anon_sym_default] = ACTIONS(1280), - [anon_sym_union] = ACTIONS(1280), - [anon_sym_ref] = ACTIONS(878), + [sym_bracketed_type] = STATE(2684), + [sym_generic_type] = STATE(2683), + [sym_generic_type_with_turbofish] = STATE(2682), + [sym_macro_invocation] = STATE(1615), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier] = STATE(2202), + [sym_const_block] = STATE(1615), + [sym_pattern] = STATE(2120), + [sym_tuple_pattern] = STATE(1615), + [sym_slice_pattern] = STATE(1615), + [sym_tuple_struct_pattern] = STATE(1615), + [sym_struct_pattern] = STATE(1615), + [sym_remaining_field_pattern] = STATE(1615), + [sym_mut_pattern] = STATE(1615), + [sym_range_pattern] = STATE(1615), + [sym_ref_pattern] = STATE(1615), + [sym_captured_pattern] = STATE(1615), + [sym_reference_pattern] = STATE(1615), + [sym_or_pattern] = STATE(1615), + [sym__literal_pattern] = STATE(1492), + [sym_negative_literal] = STATE(1521), + [sym_string_literal] = STATE(1521), + [sym_boolean_literal] = STATE(1521), + [sym_primitive_type] = STATE(1479), + [sym_identifier] = STATE(1432), + [sym__primitive_identifier] = ACTIONS(844), + [sym_underscore] = ACTIONS(974), + [anon_sym_LPAREN] = ACTIONS(1274), + [anon_sym_RPAREN] = ACTIONS(2790), + [anon_sym_LBRACK] = ACTIONS(1278), + [anon_sym_const] = ACTIONS(1280), + [anon_sym_default] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1282), + [anon_sym_ref] = ACTIONS(880), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1282), - [anon_sym_AMP] = ACTIONS(1284), - [sym_mutable_specifier] = ACTIONS(980), - [anon_sym_DOT_DOT] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(892), - [sym_integer_literal] = ACTIONS(894), - [aux_sym_string_literal_token1] = ACTIONS(896), - [sym_char_literal] = ACTIONS(894), - [anon_sym_true] = ACTIONS(898), - [anon_sym_false] = ACTIONS(898), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1286), - [sym_super] = ACTIONS(1286), - [sym_crate] = ACTIONS(1286), - [sym_metavariable] = ACTIONS(1288), - [sym_grit_metavariable] = ACTIONS(984), - [sym_raw_string_literal] = ACTIONS(894), - [sym_float_literal] = ACTIONS(894), + [anon_sym_COLON_COLON] = ACTIONS(1284), + [anon_sym_AMP] = ACTIONS(1286), + [sym_mutable_specifier] = ACTIONS(982), + [anon_sym_DOT_DOT] = ACTIONS(984), + [anon_sym_DASH] = ACTIONS(894), + [sym_integer_literal] = ACTIONS(896), + [aux_sym_string_literal_token1] = ACTIONS(898), + [sym_char_literal] = ACTIONS(896), + [anon_sym_true] = ACTIONS(900), + [anon_sym_false] = ACTIONS(900), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1288), + [sym_super] = ACTIONS(1288), + [sym_crate] = ACTIONS(1288), + [sym_metavariable] = ACTIONS(1290), + [sym_grit_metavariable] = ACTIONS(986), + [sym_raw_string_literal] = ACTIONS(896), + [sym_float_literal] = ACTIONS(896), [sym_block_comment] = ACTIONS(3), }, [606] = { - [sym_bracketed_type] = STATE(2658), - [sym_generic_type] = STATE(2655), - [sym_generic_type_with_turbofish] = STATE(2638), - [sym_macro_invocation] = STATE(1616), - [sym_scoped_identifier] = STATE(1451), - [sym_scoped_type_identifier] = STATE(2231), - [sym_const_block] = STATE(1616), - [sym_pattern] = STATE(2134), - [sym_tuple_pattern] = STATE(1616), - [sym_slice_pattern] = STATE(1616), - [sym_tuple_struct_pattern] = STATE(1616), - [sym_struct_pattern] = STATE(1616), - [sym_remaining_field_pattern] = STATE(1616), - [sym_mut_pattern] = STATE(1616), - [sym_range_pattern] = STATE(1616), - [sym_ref_pattern] = STATE(1616), - [sym_captured_pattern] = STATE(1616), - [sym_reference_pattern] = STATE(1616), - [sym_or_pattern] = STATE(1616), - [sym__literal_pattern] = STATE(1496), - [sym_negative_literal] = STATE(1513), - [sym_string_literal] = STATE(1513), - [sym_boolean_literal] = STATE(1513), - [sym_primitive_type] = STATE(1471), - [sym_identifier] = STATE(1428), - [sym__primitive_identifier] = ACTIONS(842), - [sym_underscore] = ACTIONS(972), - [anon_sym_LPAREN] = ACTIONS(1272), - [anon_sym_LBRACK] = ACTIONS(1276), - [anon_sym_const] = ACTIONS(1278), - [anon_sym_default] = ACTIONS(1280), - [anon_sym_union] = ACTIONS(1280), - [anon_sym_ref] = ACTIONS(878), + [sym_bracketed_type] = STATE(2684), + [sym_generic_type] = STATE(2683), + [sym_generic_type_with_turbofish] = STATE(2682), + [sym_macro_invocation] = STATE(1615), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier] = STATE(2202), + [sym_const_block] = STATE(1615), + [sym_pattern] = STATE(1567), + [sym_tuple_pattern] = STATE(1615), + [sym_slice_pattern] = STATE(1615), + [sym_tuple_struct_pattern] = STATE(1615), + [sym_struct_pattern] = STATE(1615), + [sym_remaining_field_pattern] = STATE(1615), + [sym_mut_pattern] = STATE(1615), + [sym_range_pattern] = STATE(1615), + [sym_ref_pattern] = STATE(1615), + [sym_captured_pattern] = STATE(1615), + [sym_reference_pattern] = STATE(1615), + [sym_or_pattern] = STATE(1615), + [sym__literal_pattern] = STATE(1492), + [sym_negative_literal] = STATE(1521), + [sym_string_literal] = STATE(1521), + [sym_boolean_literal] = STATE(1521), + [sym_primitive_type] = STATE(1479), + [sym_identifier] = STATE(1432), + [sym__primitive_identifier] = ACTIONS(844), + [sym_underscore] = ACTIONS(974), + [anon_sym_LPAREN] = ACTIONS(1274), + [anon_sym_LBRACK] = ACTIONS(1278), + [anon_sym_const] = ACTIONS(1280), + [anon_sym_default] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1282), + [anon_sym_ref] = ACTIONS(880), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1282), - [anon_sym_AMP] = ACTIONS(1284), - [sym_mutable_specifier] = ACTIONS(980), - [anon_sym_DOT_DOT] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(892), - [sym_integer_literal] = ACTIONS(894), - [aux_sym_string_literal_token1] = ACTIONS(896), - [sym_char_literal] = ACTIONS(894), - [anon_sym_true] = ACTIONS(898), - [anon_sym_false] = ACTIONS(898), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(2790), - [sym_super] = ACTIONS(1286), - [sym_crate] = ACTIONS(1286), - [sym_metavariable] = ACTIONS(1288), - [sym_grit_metavariable] = ACTIONS(984), - [sym_raw_string_literal] = ACTIONS(894), - [sym_float_literal] = ACTIONS(894), + [anon_sym_COLON_COLON] = ACTIONS(1284), + [anon_sym_AMP] = ACTIONS(1286), + [sym_mutable_specifier] = ACTIONS(2792), + [anon_sym_DOT_DOT] = ACTIONS(984), + [anon_sym_DASH] = ACTIONS(894), + [sym_integer_literal] = ACTIONS(896), + [aux_sym_string_literal_token1] = ACTIONS(898), + [sym_char_literal] = ACTIONS(896), + [anon_sym_true] = ACTIONS(900), + [anon_sym_false] = ACTIONS(900), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1288), + [sym_super] = ACTIONS(1288), + [sym_crate] = ACTIONS(1288), + [sym_metavariable] = ACTIONS(1290), + [sym_grit_metavariable] = ACTIONS(986), + [sym_raw_string_literal] = ACTIONS(896), + [sym_float_literal] = ACTIONS(896), [sym_block_comment] = ACTIONS(3), }, [607] = { - [sym_bracketed_type] = STATE(2658), - [sym_generic_type] = STATE(2655), - [sym_generic_type_with_turbofish] = STATE(2638), - [sym_macro_invocation] = STATE(1616), - [sym_scoped_identifier] = STATE(1451), - [sym_scoped_type_identifier] = STATE(2231), - [sym_const_block] = STATE(1616), - [sym_pattern] = STATE(1889), - [sym_tuple_pattern] = STATE(1616), - [sym_slice_pattern] = STATE(1616), - [sym_tuple_struct_pattern] = STATE(1616), - [sym_struct_pattern] = STATE(1616), - [sym_remaining_field_pattern] = STATE(1616), - [sym_mut_pattern] = STATE(1616), - [sym_range_pattern] = STATE(1616), - [sym_ref_pattern] = STATE(1616), - [sym_captured_pattern] = STATE(1616), - [sym_reference_pattern] = STATE(1616), - [sym_or_pattern] = STATE(1616), - [sym__literal_pattern] = STATE(1496), - [sym_negative_literal] = STATE(1513), - [sym_string_literal] = STATE(1513), - [sym_boolean_literal] = STATE(1513), - [sym_primitive_type] = STATE(1471), - [sym_identifier] = STATE(1428), - [sym__primitive_identifier] = ACTIONS(842), - [sym_underscore] = ACTIONS(972), - [anon_sym_LPAREN] = ACTIONS(1272), - [anon_sym_LBRACK] = ACTIONS(1276), - [anon_sym_const] = ACTIONS(1278), - [anon_sym_default] = ACTIONS(1280), - [anon_sym_union] = ACTIONS(1280), - [anon_sym_ref] = ACTIONS(878), + [sym_bracketed_type] = STATE(2684), + [sym_generic_type] = STATE(2683), + [sym_generic_type_with_turbofish] = STATE(2682), + [sym_macro_invocation] = STATE(1615), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier] = STATE(2202), + [sym_const_block] = STATE(1615), + [sym_pattern] = STATE(2167), + [sym_tuple_pattern] = STATE(1615), + [sym_slice_pattern] = STATE(1615), + [sym_tuple_struct_pattern] = STATE(1615), + [sym_struct_pattern] = STATE(1615), + [sym_remaining_field_pattern] = STATE(1615), + [sym_mut_pattern] = STATE(1615), + [sym_range_pattern] = STATE(1615), + [sym_ref_pattern] = STATE(1615), + [sym_captured_pattern] = STATE(1615), + [sym_reference_pattern] = STATE(1615), + [sym_or_pattern] = STATE(1615), + [sym__literal_pattern] = STATE(1492), + [sym_negative_literal] = STATE(1521), + [sym_string_literal] = STATE(1521), + [sym_boolean_literal] = STATE(1521), + [sym_primitive_type] = STATE(1479), + [sym_identifier] = STATE(1432), + [sym__primitive_identifier] = ACTIONS(844), + [sym_underscore] = ACTIONS(974), + [anon_sym_LPAREN] = ACTIONS(1274), + [anon_sym_LBRACK] = ACTIONS(1278), + [anon_sym_const] = ACTIONS(1280), + [anon_sym_default] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1282), + [anon_sym_ref] = ACTIONS(880), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1282), - [anon_sym_AMP] = ACTIONS(1284), - [sym_mutable_specifier] = ACTIONS(980), - [anon_sym_DOT_DOT] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(892), - [sym_integer_literal] = ACTIONS(894), - [aux_sym_string_literal_token1] = ACTIONS(896), - [sym_char_literal] = ACTIONS(894), - [anon_sym_true] = ACTIONS(898), - [anon_sym_false] = ACTIONS(898), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1286), - [sym_super] = ACTIONS(1286), - [sym_crate] = ACTIONS(1286), - [sym_metavariable] = ACTIONS(1288), - [sym_grit_metavariable] = ACTIONS(984), - [sym_raw_string_literal] = ACTIONS(894), - [sym_float_literal] = ACTIONS(894), + [anon_sym_COLON_COLON] = ACTIONS(1284), + [anon_sym_AMP] = ACTIONS(1286), + [sym_mutable_specifier] = ACTIONS(982), + [anon_sym_DOT_DOT] = ACTIONS(984), + [anon_sym_DASH] = ACTIONS(894), + [sym_integer_literal] = ACTIONS(896), + [aux_sym_string_literal_token1] = ACTIONS(898), + [sym_char_literal] = ACTIONS(896), + [anon_sym_true] = ACTIONS(900), + [anon_sym_false] = ACTIONS(900), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1288), + [sym_super] = ACTIONS(1288), + [sym_crate] = ACTIONS(1288), + [sym_metavariable] = ACTIONS(1290), + [sym_grit_metavariable] = ACTIONS(986), + [sym_raw_string_literal] = ACTIONS(896), + [sym_float_literal] = ACTIONS(896), [sym_block_comment] = ACTIONS(3), }, [608] = { - [sym_bracketed_type] = STATE(2658), - [sym_generic_type] = STATE(2655), - [sym_generic_type_with_turbofish] = STATE(2638), - [sym_macro_invocation] = STATE(1616), - [sym_scoped_identifier] = STATE(1451), - [sym_scoped_type_identifier] = STATE(2231), - [sym_const_block] = STATE(1616), - [sym_pattern] = STATE(1599), - [sym_tuple_pattern] = STATE(1616), - [sym_slice_pattern] = STATE(1616), - [sym_tuple_struct_pattern] = STATE(1616), - [sym_struct_pattern] = STATE(1616), - [sym_remaining_field_pattern] = STATE(1616), - [sym_mut_pattern] = STATE(1616), - [sym_range_pattern] = STATE(1616), - [sym_ref_pattern] = STATE(1616), - [sym_captured_pattern] = STATE(1616), - [sym_reference_pattern] = STATE(1616), - [sym_or_pattern] = STATE(1616), - [sym__literal_pattern] = STATE(1496), - [sym_negative_literal] = STATE(1513), - [sym_string_literal] = STATE(1513), - [sym_boolean_literal] = STATE(1513), - [sym_primitive_type] = STATE(1471), - [sym_identifier] = STATE(1428), - [sym__primitive_identifier] = ACTIONS(842), - [sym_underscore] = ACTIONS(972), - [anon_sym_LPAREN] = ACTIONS(1272), - [anon_sym_LBRACK] = ACTIONS(1276), - [anon_sym_const] = ACTIONS(1278), - [anon_sym_default] = ACTIONS(1280), - [anon_sym_union] = ACTIONS(1280), - [anon_sym_ref] = ACTIONS(878), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1282), - [anon_sym_AMP] = ACTIONS(1284), - [sym_mutable_specifier] = ACTIONS(980), - [anon_sym_DOT_DOT] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(892), - [sym_integer_literal] = ACTIONS(894), - [aux_sym_string_literal_token1] = ACTIONS(896), - [sym_char_literal] = ACTIONS(894), - [anon_sym_true] = ACTIONS(898), - [anon_sym_false] = ACTIONS(898), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1286), - [sym_super] = ACTIONS(1286), - [sym_crate] = ACTIONS(1286), - [sym_metavariable] = ACTIONS(1288), - [sym_grit_metavariable] = ACTIONS(984), - [sym_raw_string_literal] = ACTIONS(894), - [sym_float_literal] = ACTIONS(894), + [sym__primitive_identifier] = ACTIONS(2794), + [anon_sym_LPAREN] = ACTIONS(2796), + [anon_sym_RPAREN] = ACTIONS(2796), + [anon_sym_LBRACE] = ACTIONS(2796), + [anon_sym_RBRACE] = ACTIONS(2796), + [anon_sym_LBRACK] = ACTIONS(2796), + [anon_sym_RBRACK] = ACTIONS(2796), + [anon_sym_COLON] = ACTIONS(2798), + [anon_sym_DOLLAR] = ACTIONS(2794), + [aux_sym__non_special_token_token1] = ACTIONS(2794), + [anon_sym_SQUOTE] = ACTIONS(2794), + [anon_sym_as] = ACTIONS(2794), + [anon_sym_async] = ACTIONS(2794), + [anon_sym_await] = ACTIONS(2794), + [anon_sym_break] = ACTIONS(2794), + [anon_sym_const] = ACTIONS(2794), + [anon_sym_continue] = ACTIONS(2794), + [anon_sym_default] = ACTIONS(2794), + [anon_sym_enum] = ACTIONS(2794), + [anon_sym_fn] = ACTIONS(2794), + [anon_sym_for] = ACTIONS(2794), + [anon_sym_if] = ACTIONS(2794), + [anon_sym_impl] = ACTIONS(2794), + [anon_sym_let] = ACTIONS(2794), + [anon_sym_loop] = ACTIONS(2794), + [anon_sym_match] = ACTIONS(2794), + [anon_sym_mod] = ACTIONS(2794), + [anon_sym_pub] = ACTIONS(2794), + [anon_sym_return] = ACTIONS(2794), + [anon_sym_static] = ACTIONS(2794), + [anon_sym_struct] = ACTIONS(2794), + [anon_sym_trait] = ACTIONS(2794), + [anon_sym_type] = ACTIONS(2794), + [anon_sym_union] = ACTIONS(2794), + [anon_sym_unsafe] = ACTIONS(2794), + [anon_sym_use] = ACTIONS(2794), + [anon_sym_where] = ACTIONS(2794), + [anon_sym_while] = ACTIONS(2794), + [sym_mutable_specifier] = ACTIONS(2794), + [sym_integer_literal] = ACTIONS(2796), + [aux_sym_string_literal_token1] = ACTIONS(2796), + [sym_char_literal] = ACTIONS(2796), + [anon_sym_true] = ACTIONS(2794), + [anon_sym_false] = ACTIONS(2794), + [anon_sym_u8] = ACTIONS(2794), + [anon_sym_i8] = ACTIONS(2794), + [anon_sym_u16] = ACTIONS(2794), + [anon_sym_i16] = ACTIONS(2794), + [anon_sym_u32] = ACTIONS(2794), + [anon_sym_i32] = ACTIONS(2794), + [anon_sym_u64] = ACTIONS(2794), + [anon_sym_i64] = ACTIONS(2794), + [anon_sym_u128] = ACTIONS(2794), + [anon_sym_i128] = ACTIONS(2794), + [anon_sym_isize] = ACTIONS(2794), + [anon_sym_usize] = ACTIONS(2794), + [anon_sym_f32] = ACTIONS(2794), + [anon_sym_f64] = ACTIONS(2794), + [anon_sym_bool] = ACTIONS(2794), + [anon_sym_str] = ACTIONS(2794), + [anon_sym_char] = ACTIONS(2794), + [sym_line_comment] = ACTIONS(1112), + [sym__raw_identifier] = ACTIONS(2796), + [sym_self] = ACTIONS(2794), + [sym_super] = ACTIONS(2794), + [sym_crate] = ACTIONS(2794), + [sym_metavariable] = ACTIONS(2796), + [sym_grit_metavariable] = ACTIONS(2796), + [sym_raw_string_literal] = ACTIONS(2796), + [sym_float_literal] = ACTIONS(2796), [sym_block_comment] = ACTIONS(3), }, [609] = { - [sym_bracketed_type] = STATE(2658), - [sym_generic_type] = STATE(2655), - [sym_generic_type_with_turbofish] = STATE(2638), - [sym_macro_invocation] = STATE(1616), - [sym_scoped_identifier] = STATE(1451), - [sym_scoped_type_identifier] = STATE(2231), - [sym_const_block] = STATE(1616), - [sym_pattern] = STATE(1618), - [sym_tuple_pattern] = STATE(1616), - [sym_slice_pattern] = STATE(1616), - [sym_tuple_struct_pattern] = STATE(1616), - [sym_struct_pattern] = STATE(1616), - [sym_remaining_field_pattern] = STATE(1616), - [sym_mut_pattern] = STATE(1616), - [sym_range_pattern] = STATE(1616), - [sym_ref_pattern] = STATE(1616), - [sym_captured_pattern] = STATE(1616), - [sym_reference_pattern] = STATE(1616), - [sym_or_pattern] = STATE(1616), - [sym__literal_pattern] = STATE(1496), - [sym_negative_literal] = STATE(1513), - [sym_string_literal] = STATE(1513), - [sym_boolean_literal] = STATE(1513), - [sym_primitive_type] = STATE(1471), - [sym_identifier] = STATE(1428), - [sym__primitive_identifier] = ACTIONS(842), - [sym_underscore] = ACTIONS(972), - [anon_sym_LPAREN] = ACTIONS(1272), - [anon_sym_LBRACK] = ACTIONS(1276), - [anon_sym_const] = ACTIONS(1278), - [anon_sym_default] = ACTIONS(1280), - [anon_sym_union] = ACTIONS(1280), - [anon_sym_ref] = ACTIONS(878), + [sym_bracketed_type] = STATE(2684), + [sym_generic_type] = STATE(2683), + [sym_generic_type_with_turbofish] = STATE(2682), + [sym_macro_invocation] = STATE(1615), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier] = STATE(2202), + [sym_const_block] = STATE(1615), + [sym_pattern] = STATE(2428), + [sym_tuple_pattern] = STATE(1615), + [sym_slice_pattern] = STATE(1615), + [sym_tuple_struct_pattern] = STATE(1615), + [sym_struct_pattern] = STATE(1615), + [sym_remaining_field_pattern] = STATE(1615), + [sym_mut_pattern] = STATE(1615), + [sym_range_pattern] = STATE(1615), + [sym_ref_pattern] = STATE(1615), + [sym_captured_pattern] = STATE(1615), + [sym_reference_pattern] = STATE(1615), + [sym_or_pattern] = STATE(1615), + [sym__literal_pattern] = STATE(1492), + [sym_negative_literal] = STATE(1521), + [sym_string_literal] = STATE(1521), + [sym_boolean_literal] = STATE(1521), + [sym_primitive_type] = STATE(1479), + [sym_identifier] = STATE(1432), + [sym__primitive_identifier] = ACTIONS(844), + [sym_underscore] = ACTIONS(974), + [anon_sym_LPAREN] = ACTIONS(1274), + [anon_sym_LBRACK] = ACTIONS(1278), + [anon_sym_const] = ACTIONS(1280), + [anon_sym_default] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1282), + [anon_sym_ref] = ACTIONS(880), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1282), - [anon_sym_AMP] = ACTIONS(1284), - [sym_mutable_specifier] = ACTIONS(980), - [anon_sym_DOT_DOT] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(892), - [sym_integer_literal] = ACTIONS(894), - [aux_sym_string_literal_token1] = ACTIONS(896), - [sym_char_literal] = ACTIONS(894), - [anon_sym_true] = ACTIONS(898), - [anon_sym_false] = ACTIONS(898), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1286), - [sym_super] = ACTIONS(1286), - [sym_crate] = ACTIONS(1286), - [sym_metavariable] = ACTIONS(1288), - [sym_grit_metavariable] = ACTIONS(984), - [sym_raw_string_literal] = ACTIONS(894), - [sym_float_literal] = ACTIONS(894), + [anon_sym_COLON_COLON] = ACTIONS(1284), + [anon_sym_AMP] = ACTIONS(1286), + [sym_mutable_specifier] = ACTIONS(982), + [anon_sym_DOT_DOT] = ACTIONS(984), + [anon_sym_DASH] = ACTIONS(894), + [sym_integer_literal] = ACTIONS(896), + [aux_sym_string_literal_token1] = ACTIONS(898), + [sym_char_literal] = ACTIONS(896), + [anon_sym_true] = ACTIONS(900), + [anon_sym_false] = ACTIONS(900), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1288), + [sym_super] = ACTIONS(1288), + [sym_crate] = ACTIONS(1288), + [sym_metavariable] = ACTIONS(1290), + [sym_grit_metavariable] = ACTIONS(986), + [sym_raw_string_literal] = ACTIONS(896), + [sym_float_literal] = ACTIONS(896), [sym_block_comment] = ACTIONS(3), }, [610] = { - [sym_bracketed_type] = STATE(2658), - [sym_generic_type] = STATE(2655), - [sym_generic_type_with_turbofish] = STATE(2638), - [sym_macro_invocation] = STATE(1616), - [sym_scoped_identifier] = STATE(1451), - [sym_scoped_type_identifier] = STATE(2231), - [sym_const_block] = STATE(1616), - [sym_pattern] = STATE(1907), - [sym_tuple_pattern] = STATE(1616), - [sym_slice_pattern] = STATE(1616), - [sym_tuple_struct_pattern] = STATE(1616), - [sym_struct_pattern] = STATE(1616), - [sym_remaining_field_pattern] = STATE(1616), - [sym_mut_pattern] = STATE(1616), - [sym_range_pattern] = STATE(1616), - [sym_ref_pattern] = STATE(1616), - [sym_captured_pattern] = STATE(1616), - [sym_reference_pattern] = STATE(1616), - [sym_or_pattern] = STATE(1616), - [sym__literal_pattern] = STATE(1496), - [sym_negative_literal] = STATE(1513), - [sym_string_literal] = STATE(1513), - [sym_boolean_literal] = STATE(1513), - [sym_primitive_type] = STATE(1471), - [sym_identifier] = STATE(1428), - [sym__primitive_identifier] = ACTIONS(842), - [sym_underscore] = ACTIONS(972), - [anon_sym_LPAREN] = ACTIONS(1272), - [anon_sym_LBRACK] = ACTIONS(1276), - [anon_sym_const] = ACTIONS(1278), - [anon_sym_default] = ACTIONS(1280), - [anon_sym_union] = ACTIONS(1280), - [anon_sym_ref] = ACTIONS(878), + [sym_bracketed_type] = STATE(2684), + [sym_generic_type] = STATE(2683), + [sym_generic_type_with_turbofish] = STATE(2682), + [sym_macro_invocation] = STATE(1615), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier] = STATE(2202), + [sym_const_block] = STATE(1615), + [sym_pattern] = STATE(2431), + [sym_tuple_pattern] = STATE(1615), + [sym_slice_pattern] = STATE(1615), + [sym_tuple_struct_pattern] = STATE(1615), + [sym_struct_pattern] = STATE(1615), + [sym_remaining_field_pattern] = STATE(1615), + [sym_mut_pattern] = STATE(1615), + [sym_range_pattern] = STATE(1615), + [sym_ref_pattern] = STATE(1615), + [sym_captured_pattern] = STATE(1615), + [sym_reference_pattern] = STATE(1615), + [sym_or_pattern] = STATE(1615), + [sym__literal_pattern] = STATE(1492), + [sym_negative_literal] = STATE(1521), + [sym_string_literal] = STATE(1521), + [sym_boolean_literal] = STATE(1521), + [sym_primitive_type] = STATE(1479), + [sym_identifier] = STATE(1432), + [sym__primitive_identifier] = ACTIONS(844), + [sym_underscore] = ACTIONS(974), + [anon_sym_LPAREN] = ACTIONS(1274), + [anon_sym_LBRACK] = ACTIONS(1278), + [anon_sym_const] = ACTIONS(1280), + [anon_sym_default] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1282), + [anon_sym_ref] = ACTIONS(880), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1282), - [anon_sym_AMP] = ACTIONS(1284), - [sym_mutable_specifier] = ACTIONS(2792), - [anon_sym_DOT_DOT] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(892), - [sym_integer_literal] = ACTIONS(894), - [aux_sym_string_literal_token1] = ACTIONS(896), - [sym_char_literal] = ACTIONS(894), - [anon_sym_true] = ACTIONS(898), - [anon_sym_false] = ACTIONS(898), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1286), - [sym_super] = ACTIONS(1286), - [sym_crate] = ACTIONS(1286), - [sym_metavariable] = ACTIONS(1288), - [sym_grit_metavariable] = ACTIONS(984), - [sym_raw_string_literal] = ACTIONS(894), - [sym_float_literal] = ACTIONS(894), + [anon_sym_COLON_COLON] = ACTIONS(1284), + [anon_sym_AMP] = ACTIONS(1286), + [sym_mutable_specifier] = ACTIONS(982), + [anon_sym_DOT_DOT] = ACTIONS(984), + [anon_sym_DASH] = ACTIONS(894), + [sym_integer_literal] = ACTIONS(896), + [aux_sym_string_literal_token1] = ACTIONS(898), + [sym_char_literal] = ACTIONS(896), + [anon_sym_true] = ACTIONS(900), + [anon_sym_false] = ACTIONS(900), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1288), + [sym_super] = ACTIONS(1288), + [sym_crate] = ACTIONS(1288), + [sym_metavariable] = ACTIONS(1290), + [sym_grit_metavariable] = ACTIONS(986), + [sym_raw_string_literal] = ACTIONS(896), + [sym_float_literal] = ACTIONS(896), [sym_block_comment] = ACTIONS(3), }, [611] = { - [sym_bracketed_type] = STATE(2658), - [sym_generic_type] = STATE(2655), - [sym_generic_type_with_turbofish] = STATE(2638), - [sym_macro_invocation] = STATE(1616), - [sym_scoped_identifier] = STATE(1451), - [sym_scoped_type_identifier] = STATE(2231), - [sym_const_block] = STATE(1616), - [sym_pattern] = STATE(2568), - [sym_tuple_pattern] = STATE(1616), - [sym_slice_pattern] = STATE(1616), - [sym_tuple_struct_pattern] = STATE(1616), - [sym_struct_pattern] = STATE(1616), - [sym_remaining_field_pattern] = STATE(1616), - [sym_mut_pattern] = STATE(1616), - [sym_range_pattern] = STATE(1616), - [sym_ref_pattern] = STATE(1616), - [sym_captured_pattern] = STATE(1616), - [sym_reference_pattern] = STATE(1616), - [sym_or_pattern] = STATE(1616), - [sym__literal_pattern] = STATE(1496), - [sym_negative_literal] = STATE(1513), - [sym_string_literal] = STATE(1513), - [sym_boolean_literal] = STATE(1513), - [sym_primitive_type] = STATE(1471), - [sym_identifier] = STATE(1428), - [sym__primitive_identifier] = ACTIONS(842), - [sym_underscore] = ACTIONS(972), - [anon_sym_LPAREN] = ACTIONS(1272), - [anon_sym_LBRACK] = ACTIONS(1276), - [anon_sym_const] = ACTIONS(1278), - [anon_sym_default] = ACTIONS(1280), - [anon_sym_union] = ACTIONS(1280), - [anon_sym_ref] = ACTIONS(878), + [sym_bracketed_type] = STATE(2684), + [sym_generic_type] = STATE(2683), + [sym_generic_type_with_turbofish] = STATE(2682), + [sym_macro_invocation] = STATE(1615), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier] = STATE(2202), + [sym_const_block] = STATE(1615), + [sym_pattern] = STATE(2490), + [sym_tuple_pattern] = STATE(1615), + [sym_slice_pattern] = STATE(1615), + [sym_tuple_struct_pattern] = STATE(1615), + [sym_struct_pattern] = STATE(1615), + [sym_remaining_field_pattern] = STATE(1615), + [sym_mut_pattern] = STATE(1615), + [sym_range_pattern] = STATE(1615), + [sym_ref_pattern] = STATE(1615), + [sym_captured_pattern] = STATE(1615), + [sym_reference_pattern] = STATE(1615), + [sym_or_pattern] = STATE(1615), + [sym__literal_pattern] = STATE(1492), + [sym_negative_literal] = STATE(1521), + [sym_string_literal] = STATE(1521), + [sym_boolean_literal] = STATE(1521), + [sym_primitive_type] = STATE(1479), + [sym_identifier] = STATE(1432), + [sym__primitive_identifier] = ACTIONS(844), + [sym_underscore] = ACTIONS(974), + [anon_sym_LPAREN] = ACTIONS(1274), + [anon_sym_LBRACK] = ACTIONS(1278), + [anon_sym_const] = ACTIONS(1280), + [anon_sym_default] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1282), + [anon_sym_ref] = ACTIONS(880), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1282), - [anon_sym_AMP] = ACTIONS(1284), - [sym_mutable_specifier] = ACTIONS(980), - [anon_sym_DOT_DOT] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(892), - [sym_integer_literal] = ACTIONS(894), - [aux_sym_string_literal_token1] = ACTIONS(896), - [sym_char_literal] = ACTIONS(894), - [anon_sym_true] = ACTIONS(898), - [anon_sym_false] = ACTIONS(898), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1286), - [sym_super] = ACTIONS(1286), - [sym_crate] = ACTIONS(1286), - [sym_metavariable] = ACTIONS(1288), - [sym_grit_metavariable] = ACTIONS(984), - [sym_raw_string_literal] = ACTIONS(894), - [sym_float_literal] = ACTIONS(894), + [anon_sym_COLON_COLON] = ACTIONS(1284), + [anon_sym_AMP] = ACTIONS(1286), + [sym_mutable_specifier] = ACTIONS(982), + [anon_sym_DOT_DOT] = ACTIONS(984), + [anon_sym_DASH] = ACTIONS(894), + [sym_integer_literal] = ACTIONS(896), + [aux_sym_string_literal_token1] = ACTIONS(898), + [sym_char_literal] = ACTIONS(896), + [anon_sym_true] = ACTIONS(900), + [anon_sym_false] = ACTIONS(900), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1288), + [sym_super] = ACTIONS(1288), + [sym_crate] = ACTIONS(1288), + [sym_metavariable] = ACTIONS(1290), + [sym_grit_metavariable] = ACTIONS(986), + [sym_raw_string_literal] = ACTIONS(896), + [sym_float_literal] = ACTIONS(896), [sym_block_comment] = ACTIONS(3), }, [612] = { - [sym_bracketed_type] = STATE(2658), - [sym_generic_type] = STATE(2655), - [sym_generic_type_with_turbofish] = STATE(2638), - [sym_macro_invocation] = STATE(1616), - [sym_scoped_identifier] = STATE(1451), - [sym_scoped_type_identifier] = STATE(2231), - [sym_const_block] = STATE(1616), - [sym_pattern] = STATE(2593), - [sym_tuple_pattern] = STATE(1616), - [sym_slice_pattern] = STATE(1616), - [sym_tuple_struct_pattern] = STATE(1616), - [sym_struct_pattern] = STATE(1616), - [sym_remaining_field_pattern] = STATE(1616), - [sym_mut_pattern] = STATE(1616), - [sym_range_pattern] = STATE(1616), - [sym_ref_pattern] = STATE(1616), - [sym_captured_pattern] = STATE(1616), - [sym_reference_pattern] = STATE(1616), - [sym_or_pattern] = STATE(1616), - [sym__literal_pattern] = STATE(1496), - [sym_negative_literal] = STATE(1513), - [sym_string_literal] = STATE(1513), - [sym_boolean_literal] = STATE(1513), - [sym_primitive_type] = STATE(1471), - [sym_identifier] = STATE(1428), - [sym__primitive_identifier] = ACTIONS(842), - [sym_underscore] = ACTIONS(972), - [anon_sym_LPAREN] = ACTIONS(1272), - [anon_sym_LBRACK] = ACTIONS(1276), - [anon_sym_const] = ACTIONS(1278), - [anon_sym_default] = ACTIONS(1280), - [anon_sym_union] = ACTIONS(1280), - [anon_sym_ref] = ACTIONS(878), + [sym_bracketed_type] = STATE(2684), + [sym_generic_type] = STATE(2683), + [sym_generic_type_with_turbofish] = STATE(2682), + [sym_macro_invocation] = STATE(1615), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier] = STATE(2202), + [sym_const_block] = STATE(1615), + [sym_pattern] = STATE(2120), + [sym_tuple_pattern] = STATE(1615), + [sym_slice_pattern] = STATE(1615), + [sym_tuple_struct_pattern] = STATE(1615), + [sym_struct_pattern] = STATE(1615), + [sym_remaining_field_pattern] = STATE(1615), + [sym_mut_pattern] = STATE(1615), + [sym_range_pattern] = STATE(1615), + [sym_ref_pattern] = STATE(1615), + [sym_captured_pattern] = STATE(1615), + [sym_reference_pattern] = STATE(1615), + [sym_or_pattern] = STATE(1615), + [sym__literal_pattern] = STATE(1492), + [sym_negative_literal] = STATE(1521), + [sym_string_literal] = STATE(1521), + [sym_boolean_literal] = STATE(1521), + [sym_primitive_type] = STATE(1479), + [sym_identifier] = STATE(1432), + [sym__primitive_identifier] = ACTIONS(844), + [sym_underscore] = ACTIONS(974), + [anon_sym_LPAREN] = ACTIONS(1274), + [anon_sym_LBRACK] = ACTIONS(1278), + [anon_sym_const] = ACTIONS(1280), + [anon_sym_default] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1282), + [anon_sym_ref] = ACTIONS(880), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1282), - [anon_sym_AMP] = ACTIONS(1284), - [sym_mutable_specifier] = ACTIONS(980), - [anon_sym_DOT_DOT] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(892), - [sym_integer_literal] = ACTIONS(894), - [aux_sym_string_literal_token1] = ACTIONS(896), - [sym_char_literal] = ACTIONS(894), - [anon_sym_true] = ACTIONS(898), - [anon_sym_false] = ACTIONS(898), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1286), - [sym_super] = ACTIONS(1286), - [sym_crate] = ACTIONS(1286), - [sym_metavariable] = ACTIONS(1288), - [sym_grit_metavariable] = ACTIONS(984), - [sym_raw_string_literal] = ACTIONS(894), - [sym_float_literal] = ACTIONS(894), + [anon_sym_COLON_COLON] = ACTIONS(1284), + [anon_sym_AMP] = ACTIONS(1286), + [sym_mutable_specifier] = ACTIONS(982), + [anon_sym_DOT_DOT] = ACTIONS(984), + [anon_sym_DASH] = ACTIONS(894), + [sym_integer_literal] = ACTIONS(896), + [aux_sym_string_literal_token1] = ACTIONS(898), + [sym_char_literal] = ACTIONS(896), + [anon_sym_true] = ACTIONS(900), + [anon_sym_false] = ACTIONS(900), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1288), + [sym_super] = ACTIONS(1288), + [sym_crate] = ACTIONS(1288), + [sym_metavariable] = ACTIONS(1290), + [sym_grit_metavariable] = ACTIONS(986), + [sym_raw_string_literal] = ACTIONS(896), + [sym_float_literal] = ACTIONS(896), [sym_block_comment] = ACTIONS(3), }, [613] = { - [sym_bracketed_type] = STATE(2658), - [sym_generic_type] = STATE(2655), - [sym_generic_type_with_turbofish] = STATE(2638), - [sym_macro_invocation] = STATE(1616), - [sym_scoped_identifier] = STATE(1451), - [sym_scoped_type_identifier] = STATE(2231), - [sym_const_block] = STATE(1616), - [sym_pattern] = STATE(1590), - [sym_tuple_pattern] = STATE(1616), - [sym_slice_pattern] = STATE(1616), - [sym_tuple_struct_pattern] = STATE(1616), - [sym_struct_pattern] = STATE(1616), - [sym_remaining_field_pattern] = STATE(1616), - [sym_mut_pattern] = STATE(1616), - [sym_range_pattern] = STATE(1616), - [sym_ref_pattern] = STATE(1616), - [sym_captured_pattern] = STATE(1616), - [sym_reference_pattern] = STATE(1616), - [sym_or_pattern] = STATE(1616), - [sym__literal_pattern] = STATE(1496), - [sym_negative_literal] = STATE(1513), - [sym_string_literal] = STATE(1513), - [sym_boolean_literal] = STATE(1513), - [sym_primitive_type] = STATE(1471), - [sym_identifier] = STATE(1428), - [sym__primitive_identifier] = ACTIONS(842), - [sym_underscore] = ACTIONS(972), - [anon_sym_LPAREN] = ACTIONS(1272), - [anon_sym_LBRACK] = ACTIONS(1276), - [anon_sym_const] = ACTIONS(1278), - [anon_sym_default] = ACTIONS(1280), - [anon_sym_union] = ACTIONS(1280), - [anon_sym_ref] = ACTIONS(878), + [sym_bracketed_type] = STATE(2684), + [sym_generic_type] = STATE(2683), + [sym_generic_type_with_turbofish] = STATE(2682), + [sym_macro_invocation] = STATE(1615), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier] = STATE(2202), + [sym_const_block] = STATE(1615), + [sym_pattern] = STATE(2010), + [sym_tuple_pattern] = STATE(1615), + [sym_slice_pattern] = STATE(1615), + [sym_tuple_struct_pattern] = STATE(1615), + [sym_struct_pattern] = STATE(1615), + [sym_remaining_field_pattern] = STATE(1615), + [sym_mut_pattern] = STATE(1615), + [sym_range_pattern] = STATE(1615), + [sym_ref_pattern] = STATE(1615), + [sym_captured_pattern] = STATE(1615), + [sym_reference_pattern] = STATE(1615), + [sym_or_pattern] = STATE(1615), + [sym__literal_pattern] = STATE(1492), + [sym_negative_literal] = STATE(1521), + [sym_string_literal] = STATE(1521), + [sym_boolean_literal] = STATE(1521), + [sym_primitive_type] = STATE(1479), + [sym_identifier] = STATE(1432), + [sym__primitive_identifier] = ACTIONS(844), + [sym_underscore] = ACTIONS(974), + [anon_sym_LPAREN] = ACTIONS(1274), + [anon_sym_LBRACK] = ACTIONS(1278), + [anon_sym_const] = ACTIONS(1280), + [anon_sym_default] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1282), + [anon_sym_ref] = ACTIONS(880), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1282), - [anon_sym_AMP] = ACTIONS(1284), - [sym_mutable_specifier] = ACTIONS(980), - [anon_sym_DOT_DOT] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(892), - [sym_integer_literal] = ACTIONS(894), - [aux_sym_string_literal_token1] = ACTIONS(896), - [sym_char_literal] = ACTIONS(894), - [anon_sym_true] = ACTIONS(898), - [anon_sym_false] = ACTIONS(898), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1286), - [sym_super] = ACTIONS(1286), - [sym_crate] = ACTIONS(1286), - [sym_metavariable] = ACTIONS(1288), - [sym_grit_metavariable] = ACTIONS(984), - [sym_raw_string_literal] = ACTIONS(894), - [sym_float_literal] = ACTIONS(894), + [anon_sym_COLON_COLON] = ACTIONS(1284), + [anon_sym_AMP] = ACTIONS(1286), + [sym_mutable_specifier] = ACTIONS(982), + [anon_sym_DOT_DOT] = ACTIONS(984), + [anon_sym_DASH] = ACTIONS(894), + [sym_integer_literal] = ACTIONS(896), + [aux_sym_string_literal_token1] = ACTIONS(898), + [sym_char_literal] = ACTIONS(896), + [anon_sym_true] = ACTIONS(900), + [anon_sym_false] = ACTIONS(900), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(2800), + [sym_super] = ACTIONS(1288), + [sym_crate] = ACTIONS(1288), + [sym_metavariable] = ACTIONS(1290), + [sym_grit_metavariable] = ACTIONS(986), + [sym_raw_string_literal] = ACTIONS(896), + [sym_float_literal] = ACTIONS(896), [sym_block_comment] = ACTIONS(3), }, [614] = { - [sym_bracketed_type] = STATE(2658), - [sym_generic_type] = STATE(2655), - [sym_generic_type_with_turbofish] = STATE(2638), - [sym_macro_invocation] = STATE(1616), - [sym_scoped_identifier] = STATE(1451), - [sym_scoped_type_identifier] = STATE(2231), - [sym_const_block] = STATE(1616), - [sym_pattern] = STATE(2269), - [sym_tuple_pattern] = STATE(1616), - [sym_slice_pattern] = STATE(1616), - [sym_tuple_struct_pattern] = STATE(1616), - [sym_struct_pattern] = STATE(1616), - [sym_remaining_field_pattern] = STATE(1616), - [sym_mut_pattern] = STATE(1616), - [sym_range_pattern] = STATE(1616), - [sym_ref_pattern] = STATE(1616), - [sym_captured_pattern] = STATE(1616), - [sym_reference_pattern] = STATE(1616), - [sym_or_pattern] = STATE(1616), - [sym__literal_pattern] = STATE(1496), - [sym_negative_literal] = STATE(1513), - [sym_string_literal] = STATE(1513), - [sym_boolean_literal] = STATE(1513), - [sym_primitive_type] = STATE(1471), - [sym_identifier] = STATE(1428), - [sym__primitive_identifier] = ACTIONS(842), - [sym_underscore] = ACTIONS(972), - [anon_sym_LPAREN] = ACTIONS(1272), - [anon_sym_LBRACK] = ACTIONS(1276), - [anon_sym_const] = ACTIONS(1278), - [anon_sym_default] = ACTIONS(1280), - [anon_sym_union] = ACTIONS(1280), - [anon_sym_ref] = ACTIONS(878), + [sym_bracketed_type] = STATE(2684), + [sym_generic_type] = STATE(2683), + [sym_generic_type_with_turbofish] = STATE(2682), + [sym_macro_invocation] = STATE(1615), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier] = STATE(2202), + [sym_const_block] = STATE(1615), + [sym_pattern] = STATE(2473), + [sym_tuple_pattern] = STATE(1615), + [sym_slice_pattern] = STATE(1615), + [sym_tuple_struct_pattern] = STATE(1615), + [sym_struct_pattern] = STATE(1615), + [sym_remaining_field_pattern] = STATE(1615), + [sym_mut_pattern] = STATE(1615), + [sym_range_pattern] = STATE(1615), + [sym_ref_pattern] = STATE(1615), + [sym_captured_pattern] = STATE(1615), + [sym_reference_pattern] = STATE(1615), + [sym_or_pattern] = STATE(1615), + [sym__literal_pattern] = STATE(1492), + [sym_negative_literal] = STATE(1521), + [sym_string_literal] = STATE(1521), + [sym_boolean_literal] = STATE(1521), + [sym_primitive_type] = STATE(1479), + [sym_identifier] = STATE(1432), + [sym__primitive_identifier] = ACTIONS(844), + [sym_underscore] = ACTIONS(974), + [anon_sym_LPAREN] = ACTIONS(1274), + [anon_sym_LBRACK] = ACTIONS(1278), + [anon_sym_const] = ACTIONS(1280), + [anon_sym_default] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1282), + [anon_sym_ref] = ACTIONS(880), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1282), - [anon_sym_AMP] = ACTIONS(1284), - [sym_mutable_specifier] = ACTIONS(980), - [anon_sym_DOT_DOT] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(892), - [sym_integer_literal] = ACTIONS(894), - [aux_sym_string_literal_token1] = ACTIONS(896), - [sym_char_literal] = ACTIONS(894), - [anon_sym_true] = ACTIONS(898), - [anon_sym_false] = ACTIONS(898), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1286), - [sym_super] = ACTIONS(1286), - [sym_crate] = ACTIONS(1286), - [sym_metavariable] = ACTIONS(1288), - [sym_grit_metavariable] = ACTIONS(984), - [sym_raw_string_literal] = ACTIONS(894), - [sym_float_literal] = ACTIONS(894), + [anon_sym_COLON_COLON] = ACTIONS(1284), + [anon_sym_AMP] = ACTIONS(1286), + [sym_mutable_specifier] = ACTIONS(982), + [anon_sym_DOT_DOT] = ACTIONS(984), + [anon_sym_DASH] = ACTIONS(894), + [sym_integer_literal] = ACTIONS(896), + [aux_sym_string_literal_token1] = ACTIONS(898), + [sym_char_literal] = ACTIONS(896), + [anon_sym_true] = ACTIONS(900), + [anon_sym_false] = ACTIONS(900), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1288), + [sym_super] = ACTIONS(1288), + [sym_crate] = ACTIONS(1288), + [sym_metavariable] = ACTIONS(1290), + [sym_grit_metavariable] = ACTIONS(986), + [sym_raw_string_literal] = ACTIONS(896), + [sym_float_literal] = ACTIONS(896), [sym_block_comment] = ACTIONS(3), }, [615] = { - [sym_bracketed_type] = STATE(2658), - [sym_generic_type] = STATE(2655), - [sym_generic_type_with_turbofish] = STATE(2638), - [sym_macro_invocation] = STATE(1616), - [sym_scoped_identifier] = STATE(1451), - [sym_scoped_type_identifier] = STATE(2231), - [sym_const_block] = STATE(1616), - [sym_pattern] = STATE(1613), - [sym_tuple_pattern] = STATE(1616), - [sym_slice_pattern] = STATE(1616), - [sym_tuple_struct_pattern] = STATE(1616), - [sym_struct_pattern] = STATE(1616), - [sym_remaining_field_pattern] = STATE(1616), - [sym_mut_pattern] = STATE(1616), - [sym_range_pattern] = STATE(1616), - [sym_ref_pattern] = STATE(1616), - [sym_captured_pattern] = STATE(1616), - [sym_reference_pattern] = STATE(1616), - [sym_or_pattern] = STATE(1616), - [sym__literal_pattern] = STATE(1496), - [sym_negative_literal] = STATE(1513), - [sym_string_literal] = STATE(1513), - [sym_boolean_literal] = STATE(1513), - [sym_primitive_type] = STATE(1471), - [sym_identifier] = STATE(1428), - [sym__primitive_identifier] = ACTIONS(842), - [sym_underscore] = ACTIONS(972), - [anon_sym_LPAREN] = ACTIONS(1272), - [anon_sym_LBRACK] = ACTIONS(1276), - [anon_sym_const] = ACTIONS(1278), - [anon_sym_default] = ACTIONS(1280), - [anon_sym_union] = ACTIONS(1280), - [anon_sym_ref] = ACTIONS(878), + [sym_bracketed_type] = STATE(2684), + [sym_generic_type] = STATE(2683), + [sym_generic_type_with_turbofish] = STATE(2682), + [sym_macro_invocation] = STATE(1615), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier] = STATE(2202), + [sym_const_block] = STATE(1615), + [sym_pattern] = STATE(2208), + [sym_tuple_pattern] = STATE(1615), + [sym_slice_pattern] = STATE(1615), + [sym_tuple_struct_pattern] = STATE(1615), + [sym_struct_pattern] = STATE(1615), + [sym_remaining_field_pattern] = STATE(1615), + [sym_mut_pattern] = STATE(1615), + [sym_range_pattern] = STATE(1615), + [sym_ref_pattern] = STATE(1615), + [sym_captured_pattern] = STATE(1615), + [sym_reference_pattern] = STATE(1615), + [sym_or_pattern] = STATE(1615), + [sym__literal_pattern] = STATE(1492), + [sym_negative_literal] = STATE(1521), + [sym_string_literal] = STATE(1521), + [sym_boolean_literal] = STATE(1521), + [sym_primitive_type] = STATE(1479), + [sym_identifier] = STATE(1432), + [sym__primitive_identifier] = ACTIONS(844), + [sym_underscore] = ACTIONS(974), + [anon_sym_LPAREN] = ACTIONS(1274), + [anon_sym_LBRACK] = ACTIONS(1278), + [anon_sym_const] = ACTIONS(1280), + [anon_sym_default] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1282), + [anon_sym_ref] = ACTIONS(880), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1282), - [anon_sym_AMP] = ACTIONS(1284), - [sym_mutable_specifier] = ACTIONS(980), - [anon_sym_DOT_DOT] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(892), - [sym_integer_literal] = ACTIONS(894), - [aux_sym_string_literal_token1] = ACTIONS(896), - [sym_char_literal] = ACTIONS(894), - [anon_sym_true] = ACTIONS(898), - [anon_sym_false] = ACTIONS(898), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1286), - [sym_super] = ACTIONS(1286), - [sym_crate] = ACTIONS(1286), - [sym_metavariable] = ACTIONS(1288), - [sym_grit_metavariable] = ACTIONS(984), - [sym_raw_string_literal] = ACTIONS(894), - [sym_float_literal] = ACTIONS(894), + [anon_sym_COLON_COLON] = ACTIONS(1284), + [anon_sym_AMP] = ACTIONS(1286), + [sym_mutable_specifier] = ACTIONS(982), + [anon_sym_DOT_DOT] = ACTIONS(984), + [anon_sym_DASH] = ACTIONS(894), + [sym_integer_literal] = ACTIONS(896), + [aux_sym_string_literal_token1] = ACTIONS(898), + [sym_char_literal] = ACTIONS(896), + [anon_sym_true] = ACTIONS(900), + [anon_sym_false] = ACTIONS(900), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1288), + [sym_super] = ACTIONS(1288), + [sym_crate] = ACTIONS(1288), + [sym_metavariable] = ACTIONS(1290), + [sym_grit_metavariable] = ACTIONS(986), + [sym_raw_string_literal] = ACTIONS(896), + [sym_float_literal] = ACTIONS(896), [sym_block_comment] = ACTIONS(3), }, [616] = { - [sym_bracketed_type] = STATE(2658), - [sym_generic_type] = STATE(2655), - [sym_generic_type_with_turbofish] = STATE(2638), - [sym_macro_invocation] = STATE(1616), - [sym_scoped_identifier] = STATE(1451), - [sym_scoped_type_identifier] = STATE(2231), - [sym_const_block] = STATE(1616), - [sym_pattern] = STATE(1614), - [sym_tuple_pattern] = STATE(1616), - [sym_slice_pattern] = STATE(1616), - [sym_tuple_struct_pattern] = STATE(1616), - [sym_struct_pattern] = STATE(1616), - [sym_remaining_field_pattern] = STATE(1616), - [sym_mut_pattern] = STATE(1616), - [sym_range_pattern] = STATE(1616), - [sym_ref_pattern] = STATE(1616), - [sym_captured_pattern] = STATE(1616), - [sym_reference_pattern] = STATE(1616), - [sym_or_pattern] = STATE(1616), - [sym__literal_pattern] = STATE(1496), - [sym_negative_literal] = STATE(1513), - [sym_string_literal] = STATE(1513), - [sym_boolean_literal] = STATE(1513), - [sym_primitive_type] = STATE(1471), - [sym_identifier] = STATE(1428), - [sym__primitive_identifier] = ACTIONS(842), - [sym_underscore] = ACTIONS(972), - [anon_sym_LPAREN] = ACTIONS(1272), - [anon_sym_LBRACK] = ACTIONS(1276), - [anon_sym_const] = ACTIONS(1278), - [anon_sym_default] = ACTIONS(1280), - [anon_sym_union] = ACTIONS(1280), - [anon_sym_ref] = ACTIONS(878), + [sym_bracketed_type] = STATE(2684), + [sym_generic_type] = STATE(2683), + [sym_generic_type_with_turbofish] = STATE(2682), + [sym_macro_invocation] = STATE(1615), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier] = STATE(2202), + [sym_const_block] = STATE(1615), + [sym_pattern] = STATE(2439), + [sym_tuple_pattern] = STATE(1615), + [sym_slice_pattern] = STATE(1615), + [sym_tuple_struct_pattern] = STATE(1615), + [sym_struct_pattern] = STATE(1615), + [sym_remaining_field_pattern] = STATE(1615), + [sym_mut_pattern] = STATE(1615), + [sym_range_pattern] = STATE(1615), + [sym_ref_pattern] = STATE(1615), + [sym_captured_pattern] = STATE(1615), + [sym_reference_pattern] = STATE(1615), + [sym_or_pattern] = STATE(1615), + [sym__literal_pattern] = STATE(1492), + [sym_negative_literal] = STATE(1521), + [sym_string_literal] = STATE(1521), + [sym_boolean_literal] = STATE(1521), + [sym_primitive_type] = STATE(1479), + [sym_identifier] = STATE(1432), + [sym__primitive_identifier] = ACTIONS(844), + [sym_underscore] = ACTIONS(974), + [anon_sym_LPAREN] = ACTIONS(1274), + [anon_sym_LBRACK] = ACTIONS(1278), + [anon_sym_const] = ACTIONS(1280), + [anon_sym_default] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1282), + [anon_sym_ref] = ACTIONS(880), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1282), - [anon_sym_AMP] = ACTIONS(1284), - [sym_mutable_specifier] = ACTIONS(2794), - [anon_sym_DOT_DOT] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(892), - [sym_integer_literal] = ACTIONS(894), - [aux_sym_string_literal_token1] = ACTIONS(896), - [sym_char_literal] = ACTIONS(894), - [anon_sym_true] = ACTIONS(898), - [anon_sym_false] = ACTIONS(898), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1286), - [sym_super] = ACTIONS(1286), - [sym_crate] = ACTIONS(1286), - [sym_metavariable] = ACTIONS(1288), - [sym_grit_metavariable] = ACTIONS(984), - [sym_raw_string_literal] = ACTIONS(894), - [sym_float_literal] = ACTIONS(894), + [anon_sym_COLON_COLON] = ACTIONS(1284), + [anon_sym_AMP] = ACTIONS(1286), + [sym_mutable_specifier] = ACTIONS(982), + [anon_sym_DOT_DOT] = ACTIONS(984), + [anon_sym_DASH] = ACTIONS(894), + [sym_integer_literal] = ACTIONS(896), + [aux_sym_string_literal_token1] = ACTIONS(898), + [sym_char_literal] = ACTIONS(896), + [anon_sym_true] = ACTIONS(900), + [anon_sym_false] = ACTIONS(900), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1288), + [sym_super] = ACTIONS(1288), + [sym_crate] = ACTIONS(1288), + [sym_metavariable] = ACTIONS(1290), + [sym_grit_metavariable] = ACTIONS(986), + [sym_raw_string_literal] = ACTIONS(896), + [sym_float_literal] = ACTIONS(896), [sym_block_comment] = ACTIONS(3), }, [617] = { - [sym_bracketed_type] = STATE(2658), - [sym_generic_type] = STATE(2655), - [sym_generic_type_with_turbofish] = STATE(2638), - [sym_macro_invocation] = STATE(1616), - [sym_scoped_identifier] = STATE(1451), - [sym_scoped_type_identifier] = STATE(2231), - [sym_const_block] = STATE(1616), - [sym_pattern] = STATE(2417), - [sym_tuple_pattern] = STATE(1616), - [sym_slice_pattern] = STATE(1616), - [sym_tuple_struct_pattern] = STATE(1616), - [sym_struct_pattern] = STATE(1616), - [sym_remaining_field_pattern] = STATE(1616), - [sym_mut_pattern] = STATE(1616), - [sym_range_pattern] = STATE(1616), - [sym_ref_pattern] = STATE(1616), - [sym_captured_pattern] = STATE(1616), - [sym_reference_pattern] = STATE(1616), - [sym_or_pattern] = STATE(1616), - [sym__literal_pattern] = STATE(1496), - [sym_negative_literal] = STATE(1513), - [sym_string_literal] = STATE(1513), - [sym_boolean_literal] = STATE(1513), - [sym_primitive_type] = STATE(1471), - [sym_identifier] = STATE(1428), - [sym__primitive_identifier] = ACTIONS(842), - [sym_underscore] = ACTIONS(972), - [anon_sym_LPAREN] = ACTIONS(1272), - [anon_sym_LBRACK] = ACTIONS(1276), - [anon_sym_const] = ACTIONS(1278), - [anon_sym_default] = ACTIONS(1280), - [anon_sym_union] = ACTIONS(1280), - [anon_sym_ref] = ACTIONS(878), + [sym_bracketed_type] = STATE(2684), + [sym_generic_type] = STATE(2683), + [sym_generic_type_with_turbofish] = STATE(2682), + [sym_macro_invocation] = STATE(1615), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier] = STATE(2202), + [sym_const_block] = STATE(1615), + [sym_pattern] = STATE(1935), + [sym_tuple_pattern] = STATE(1615), + [sym_slice_pattern] = STATE(1615), + [sym_tuple_struct_pattern] = STATE(1615), + [sym_struct_pattern] = STATE(1615), + [sym_remaining_field_pattern] = STATE(1615), + [sym_mut_pattern] = STATE(1615), + [sym_range_pattern] = STATE(1615), + [sym_ref_pattern] = STATE(1615), + [sym_captured_pattern] = STATE(1615), + [sym_reference_pattern] = STATE(1615), + [sym_or_pattern] = STATE(1615), + [sym__literal_pattern] = STATE(1492), + [sym_negative_literal] = STATE(1521), + [sym_string_literal] = STATE(1521), + [sym_boolean_literal] = STATE(1521), + [sym_primitive_type] = STATE(1479), + [sym_identifier] = STATE(1432), + [sym__primitive_identifier] = ACTIONS(844), + [sym_underscore] = ACTIONS(974), + [anon_sym_LPAREN] = ACTIONS(1274), + [anon_sym_LBRACK] = ACTIONS(1278), + [anon_sym_const] = ACTIONS(1280), + [anon_sym_default] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1282), + [anon_sym_ref] = ACTIONS(880), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1282), - [anon_sym_AMP] = ACTIONS(1284), - [sym_mutable_specifier] = ACTIONS(980), - [anon_sym_DOT_DOT] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(892), - [sym_integer_literal] = ACTIONS(894), - [aux_sym_string_literal_token1] = ACTIONS(896), - [sym_char_literal] = ACTIONS(894), - [anon_sym_true] = ACTIONS(898), - [anon_sym_false] = ACTIONS(898), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1286), - [sym_super] = ACTIONS(1286), - [sym_crate] = ACTIONS(1286), - [sym_metavariable] = ACTIONS(1288), - [sym_grit_metavariable] = ACTIONS(984), - [sym_raw_string_literal] = ACTIONS(894), - [sym_float_literal] = ACTIONS(894), + [anon_sym_COLON_COLON] = ACTIONS(1284), + [anon_sym_AMP] = ACTIONS(1286), + [sym_mutable_specifier] = ACTIONS(2802), + [anon_sym_DOT_DOT] = ACTIONS(984), + [anon_sym_DASH] = ACTIONS(894), + [sym_integer_literal] = ACTIONS(896), + [aux_sym_string_literal_token1] = ACTIONS(898), + [sym_char_literal] = ACTIONS(896), + [anon_sym_true] = ACTIONS(900), + [anon_sym_false] = ACTIONS(900), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1288), + [sym_super] = ACTIONS(1288), + [sym_crate] = ACTIONS(1288), + [sym_metavariable] = ACTIONS(1290), + [sym_grit_metavariable] = ACTIONS(986), + [sym_raw_string_literal] = ACTIONS(896), + [sym_float_literal] = ACTIONS(896), [sym_block_comment] = ACTIONS(3), }, [618] = { - [sym_bracketed_type] = STATE(2658), - [sym_generic_type] = STATE(2655), - [sym_generic_type_with_turbofish] = STATE(2638), - [sym_macro_invocation] = STATE(1616), - [sym_scoped_identifier] = STATE(1451), - [sym_scoped_type_identifier] = STATE(2231), - [sym_const_block] = STATE(1616), - [sym_pattern] = STATE(1894), - [sym_tuple_pattern] = STATE(1616), - [sym_slice_pattern] = STATE(1616), - [sym_tuple_struct_pattern] = STATE(1616), - [sym_struct_pattern] = STATE(1616), - [sym_remaining_field_pattern] = STATE(1616), - [sym_mut_pattern] = STATE(1616), - [sym_range_pattern] = STATE(1616), - [sym_ref_pattern] = STATE(1616), - [sym_captured_pattern] = STATE(1616), - [sym_reference_pattern] = STATE(1616), - [sym_or_pattern] = STATE(1616), - [sym__literal_pattern] = STATE(1496), - [sym_negative_literal] = STATE(1513), - [sym_string_literal] = STATE(1513), - [sym_boolean_literal] = STATE(1513), - [sym_primitive_type] = STATE(1471), - [sym_identifier] = STATE(1428), - [sym__primitive_identifier] = ACTIONS(842), - [sym_underscore] = ACTIONS(972), - [anon_sym_LPAREN] = ACTIONS(1272), - [anon_sym_LBRACK] = ACTIONS(1276), - [anon_sym_const] = ACTIONS(1278), - [anon_sym_default] = ACTIONS(1280), - [anon_sym_union] = ACTIONS(1280), - [anon_sym_ref] = ACTIONS(878), + [sym_bracketed_type] = STATE(2684), + [sym_generic_type] = STATE(2683), + [sym_generic_type_with_turbofish] = STATE(2682), + [sym_macro_invocation] = STATE(1615), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier] = STATE(2202), + [sym_const_block] = STATE(1615), + [sym_pattern] = STATE(1617), + [sym_tuple_pattern] = STATE(1615), + [sym_slice_pattern] = STATE(1615), + [sym_tuple_struct_pattern] = STATE(1615), + [sym_struct_pattern] = STATE(1615), + [sym_remaining_field_pattern] = STATE(1615), + [sym_mut_pattern] = STATE(1615), + [sym_range_pattern] = STATE(1615), + [sym_ref_pattern] = STATE(1615), + [sym_captured_pattern] = STATE(1615), + [sym_reference_pattern] = STATE(1615), + [sym_or_pattern] = STATE(1615), + [sym__literal_pattern] = STATE(1492), + [sym_negative_literal] = STATE(1521), + [sym_string_literal] = STATE(1521), + [sym_boolean_literal] = STATE(1521), + [sym_primitive_type] = STATE(1479), + [sym_identifier] = STATE(1432), + [sym__primitive_identifier] = ACTIONS(844), + [sym_underscore] = ACTIONS(974), + [anon_sym_LPAREN] = ACTIONS(1274), + [anon_sym_LBRACK] = ACTIONS(1278), + [anon_sym_const] = ACTIONS(1280), + [anon_sym_default] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1282), + [anon_sym_ref] = ACTIONS(880), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1282), - [anon_sym_AMP] = ACTIONS(1284), - [sym_mutable_specifier] = ACTIONS(980), - [anon_sym_DOT_DOT] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(892), - [sym_integer_literal] = ACTIONS(894), - [aux_sym_string_literal_token1] = ACTIONS(896), - [sym_char_literal] = ACTIONS(894), - [anon_sym_true] = ACTIONS(898), - [anon_sym_false] = ACTIONS(898), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1286), - [sym_super] = ACTIONS(1286), - [sym_crate] = ACTIONS(1286), - [sym_metavariable] = ACTIONS(1288), - [sym_grit_metavariable] = ACTIONS(984), - [sym_raw_string_literal] = ACTIONS(894), - [sym_float_literal] = ACTIONS(894), + [anon_sym_COLON_COLON] = ACTIONS(1284), + [anon_sym_AMP] = ACTIONS(1286), + [sym_mutable_specifier] = ACTIONS(982), + [anon_sym_DOT_DOT] = ACTIONS(984), + [anon_sym_DASH] = ACTIONS(894), + [sym_integer_literal] = ACTIONS(896), + [aux_sym_string_literal_token1] = ACTIONS(898), + [sym_char_literal] = ACTIONS(896), + [anon_sym_true] = ACTIONS(900), + [anon_sym_false] = ACTIONS(900), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1288), + [sym_super] = ACTIONS(1288), + [sym_crate] = ACTIONS(1288), + [sym_metavariable] = ACTIONS(1290), + [sym_grit_metavariable] = ACTIONS(986), + [sym_raw_string_literal] = ACTIONS(896), + [sym_float_literal] = ACTIONS(896), [sym_block_comment] = ACTIONS(3), }, [619] = { - [sym_bracketed_type] = STATE(2658), - [sym_generic_type] = STATE(2655), - [sym_generic_type_with_turbofish] = STATE(2638), - [sym_macro_invocation] = STATE(1616), - [sym_scoped_identifier] = STATE(1451), - [sym_scoped_type_identifier] = STATE(2231), - [sym_const_block] = STATE(1616), - [sym_pattern] = STATE(2512), - [sym_tuple_pattern] = STATE(1616), - [sym_slice_pattern] = STATE(1616), - [sym_tuple_struct_pattern] = STATE(1616), - [sym_struct_pattern] = STATE(1616), - [sym_remaining_field_pattern] = STATE(1616), - [sym_mut_pattern] = STATE(1616), - [sym_range_pattern] = STATE(1616), - [sym_ref_pattern] = STATE(1616), - [sym_captured_pattern] = STATE(1616), - [sym_reference_pattern] = STATE(1616), - [sym_or_pattern] = STATE(1616), - [sym__literal_pattern] = STATE(1496), - [sym_negative_literal] = STATE(1513), - [sym_string_literal] = STATE(1513), - [sym_boolean_literal] = STATE(1513), - [sym_primitive_type] = STATE(1471), - [sym_identifier] = STATE(1428), - [sym__primitive_identifier] = ACTIONS(842), - [sym_underscore] = ACTIONS(972), - [anon_sym_LPAREN] = ACTIONS(1272), - [anon_sym_LBRACK] = ACTIONS(1276), - [anon_sym_const] = ACTIONS(1278), - [anon_sym_default] = ACTIONS(1280), - [anon_sym_union] = ACTIONS(1280), - [anon_sym_ref] = ACTIONS(878), + [sym_bracketed_type] = STATE(2684), + [sym_generic_type] = STATE(2683), + [sym_generic_type_with_turbofish] = STATE(2682), + [sym_macro_invocation] = STATE(1615), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier] = STATE(2202), + [sym_const_block] = STATE(1615), + [sym_pattern] = STATE(1573), + [sym_tuple_pattern] = STATE(1615), + [sym_slice_pattern] = STATE(1615), + [sym_tuple_struct_pattern] = STATE(1615), + [sym_struct_pattern] = STATE(1615), + [sym_remaining_field_pattern] = STATE(1615), + [sym_mut_pattern] = STATE(1615), + [sym_range_pattern] = STATE(1615), + [sym_ref_pattern] = STATE(1615), + [sym_captured_pattern] = STATE(1615), + [sym_reference_pattern] = STATE(1615), + [sym_or_pattern] = STATE(1615), + [sym__literal_pattern] = STATE(1492), + [sym_negative_literal] = STATE(1521), + [sym_string_literal] = STATE(1521), + [sym_boolean_literal] = STATE(1521), + [sym_primitive_type] = STATE(1479), + [sym_identifier] = STATE(1432), + [sym__primitive_identifier] = ACTIONS(844), + [sym_underscore] = ACTIONS(974), + [anon_sym_LPAREN] = ACTIONS(1274), + [anon_sym_LBRACK] = ACTIONS(1278), + [anon_sym_const] = ACTIONS(1280), + [anon_sym_default] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1282), + [anon_sym_ref] = ACTIONS(880), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1282), - [anon_sym_AMP] = ACTIONS(1284), - [sym_mutable_specifier] = ACTIONS(980), - [anon_sym_DOT_DOT] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(892), - [sym_integer_literal] = ACTIONS(894), - [aux_sym_string_literal_token1] = ACTIONS(896), - [sym_char_literal] = ACTIONS(894), - [anon_sym_true] = ACTIONS(898), - [anon_sym_false] = ACTIONS(898), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1286), - [sym_super] = ACTIONS(1286), - [sym_crate] = ACTIONS(1286), - [sym_metavariable] = ACTIONS(1288), - [sym_grit_metavariable] = ACTIONS(984), - [sym_raw_string_literal] = ACTIONS(894), - [sym_float_literal] = ACTIONS(894), + [anon_sym_COLON_COLON] = ACTIONS(1284), + [anon_sym_AMP] = ACTIONS(1286), + [sym_mutable_specifier] = ACTIONS(982), + [anon_sym_DOT_DOT] = ACTIONS(984), + [anon_sym_DASH] = ACTIONS(894), + [sym_integer_literal] = ACTIONS(896), + [aux_sym_string_literal_token1] = ACTIONS(898), + [sym_char_literal] = ACTIONS(896), + [anon_sym_true] = ACTIONS(900), + [anon_sym_false] = ACTIONS(900), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1288), + [sym_super] = ACTIONS(1288), + [sym_crate] = ACTIONS(1288), + [sym_metavariable] = ACTIONS(1290), + [sym_grit_metavariable] = ACTIONS(986), + [sym_raw_string_literal] = ACTIONS(896), + [sym_float_literal] = ACTIONS(896), [sym_block_comment] = ACTIONS(3), }, [620] = { - [sym_bracketed_type] = STATE(2658), - [sym_generic_type] = STATE(2655), - [sym_generic_type_with_turbofish] = STATE(2638), - [sym_macro_invocation] = STATE(1616), - [sym_scoped_identifier] = STATE(1451), - [sym_scoped_type_identifier] = STATE(2231), - [sym_const_block] = STATE(1616), - [sym_pattern] = STATE(2134), - [sym_tuple_pattern] = STATE(1616), - [sym_slice_pattern] = STATE(1616), - [sym_tuple_struct_pattern] = STATE(1616), - [sym_struct_pattern] = STATE(1616), - [sym_remaining_field_pattern] = STATE(1616), - [sym_mut_pattern] = STATE(1616), - [sym_range_pattern] = STATE(1616), - [sym_ref_pattern] = STATE(1616), - [sym_captured_pattern] = STATE(1616), - [sym_reference_pattern] = STATE(1616), - [sym_or_pattern] = STATE(1616), - [sym__literal_pattern] = STATE(1496), - [sym_negative_literal] = STATE(1513), - [sym_string_literal] = STATE(1513), - [sym_boolean_literal] = STATE(1513), - [sym_primitive_type] = STATE(1471), - [sym_identifier] = STATE(1428), - [sym__primitive_identifier] = ACTIONS(842), - [sym_underscore] = ACTIONS(972), - [anon_sym_LPAREN] = ACTIONS(1272), - [anon_sym_LBRACK] = ACTIONS(1276), - [anon_sym_const] = ACTIONS(1278), - [anon_sym_default] = ACTIONS(1280), - [anon_sym_union] = ACTIONS(1280), - [anon_sym_ref] = ACTIONS(878), + [sym_bracketed_type] = STATE(2684), + [sym_generic_type] = STATE(2683), + [sym_generic_type_with_turbofish] = STATE(2682), + [sym_macro_invocation] = STATE(1615), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier] = STATE(2202), + [sym_const_block] = STATE(1615), + [sym_pattern] = STATE(1568), + [sym_tuple_pattern] = STATE(1615), + [sym_slice_pattern] = STATE(1615), + [sym_tuple_struct_pattern] = STATE(1615), + [sym_struct_pattern] = STATE(1615), + [sym_remaining_field_pattern] = STATE(1615), + [sym_mut_pattern] = STATE(1615), + [sym_range_pattern] = STATE(1615), + [sym_ref_pattern] = STATE(1615), + [sym_captured_pattern] = STATE(1615), + [sym_reference_pattern] = STATE(1615), + [sym_or_pattern] = STATE(1615), + [sym__literal_pattern] = STATE(1492), + [sym_negative_literal] = STATE(1521), + [sym_string_literal] = STATE(1521), + [sym_boolean_literal] = STATE(1521), + [sym_primitive_type] = STATE(1479), + [sym_identifier] = STATE(1432), + [sym__primitive_identifier] = ACTIONS(844), + [sym_underscore] = ACTIONS(974), + [anon_sym_LPAREN] = ACTIONS(1274), + [anon_sym_LBRACK] = ACTIONS(1278), + [anon_sym_const] = ACTIONS(1280), + [anon_sym_default] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1282), + [anon_sym_ref] = ACTIONS(880), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1282), - [anon_sym_AMP] = ACTIONS(1284), - [sym_mutable_specifier] = ACTIONS(980), - [anon_sym_DOT_DOT] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(892), - [sym_integer_literal] = ACTIONS(894), - [aux_sym_string_literal_token1] = ACTIONS(896), - [sym_char_literal] = ACTIONS(894), - [anon_sym_true] = ACTIONS(898), - [anon_sym_false] = ACTIONS(898), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(2796), - [sym_super] = ACTIONS(1286), - [sym_crate] = ACTIONS(1286), - [sym_metavariable] = ACTIONS(1288), - [sym_grit_metavariable] = ACTIONS(984), - [sym_raw_string_literal] = ACTIONS(894), - [sym_float_literal] = ACTIONS(894), + [anon_sym_COLON_COLON] = ACTIONS(1284), + [anon_sym_AMP] = ACTIONS(1286), + [sym_mutable_specifier] = ACTIONS(982), + [anon_sym_DOT_DOT] = ACTIONS(984), + [anon_sym_DASH] = ACTIONS(894), + [sym_integer_literal] = ACTIONS(896), + [aux_sym_string_literal_token1] = ACTIONS(898), + [sym_char_literal] = ACTIONS(896), + [anon_sym_true] = ACTIONS(900), + [anon_sym_false] = ACTIONS(900), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1288), + [sym_super] = ACTIONS(1288), + [sym_crate] = ACTIONS(1288), + [sym_metavariable] = ACTIONS(1290), + [sym_grit_metavariable] = ACTIONS(986), + [sym_raw_string_literal] = ACTIONS(896), + [sym_float_literal] = ACTIONS(896), [sym_block_comment] = ACTIONS(3), }, [621] = { - [sym_bracketed_type] = STATE(2658), - [sym_generic_type] = STATE(2655), - [sym_generic_type_with_turbofish] = STATE(2638), - [sym_macro_invocation] = STATE(1616), - [sym_scoped_identifier] = STATE(1451), - [sym_scoped_type_identifier] = STATE(2231), - [sym_const_block] = STATE(1616), - [sym_pattern] = STATE(2173), - [sym_tuple_pattern] = STATE(1616), - [sym_slice_pattern] = STATE(1616), - [sym_tuple_struct_pattern] = STATE(1616), - [sym_struct_pattern] = STATE(1616), - [sym_remaining_field_pattern] = STATE(1616), - [sym_mut_pattern] = STATE(1616), - [sym_range_pattern] = STATE(1616), - [sym_ref_pattern] = STATE(1616), - [sym_captured_pattern] = STATE(1616), - [sym_reference_pattern] = STATE(1616), - [sym_or_pattern] = STATE(1616), - [sym__literal_pattern] = STATE(1496), - [sym_negative_literal] = STATE(1513), - [sym_string_literal] = STATE(1513), - [sym_boolean_literal] = STATE(1513), - [sym_primitive_type] = STATE(1471), - [sym_identifier] = STATE(1428), - [sym__primitive_identifier] = ACTIONS(842), - [sym_underscore] = ACTIONS(972), - [anon_sym_LPAREN] = ACTIONS(1272), - [anon_sym_LBRACK] = ACTIONS(1276), - [anon_sym_const] = ACTIONS(1278), - [anon_sym_default] = ACTIONS(1280), - [anon_sym_union] = ACTIONS(1280), - [anon_sym_ref] = ACTIONS(878), + [sym_bracketed_type] = STATE(2684), + [sym_generic_type] = STATE(2683), + [sym_generic_type_with_turbofish] = STATE(2682), + [sym_macro_invocation] = STATE(1615), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier] = STATE(2202), + [sym_const_block] = STATE(1615), + [sym_pattern] = STATE(2434), + [sym_tuple_pattern] = STATE(1615), + [sym_slice_pattern] = STATE(1615), + [sym_tuple_struct_pattern] = STATE(1615), + [sym_struct_pattern] = STATE(1615), + [sym_remaining_field_pattern] = STATE(1615), + [sym_mut_pattern] = STATE(1615), + [sym_range_pattern] = STATE(1615), + [sym_ref_pattern] = STATE(1615), + [sym_captured_pattern] = STATE(1615), + [sym_reference_pattern] = STATE(1615), + [sym_or_pattern] = STATE(1615), + [sym__literal_pattern] = STATE(1492), + [sym_negative_literal] = STATE(1521), + [sym_string_literal] = STATE(1521), + [sym_boolean_literal] = STATE(1521), + [sym_primitive_type] = STATE(1479), + [sym_identifier] = STATE(1432), + [sym__primitive_identifier] = ACTIONS(844), + [sym_underscore] = ACTIONS(974), + [anon_sym_LPAREN] = ACTIONS(1274), + [anon_sym_LBRACK] = ACTIONS(1278), + [anon_sym_const] = ACTIONS(1280), + [anon_sym_default] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1282), + [anon_sym_ref] = ACTIONS(880), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1282), - [anon_sym_AMP] = ACTIONS(1284), - [sym_mutable_specifier] = ACTIONS(980), - [anon_sym_DOT_DOT] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(892), - [sym_integer_literal] = ACTIONS(894), - [aux_sym_string_literal_token1] = ACTIONS(896), - [sym_char_literal] = ACTIONS(894), - [anon_sym_true] = ACTIONS(898), - [anon_sym_false] = ACTIONS(898), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1286), - [sym_super] = ACTIONS(1286), - [sym_crate] = ACTIONS(1286), - [sym_metavariable] = ACTIONS(1288), - [sym_grit_metavariable] = ACTIONS(984), - [sym_raw_string_literal] = ACTIONS(894), - [sym_float_literal] = ACTIONS(894), + [anon_sym_COLON_COLON] = ACTIONS(1284), + [anon_sym_AMP] = ACTIONS(1286), + [sym_mutable_specifier] = ACTIONS(982), + [anon_sym_DOT_DOT] = ACTIONS(984), + [anon_sym_DASH] = ACTIONS(894), + [sym_integer_literal] = ACTIONS(896), + [aux_sym_string_literal_token1] = ACTIONS(898), + [sym_char_literal] = ACTIONS(896), + [anon_sym_true] = ACTIONS(900), + [anon_sym_false] = ACTIONS(900), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1288), + [sym_super] = ACTIONS(1288), + [sym_crate] = ACTIONS(1288), + [sym_metavariable] = ACTIONS(1290), + [sym_grit_metavariable] = ACTIONS(986), + [sym_raw_string_literal] = ACTIONS(896), + [sym_float_literal] = ACTIONS(896), [sym_block_comment] = ACTIONS(3), }, [622] = { - [sym_bracketed_type] = STATE(2658), - [sym_generic_type] = STATE(2655), - [sym_generic_type_with_turbofish] = STATE(2638), - [sym_macro_invocation] = STATE(1616), - [sym_scoped_identifier] = STATE(1451), - [sym_scoped_type_identifier] = STATE(2231), - [sym_const_block] = STATE(1616), - [sym_pattern] = STATE(2418), - [sym_tuple_pattern] = STATE(1616), - [sym_slice_pattern] = STATE(1616), - [sym_tuple_struct_pattern] = STATE(1616), - [sym_struct_pattern] = STATE(1616), - [sym_remaining_field_pattern] = STATE(1616), - [sym_mut_pattern] = STATE(1616), - [sym_range_pattern] = STATE(1616), - [sym_ref_pattern] = STATE(1616), - [sym_captured_pattern] = STATE(1616), - [sym_reference_pattern] = STATE(1616), - [sym_or_pattern] = STATE(1616), - [sym__literal_pattern] = STATE(1496), - [sym_negative_literal] = STATE(1513), - [sym_string_literal] = STATE(1513), - [sym_boolean_literal] = STATE(1513), - [sym_primitive_type] = STATE(1471), - [sym_identifier] = STATE(1428), - [sym__primitive_identifier] = ACTIONS(842), - [sym_underscore] = ACTIONS(972), - [anon_sym_LPAREN] = ACTIONS(1272), - [anon_sym_LBRACK] = ACTIONS(1276), - [anon_sym_const] = ACTIONS(1278), - [anon_sym_default] = ACTIONS(1280), - [anon_sym_union] = ACTIONS(1280), - [anon_sym_ref] = ACTIONS(878), + [sym_bracketed_type] = STATE(2684), + [sym_generic_type] = STATE(2683), + [sym_generic_type_with_turbofish] = STATE(2682), + [sym_macro_invocation] = STATE(1615), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier] = STATE(2202), + [sym_const_block] = STATE(1615), + [sym_pattern] = STATE(1572), + [sym_tuple_pattern] = STATE(1615), + [sym_slice_pattern] = STATE(1615), + [sym_tuple_struct_pattern] = STATE(1615), + [sym_struct_pattern] = STATE(1615), + [sym_remaining_field_pattern] = STATE(1615), + [sym_mut_pattern] = STATE(1615), + [sym_range_pattern] = STATE(1615), + [sym_ref_pattern] = STATE(1615), + [sym_captured_pattern] = STATE(1615), + [sym_reference_pattern] = STATE(1615), + [sym_or_pattern] = STATE(1615), + [sym__literal_pattern] = STATE(1492), + [sym_negative_literal] = STATE(1521), + [sym_string_literal] = STATE(1521), + [sym_boolean_literal] = STATE(1521), + [sym_primitive_type] = STATE(1479), + [sym_identifier] = STATE(1432), + [sym__primitive_identifier] = ACTIONS(844), + [sym_underscore] = ACTIONS(974), + [anon_sym_LPAREN] = ACTIONS(1274), + [anon_sym_LBRACK] = ACTIONS(1278), + [anon_sym_const] = ACTIONS(1280), + [anon_sym_default] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1282), + [anon_sym_ref] = ACTIONS(880), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1282), - [anon_sym_AMP] = ACTIONS(1284), - [sym_mutable_specifier] = ACTIONS(980), - [anon_sym_DOT_DOT] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(892), - [sym_integer_literal] = ACTIONS(894), - [aux_sym_string_literal_token1] = ACTIONS(896), - [sym_char_literal] = ACTIONS(894), - [anon_sym_true] = ACTIONS(898), - [anon_sym_false] = ACTIONS(898), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1286), - [sym_super] = ACTIONS(1286), - [sym_crate] = ACTIONS(1286), - [sym_metavariable] = ACTIONS(1288), - [sym_grit_metavariable] = ACTIONS(984), - [sym_raw_string_literal] = ACTIONS(894), - [sym_float_literal] = ACTIONS(894), + [anon_sym_COLON_COLON] = ACTIONS(1284), + [anon_sym_AMP] = ACTIONS(1286), + [sym_mutable_specifier] = ACTIONS(982), + [anon_sym_DOT_DOT] = ACTIONS(984), + [anon_sym_DASH] = ACTIONS(894), + [sym_integer_literal] = ACTIONS(896), + [aux_sym_string_literal_token1] = ACTIONS(898), + [sym_char_literal] = ACTIONS(896), + [anon_sym_true] = ACTIONS(900), + [anon_sym_false] = ACTIONS(900), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1288), + [sym_super] = ACTIONS(1288), + [sym_crate] = ACTIONS(1288), + [sym_metavariable] = ACTIONS(1290), + [sym_grit_metavariable] = ACTIONS(986), + [sym_raw_string_literal] = ACTIONS(896), + [sym_float_literal] = ACTIONS(896), [sym_block_comment] = ACTIONS(3), }, [623] = { - [sym_function_modifiers] = STATE(2724), - [sym_higher_ranked_trait_bound] = STATE(1715), - [sym_removed_trait_bound] = STATE(1715), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(1744), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(1743), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_QMARK] = ACTIONS(2798), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(2800), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [sym_function_modifiers] = STATE(2667), + [sym_higher_ranked_trait_bound] = STATE(1748), + [sym_removed_trait_bound] = STATE(1748), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(1736), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(1752), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_QMARK] = ACTIONS(2804), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(2806), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, [624] = { - [sym_function_modifiers] = STATE(2724), - [sym_higher_ranked_trait_bound] = STATE(1715), - [sym_removed_trait_bound] = STATE(1715), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(1741), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(1740), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), + [sym_bracketed_type] = STATE(2684), + [sym_generic_type] = STATE(2683), + [sym_generic_type_with_turbofish] = STATE(2682), + [sym_macro_invocation] = STATE(1615), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier] = STATE(2202), + [sym_const_block] = STATE(1615), + [sym_pattern] = STATE(2593), + [sym_tuple_pattern] = STATE(1615), + [sym_slice_pattern] = STATE(1615), + [sym_tuple_struct_pattern] = STATE(1615), + [sym_struct_pattern] = STATE(1615), + [sym_remaining_field_pattern] = STATE(1615), + [sym_mut_pattern] = STATE(1615), + [sym_range_pattern] = STATE(1615), + [sym_ref_pattern] = STATE(1615), + [sym_captured_pattern] = STATE(1615), + [sym_reference_pattern] = STATE(1615), + [sym_or_pattern] = STATE(1615), + [sym__literal_pattern] = STATE(1492), + [sym_negative_literal] = STATE(1521), + [sym_string_literal] = STATE(1521), + [sym_boolean_literal] = STATE(1521), [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_QMARK] = ACTIONS(2798), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(2800), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [sym_identifier] = STATE(1432), + [sym__primitive_identifier] = ACTIONS(844), + [sym_underscore] = ACTIONS(974), + [anon_sym_LPAREN] = ACTIONS(1274), + [anon_sym_LBRACK] = ACTIONS(1278), + [anon_sym_const] = ACTIONS(1280), + [anon_sym_default] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1282), + [anon_sym_ref] = ACTIONS(880), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(1284), + [anon_sym_AMP] = ACTIONS(1286), + [sym_mutable_specifier] = ACTIONS(982), + [anon_sym_DOT_DOT] = ACTIONS(984), + [anon_sym_DASH] = ACTIONS(894), + [sym_integer_literal] = ACTIONS(896), + [aux_sym_string_literal_token1] = ACTIONS(898), + [sym_char_literal] = ACTIONS(896), + [anon_sym_true] = ACTIONS(900), + [anon_sym_false] = ACTIONS(900), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1288), + [sym_super] = ACTIONS(1288), + [sym_crate] = ACTIONS(1288), + [sym_metavariable] = ACTIONS(1290), + [sym_grit_metavariable] = ACTIONS(986), + [sym_raw_string_literal] = ACTIONS(896), + [sym_float_literal] = ACTIONS(896), [sym_block_comment] = ACTIONS(3), }, [625] = { - [sym_function_modifiers] = STATE(2724), - [sym_higher_ranked_trait_bound] = STATE(1715), - [sym_removed_trait_bound] = STATE(1715), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(1741), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(1743), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), + [sym_bracketed_type] = STATE(2684), + [sym_generic_type] = STATE(2683), + [sym_generic_type_with_turbofish] = STATE(2682), + [sym_macro_invocation] = STATE(1615), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier] = STATE(2202), + [sym_const_block] = STATE(1615), + [sym_pattern] = STATE(1565), + [sym_tuple_pattern] = STATE(1615), + [sym_slice_pattern] = STATE(1615), + [sym_tuple_struct_pattern] = STATE(1615), + [sym_struct_pattern] = STATE(1615), + [sym_remaining_field_pattern] = STATE(1615), + [sym_mut_pattern] = STATE(1615), + [sym_range_pattern] = STATE(1615), + [sym_ref_pattern] = STATE(1615), + [sym_captured_pattern] = STATE(1615), + [sym_reference_pattern] = STATE(1615), + [sym_or_pattern] = STATE(1615), + [sym__literal_pattern] = STATE(1492), + [sym_negative_literal] = STATE(1521), + [sym_string_literal] = STATE(1521), + [sym_boolean_literal] = STATE(1521), [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_QMARK] = ACTIONS(2798), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(2800), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [sym_identifier] = STATE(1432), + [sym__primitive_identifier] = ACTIONS(844), + [sym_underscore] = ACTIONS(974), + [anon_sym_LPAREN] = ACTIONS(1274), + [anon_sym_LBRACK] = ACTIONS(1278), + [anon_sym_const] = ACTIONS(1280), + [anon_sym_default] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1282), + [anon_sym_ref] = ACTIONS(880), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(1284), + [anon_sym_AMP] = ACTIONS(1286), + [sym_mutable_specifier] = ACTIONS(982), + [anon_sym_DOT_DOT] = ACTIONS(984), + [anon_sym_DASH] = ACTIONS(894), + [sym_integer_literal] = ACTIONS(896), + [aux_sym_string_literal_token1] = ACTIONS(898), + [sym_char_literal] = ACTIONS(896), + [anon_sym_true] = ACTIONS(900), + [anon_sym_false] = ACTIONS(900), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1288), + [sym_super] = ACTIONS(1288), + [sym_crate] = ACTIONS(1288), + [sym_metavariable] = ACTIONS(1290), + [sym_grit_metavariable] = ACTIONS(986), + [sym_raw_string_literal] = ACTIONS(896), + [sym_float_literal] = ACTIONS(896), [sym_block_comment] = ACTIONS(3), }, [626] = { - [sym_bracketed_type] = STATE(2658), - [sym_generic_type] = STATE(2655), - [sym_generic_type_with_turbofish] = STATE(2638), - [sym_macro_invocation] = STATE(1616), - [sym_scoped_identifier] = STATE(1451), - [sym_scoped_type_identifier] = STATE(2231), - [sym_const_block] = STATE(1616), - [sym_pattern] = STATE(2422), - [sym_tuple_pattern] = STATE(1616), - [sym_slice_pattern] = STATE(1616), - [sym_tuple_struct_pattern] = STATE(1616), - [sym_struct_pattern] = STATE(1616), - [sym_remaining_field_pattern] = STATE(1616), - [sym_mut_pattern] = STATE(1616), - [sym_range_pattern] = STATE(1616), - [sym_ref_pattern] = STATE(1616), - [sym_captured_pattern] = STATE(1616), - [sym_reference_pattern] = STATE(1616), - [sym_or_pattern] = STATE(1616), - [sym__literal_pattern] = STATE(1496), - [sym_negative_literal] = STATE(1513), - [sym_string_literal] = STATE(1513), - [sym_boolean_literal] = STATE(1513), - [sym_primitive_type] = STATE(1471), - [sym_identifier] = STATE(1428), - [sym__primitive_identifier] = ACTIONS(842), - [sym_underscore] = ACTIONS(972), - [anon_sym_LPAREN] = ACTIONS(1272), - [anon_sym_LBRACK] = ACTIONS(1276), - [anon_sym_const] = ACTIONS(1278), - [anon_sym_default] = ACTIONS(1280), - [anon_sym_union] = ACTIONS(1280), - [anon_sym_ref] = ACTIONS(878), + [sym_bracketed_type] = STATE(2684), + [sym_generic_type] = STATE(2683), + [sym_generic_type_with_turbofish] = STATE(2682), + [sym_macro_invocation] = STATE(1615), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier] = STATE(2202), + [sym_const_block] = STATE(1615), + [sym_pattern] = STATE(2523), + [sym_tuple_pattern] = STATE(1615), + [sym_slice_pattern] = STATE(1615), + [sym_tuple_struct_pattern] = STATE(1615), + [sym_struct_pattern] = STATE(1615), + [sym_remaining_field_pattern] = STATE(1615), + [sym_mut_pattern] = STATE(1615), + [sym_range_pattern] = STATE(1615), + [sym_ref_pattern] = STATE(1615), + [sym_captured_pattern] = STATE(1615), + [sym_reference_pattern] = STATE(1615), + [sym_or_pattern] = STATE(1615), + [sym__literal_pattern] = STATE(1492), + [sym_negative_literal] = STATE(1521), + [sym_string_literal] = STATE(1521), + [sym_boolean_literal] = STATE(1521), + [sym_primitive_type] = STATE(1479), + [sym_identifier] = STATE(1432), + [sym__primitive_identifier] = ACTIONS(844), + [sym_underscore] = ACTIONS(974), + [anon_sym_LPAREN] = ACTIONS(1274), + [anon_sym_LBRACK] = ACTIONS(1278), + [anon_sym_const] = ACTIONS(1280), + [anon_sym_default] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1282), + [anon_sym_ref] = ACTIONS(880), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1282), - [anon_sym_AMP] = ACTIONS(1284), - [sym_mutable_specifier] = ACTIONS(980), - [anon_sym_DOT_DOT] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(892), - [sym_integer_literal] = ACTIONS(894), - [aux_sym_string_literal_token1] = ACTIONS(896), - [sym_char_literal] = ACTIONS(894), - [anon_sym_true] = ACTIONS(898), - [anon_sym_false] = ACTIONS(898), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1286), - [sym_super] = ACTIONS(1286), - [sym_crate] = ACTIONS(1286), - [sym_metavariable] = ACTIONS(1288), - [sym_grit_metavariable] = ACTIONS(984), - [sym_raw_string_literal] = ACTIONS(894), - [sym_float_literal] = ACTIONS(894), + [anon_sym_COLON_COLON] = ACTIONS(1284), + [anon_sym_AMP] = ACTIONS(1286), + [sym_mutable_specifier] = ACTIONS(982), + [anon_sym_DOT_DOT] = ACTIONS(984), + [anon_sym_DASH] = ACTIONS(894), + [sym_integer_literal] = ACTIONS(896), + [aux_sym_string_literal_token1] = ACTIONS(898), + [sym_char_literal] = ACTIONS(896), + [anon_sym_true] = ACTIONS(900), + [anon_sym_false] = ACTIONS(900), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1288), + [sym_super] = ACTIONS(1288), + [sym_crate] = ACTIONS(1288), + [sym_metavariable] = ACTIONS(1290), + [sym_grit_metavariable] = ACTIONS(986), + [sym_raw_string_literal] = ACTIONS(896), + [sym_float_literal] = ACTIONS(896), [sym_block_comment] = ACTIONS(3), }, [627] = { - [sym__primitive_identifier] = ACTIONS(2802), - [anon_sym_LPAREN] = ACTIONS(2804), - [anon_sym_RPAREN] = ACTIONS(2804), - [anon_sym_LBRACE] = ACTIONS(2804), - [anon_sym_RBRACE] = ACTIONS(2804), - [anon_sym_LBRACK] = ACTIONS(2804), - [anon_sym_RBRACK] = ACTIONS(2804), - [anon_sym_COLON] = ACTIONS(2806), - [anon_sym_DOLLAR] = ACTIONS(2802), - [aux_sym__non_special_token_token1] = ACTIONS(2802), - [anon_sym_SQUOTE] = ACTIONS(2802), - [anon_sym_as] = ACTIONS(2802), - [anon_sym_async] = ACTIONS(2802), - [anon_sym_await] = ACTIONS(2802), - [anon_sym_break] = ACTIONS(2802), - [anon_sym_const] = ACTIONS(2802), - [anon_sym_continue] = ACTIONS(2802), - [anon_sym_default] = ACTIONS(2802), - [anon_sym_enum] = ACTIONS(2802), - [anon_sym_fn] = ACTIONS(2802), - [anon_sym_for] = ACTIONS(2802), - [anon_sym_if] = ACTIONS(2802), - [anon_sym_impl] = ACTIONS(2802), - [anon_sym_let] = ACTIONS(2802), - [anon_sym_loop] = ACTIONS(2802), - [anon_sym_match] = ACTIONS(2802), - [anon_sym_mod] = ACTIONS(2802), - [anon_sym_pub] = ACTIONS(2802), - [anon_sym_return] = ACTIONS(2802), - [anon_sym_static] = ACTIONS(2802), - [anon_sym_struct] = ACTIONS(2802), - [anon_sym_trait] = ACTIONS(2802), - [anon_sym_type] = ACTIONS(2802), - [anon_sym_union] = ACTIONS(2802), - [anon_sym_unsafe] = ACTIONS(2802), - [anon_sym_use] = ACTIONS(2802), - [anon_sym_where] = ACTIONS(2802), - [anon_sym_while] = ACTIONS(2802), - [sym_mutable_specifier] = ACTIONS(2802), - [sym_integer_literal] = ACTIONS(2804), - [aux_sym_string_literal_token1] = ACTIONS(2804), - [sym_char_literal] = ACTIONS(2804), - [anon_sym_true] = ACTIONS(2802), - [anon_sym_false] = ACTIONS(2802), - [anon_sym_u8] = ACTIONS(2802), - [anon_sym_i8] = ACTIONS(2802), - [anon_sym_u16] = ACTIONS(2802), - [anon_sym_i16] = ACTIONS(2802), - [anon_sym_u32] = ACTIONS(2802), - [anon_sym_i32] = ACTIONS(2802), - [anon_sym_u64] = ACTIONS(2802), - [anon_sym_i64] = ACTIONS(2802), - [anon_sym_u128] = ACTIONS(2802), - [anon_sym_i128] = ACTIONS(2802), - [anon_sym_isize] = ACTIONS(2802), - [anon_sym_usize] = ACTIONS(2802), - [anon_sym_f32] = ACTIONS(2802), - [anon_sym_f64] = ACTIONS(2802), - [anon_sym_bool] = ACTIONS(2802), - [anon_sym_str] = ACTIONS(2802), - [anon_sym_char] = ACTIONS(2802), - [sym_line_comment] = ACTIONS(1172), - [sym__raw_identifier] = ACTIONS(2804), - [sym_self] = ACTIONS(2802), - [sym_super] = ACTIONS(2802), - [sym_crate] = ACTIONS(2802), - [sym_metavariable] = ACTIONS(2804), - [sym_grit_metavariable] = ACTIONS(2804), - [sym_raw_string_literal] = ACTIONS(2804), - [sym_float_literal] = ACTIONS(2804), + [sym_bracketed_type] = STATE(2684), + [sym_generic_type] = STATE(2683), + [sym_generic_type_with_turbofish] = STATE(2682), + [sym_macro_invocation] = STATE(1615), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier] = STATE(2202), + [sym_const_block] = STATE(1615), + [sym_pattern] = STATE(2010), + [sym_tuple_pattern] = STATE(1615), + [sym_slice_pattern] = STATE(1615), + [sym_tuple_struct_pattern] = STATE(1615), + [sym_struct_pattern] = STATE(1615), + [sym_remaining_field_pattern] = STATE(1615), + [sym_mut_pattern] = STATE(1615), + [sym_range_pattern] = STATE(1615), + [sym_ref_pattern] = STATE(1615), + [sym_captured_pattern] = STATE(1615), + [sym_reference_pattern] = STATE(1615), + [sym_or_pattern] = STATE(1615), + [sym__literal_pattern] = STATE(1492), + [sym_negative_literal] = STATE(1521), + [sym_string_literal] = STATE(1521), + [sym_boolean_literal] = STATE(1521), + [sym_primitive_type] = STATE(1479), + [sym_identifier] = STATE(1432), + [sym__primitive_identifier] = ACTIONS(844), + [sym_underscore] = ACTIONS(974), + [anon_sym_LPAREN] = ACTIONS(1274), + [anon_sym_LBRACK] = ACTIONS(1278), + [anon_sym_const] = ACTIONS(1280), + [anon_sym_default] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1282), + [anon_sym_ref] = ACTIONS(880), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(1284), + [anon_sym_AMP] = ACTIONS(1286), + [sym_mutable_specifier] = ACTIONS(982), + [anon_sym_DOT_DOT] = ACTIONS(984), + [anon_sym_DASH] = ACTIONS(894), + [sym_integer_literal] = ACTIONS(896), + [aux_sym_string_literal_token1] = ACTIONS(898), + [sym_char_literal] = ACTIONS(896), + [anon_sym_true] = ACTIONS(900), + [anon_sym_false] = ACTIONS(900), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(2808), + [sym_super] = ACTIONS(1288), + [sym_crate] = ACTIONS(1288), + [sym_metavariable] = ACTIONS(1290), + [sym_grit_metavariable] = ACTIONS(986), + [sym_raw_string_literal] = ACTIONS(896), + [sym_float_literal] = ACTIONS(896), [sym_block_comment] = ACTIONS(3), }, [628] = { - [sym_bracketed_type] = STATE(2658), - [sym_generic_type] = STATE(2655), - [sym_generic_type_with_turbofish] = STATE(2638), - [sym_macro_invocation] = STATE(1616), - [sym_scoped_identifier] = STATE(1451), - [sym_scoped_type_identifier] = STATE(2231), - [sym_const_block] = STATE(1616), - [sym_pattern] = STATE(1588), - [sym_tuple_pattern] = STATE(1616), - [sym_slice_pattern] = STATE(1616), - [sym_tuple_struct_pattern] = STATE(1616), - [sym_struct_pattern] = STATE(1616), - [sym_remaining_field_pattern] = STATE(1616), - [sym_mut_pattern] = STATE(1616), - [sym_range_pattern] = STATE(1616), - [sym_ref_pattern] = STATE(1616), - [sym_captured_pattern] = STATE(1616), - [sym_reference_pattern] = STATE(1616), - [sym_or_pattern] = STATE(1616), - [sym__literal_pattern] = STATE(1496), - [sym_negative_literal] = STATE(1513), - [sym_string_literal] = STATE(1513), - [sym_boolean_literal] = STATE(1513), - [sym_primitive_type] = STATE(1471), - [sym_identifier] = STATE(1428), - [sym__primitive_identifier] = ACTIONS(842), - [sym_underscore] = ACTIONS(972), - [anon_sym_LPAREN] = ACTIONS(1272), - [anon_sym_LBRACK] = ACTIONS(1276), - [anon_sym_const] = ACTIONS(1278), - [anon_sym_default] = ACTIONS(1280), - [anon_sym_union] = ACTIONS(1280), - [anon_sym_ref] = ACTIONS(878), + [sym_function_modifiers] = STATE(2667), + [sym_higher_ranked_trait_bound] = STATE(1748), + [sym_removed_trait_bound] = STATE(1748), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(1736), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(1709), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_QMARK] = ACTIONS(2804), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(2806), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1282), - [anon_sym_AMP] = ACTIONS(1284), - [sym_mutable_specifier] = ACTIONS(980), - [anon_sym_DOT_DOT] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(892), - [sym_integer_literal] = ACTIONS(894), - [aux_sym_string_literal_token1] = ACTIONS(896), - [sym_char_literal] = ACTIONS(894), - [anon_sym_true] = ACTIONS(898), - [anon_sym_false] = ACTIONS(898), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1286), - [sym_super] = ACTIONS(1286), - [sym_crate] = ACTIONS(1286), - [sym_metavariable] = ACTIONS(1288), - [sym_grit_metavariable] = ACTIONS(984), - [sym_raw_string_literal] = ACTIONS(894), - [sym_float_literal] = ACTIONS(894), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, [629] = { - [sym_bracketed_type] = STATE(2658), - [sym_generic_type] = STATE(2655), - [sym_generic_type_with_turbofish] = STATE(2638), - [sym_macro_invocation] = STATE(1616), - [sym_scoped_identifier] = STATE(1451), - [sym_scoped_type_identifier] = STATE(2231), - [sym_const_block] = STATE(1616), - [sym_pattern] = STATE(1992), - [sym_tuple_pattern] = STATE(1616), - [sym_slice_pattern] = STATE(1616), - [sym_tuple_struct_pattern] = STATE(1616), - [sym_struct_pattern] = STATE(1616), - [sym_remaining_field_pattern] = STATE(1616), - [sym_mut_pattern] = STATE(1616), - [sym_range_pattern] = STATE(1616), - [sym_ref_pattern] = STATE(1616), - [sym_captured_pattern] = STATE(1616), - [sym_reference_pattern] = STATE(1616), - [sym_or_pattern] = STATE(1616), - [sym__literal_pattern] = STATE(1496), - [sym_negative_literal] = STATE(1513), - [sym_string_literal] = STATE(1513), - [sym_boolean_literal] = STATE(1513), - [sym_primitive_type] = STATE(1471), - [sym_identifier] = STATE(1428), - [sym__primitive_identifier] = ACTIONS(842), - [sym_underscore] = ACTIONS(972), - [anon_sym_LPAREN] = ACTIONS(1272), - [anon_sym_LBRACK] = ACTIONS(1276), - [anon_sym_const] = ACTIONS(1278), - [anon_sym_default] = ACTIONS(1280), - [anon_sym_union] = ACTIONS(1280), - [anon_sym_ref] = ACTIONS(878), + [sym_function_modifiers] = STATE(2667), + [sym_higher_ranked_trait_bound] = STATE(1748), + [sym_removed_trait_bound] = STATE(1748), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(1718), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(1752), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_QMARK] = ACTIONS(2804), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(2806), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1282), - [anon_sym_AMP] = ACTIONS(1284), - [sym_mutable_specifier] = ACTIONS(980), - [anon_sym_DOT_DOT] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(892), - [sym_integer_literal] = ACTIONS(894), - [aux_sym_string_literal_token1] = ACTIONS(896), - [sym_char_literal] = ACTIONS(894), - [anon_sym_true] = ACTIONS(898), - [anon_sym_false] = ACTIONS(898), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1286), - [sym_super] = ACTIONS(1286), - [sym_crate] = ACTIONS(1286), - [sym_metavariable] = ACTIONS(1288), - [sym_grit_metavariable] = ACTIONS(984), - [sym_raw_string_literal] = ACTIONS(894), - [sym_float_literal] = ACTIONS(894), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, [630] = { - [sym_bracketed_type] = STATE(2658), - [sym_generic_type] = STATE(2655), - [sym_generic_type_with_turbofish] = STATE(2638), - [sym_macro_invocation] = STATE(1616), - [sym_scoped_identifier] = STATE(1451), - [sym_scoped_type_identifier] = STATE(2231), - [sym_const_block] = STATE(1616), - [sym_pattern] = STATE(1891), - [sym_tuple_pattern] = STATE(1616), - [sym_slice_pattern] = STATE(1616), - [sym_tuple_struct_pattern] = STATE(1616), - [sym_struct_pattern] = STATE(1616), - [sym_remaining_field_pattern] = STATE(1616), - [sym_mut_pattern] = STATE(1616), - [sym_range_pattern] = STATE(1616), - [sym_ref_pattern] = STATE(1616), - [sym_captured_pattern] = STATE(1616), - [sym_reference_pattern] = STATE(1616), - [sym_or_pattern] = STATE(1616), - [sym__literal_pattern] = STATE(1496), - [sym_negative_literal] = STATE(1513), - [sym_string_literal] = STATE(1513), - [sym_boolean_literal] = STATE(1513), - [sym_primitive_type] = STATE(1471), - [sym_identifier] = STATE(1428), - [sym__primitive_identifier] = ACTIONS(842), - [sym_underscore] = ACTIONS(972), - [anon_sym_LPAREN] = ACTIONS(1272), - [anon_sym_LBRACK] = ACTIONS(1276), - [anon_sym_const] = ACTIONS(1278), - [anon_sym_default] = ACTIONS(1280), - [anon_sym_union] = ACTIONS(1280), - [anon_sym_ref] = ACTIONS(878), + [sym_bracketed_type] = STATE(2684), + [sym_generic_type] = STATE(2683), + [sym_generic_type_with_turbofish] = STATE(2682), + [sym_macro_invocation] = STATE(1615), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier] = STATE(2202), + [sym_const_block] = STATE(1615), + [sym_pattern] = STATE(1903), + [sym_tuple_pattern] = STATE(1615), + [sym_slice_pattern] = STATE(1615), + [sym_tuple_struct_pattern] = STATE(1615), + [sym_struct_pattern] = STATE(1615), + [sym_remaining_field_pattern] = STATE(1615), + [sym_mut_pattern] = STATE(1615), + [sym_range_pattern] = STATE(1615), + [sym_ref_pattern] = STATE(1615), + [sym_captured_pattern] = STATE(1615), + [sym_reference_pattern] = STATE(1615), + [sym_or_pattern] = STATE(1615), + [sym__literal_pattern] = STATE(1492), + [sym_negative_literal] = STATE(1521), + [sym_string_literal] = STATE(1521), + [sym_boolean_literal] = STATE(1521), + [sym_primitive_type] = STATE(1479), + [sym_identifier] = STATE(1432), + [sym__primitive_identifier] = ACTIONS(844), + [sym_underscore] = ACTIONS(974), + [anon_sym_LPAREN] = ACTIONS(1274), + [anon_sym_LBRACK] = ACTIONS(1278), + [anon_sym_const] = ACTIONS(1280), + [anon_sym_default] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1282), + [anon_sym_ref] = ACTIONS(880), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1282), - [anon_sym_AMP] = ACTIONS(1284), - [sym_mutable_specifier] = ACTIONS(2808), - [anon_sym_DOT_DOT] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(892), - [sym_integer_literal] = ACTIONS(894), - [aux_sym_string_literal_token1] = ACTIONS(896), - [sym_char_literal] = ACTIONS(894), - [anon_sym_true] = ACTIONS(898), - [anon_sym_false] = ACTIONS(898), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1286), - [sym_super] = ACTIONS(1286), - [sym_crate] = ACTIONS(1286), - [sym_metavariable] = ACTIONS(1288), - [sym_grit_metavariable] = ACTIONS(984), - [sym_raw_string_literal] = ACTIONS(894), - [sym_float_literal] = ACTIONS(894), + [anon_sym_COLON_COLON] = ACTIONS(1284), + [anon_sym_AMP] = ACTIONS(1286), + [sym_mutable_specifier] = ACTIONS(2810), + [anon_sym_DOT_DOT] = ACTIONS(984), + [anon_sym_DASH] = ACTIONS(894), + [sym_integer_literal] = ACTIONS(896), + [aux_sym_string_literal_token1] = ACTIONS(898), + [sym_char_literal] = ACTIONS(896), + [anon_sym_true] = ACTIONS(900), + [anon_sym_false] = ACTIONS(900), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1288), + [sym_super] = ACTIONS(1288), + [sym_crate] = ACTIONS(1288), + [sym_metavariable] = ACTIONS(1290), + [sym_grit_metavariable] = ACTIONS(986), + [sym_raw_string_literal] = ACTIONS(896), + [sym_float_literal] = ACTIONS(896), [sym_block_comment] = ACTIONS(3), }, [631] = { - [sym_bracketed_type] = STATE(2658), - [sym_generic_type] = STATE(2655), - [sym_generic_type_with_turbofish] = STATE(2638), - [sym_macro_invocation] = STATE(1616), - [sym_scoped_identifier] = STATE(1451), - [sym_scoped_type_identifier] = STATE(2231), - [sym_const_block] = STATE(1616), - [sym_pattern] = STATE(2203), - [sym_tuple_pattern] = STATE(1616), - [sym_slice_pattern] = STATE(1616), - [sym_tuple_struct_pattern] = STATE(1616), - [sym_struct_pattern] = STATE(1616), - [sym_remaining_field_pattern] = STATE(1616), - [sym_mut_pattern] = STATE(1616), - [sym_range_pattern] = STATE(1616), - [sym_ref_pattern] = STATE(1616), - [sym_captured_pattern] = STATE(1616), - [sym_reference_pattern] = STATE(1616), - [sym_or_pattern] = STATE(1616), - [sym__literal_pattern] = STATE(1496), - [sym_negative_literal] = STATE(1513), - [sym_string_literal] = STATE(1513), - [sym_boolean_literal] = STATE(1513), - [sym_primitive_type] = STATE(1471), - [sym_identifier] = STATE(1428), - [sym__primitive_identifier] = ACTIONS(842), - [sym_underscore] = ACTIONS(972), - [anon_sym_LPAREN] = ACTIONS(1272), - [anon_sym_LBRACK] = ACTIONS(1276), - [anon_sym_const] = ACTIONS(1278), - [anon_sym_default] = ACTIONS(1280), - [anon_sym_union] = ACTIONS(1280), - [anon_sym_ref] = ACTIONS(878), + [sym_bracketed_type] = STATE(2684), + [sym_generic_type] = STATE(2683), + [sym_generic_type_with_turbofish] = STATE(2682), + [sym_macro_invocation] = STATE(1615), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier] = STATE(2202), + [sym_const_block] = STATE(1615), + [sym_pattern] = STATE(1951), + [sym_tuple_pattern] = STATE(1615), + [sym_slice_pattern] = STATE(1615), + [sym_tuple_struct_pattern] = STATE(1615), + [sym_struct_pattern] = STATE(1615), + [sym_remaining_field_pattern] = STATE(1615), + [sym_mut_pattern] = STATE(1615), + [sym_range_pattern] = STATE(1615), + [sym_ref_pattern] = STATE(1615), + [sym_captured_pattern] = STATE(1615), + [sym_reference_pattern] = STATE(1615), + [sym_or_pattern] = STATE(1615), + [sym__literal_pattern] = STATE(1492), + [sym_negative_literal] = STATE(1521), + [sym_string_literal] = STATE(1521), + [sym_boolean_literal] = STATE(1521), + [sym_primitive_type] = STATE(1479), + [sym_identifier] = STATE(1432), + [sym__primitive_identifier] = ACTIONS(844), + [sym_underscore] = ACTIONS(974), + [anon_sym_LPAREN] = ACTIONS(1274), + [anon_sym_LBRACK] = ACTIONS(1278), + [anon_sym_const] = ACTIONS(1280), + [anon_sym_default] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1282), + [anon_sym_ref] = ACTIONS(880), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1282), - [anon_sym_AMP] = ACTIONS(1284), - [sym_mutable_specifier] = ACTIONS(980), - [anon_sym_DOT_DOT] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(892), - [sym_integer_literal] = ACTIONS(894), - [aux_sym_string_literal_token1] = ACTIONS(896), - [sym_char_literal] = ACTIONS(894), - [anon_sym_true] = ACTIONS(898), - [anon_sym_false] = ACTIONS(898), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1286), - [sym_super] = ACTIONS(1286), - [sym_crate] = ACTIONS(1286), - [sym_metavariable] = ACTIONS(1288), - [sym_grit_metavariable] = ACTIONS(984), - [sym_raw_string_literal] = ACTIONS(894), - [sym_float_literal] = ACTIONS(894), + [anon_sym_COLON_COLON] = ACTIONS(1284), + [anon_sym_AMP] = ACTIONS(1286), + [sym_mutable_specifier] = ACTIONS(982), + [anon_sym_DOT_DOT] = ACTIONS(984), + [anon_sym_DASH] = ACTIONS(894), + [sym_integer_literal] = ACTIONS(896), + [aux_sym_string_literal_token1] = ACTIONS(898), + [sym_char_literal] = ACTIONS(896), + [anon_sym_true] = ACTIONS(900), + [anon_sym_false] = ACTIONS(900), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1288), + [sym_super] = ACTIONS(1288), + [sym_crate] = ACTIONS(1288), + [sym_metavariable] = ACTIONS(1290), + [sym_grit_metavariable] = ACTIONS(986), + [sym_raw_string_literal] = ACTIONS(896), + [sym_float_literal] = ACTIONS(896), [sym_block_comment] = ACTIONS(3), }, [632] = { - [sym_bracketed_type] = STATE(2658), - [sym_generic_type] = STATE(2655), - [sym_generic_type_with_turbofish] = STATE(2638), - [sym_macro_invocation] = STATE(1616), - [sym_scoped_identifier] = STATE(1451), - [sym_scoped_type_identifier] = STATE(2231), - [sym_const_block] = STATE(1616), - [sym_pattern] = STATE(2474), - [sym_tuple_pattern] = STATE(1616), - [sym_slice_pattern] = STATE(1616), - [sym_tuple_struct_pattern] = STATE(1616), - [sym_struct_pattern] = STATE(1616), - [sym_remaining_field_pattern] = STATE(1616), - [sym_mut_pattern] = STATE(1616), - [sym_range_pattern] = STATE(1616), - [sym_ref_pattern] = STATE(1616), - [sym_captured_pattern] = STATE(1616), - [sym_reference_pattern] = STATE(1616), - [sym_or_pattern] = STATE(1616), - [sym__literal_pattern] = STATE(1496), - [sym_negative_literal] = STATE(1513), - [sym_string_literal] = STATE(1513), - [sym_boolean_literal] = STATE(1513), - [sym_primitive_type] = STATE(1471), - [sym_identifier] = STATE(1428), - [sym__primitive_identifier] = ACTIONS(842), - [sym_underscore] = ACTIONS(972), - [anon_sym_LPAREN] = ACTIONS(1272), - [anon_sym_LBRACK] = ACTIONS(1276), - [anon_sym_const] = ACTIONS(1278), - [anon_sym_default] = ACTIONS(1280), - [anon_sym_union] = ACTIONS(1280), - [anon_sym_ref] = ACTIONS(878), + [sym_bracketed_type] = STATE(2684), + [sym_generic_type] = STATE(2683), + [sym_generic_type_with_turbofish] = STATE(2682), + [sym_macro_invocation] = STATE(1615), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier] = STATE(2202), + [sym_const_block] = STATE(1615), + [sym_pattern] = STATE(1892), + [sym_tuple_pattern] = STATE(1615), + [sym_slice_pattern] = STATE(1615), + [sym_tuple_struct_pattern] = STATE(1615), + [sym_struct_pattern] = STATE(1615), + [sym_remaining_field_pattern] = STATE(1615), + [sym_mut_pattern] = STATE(1615), + [sym_range_pattern] = STATE(1615), + [sym_ref_pattern] = STATE(1615), + [sym_captured_pattern] = STATE(1615), + [sym_reference_pattern] = STATE(1615), + [sym_or_pattern] = STATE(1615), + [sym__literal_pattern] = STATE(1492), + [sym_negative_literal] = STATE(1521), + [sym_string_literal] = STATE(1521), + [sym_boolean_literal] = STATE(1521), + [sym_primitive_type] = STATE(1479), + [sym_identifier] = STATE(1432), + [sym__primitive_identifier] = ACTIONS(844), + [sym_underscore] = ACTIONS(974), + [anon_sym_LPAREN] = ACTIONS(1274), + [anon_sym_LBRACK] = ACTIONS(1278), + [anon_sym_const] = ACTIONS(1280), + [anon_sym_default] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1282), + [anon_sym_ref] = ACTIONS(880), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1282), - [anon_sym_AMP] = ACTIONS(1284), - [sym_mutable_specifier] = ACTIONS(980), - [anon_sym_DOT_DOT] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(892), - [sym_integer_literal] = ACTIONS(894), - [aux_sym_string_literal_token1] = ACTIONS(896), - [sym_char_literal] = ACTIONS(894), - [anon_sym_true] = ACTIONS(898), - [anon_sym_false] = ACTIONS(898), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1286), - [sym_super] = ACTIONS(1286), - [sym_crate] = ACTIONS(1286), - [sym_metavariable] = ACTIONS(1288), - [sym_grit_metavariable] = ACTIONS(984), - [sym_raw_string_literal] = ACTIONS(894), - [sym_float_literal] = ACTIONS(894), + [anon_sym_COLON_COLON] = ACTIONS(1284), + [anon_sym_AMP] = ACTIONS(1286), + [sym_mutable_specifier] = ACTIONS(982), + [anon_sym_DOT_DOT] = ACTIONS(984), + [anon_sym_DASH] = ACTIONS(894), + [sym_integer_literal] = ACTIONS(896), + [aux_sym_string_literal_token1] = ACTIONS(898), + [sym_char_literal] = ACTIONS(896), + [anon_sym_true] = ACTIONS(900), + [anon_sym_false] = ACTIONS(900), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1288), + [sym_super] = ACTIONS(1288), + [sym_crate] = ACTIONS(1288), + [sym_metavariable] = ACTIONS(1290), + [sym_grit_metavariable] = ACTIONS(986), + [sym_raw_string_literal] = ACTIONS(896), + [sym_float_literal] = ACTIONS(896), [sym_block_comment] = ACTIONS(3), }, [633] = { - [sym_function_modifiers] = STATE(2724), - [sym_higher_ranked_trait_bound] = STATE(1695), - [sym_removed_trait_bound] = STATE(1695), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(1704), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(1703), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), + [sym_bracketed_type] = STATE(2684), + [sym_generic_type] = STATE(2683), + [sym_generic_type_with_turbofish] = STATE(2682), + [sym_macro_invocation] = STATE(1615), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier] = STATE(2202), + [sym_const_block] = STATE(1615), + [sym_pattern] = STATE(2282), + [sym_tuple_pattern] = STATE(1615), + [sym_slice_pattern] = STATE(1615), + [sym_tuple_struct_pattern] = STATE(1615), + [sym_struct_pattern] = STATE(1615), + [sym_remaining_field_pattern] = STATE(1615), + [sym_mut_pattern] = STATE(1615), + [sym_range_pattern] = STATE(1615), + [sym_ref_pattern] = STATE(1615), + [sym_captured_pattern] = STATE(1615), + [sym_reference_pattern] = STATE(1615), + [sym_or_pattern] = STATE(1615), + [sym__literal_pattern] = STATE(1492), + [sym_negative_literal] = STATE(1521), + [sym_string_literal] = STATE(1521), + [sym_boolean_literal] = STATE(1521), [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_QMARK] = ACTIONS(2798), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(2800), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [sym_identifier] = STATE(1432), + [sym__primitive_identifier] = ACTIONS(844), + [sym_underscore] = ACTIONS(974), + [anon_sym_LPAREN] = ACTIONS(1274), + [anon_sym_LBRACK] = ACTIONS(1278), + [anon_sym_const] = ACTIONS(1280), + [anon_sym_default] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1282), + [anon_sym_ref] = ACTIONS(880), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(1284), + [anon_sym_AMP] = ACTIONS(1286), + [sym_mutable_specifier] = ACTIONS(982), + [anon_sym_DOT_DOT] = ACTIONS(984), + [anon_sym_DASH] = ACTIONS(894), + [sym_integer_literal] = ACTIONS(896), + [aux_sym_string_literal_token1] = ACTIONS(898), + [sym_char_literal] = ACTIONS(896), + [anon_sym_true] = ACTIONS(900), + [anon_sym_false] = ACTIONS(900), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1288), + [sym_super] = ACTIONS(1288), + [sym_crate] = ACTIONS(1288), + [sym_metavariable] = ACTIONS(1290), + [sym_grit_metavariable] = ACTIONS(986), + [sym_raw_string_literal] = ACTIONS(896), + [sym_float_literal] = ACTIONS(896), [sym_block_comment] = ACTIONS(3), }, [634] = { - [sym__primitive_identifier] = ACTIONS(2810), - [anon_sym_LPAREN] = ACTIONS(2812), - [anon_sym_RPAREN] = ACTIONS(2812), - [anon_sym_LBRACE] = ACTIONS(2812), - [anon_sym_RBRACE] = ACTIONS(2812), - [anon_sym_LBRACK] = ACTIONS(2812), - [anon_sym_RBRACK] = ACTIONS(2812), - [anon_sym_DOLLAR] = ACTIONS(2810), - [aux_sym__non_special_token_token1] = ACTIONS(2810), - [anon_sym_SQUOTE] = ACTIONS(2810), - [anon_sym_as] = ACTIONS(2810), - [anon_sym_async] = ACTIONS(2810), - [anon_sym_await] = ACTIONS(2810), - [anon_sym_break] = ACTIONS(2810), - [anon_sym_const] = ACTIONS(2810), - [anon_sym_continue] = ACTIONS(2810), - [anon_sym_default] = ACTIONS(2810), - [anon_sym_enum] = ACTIONS(2810), - [anon_sym_fn] = ACTIONS(2810), - [anon_sym_for] = ACTIONS(2810), - [anon_sym_if] = ACTIONS(2810), - [anon_sym_impl] = ACTIONS(2810), - [anon_sym_let] = ACTIONS(2810), - [anon_sym_loop] = ACTIONS(2810), - [anon_sym_match] = ACTIONS(2810), - [anon_sym_mod] = ACTIONS(2810), - [anon_sym_pub] = ACTIONS(2810), - [anon_sym_return] = ACTIONS(2810), - [anon_sym_static] = ACTIONS(2810), - [anon_sym_struct] = ACTIONS(2810), - [anon_sym_trait] = ACTIONS(2810), - [anon_sym_type] = ACTIONS(2810), - [anon_sym_union] = ACTIONS(2810), - [anon_sym_unsafe] = ACTIONS(2810), - [anon_sym_use] = ACTIONS(2810), - [anon_sym_where] = ACTIONS(2810), - [anon_sym_while] = ACTIONS(2810), - [sym_mutable_specifier] = ACTIONS(2810), - [sym_integer_literal] = ACTIONS(2812), - [aux_sym_string_literal_token1] = ACTIONS(2812), - [sym_char_literal] = ACTIONS(2812), - [anon_sym_true] = ACTIONS(2810), - [anon_sym_false] = ACTIONS(2810), - [anon_sym_u8] = ACTIONS(2810), - [anon_sym_i8] = ACTIONS(2810), - [anon_sym_u16] = ACTIONS(2810), - [anon_sym_i16] = ACTIONS(2810), - [anon_sym_u32] = ACTIONS(2810), - [anon_sym_i32] = ACTIONS(2810), - [anon_sym_u64] = ACTIONS(2810), - [anon_sym_i64] = ACTIONS(2810), - [anon_sym_u128] = ACTIONS(2810), - [anon_sym_i128] = ACTIONS(2810), - [anon_sym_isize] = ACTIONS(2810), - [anon_sym_usize] = ACTIONS(2810), - [anon_sym_f32] = ACTIONS(2810), - [anon_sym_f64] = ACTIONS(2810), - [anon_sym_bool] = ACTIONS(2810), - [anon_sym_str] = ACTIONS(2810), - [anon_sym_char] = ACTIONS(2810), - [sym_line_comment] = ACTIONS(1172), - [sym__raw_identifier] = ACTIONS(2812), - [sym_self] = ACTIONS(2810), - [sym_super] = ACTIONS(2810), - [sym_crate] = ACTIONS(2810), - [sym_metavariable] = ACTIONS(2812), - [sym_grit_metavariable] = ACTIONS(2812), - [sym_raw_string_literal] = ACTIONS(2812), - [sym_float_literal] = ACTIONS(2812), + [sym_function_modifiers] = STATE(2667), + [sym_higher_ranked_trait_bound] = STATE(1690), + [sym_removed_trait_bound] = STATE(1690), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(1697), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(1702), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_QMARK] = ACTIONS(2804), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(2806), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, [635] = { - [sym__primitive_identifier] = ACTIONS(2814), - [anon_sym_LPAREN] = ACTIONS(2816), - [anon_sym_RPAREN] = ACTIONS(2816), - [anon_sym_LBRACE] = ACTIONS(2816), - [anon_sym_RBRACE] = ACTIONS(2816), - [anon_sym_LBRACK] = ACTIONS(2816), - [anon_sym_RBRACK] = ACTIONS(2816), - [anon_sym_DOLLAR] = ACTIONS(2814), - [aux_sym__non_special_token_token1] = ACTIONS(2814), - [anon_sym_SQUOTE] = ACTIONS(2814), - [anon_sym_as] = ACTIONS(2814), - [anon_sym_async] = ACTIONS(2814), - [anon_sym_await] = ACTIONS(2814), - [anon_sym_break] = ACTIONS(2814), - [anon_sym_const] = ACTIONS(2814), - [anon_sym_continue] = ACTIONS(2814), - [anon_sym_default] = ACTIONS(2814), - [anon_sym_enum] = ACTIONS(2814), - [anon_sym_fn] = ACTIONS(2814), - [anon_sym_for] = ACTIONS(2814), - [anon_sym_if] = ACTIONS(2814), - [anon_sym_impl] = ACTIONS(2814), - [anon_sym_let] = ACTIONS(2814), - [anon_sym_loop] = ACTIONS(2814), - [anon_sym_match] = ACTIONS(2814), - [anon_sym_mod] = ACTIONS(2814), - [anon_sym_pub] = ACTIONS(2814), - [anon_sym_return] = ACTIONS(2814), - [anon_sym_static] = ACTIONS(2814), - [anon_sym_struct] = ACTIONS(2814), - [anon_sym_trait] = ACTIONS(2814), - [anon_sym_type] = ACTIONS(2814), - [anon_sym_union] = ACTIONS(2814), - [anon_sym_unsafe] = ACTIONS(2814), - [anon_sym_use] = ACTIONS(2814), - [anon_sym_where] = ACTIONS(2814), - [anon_sym_while] = ACTIONS(2814), - [sym_mutable_specifier] = ACTIONS(2814), - [sym_integer_literal] = ACTIONS(2816), - [aux_sym_string_literal_token1] = ACTIONS(2816), - [sym_char_literal] = ACTIONS(2816), - [anon_sym_true] = ACTIONS(2814), - [anon_sym_false] = ACTIONS(2814), - [anon_sym_u8] = ACTIONS(2814), - [anon_sym_i8] = ACTIONS(2814), - [anon_sym_u16] = ACTIONS(2814), - [anon_sym_i16] = ACTIONS(2814), - [anon_sym_u32] = ACTIONS(2814), - [anon_sym_i32] = ACTIONS(2814), - [anon_sym_u64] = ACTIONS(2814), - [anon_sym_i64] = ACTIONS(2814), - [anon_sym_u128] = ACTIONS(2814), - [anon_sym_i128] = ACTIONS(2814), - [anon_sym_isize] = ACTIONS(2814), - [anon_sym_usize] = ACTIONS(2814), - [anon_sym_f32] = ACTIONS(2814), - [anon_sym_f64] = ACTIONS(2814), - [anon_sym_bool] = ACTIONS(2814), - [anon_sym_str] = ACTIONS(2814), - [anon_sym_char] = ACTIONS(2814), - [sym_line_comment] = ACTIONS(1172), - [sym__raw_identifier] = ACTIONS(2816), - [sym_self] = ACTIONS(2814), - [sym_super] = ACTIONS(2814), - [sym_crate] = ACTIONS(2814), - [sym_metavariable] = ACTIONS(2816), - [sym_grit_metavariable] = ACTIONS(2816), - [sym_raw_string_literal] = ACTIONS(2816), - [sym_float_literal] = ACTIONS(2816), + [sym__primitive_identifier] = ACTIONS(2812), + [anon_sym_LPAREN] = ACTIONS(2814), + [anon_sym_RPAREN] = ACTIONS(2814), + [anon_sym_LBRACE] = ACTIONS(2814), + [anon_sym_RBRACE] = ACTIONS(2814), + [anon_sym_LBRACK] = ACTIONS(2814), + [anon_sym_RBRACK] = ACTIONS(2814), + [anon_sym_DOLLAR] = ACTIONS(2812), + [aux_sym__non_special_token_token1] = ACTIONS(2812), + [anon_sym_SQUOTE] = ACTIONS(2812), + [anon_sym_as] = ACTIONS(2812), + [anon_sym_async] = ACTIONS(2812), + [anon_sym_await] = ACTIONS(2812), + [anon_sym_break] = ACTIONS(2812), + [anon_sym_const] = ACTIONS(2812), + [anon_sym_continue] = ACTIONS(2812), + [anon_sym_default] = ACTIONS(2812), + [anon_sym_enum] = ACTIONS(2812), + [anon_sym_fn] = ACTIONS(2812), + [anon_sym_for] = ACTIONS(2812), + [anon_sym_if] = ACTIONS(2812), + [anon_sym_impl] = ACTIONS(2812), + [anon_sym_let] = ACTIONS(2812), + [anon_sym_loop] = ACTIONS(2812), + [anon_sym_match] = ACTIONS(2812), + [anon_sym_mod] = ACTIONS(2812), + [anon_sym_pub] = ACTIONS(2812), + [anon_sym_return] = ACTIONS(2812), + [anon_sym_static] = ACTIONS(2812), + [anon_sym_struct] = ACTIONS(2812), + [anon_sym_trait] = ACTIONS(2812), + [anon_sym_type] = ACTIONS(2812), + [anon_sym_union] = ACTIONS(2812), + [anon_sym_unsafe] = ACTIONS(2812), + [anon_sym_use] = ACTIONS(2812), + [anon_sym_where] = ACTIONS(2812), + [anon_sym_while] = ACTIONS(2812), + [sym_mutable_specifier] = ACTIONS(2812), + [sym_integer_literal] = ACTIONS(2814), + [aux_sym_string_literal_token1] = ACTIONS(2814), + [sym_char_literal] = ACTIONS(2814), + [anon_sym_true] = ACTIONS(2812), + [anon_sym_false] = ACTIONS(2812), + [anon_sym_u8] = ACTIONS(2812), + [anon_sym_i8] = ACTIONS(2812), + [anon_sym_u16] = ACTIONS(2812), + [anon_sym_i16] = ACTIONS(2812), + [anon_sym_u32] = ACTIONS(2812), + [anon_sym_i32] = ACTIONS(2812), + [anon_sym_u64] = ACTIONS(2812), + [anon_sym_i64] = ACTIONS(2812), + [anon_sym_u128] = ACTIONS(2812), + [anon_sym_i128] = ACTIONS(2812), + [anon_sym_isize] = ACTIONS(2812), + [anon_sym_usize] = ACTIONS(2812), + [anon_sym_f32] = ACTIONS(2812), + [anon_sym_f64] = ACTIONS(2812), + [anon_sym_bool] = ACTIONS(2812), + [anon_sym_str] = ACTIONS(2812), + [anon_sym_char] = ACTIONS(2812), + [sym_line_comment] = ACTIONS(1112), + [sym__raw_identifier] = ACTIONS(2814), + [sym_self] = ACTIONS(2812), + [sym_super] = ACTIONS(2812), + [sym_crate] = ACTIONS(2812), + [sym_metavariable] = ACTIONS(2814), + [sym_grit_metavariable] = ACTIONS(2814), + [sym_raw_string_literal] = ACTIONS(2814), + [sym_float_literal] = ACTIONS(2814), [sym_block_comment] = ACTIONS(3), }, [636] = { - [sym__primitive_identifier] = ACTIONS(2818), - [anon_sym_LPAREN] = ACTIONS(2820), - [anon_sym_RPAREN] = ACTIONS(2820), - [anon_sym_LBRACE] = ACTIONS(2820), - [anon_sym_RBRACE] = ACTIONS(2820), - [anon_sym_LBRACK] = ACTIONS(2820), - [anon_sym_RBRACK] = ACTIONS(2820), - [anon_sym_DOLLAR] = ACTIONS(2818), - [aux_sym__non_special_token_token1] = ACTIONS(2818), - [anon_sym_SQUOTE] = ACTIONS(2818), - [anon_sym_as] = ACTIONS(2818), - [anon_sym_async] = ACTIONS(2818), - [anon_sym_await] = ACTIONS(2818), - [anon_sym_break] = ACTIONS(2818), - [anon_sym_const] = ACTIONS(2818), - [anon_sym_continue] = ACTIONS(2818), - [anon_sym_default] = ACTIONS(2818), - [anon_sym_enum] = ACTIONS(2818), - [anon_sym_fn] = ACTIONS(2818), - [anon_sym_for] = ACTIONS(2818), - [anon_sym_if] = ACTIONS(2818), - [anon_sym_impl] = ACTIONS(2818), - [anon_sym_let] = ACTIONS(2818), - [anon_sym_loop] = ACTIONS(2818), - [anon_sym_match] = ACTIONS(2818), - [anon_sym_mod] = ACTIONS(2818), - [anon_sym_pub] = ACTIONS(2818), - [anon_sym_return] = ACTIONS(2818), - [anon_sym_static] = ACTIONS(2818), - [anon_sym_struct] = ACTIONS(2818), - [anon_sym_trait] = ACTIONS(2818), - [anon_sym_type] = ACTIONS(2818), - [anon_sym_union] = ACTIONS(2818), - [anon_sym_unsafe] = ACTIONS(2818), - [anon_sym_use] = ACTIONS(2818), - [anon_sym_where] = ACTIONS(2818), - [anon_sym_while] = ACTIONS(2818), - [sym_mutable_specifier] = ACTIONS(2818), - [sym_integer_literal] = ACTIONS(2820), - [aux_sym_string_literal_token1] = ACTIONS(2820), - [sym_char_literal] = ACTIONS(2820), - [anon_sym_true] = ACTIONS(2818), - [anon_sym_false] = ACTIONS(2818), - [anon_sym_u8] = ACTIONS(2818), - [anon_sym_i8] = ACTIONS(2818), - [anon_sym_u16] = ACTIONS(2818), - [anon_sym_i16] = ACTIONS(2818), - [anon_sym_u32] = ACTIONS(2818), - [anon_sym_i32] = ACTIONS(2818), - [anon_sym_u64] = ACTIONS(2818), - [anon_sym_i64] = ACTIONS(2818), - [anon_sym_u128] = ACTIONS(2818), - [anon_sym_i128] = ACTIONS(2818), - [anon_sym_isize] = ACTIONS(2818), - [anon_sym_usize] = ACTIONS(2818), - [anon_sym_f32] = ACTIONS(2818), - [anon_sym_f64] = ACTIONS(2818), - [anon_sym_bool] = ACTIONS(2818), - [anon_sym_str] = ACTIONS(2818), - [anon_sym_char] = ACTIONS(2818), - [sym_line_comment] = ACTIONS(1172), - [sym__raw_identifier] = ACTIONS(2820), - [sym_self] = ACTIONS(2818), - [sym_super] = ACTIONS(2818), - [sym_crate] = ACTIONS(2818), - [sym_metavariable] = ACTIONS(2820), - [sym_grit_metavariable] = ACTIONS(2820), - [sym_raw_string_literal] = ACTIONS(2820), - [sym_float_literal] = ACTIONS(2820), + [sym__primitive_identifier] = ACTIONS(2816), + [anon_sym_LPAREN] = ACTIONS(2818), + [anon_sym_RPAREN] = ACTIONS(2818), + [anon_sym_LBRACE] = ACTIONS(2818), + [anon_sym_RBRACE] = ACTIONS(2818), + [anon_sym_LBRACK] = ACTIONS(2818), + [anon_sym_RBRACK] = ACTIONS(2818), + [anon_sym_DOLLAR] = ACTIONS(2816), + [aux_sym__non_special_token_token1] = ACTIONS(2816), + [anon_sym_SQUOTE] = ACTIONS(2816), + [anon_sym_as] = ACTIONS(2816), + [anon_sym_async] = ACTIONS(2816), + [anon_sym_await] = ACTIONS(2816), + [anon_sym_break] = ACTIONS(2816), + [anon_sym_const] = ACTIONS(2816), + [anon_sym_continue] = ACTIONS(2816), + [anon_sym_default] = ACTIONS(2816), + [anon_sym_enum] = ACTIONS(2816), + [anon_sym_fn] = ACTIONS(2816), + [anon_sym_for] = ACTIONS(2816), + [anon_sym_if] = ACTIONS(2816), + [anon_sym_impl] = ACTIONS(2816), + [anon_sym_let] = ACTIONS(2816), + [anon_sym_loop] = ACTIONS(2816), + [anon_sym_match] = ACTIONS(2816), + [anon_sym_mod] = ACTIONS(2816), + [anon_sym_pub] = ACTIONS(2816), + [anon_sym_return] = ACTIONS(2816), + [anon_sym_static] = ACTIONS(2816), + [anon_sym_struct] = ACTIONS(2816), + [anon_sym_trait] = ACTIONS(2816), + [anon_sym_type] = ACTIONS(2816), + [anon_sym_union] = ACTIONS(2816), + [anon_sym_unsafe] = ACTIONS(2816), + [anon_sym_use] = ACTIONS(2816), + [anon_sym_where] = ACTIONS(2816), + [anon_sym_while] = ACTIONS(2816), + [sym_mutable_specifier] = ACTIONS(2816), + [sym_integer_literal] = ACTIONS(2818), + [aux_sym_string_literal_token1] = ACTIONS(2818), + [sym_char_literal] = ACTIONS(2818), + [anon_sym_true] = ACTIONS(2816), + [anon_sym_false] = ACTIONS(2816), + [anon_sym_u8] = ACTIONS(2816), + [anon_sym_i8] = ACTIONS(2816), + [anon_sym_u16] = ACTIONS(2816), + [anon_sym_i16] = ACTIONS(2816), + [anon_sym_u32] = ACTIONS(2816), + [anon_sym_i32] = ACTIONS(2816), + [anon_sym_u64] = ACTIONS(2816), + [anon_sym_i64] = ACTIONS(2816), + [anon_sym_u128] = ACTIONS(2816), + [anon_sym_i128] = ACTIONS(2816), + [anon_sym_isize] = ACTIONS(2816), + [anon_sym_usize] = ACTIONS(2816), + [anon_sym_f32] = ACTIONS(2816), + [anon_sym_f64] = ACTIONS(2816), + [anon_sym_bool] = ACTIONS(2816), + [anon_sym_str] = ACTIONS(2816), + [anon_sym_char] = ACTIONS(2816), + [sym_line_comment] = ACTIONS(1112), + [sym__raw_identifier] = ACTIONS(2818), + [sym_self] = ACTIONS(2816), + [sym_super] = ACTIONS(2816), + [sym_crate] = ACTIONS(2816), + [sym_metavariable] = ACTIONS(2818), + [sym_grit_metavariable] = ACTIONS(2818), + [sym_raw_string_literal] = ACTIONS(2818), + [sym_float_literal] = ACTIONS(2818), [sym_block_comment] = ACTIONS(3), }, [637] = { - [sym__primitive_identifier] = ACTIONS(2822), - [anon_sym_LPAREN] = ACTIONS(2824), - [anon_sym_RPAREN] = ACTIONS(2824), - [anon_sym_LBRACE] = ACTIONS(2824), - [anon_sym_RBRACE] = ACTIONS(2824), - [anon_sym_LBRACK] = ACTIONS(2824), - [anon_sym_RBRACK] = ACTIONS(2824), - [anon_sym_DOLLAR] = ACTIONS(2822), - [aux_sym__non_special_token_token1] = ACTIONS(2822), - [anon_sym_SQUOTE] = ACTIONS(2822), - [anon_sym_as] = ACTIONS(2822), - [anon_sym_async] = ACTIONS(2822), - [anon_sym_await] = ACTIONS(2822), - [anon_sym_break] = ACTIONS(2822), - [anon_sym_const] = ACTIONS(2822), - [anon_sym_continue] = ACTIONS(2822), - [anon_sym_default] = ACTIONS(2822), - [anon_sym_enum] = ACTIONS(2822), - [anon_sym_fn] = ACTIONS(2822), - [anon_sym_for] = ACTIONS(2822), - [anon_sym_if] = ACTIONS(2822), - [anon_sym_impl] = ACTIONS(2822), - [anon_sym_let] = ACTIONS(2822), - [anon_sym_loop] = ACTIONS(2822), - [anon_sym_match] = ACTIONS(2822), - [anon_sym_mod] = ACTIONS(2822), - [anon_sym_pub] = ACTIONS(2822), - [anon_sym_return] = ACTIONS(2822), - [anon_sym_static] = ACTIONS(2822), - [anon_sym_struct] = ACTIONS(2822), - [anon_sym_trait] = ACTIONS(2822), - [anon_sym_type] = ACTIONS(2822), - [anon_sym_union] = ACTIONS(2822), - [anon_sym_unsafe] = ACTIONS(2822), - [anon_sym_use] = ACTIONS(2822), - [anon_sym_where] = ACTIONS(2822), - [anon_sym_while] = ACTIONS(2822), - [sym_mutable_specifier] = ACTIONS(2822), - [sym_integer_literal] = ACTIONS(2824), - [aux_sym_string_literal_token1] = ACTIONS(2824), - [sym_char_literal] = ACTIONS(2824), - [anon_sym_true] = ACTIONS(2822), - [anon_sym_false] = ACTIONS(2822), - [anon_sym_u8] = ACTIONS(2822), - [anon_sym_i8] = ACTIONS(2822), - [anon_sym_u16] = ACTIONS(2822), - [anon_sym_i16] = ACTIONS(2822), - [anon_sym_u32] = ACTIONS(2822), - [anon_sym_i32] = ACTIONS(2822), - [anon_sym_u64] = ACTIONS(2822), - [anon_sym_i64] = ACTIONS(2822), - [anon_sym_u128] = ACTIONS(2822), - [anon_sym_i128] = ACTIONS(2822), - [anon_sym_isize] = ACTIONS(2822), - [anon_sym_usize] = ACTIONS(2822), - [anon_sym_f32] = ACTIONS(2822), - [anon_sym_f64] = ACTIONS(2822), - [anon_sym_bool] = ACTIONS(2822), - [anon_sym_str] = ACTIONS(2822), - [anon_sym_char] = ACTIONS(2822), - [sym_line_comment] = ACTIONS(1172), - [sym__raw_identifier] = ACTIONS(2824), - [sym_self] = ACTIONS(2822), - [sym_super] = ACTIONS(2822), - [sym_crate] = ACTIONS(2822), - [sym_metavariable] = ACTIONS(2824), - [sym_grit_metavariable] = ACTIONS(2824), - [sym_raw_string_literal] = ACTIONS(2824), - [sym_float_literal] = ACTIONS(2824), + [sym__primitive_identifier] = ACTIONS(2820), + [anon_sym_LPAREN] = ACTIONS(2822), + [anon_sym_RPAREN] = ACTIONS(2822), + [anon_sym_LBRACE] = ACTIONS(2822), + [anon_sym_RBRACE] = ACTIONS(2822), + [anon_sym_LBRACK] = ACTIONS(2822), + [anon_sym_RBRACK] = ACTIONS(2822), + [anon_sym_DOLLAR] = ACTIONS(2820), + [aux_sym__non_special_token_token1] = ACTIONS(2820), + [anon_sym_SQUOTE] = ACTIONS(2820), + [anon_sym_as] = ACTIONS(2820), + [anon_sym_async] = ACTIONS(2820), + [anon_sym_await] = ACTIONS(2820), + [anon_sym_break] = ACTIONS(2820), + [anon_sym_const] = ACTIONS(2820), + [anon_sym_continue] = ACTIONS(2820), + [anon_sym_default] = ACTIONS(2820), + [anon_sym_enum] = ACTIONS(2820), + [anon_sym_fn] = ACTIONS(2820), + [anon_sym_for] = ACTIONS(2820), + [anon_sym_if] = ACTIONS(2820), + [anon_sym_impl] = ACTIONS(2820), + [anon_sym_let] = ACTIONS(2820), + [anon_sym_loop] = ACTIONS(2820), + [anon_sym_match] = ACTIONS(2820), + [anon_sym_mod] = ACTIONS(2820), + [anon_sym_pub] = ACTIONS(2820), + [anon_sym_return] = ACTIONS(2820), + [anon_sym_static] = ACTIONS(2820), + [anon_sym_struct] = ACTIONS(2820), + [anon_sym_trait] = ACTIONS(2820), + [anon_sym_type] = ACTIONS(2820), + [anon_sym_union] = ACTIONS(2820), + [anon_sym_unsafe] = ACTIONS(2820), + [anon_sym_use] = ACTIONS(2820), + [anon_sym_where] = ACTIONS(2820), + [anon_sym_while] = ACTIONS(2820), + [sym_mutable_specifier] = ACTIONS(2820), + [sym_integer_literal] = ACTIONS(2822), + [aux_sym_string_literal_token1] = ACTIONS(2822), + [sym_char_literal] = ACTIONS(2822), + [anon_sym_true] = ACTIONS(2820), + [anon_sym_false] = ACTIONS(2820), + [anon_sym_u8] = ACTIONS(2820), + [anon_sym_i8] = ACTIONS(2820), + [anon_sym_u16] = ACTIONS(2820), + [anon_sym_i16] = ACTIONS(2820), + [anon_sym_u32] = ACTIONS(2820), + [anon_sym_i32] = ACTIONS(2820), + [anon_sym_u64] = ACTIONS(2820), + [anon_sym_i64] = ACTIONS(2820), + [anon_sym_u128] = ACTIONS(2820), + [anon_sym_i128] = ACTIONS(2820), + [anon_sym_isize] = ACTIONS(2820), + [anon_sym_usize] = ACTIONS(2820), + [anon_sym_f32] = ACTIONS(2820), + [anon_sym_f64] = ACTIONS(2820), + [anon_sym_bool] = ACTIONS(2820), + [anon_sym_str] = ACTIONS(2820), + [anon_sym_char] = ACTIONS(2820), + [sym_line_comment] = ACTIONS(1112), + [sym__raw_identifier] = ACTIONS(2822), + [sym_self] = ACTIONS(2820), + [sym_super] = ACTIONS(2820), + [sym_crate] = ACTIONS(2820), + [sym_metavariable] = ACTIONS(2822), + [sym_grit_metavariable] = ACTIONS(2822), + [sym_raw_string_literal] = ACTIONS(2822), + [sym_float_literal] = ACTIONS(2822), [sym_block_comment] = ACTIONS(3), }, [638] = { - [sym__primitive_identifier] = ACTIONS(2826), - [anon_sym_LPAREN] = ACTIONS(2828), - [anon_sym_RPAREN] = ACTIONS(2828), - [anon_sym_LBRACE] = ACTIONS(2828), - [anon_sym_RBRACE] = ACTIONS(2828), - [anon_sym_LBRACK] = ACTIONS(2828), - [anon_sym_RBRACK] = ACTIONS(2828), - [anon_sym_DOLLAR] = ACTIONS(2826), - [aux_sym__non_special_token_token1] = ACTIONS(2826), - [anon_sym_SQUOTE] = ACTIONS(2826), - [anon_sym_as] = ACTIONS(2826), - [anon_sym_async] = ACTIONS(2826), - [anon_sym_await] = ACTIONS(2826), - [anon_sym_break] = ACTIONS(2826), - [anon_sym_const] = ACTIONS(2826), - [anon_sym_continue] = ACTIONS(2826), - [anon_sym_default] = ACTIONS(2826), - [anon_sym_enum] = ACTIONS(2826), - [anon_sym_fn] = ACTIONS(2826), - [anon_sym_for] = ACTIONS(2826), - [anon_sym_if] = ACTIONS(2826), - [anon_sym_impl] = ACTIONS(2826), - [anon_sym_let] = ACTIONS(2826), - [anon_sym_loop] = ACTIONS(2826), - [anon_sym_match] = ACTIONS(2826), - [anon_sym_mod] = ACTIONS(2826), - [anon_sym_pub] = ACTIONS(2826), - [anon_sym_return] = ACTIONS(2826), - [anon_sym_static] = ACTIONS(2826), - [anon_sym_struct] = ACTIONS(2826), - [anon_sym_trait] = ACTIONS(2826), - [anon_sym_type] = ACTIONS(2826), - [anon_sym_union] = ACTIONS(2826), - [anon_sym_unsafe] = ACTIONS(2826), - [anon_sym_use] = ACTIONS(2826), - [anon_sym_where] = ACTIONS(2826), - [anon_sym_while] = ACTIONS(2826), - [sym_mutable_specifier] = ACTIONS(2826), - [sym_integer_literal] = ACTIONS(2828), - [aux_sym_string_literal_token1] = ACTIONS(2828), - [sym_char_literal] = ACTIONS(2828), - [anon_sym_true] = ACTIONS(2826), - [anon_sym_false] = ACTIONS(2826), - [anon_sym_u8] = ACTIONS(2826), - [anon_sym_i8] = ACTIONS(2826), - [anon_sym_u16] = ACTIONS(2826), - [anon_sym_i16] = ACTIONS(2826), - [anon_sym_u32] = ACTIONS(2826), - [anon_sym_i32] = ACTIONS(2826), - [anon_sym_u64] = ACTIONS(2826), - [anon_sym_i64] = ACTIONS(2826), - [anon_sym_u128] = ACTIONS(2826), - [anon_sym_i128] = ACTIONS(2826), - [anon_sym_isize] = ACTIONS(2826), - [anon_sym_usize] = ACTIONS(2826), - [anon_sym_f32] = ACTIONS(2826), - [anon_sym_f64] = ACTIONS(2826), - [anon_sym_bool] = ACTIONS(2826), - [anon_sym_str] = ACTIONS(2826), - [anon_sym_char] = ACTIONS(2826), - [sym_line_comment] = ACTIONS(1172), - [sym__raw_identifier] = ACTIONS(2828), - [sym_self] = ACTIONS(2826), - [sym_super] = ACTIONS(2826), - [sym_crate] = ACTIONS(2826), - [sym_metavariable] = ACTIONS(2828), - [sym_grit_metavariable] = ACTIONS(2828), - [sym_raw_string_literal] = ACTIONS(2828), - [sym_float_literal] = ACTIONS(2828), + [sym__primitive_identifier] = ACTIONS(2824), + [anon_sym_LPAREN] = ACTIONS(2826), + [anon_sym_RPAREN] = ACTIONS(2826), + [anon_sym_LBRACE] = ACTIONS(2826), + [anon_sym_RBRACE] = ACTIONS(2826), + [anon_sym_LBRACK] = ACTIONS(2826), + [anon_sym_RBRACK] = ACTIONS(2826), + [anon_sym_DOLLAR] = ACTIONS(2824), + [aux_sym__non_special_token_token1] = ACTIONS(2824), + [anon_sym_SQUOTE] = ACTIONS(2824), + [anon_sym_as] = ACTIONS(2824), + [anon_sym_async] = ACTIONS(2824), + [anon_sym_await] = ACTIONS(2824), + [anon_sym_break] = ACTIONS(2824), + [anon_sym_const] = ACTIONS(2824), + [anon_sym_continue] = ACTIONS(2824), + [anon_sym_default] = ACTIONS(2824), + [anon_sym_enum] = ACTIONS(2824), + [anon_sym_fn] = ACTIONS(2824), + [anon_sym_for] = ACTIONS(2824), + [anon_sym_if] = ACTIONS(2824), + [anon_sym_impl] = ACTIONS(2824), + [anon_sym_let] = ACTIONS(2824), + [anon_sym_loop] = ACTIONS(2824), + [anon_sym_match] = ACTIONS(2824), + [anon_sym_mod] = ACTIONS(2824), + [anon_sym_pub] = ACTIONS(2824), + [anon_sym_return] = ACTIONS(2824), + [anon_sym_static] = ACTIONS(2824), + [anon_sym_struct] = ACTIONS(2824), + [anon_sym_trait] = ACTIONS(2824), + [anon_sym_type] = ACTIONS(2824), + [anon_sym_union] = ACTIONS(2824), + [anon_sym_unsafe] = ACTIONS(2824), + [anon_sym_use] = ACTIONS(2824), + [anon_sym_where] = ACTIONS(2824), + [anon_sym_while] = ACTIONS(2824), + [sym_mutable_specifier] = ACTIONS(2824), + [sym_integer_literal] = ACTIONS(2826), + [aux_sym_string_literal_token1] = ACTIONS(2826), + [sym_char_literal] = ACTIONS(2826), + [anon_sym_true] = ACTIONS(2824), + [anon_sym_false] = ACTIONS(2824), + [anon_sym_u8] = ACTIONS(2824), + [anon_sym_i8] = ACTIONS(2824), + [anon_sym_u16] = ACTIONS(2824), + [anon_sym_i16] = ACTIONS(2824), + [anon_sym_u32] = ACTIONS(2824), + [anon_sym_i32] = ACTIONS(2824), + [anon_sym_u64] = ACTIONS(2824), + [anon_sym_i64] = ACTIONS(2824), + [anon_sym_u128] = ACTIONS(2824), + [anon_sym_i128] = ACTIONS(2824), + [anon_sym_isize] = ACTIONS(2824), + [anon_sym_usize] = ACTIONS(2824), + [anon_sym_f32] = ACTIONS(2824), + [anon_sym_f64] = ACTIONS(2824), + [anon_sym_bool] = ACTIONS(2824), + [anon_sym_str] = ACTIONS(2824), + [anon_sym_char] = ACTIONS(2824), + [sym_line_comment] = ACTIONS(1112), + [sym__raw_identifier] = ACTIONS(2826), + [sym_self] = ACTIONS(2824), + [sym_super] = ACTIONS(2824), + [sym_crate] = ACTIONS(2824), + [sym_metavariable] = ACTIONS(2826), + [sym_grit_metavariable] = ACTIONS(2826), + [sym_raw_string_literal] = ACTIONS(2826), + [sym_float_literal] = ACTIONS(2826), [sym_block_comment] = ACTIONS(3), }, [639] = { - [sym__primitive_identifier] = ACTIONS(2830), - [anon_sym_LPAREN] = ACTIONS(2832), - [anon_sym_RPAREN] = ACTIONS(2832), - [anon_sym_LBRACE] = ACTIONS(2832), - [anon_sym_RBRACE] = ACTIONS(2832), - [anon_sym_LBRACK] = ACTIONS(2832), - [anon_sym_RBRACK] = ACTIONS(2832), - [anon_sym_DOLLAR] = ACTIONS(2830), - [aux_sym__non_special_token_token1] = ACTIONS(2830), - [anon_sym_SQUOTE] = ACTIONS(2830), - [anon_sym_as] = ACTIONS(2830), - [anon_sym_async] = ACTIONS(2830), - [anon_sym_await] = ACTIONS(2830), - [anon_sym_break] = ACTIONS(2830), - [anon_sym_const] = ACTIONS(2830), - [anon_sym_continue] = ACTIONS(2830), - [anon_sym_default] = ACTIONS(2830), - [anon_sym_enum] = ACTIONS(2830), - [anon_sym_fn] = ACTIONS(2830), - [anon_sym_for] = ACTIONS(2830), - [anon_sym_if] = ACTIONS(2830), - [anon_sym_impl] = ACTIONS(2830), - [anon_sym_let] = ACTIONS(2830), - [anon_sym_loop] = ACTIONS(2830), - [anon_sym_match] = ACTIONS(2830), - [anon_sym_mod] = ACTIONS(2830), - [anon_sym_pub] = ACTIONS(2830), - [anon_sym_return] = ACTIONS(2830), - [anon_sym_static] = ACTIONS(2830), - [anon_sym_struct] = ACTIONS(2830), - [anon_sym_trait] = ACTIONS(2830), - [anon_sym_type] = ACTIONS(2830), - [anon_sym_union] = ACTIONS(2830), - [anon_sym_unsafe] = ACTIONS(2830), - [anon_sym_use] = ACTIONS(2830), - [anon_sym_where] = ACTIONS(2830), - [anon_sym_while] = ACTIONS(2830), - [sym_mutable_specifier] = ACTIONS(2830), - [sym_integer_literal] = ACTIONS(2832), - [aux_sym_string_literal_token1] = ACTIONS(2832), - [sym_char_literal] = ACTIONS(2832), - [anon_sym_true] = ACTIONS(2830), - [anon_sym_false] = ACTIONS(2830), - [anon_sym_u8] = ACTIONS(2830), - [anon_sym_i8] = ACTIONS(2830), - [anon_sym_u16] = ACTIONS(2830), - [anon_sym_i16] = ACTIONS(2830), - [anon_sym_u32] = ACTIONS(2830), - [anon_sym_i32] = ACTIONS(2830), - [anon_sym_u64] = ACTIONS(2830), - [anon_sym_i64] = ACTIONS(2830), - [anon_sym_u128] = ACTIONS(2830), - [anon_sym_i128] = ACTIONS(2830), - [anon_sym_isize] = ACTIONS(2830), - [anon_sym_usize] = ACTIONS(2830), - [anon_sym_f32] = ACTIONS(2830), - [anon_sym_f64] = ACTIONS(2830), - [anon_sym_bool] = ACTIONS(2830), - [anon_sym_str] = ACTIONS(2830), - [anon_sym_char] = ACTIONS(2830), - [sym_line_comment] = ACTIONS(1172), - [sym__raw_identifier] = ACTIONS(2832), - [sym_self] = ACTIONS(2830), - [sym_super] = ACTIONS(2830), - [sym_crate] = ACTIONS(2830), - [sym_metavariable] = ACTIONS(2832), - [sym_grit_metavariable] = ACTIONS(2832), - [sym_raw_string_literal] = ACTIONS(2832), - [sym_float_literal] = ACTIONS(2832), + [sym__primitive_identifier] = ACTIONS(2828), + [anon_sym_LPAREN] = ACTIONS(2830), + [anon_sym_RPAREN] = ACTIONS(2830), + [anon_sym_LBRACE] = ACTIONS(2830), + [anon_sym_RBRACE] = ACTIONS(2830), + [anon_sym_LBRACK] = ACTIONS(2830), + [anon_sym_RBRACK] = ACTIONS(2830), + [anon_sym_DOLLAR] = ACTIONS(2828), + [aux_sym__non_special_token_token1] = ACTIONS(2828), + [anon_sym_SQUOTE] = ACTIONS(2828), + [anon_sym_as] = ACTIONS(2828), + [anon_sym_async] = ACTIONS(2828), + [anon_sym_await] = ACTIONS(2828), + [anon_sym_break] = ACTIONS(2828), + [anon_sym_const] = ACTIONS(2828), + [anon_sym_continue] = ACTIONS(2828), + [anon_sym_default] = ACTIONS(2828), + [anon_sym_enum] = ACTIONS(2828), + [anon_sym_fn] = ACTIONS(2828), + [anon_sym_for] = ACTIONS(2828), + [anon_sym_if] = ACTIONS(2828), + [anon_sym_impl] = ACTIONS(2828), + [anon_sym_let] = ACTIONS(2828), + [anon_sym_loop] = ACTIONS(2828), + [anon_sym_match] = ACTIONS(2828), + [anon_sym_mod] = ACTIONS(2828), + [anon_sym_pub] = ACTIONS(2828), + [anon_sym_return] = ACTIONS(2828), + [anon_sym_static] = ACTIONS(2828), + [anon_sym_struct] = ACTIONS(2828), + [anon_sym_trait] = ACTIONS(2828), + [anon_sym_type] = ACTIONS(2828), + [anon_sym_union] = ACTIONS(2828), + [anon_sym_unsafe] = ACTIONS(2828), + [anon_sym_use] = ACTIONS(2828), + [anon_sym_where] = ACTIONS(2828), + [anon_sym_while] = ACTIONS(2828), + [sym_mutable_specifier] = ACTIONS(2828), + [sym_integer_literal] = ACTIONS(2830), + [aux_sym_string_literal_token1] = ACTIONS(2830), + [sym_char_literal] = ACTIONS(2830), + [anon_sym_true] = ACTIONS(2828), + [anon_sym_false] = ACTIONS(2828), + [anon_sym_u8] = ACTIONS(2828), + [anon_sym_i8] = ACTIONS(2828), + [anon_sym_u16] = ACTIONS(2828), + [anon_sym_i16] = ACTIONS(2828), + [anon_sym_u32] = ACTIONS(2828), + [anon_sym_i32] = ACTIONS(2828), + [anon_sym_u64] = ACTIONS(2828), + [anon_sym_i64] = ACTIONS(2828), + [anon_sym_u128] = ACTIONS(2828), + [anon_sym_i128] = ACTIONS(2828), + [anon_sym_isize] = ACTIONS(2828), + [anon_sym_usize] = ACTIONS(2828), + [anon_sym_f32] = ACTIONS(2828), + [anon_sym_f64] = ACTIONS(2828), + [anon_sym_bool] = ACTIONS(2828), + [anon_sym_str] = ACTIONS(2828), + [anon_sym_char] = ACTIONS(2828), + [sym_line_comment] = ACTIONS(1112), + [sym__raw_identifier] = ACTIONS(2830), + [sym_self] = ACTIONS(2828), + [sym_super] = ACTIONS(2828), + [sym_crate] = ACTIONS(2828), + [sym_metavariable] = ACTIONS(2830), + [sym_grit_metavariable] = ACTIONS(2830), + [sym_raw_string_literal] = ACTIONS(2830), + [sym_float_literal] = ACTIONS(2830), [sym_block_comment] = ACTIONS(3), }, [640] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(1511), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_PLUS] = ACTIONS(2834), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [sym_mutable_specifier] = ACTIONS(2836), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), - [sym_block_comment] = ACTIONS(3), - }, - [641] = { - [sym_function_modifiers] = STATE(2619), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(1511), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2700), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1278), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(2273), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1833), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1685), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), + [sym_function_modifiers] = STATE(2645), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(1239), + [sym_bracketed_type] = STATE(2673), + [sym_lifetime] = STATE(2638), + [sym_array_type] = STATE(1237), + [sym_for_lifetimes] = STATE(1282), + [sym_function_type] = STATE(1237), + [sym_tuple_type] = STATE(1237), + [sym_unit_type] = STATE(1237), + [sym_generic_type] = STATE(1135), + [sym_generic_type_with_turbofish] = STATE(2674), + [sym_bounded_type] = STATE(1237), + [sym_reference_type] = STATE(1237), + [sym_pointer_type] = STATE(1237), + [sym_empty_type] = STATE(1237), + [sym_abstract_type] = STATE(1237), + [sym_dynamic_type] = STATE(1237), + [sym_macro_invocation] = STATE(1237), + [sym_scoped_identifier] = STATE(2548), + [sym_scoped_type_identifier] = STATE(827), + [sym_primitive_type] = STATE(1116), + [sym_identifier] = STATE(818), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(2832), + [anon_sym_LPAREN] = ACTIONS(2834), + [anon_sym_LBRACK] = ACTIONS(2836), [anon_sym_PLUS] = ACTIONS(2838), [anon_sym_STAR] = ACTIONS(2840), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(2842), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(2844), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(2842), + [anon_sym_fn] = ACTIONS(2844), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(2846), + [anon_sym_union] = ACTIONS(2848), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(2850), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(2846), - [anon_sym_dyn] = ACTIONS(2848), - [sym_mutable_specifier] = ACTIONS(2850), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), - [sym_block_comment] = ACTIONS(3), - }, - [642] = { - [sym__primitive_identifier] = ACTIONS(768), - [anon_sym_LPAREN] = ACTIONS(775), - [anon_sym_RPAREN] = ACTIONS(775), - [anon_sym_LBRACE] = ACTIONS(775), - [anon_sym_RBRACE] = ACTIONS(775), - [anon_sym_LBRACK] = ACTIONS(775), - [anon_sym_RBRACK] = ACTIONS(775), - [anon_sym_DOLLAR] = ACTIONS(768), - [aux_sym__non_special_token_token1] = ACTIONS(768), - [anon_sym_SQUOTE] = ACTIONS(768), - [anon_sym_as] = ACTIONS(768), - [anon_sym_async] = ACTIONS(768), - [anon_sym_await] = ACTIONS(768), - [anon_sym_break] = ACTIONS(768), - [anon_sym_const] = ACTIONS(768), - [anon_sym_continue] = ACTIONS(768), - [anon_sym_default] = ACTIONS(768), - [anon_sym_enum] = ACTIONS(768), - [anon_sym_fn] = ACTIONS(768), - [anon_sym_for] = ACTIONS(768), - [anon_sym_if] = ACTIONS(768), - [anon_sym_impl] = ACTIONS(768), - [anon_sym_let] = ACTIONS(768), - [anon_sym_loop] = ACTIONS(768), - [anon_sym_match] = ACTIONS(768), - [anon_sym_mod] = ACTIONS(768), - [anon_sym_pub] = ACTIONS(768), - [anon_sym_return] = ACTIONS(768), - [anon_sym_static] = ACTIONS(768), - [anon_sym_struct] = ACTIONS(768), - [anon_sym_trait] = ACTIONS(768), - [anon_sym_type] = ACTIONS(768), - [anon_sym_union] = ACTIONS(768), - [anon_sym_unsafe] = ACTIONS(768), - [anon_sym_use] = ACTIONS(768), - [anon_sym_where] = ACTIONS(768), - [anon_sym_while] = ACTIONS(768), - [sym_mutable_specifier] = ACTIONS(768), - [sym_integer_literal] = ACTIONS(775), - [aux_sym_string_literal_token1] = ACTIONS(775), - [sym_char_literal] = ACTIONS(775), - [anon_sym_true] = ACTIONS(768), - [anon_sym_false] = ACTIONS(768), - [anon_sym_u8] = ACTIONS(768), - [anon_sym_i8] = ACTIONS(768), - [anon_sym_u16] = ACTIONS(768), - [anon_sym_i16] = ACTIONS(768), - [anon_sym_u32] = ACTIONS(768), - [anon_sym_i32] = ACTIONS(768), - [anon_sym_u64] = ACTIONS(768), - [anon_sym_i64] = ACTIONS(768), - [anon_sym_u128] = ACTIONS(768), - [anon_sym_i128] = ACTIONS(768), - [anon_sym_isize] = ACTIONS(768), - [anon_sym_usize] = ACTIONS(768), - [anon_sym_f32] = ACTIONS(768), - [anon_sym_f64] = ACTIONS(768), - [anon_sym_bool] = ACTIONS(768), - [anon_sym_str] = ACTIONS(768), - [anon_sym_char] = ACTIONS(768), - [sym_line_comment] = ACTIONS(1172), - [sym__raw_identifier] = ACTIONS(775), - [sym_self] = ACTIONS(768), - [sym_super] = ACTIONS(768), - [sym_crate] = ACTIONS(768), - [sym_metavariable] = ACTIONS(775), - [sym_grit_metavariable] = ACTIONS(775), - [sym_raw_string_literal] = ACTIONS(775), - [sym_float_literal] = ACTIONS(775), - [sym_block_comment] = ACTIONS(3), - }, - [643] = { - [sym__primitive_identifier] = ACTIONS(2852), - [anon_sym_LPAREN] = ACTIONS(2854), - [anon_sym_RPAREN] = ACTIONS(2854), - [anon_sym_LBRACE] = ACTIONS(2854), - [anon_sym_RBRACE] = ACTIONS(2854), - [anon_sym_LBRACK] = ACTIONS(2854), - [anon_sym_RBRACK] = ACTIONS(2854), - [anon_sym_DOLLAR] = ACTIONS(2852), - [aux_sym__non_special_token_token1] = ACTIONS(2852), - [anon_sym_SQUOTE] = ACTIONS(2852), - [anon_sym_as] = ACTIONS(2852), - [anon_sym_async] = ACTIONS(2852), - [anon_sym_await] = ACTIONS(2852), - [anon_sym_break] = ACTIONS(2852), - [anon_sym_const] = ACTIONS(2852), - [anon_sym_continue] = ACTIONS(2852), - [anon_sym_default] = ACTIONS(2852), - [anon_sym_enum] = ACTIONS(2852), - [anon_sym_fn] = ACTIONS(2852), - [anon_sym_for] = ACTIONS(2852), - [anon_sym_if] = ACTIONS(2852), - [anon_sym_impl] = ACTIONS(2852), - [anon_sym_let] = ACTIONS(2852), - [anon_sym_loop] = ACTIONS(2852), - [anon_sym_match] = ACTIONS(2852), - [anon_sym_mod] = ACTIONS(2852), - [anon_sym_pub] = ACTIONS(2852), - [anon_sym_return] = ACTIONS(2852), - [anon_sym_static] = ACTIONS(2852), - [anon_sym_struct] = ACTIONS(2852), - [anon_sym_trait] = ACTIONS(2852), - [anon_sym_type] = ACTIONS(2852), - [anon_sym_union] = ACTIONS(2852), - [anon_sym_unsafe] = ACTIONS(2852), - [anon_sym_use] = ACTIONS(2852), - [anon_sym_where] = ACTIONS(2852), - [anon_sym_while] = ACTIONS(2852), - [sym_mutable_specifier] = ACTIONS(2852), - [sym_integer_literal] = ACTIONS(2854), - [aux_sym_string_literal_token1] = ACTIONS(2854), - [sym_char_literal] = ACTIONS(2854), - [anon_sym_true] = ACTIONS(2852), - [anon_sym_false] = ACTIONS(2852), - [anon_sym_u8] = ACTIONS(2852), - [anon_sym_i8] = ACTIONS(2852), - [anon_sym_u16] = ACTIONS(2852), - [anon_sym_i16] = ACTIONS(2852), - [anon_sym_u32] = ACTIONS(2852), - [anon_sym_i32] = ACTIONS(2852), - [anon_sym_u64] = ACTIONS(2852), - [anon_sym_i64] = ACTIONS(2852), - [anon_sym_u128] = ACTIONS(2852), - [anon_sym_i128] = ACTIONS(2852), - [anon_sym_isize] = ACTIONS(2852), - [anon_sym_usize] = ACTIONS(2852), - [anon_sym_f32] = ACTIONS(2852), - [anon_sym_f64] = ACTIONS(2852), - [anon_sym_bool] = ACTIONS(2852), - [anon_sym_str] = ACTIONS(2852), - [anon_sym_char] = ACTIONS(2852), - [sym_line_comment] = ACTIONS(1172), - [sym__raw_identifier] = ACTIONS(2854), - [sym_self] = ACTIONS(2852), - [sym_super] = ACTIONS(2852), - [sym_crate] = ACTIONS(2852), - [sym_metavariable] = ACTIONS(2854), - [sym_grit_metavariable] = ACTIONS(2854), - [sym_raw_string_literal] = ACTIONS(2854), - [sym_float_literal] = ACTIONS(2854), - [sym_block_comment] = ACTIONS(3), - }, - [644] = { - [sym__primitive_identifier] = ACTIONS(2856), - [anon_sym_LPAREN] = ACTIONS(2858), - [anon_sym_RPAREN] = ACTIONS(2858), - [anon_sym_LBRACE] = ACTIONS(2858), - [anon_sym_RBRACE] = ACTIONS(2858), - [anon_sym_LBRACK] = ACTIONS(2858), - [anon_sym_RBRACK] = ACTIONS(2858), - [anon_sym_DOLLAR] = ACTIONS(2856), - [aux_sym__non_special_token_token1] = ACTIONS(2856), - [anon_sym_SQUOTE] = ACTIONS(2856), - [anon_sym_as] = ACTIONS(2856), - [anon_sym_async] = ACTIONS(2856), - [anon_sym_await] = ACTIONS(2856), - [anon_sym_break] = ACTIONS(2856), - [anon_sym_const] = ACTIONS(2856), - [anon_sym_continue] = ACTIONS(2856), - [anon_sym_default] = ACTIONS(2856), - [anon_sym_enum] = ACTIONS(2856), - [anon_sym_fn] = ACTIONS(2856), - [anon_sym_for] = ACTIONS(2856), - [anon_sym_if] = ACTIONS(2856), - [anon_sym_impl] = ACTIONS(2856), - [anon_sym_let] = ACTIONS(2856), - [anon_sym_loop] = ACTIONS(2856), - [anon_sym_match] = ACTIONS(2856), - [anon_sym_mod] = ACTIONS(2856), - [anon_sym_pub] = ACTIONS(2856), - [anon_sym_return] = ACTIONS(2856), - [anon_sym_static] = ACTIONS(2856), - [anon_sym_struct] = ACTIONS(2856), - [anon_sym_trait] = ACTIONS(2856), - [anon_sym_type] = ACTIONS(2856), - [anon_sym_union] = ACTIONS(2856), - [anon_sym_unsafe] = ACTIONS(2856), - [anon_sym_use] = ACTIONS(2856), - [anon_sym_where] = ACTIONS(2856), - [anon_sym_while] = ACTIONS(2856), - [sym_mutable_specifier] = ACTIONS(2856), - [sym_integer_literal] = ACTIONS(2858), - [aux_sym_string_literal_token1] = ACTIONS(2858), - [sym_char_literal] = ACTIONS(2858), - [anon_sym_true] = ACTIONS(2856), - [anon_sym_false] = ACTIONS(2856), - [anon_sym_u8] = ACTIONS(2856), - [anon_sym_i8] = ACTIONS(2856), - [anon_sym_u16] = ACTIONS(2856), - [anon_sym_i16] = ACTIONS(2856), - [anon_sym_u32] = ACTIONS(2856), - [anon_sym_i32] = ACTIONS(2856), - [anon_sym_u64] = ACTIONS(2856), - [anon_sym_i64] = ACTIONS(2856), - [anon_sym_u128] = ACTIONS(2856), - [anon_sym_i128] = ACTIONS(2856), - [anon_sym_isize] = ACTIONS(2856), - [anon_sym_usize] = ACTIONS(2856), - [anon_sym_f32] = ACTIONS(2856), - [anon_sym_f64] = ACTIONS(2856), - [anon_sym_bool] = ACTIONS(2856), - [anon_sym_str] = ACTIONS(2856), - [anon_sym_char] = ACTIONS(2856), - [sym_line_comment] = ACTIONS(1172), - [sym__raw_identifier] = ACTIONS(2858), - [sym_self] = ACTIONS(2856), - [sym_super] = ACTIONS(2856), - [sym_crate] = ACTIONS(2856), - [sym_metavariable] = ACTIONS(2858), - [sym_grit_metavariable] = ACTIONS(2858), - [sym_raw_string_literal] = ACTIONS(2858), - [sym_float_literal] = ACTIONS(2858), - [sym_block_comment] = ACTIONS(3), - }, - [645] = { - [sym__primitive_identifier] = ACTIONS(2860), - [anon_sym_LPAREN] = ACTIONS(2862), - [anon_sym_RPAREN] = ACTIONS(2862), - [anon_sym_LBRACE] = ACTIONS(2862), - [anon_sym_RBRACE] = ACTIONS(2862), - [anon_sym_LBRACK] = ACTIONS(2862), - [anon_sym_RBRACK] = ACTIONS(2862), - [anon_sym_DOLLAR] = ACTIONS(2860), - [aux_sym__non_special_token_token1] = ACTIONS(2860), - [anon_sym_SQUOTE] = ACTIONS(2860), - [anon_sym_as] = ACTIONS(2860), - [anon_sym_async] = ACTIONS(2860), - [anon_sym_await] = ACTIONS(2860), - [anon_sym_break] = ACTIONS(2860), - [anon_sym_const] = ACTIONS(2860), - [anon_sym_continue] = ACTIONS(2860), - [anon_sym_default] = ACTIONS(2860), - [anon_sym_enum] = ACTIONS(2860), - [anon_sym_fn] = ACTIONS(2860), - [anon_sym_for] = ACTIONS(2860), - [anon_sym_if] = ACTIONS(2860), - [anon_sym_impl] = ACTIONS(2860), - [anon_sym_let] = ACTIONS(2860), - [anon_sym_loop] = ACTIONS(2860), - [anon_sym_match] = ACTIONS(2860), - [anon_sym_mod] = ACTIONS(2860), - [anon_sym_pub] = ACTIONS(2860), - [anon_sym_return] = ACTIONS(2860), - [anon_sym_static] = ACTIONS(2860), - [anon_sym_struct] = ACTIONS(2860), - [anon_sym_trait] = ACTIONS(2860), - [anon_sym_type] = ACTIONS(2860), - [anon_sym_union] = ACTIONS(2860), - [anon_sym_unsafe] = ACTIONS(2860), - [anon_sym_use] = ACTIONS(2860), - [anon_sym_where] = ACTIONS(2860), - [anon_sym_while] = ACTIONS(2860), - [sym_mutable_specifier] = ACTIONS(2860), - [sym_integer_literal] = ACTIONS(2862), - [aux_sym_string_literal_token1] = ACTIONS(2862), - [sym_char_literal] = ACTIONS(2862), - [anon_sym_true] = ACTIONS(2860), - [anon_sym_false] = ACTIONS(2860), - [anon_sym_u8] = ACTIONS(2860), - [anon_sym_i8] = ACTIONS(2860), - [anon_sym_u16] = ACTIONS(2860), - [anon_sym_i16] = ACTIONS(2860), - [anon_sym_u32] = ACTIONS(2860), - [anon_sym_i32] = ACTIONS(2860), - [anon_sym_u64] = ACTIONS(2860), - [anon_sym_i64] = ACTIONS(2860), - [anon_sym_u128] = ACTIONS(2860), - [anon_sym_i128] = ACTIONS(2860), - [anon_sym_isize] = ACTIONS(2860), - [anon_sym_usize] = ACTIONS(2860), - [anon_sym_f32] = ACTIONS(2860), - [anon_sym_f64] = ACTIONS(2860), - [anon_sym_bool] = ACTIONS(2860), - [anon_sym_str] = ACTIONS(2860), - [anon_sym_char] = ACTIONS(2860), - [sym_line_comment] = ACTIONS(1172), - [sym__raw_identifier] = ACTIONS(2862), - [sym_self] = ACTIONS(2860), - [sym_super] = ACTIONS(2860), - [sym_crate] = ACTIONS(2860), - [sym_metavariable] = ACTIONS(2862), - [sym_grit_metavariable] = ACTIONS(2862), - [sym_raw_string_literal] = ACTIONS(2862), - [sym_float_literal] = ACTIONS(2862), + [anon_sym_COLON_COLON] = ACTIONS(2852), + [anon_sym_AMP] = ACTIONS(2854), + [anon_sym_dyn] = ACTIONS(2856), + [sym_mutable_specifier] = ACTIONS(2858), + [anon_sym_u8] = ACTIONS(95), + [anon_sym_i8] = ACTIONS(95), + [anon_sym_u16] = ACTIONS(95), + [anon_sym_i16] = ACTIONS(95), + [anon_sym_u32] = ACTIONS(95), + [anon_sym_i32] = ACTIONS(95), + [anon_sym_u64] = ACTIONS(95), + [anon_sym_i64] = ACTIONS(95), + [anon_sym_u128] = ACTIONS(95), + [anon_sym_i128] = ACTIONS(95), + [anon_sym_isize] = ACTIONS(95), + [anon_sym_usize] = ACTIONS(95), + [anon_sym_f32] = ACTIONS(95), + [anon_sym_f64] = ACTIONS(95), + [anon_sym_bool] = ACTIONS(95), + [anon_sym_str] = ACTIONS(95), + [anon_sym_char] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(2860), + [sym_self] = ACTIONS(2862), + [sym_super] = ACTIONS(2862), + [sym_crate] = ACTIONS(2862), + [sym_metavariable] = ACTIONS(2864), + [sym_grit_metavariable] = ACTIONS(2860), [sym_block_comment] = ACTIONS(3), }, - [646] = { - [sym__primitive_identifier] = ACTIONS(2864), - [anon_sym_LPAREN] = ACTIONS(2866), - [anon_sym_RPAREN] = ACTIONS(2866), - [anon_sym_LBRACE] = ACTIONS(2866), - [anon_sym_RBRACE] = ACTIONS(2866), - [anon_sym_LBRACK] = ACTIONS(2866), - [anon_sym_RBRACK] = ACTIONS(2866), - [anon_sym_DOLLAR] = ACTIONS(2864), - [aux_sym__non_special_token_token1] = ACTIONS(2864), - [anon_sym_SQUOTE] = ACTIONS(2864), - [anon_sym_as] = ACTIONS(2864), - [anon_sym_async] = ACTIONS(2864), - [anon_sym_await] = ACTIONS(2864), - [anon_sym_break] = ACTIONS(2864), - [anon_sym_const] = ACTIONS(2864), - [anon_sym_continue] = ACTIONS(2864), - [anon_sym_default] = ACTIONS(2864), - [anon_sym_enum] = ACTIONS(2864), - [anon_sym_fn] = ACTIONS(2864), - [anon_sym_for] = ACTIONS(2864), - [anon_sym_if] = ACTIONS(2864), - [anon_sym_impl] = ACTIONS(2864), - [anon_sym_let] = ACTIONS(2864), - [anon_sym_loop] = ACTIONS(2864), - [anon_sym_match] = ACTIONS(2864), - [anon_sym_mod] = ACTIONS(2864), - [anon_sym_pub] = ACTIONS(2864), - [anon_sym_return] = ACTIONS(2864), - [anon_sym_static] = ACTIONS(2864), - [anon_sym_struct] = ACTIONS(2864), - [anon_sym_trait] = ACTIONS(2864), - [anon_sym_type] = ACTIONS(2864), - [anon_sym_union] = ACTIONS(2864), - [anon_sym_unsafe] = ACTIONS(2864), - [anon_sym_use] = ACTIONS(2864), - [anon_sym_where] = ACTIONS(2864), - [anon_sym_while] = ACTIONS(2864), - [sym_mutable_specifier] = ACTIONS(2864), - [sym_integer_literal] = ACTIONS(2866), - [aux_sym_string_literal_token1] = ACTIONS(2866), - [sym_char_literal] = ACTIONS(2866), - [anon_sym_true] = ACTIONS(2864), - [anon_sym_false] = ACTIONS(2864), - [anon_sym_u8] = ACTIONS(2864), - [anon_sym_i8] = ACTIONS(2864), - [anon_sym_u16] = ACTIONS(2864), - [anon_sym_i16] = ACTIONS(2864), - [anon_sym_u32] = ACTIONS(2864), - [anon_sym_i32] = ACTIONS(2864), - [anon_sym_u64] = ACTIONS(2864), - [anon_sym_i64] = ACTIONS(2864), - [anon_sym_u128] = ACTIONS(2864), - [anon_sym_i128] = ACTIONS(2864), - [anon_sym_isize] = ACTIONS(2864), - [anon_sym_usize] = ACTIONS(2864), - [anon_sym_f32] = ACTIONS(2864), - [anon_sym_f64] = ACTIONS(2864), - [anon_sym_bool] = ACTIONS(2864), - [anon_sym_str] = ACTIONS(2864), - [anon_sym_char] = ACTIONS(2864), - [sym_line_comment] = ACTIONS(1172), - [sym__raw_identifier] = ACTIONS(2866), - [sym_self] = ACTIONS(2864), - [sym_super] = ACTIONS(2864), - [sym_crate] = ACTIONS(2864), - [sym_metavariable] = ACTIONS(2866), - [sym_grit_metavariable] = ACTIONS(2866), - [sym_raw_string_literal] = ACTIONS(2866), - [sym_float_literal] = ACTIONS(2866), + [641] = { + [sym__primitive_identifier] = ACTIONS(1036), + [anon_sym_LPAREN] = ACTIONS(1038), + [anon_sym_RPAREN] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(1038), + [anon_sym_RBRACE] = ACTIONS(1038), + [anon_sym_LBRACK] = ACTIONS(1038), + [anon_sym_RBRACK] = ACTIONS(1038), + [anon_sym_DOLLAR] = ACTIONS(1036), + [aux_sym__non_special_token_token1] = ACTIONS(1036), + [anon_sym_SQUOTE] = ACTIONS(1036), + [anon_sym_as] = ACTIONS(1036), + [anon_sym_async] = ACTIONS(1036), + [anon_sym_await] = ACTIONS(1036), + [anon_sym_break] = ACTIONS(1036), + [anon_sym_const] = ACTIONS(1036), + [anon_sym_continue] = ACTIONS(1036), + [anon_sym_default] = ACTIONS(1036), + [anon_sym_enum] = ACTIONS(1036), + [anon_sym_fn] = ACTIONS(1036), + [anon_sym_for] = ACTIONS(1036), + [anon_sym_if] = ACTIONS(1036), + [anon_sym_impl] = ACTIONS(1036), + [anon_sym_let] = ACTIONS(1036), + [anon_sym_loop] = ACTIONS(1036), + [anon_sym_match] = ACTIONS(1036), + [anon_sym_mod] = ACTIONS(1036), + [anon_sym_pub] = ACTIONS(1036), + [anon_sym_return] = ACTIONS(1036), + [anon_sym_static] = ACTIONS(1036), + [anon_sym_struct] = ACTIONS(1036), + [anon_sym_trait] = ACTIONS(1036), + [anon_sym_type] = ACTIONS(1036), + [anon_sym_union] = ACTIONS(1036), + [anon_sym_unsafe] = ACTIONS(1036), + [anon_sym_use] = ACTIONS(1036), + [anon_sym_where] = ACTIONS(1036), + [anon_sym_while] = ACTIONS(1036), + [sym_mutable_specifier] = ACTIONS(1036), + [sym_integer_literal] = ACTIONS(1038), + [aux_sym_string_literal_token1] = ACTIONS(1038), + [sym_char_literal] = ACTIONS(1038), + [anon_sym_true] = ACTIONS(1036), + [anon_sym_false] = ACTIONS(1036), + [anon_sym_u8] = ACTIONS(1036), + [anon_sym_i8] = ACTIONS(1036), + [anon_sym_u16] = ACTIONS(1036), + [anon_sym_i16] = ACTIONS(1036), + [anon_sym_u32] = ACTIONS(1036), + [anon_sym_i32] = ACTIONS(1036), + [anon_sym_u64] = ACTIONS(1036), + [anon_sym_i64] = ACTIONS(1036), + [anon_sym_u128] = ACTIONS(1036), + [anon_sym_i128] = ACTIONS(1036), + [anon_sym_isize] = ACTIONS(1036), + [anon_sym_usize] = ACTIONS(1036), + [anon_sym_f32] = ACTIONS(1036), + [anon_sym_f64] = ACTIONS(1036), + [anon_sym_bool] = ACTIONS(1036), + [anon_sym_str] = ACTIONS(1036), + [anon_sym_char] = ACTIONS(1036), + [sym_line_comment] = ACTIONS(1112), + [sym__raw_identifier] = ACTIONS(1038), + [sym_self] = ACTIONS(1036), + [sym_super] = ACTIONS(1036), + [sym_crate] = ACTIONS(1036), + [sym_metavariable] = ACTIONS(1038), + [sym_grit_metavariable] = ACTIONS(1038), + [sym_raw_string_literal] = ACTIONS(1038), + [sym_float_literal] = ACTIONS(1038), [sym_block_comment] = ACTIONS(3), }, - [647] = { - [sym__primitive_identifier] = ACTIONS(2868), + [642] = { + [sym__primitive_identifier] = ACTIONS(2866), [anon_sym_LPAREN] = ACTIONS(2870), [anon_sym_RPAREN] = ACTIONS(2870), [anon_sym_LBRACE] = ACTIONS(2870), [anon_sym_RBRACE] = ACTIONS(2870), [anon_sym_LBRACK] = ACTIONS(2870), [anon_sym_RBRACK] = ACTIONS(2870), - [anon_sym_DOLLAR] = ACTIONS(2868), - [aux_sym__non_special_token_token1] = ACTIONS(2868), - [anon_sym_SQUOTE] = ACTIONS(2868), - [anon_sym_as] = ACTIONS(2868), - [anon_sym_async] = ACTIONS(2868), - [anon_sym_await] = ACTIONS(2868), - [anon_sym_break] = ACTIONS(2868), - [anon_sym_const] = ACTIONS(2868), - [anon_sym_continue] = ACTIONS(2868), - [anon_sym_default] = ACTIONS(2868), - [anon_sym_enum] = ACTIONS(2868), - [anon_sym_fn] = ACTIONS(2868), - [anon_sym_for] = ACTIONS(2868), - [anon_sym_if] = ACTIONS(2868), - [anon_sym_impl] = ACTIONS(2868), - [anon_sym_let] = ACTIONS(2868), - [anon_sym_loop] = ACTIONS(2868), - [anon_sym_match] = ACTIONS(2868), - [anon_sym_mod] = ACTIONS(2868), - [anon_sym_pub] = ACTIONS(2868), - [anon_sym_return] = ACTIONS(2868), - [anon_sym_static] = ACTIONS(2868), - [anon_sym_struct] = ACTIONS(2868), - [anon_sym_trait] = ACTIONS(2868), - [anon_sym_type] = ACTIONS(2868), - [anon_sym_union] = ACTIONS(2868), - [anon_sym_unsafe] = ACTIONS(2868), - [anon_sym_use] = ACTIONS(2868), - [anon_sym_where] = ACTIONS(2868), - [anon_sym_while] = ACTIONS(2868), - [sym_mutable_specifier] = ACTIONS(2868), + [anon_sym_DOLLAR] = ACTIONS(2866), + [aux_sym__non_special_token_token1] = ACTIONS(2866), + [anon_sym_SQUOTE] = ACTIONS(2866), + [anon_sym_as] = ACTIONS(2866), + [anon_sym_async] = ACTIONS(2866), + [anon_sym_await] = ACTIONS(2866), + [anon_sym_break] = ACTIONS(2866), + [anon_sym_const] = ACTIONS(2866), + [anon_sym_continue] = ACTIONS(2866), + [anon_sym_default] = ACTIONS(2866), + [anon_sym_enum] = ACTIONS(2866), + [anon_sym_fn] = ACTIONS(2866), + [anon_sym_for] = ACTIONS(2866), + [anon_sym_if] = ACTIONS(2866), + [anon_sym_impl] = ACTIONS(2866), + [anon_sym_let] = ACTIONS(2866), + [anon_sym_loop] = ACTIONS(2866), + [anon_sym_match] = ACTIONS(2866), + [anon_sym_mod] = ACTIONS(2866), + [anon_sym_pub] = ACTIONS(2866), + [anon_sym_return] = ACTIONS(2866), + [anon_sym_static] = ACTIONS(2866), + [anon_sym_struct] = ACTIONS(2866), + [anon_sym_trait] = ACTIONS(2866), + [anon_sym_type] = ACTIONS(2866), + [anon_sym_union] = ACTIONS(2866), + [anon_sym_unsafe] = ACTIONS(2866), + [anon_sym_use] = ACTIONS(2866), + [anon_sym_where] = ACTIONS(2866), + [anon_sym_while] = ACTIONS(2866), + [sym_mutable_specifier] = ACTIONS(2866), [sym_integer_literal] = ACTIONS(2870), [aux_sym_string_literal_token1] = ACTIONS(2870), [sym_char_literal] = ACTIONS(2870), - [anon_sym_true] = ACTIONS(2868), - [anon_sym_false] = ACTIONS(2868), - [anon_sym_u8] = ACTIONS(2868), - [anon_sym_i8] = ACTIONS(2868), - [anon_sym_u16] = ACTIONS(2868), - [anon_sym_i16] = ACTIONS(2868), - [anon_sym_u32] = ACTIONS(2868), - [anon_sym_i32] = ACTIONS(2868), - [anon_sym_u64] = ACTIONS(2868), - [anon_sym_i64] = ACTIONS(2868), - [anon_sym_u128] = ACTIONS(2868), - [anon_sym_i128] = ACTIONS(2868), - [anon_sym_isize] = ACTIONS(2868), - [anon_sym_usize] = ACTIONS(2868), - [anon_sym_f32] = ACTIONS(2868), - [anon_sym_f64] = ACTIONS(2868), - [anon_sym_bool] = ACTIONS(2868), - [anon_sym_str] = ACTIONS(2868), - [anon_sym_char] = ACTIONS(2868), - [sym_line_comment] = ACTIONS(1172), + [anon_sym_true] = ACTIONS(2866), + [anon_sym_false] = ACTIONS(2866), + [anon_sym_u8] = ACTIONS(2866), + [anon_sym_i8] = ACTIONS(2866), + [anon_sym_u16] = ACTIONS(2866), + [anon_sym_i16] = ACTIONS(2866), + [anon_sym_u32] = ACTIONS(2866), + [anon_sym_i32] = ACTIONS(2866), + [anon_sym_u64] = ACTIONS(2866), + [anon_sym_i64] = ACTIONS(2866), + [anon_sym_u128] = ACTIONS(2866), + [anon_sym_i128] = ACTIONS(2866), + [anon_sym_isize] = ACTIONS(2866), + [anon_sym_usize] = ACTIONS(2866), + [anon_sym_f32] = ACTIONS(2866), + [anon_sym_f64] = ACTIONS(2866), + [anon_sym_bool] = ACTIONS(2866), + [anon_sym_str] = ACTIONS(2866), + [anon_sym_char] = ACTIONS(2866), + [sym_line_comment] = ACTIONS(1112), [sym__raw_identifier] = ACTIONS(2870), - [sym_self] = ACTIONS(2868), - [sym_super] = ACTIONS(2868), - [sym_crate] = ACTIONS(2868), + [sym_self] = ACTIONS(2866), + [sym_super] = ACTIONS(2866), + [sym_crate] = ACTIONS(2866), [sym_metavariable] = ACTIONS(2870), [sym_grit_metavariable] = ACTIONS(2870), [sym_raw_string_literal] = ACTIONS(2870), [sym_float_literal] = ACTIONS(2870), [sym_block_comment] = ACTIONS(3), }, - [648] = { - [sym__primitive_identifier] = ACTIONS(2872), - [anon_sym_LPAREN] = ACTIONS(2874), - [anon_sym_RPAREN] = ACTIONS(2874), - [anon_sym_LBRACE] = ACTIONS(2874), - [anon_sym_RBRACE] = ACTIONS(2874), - [anon_sym_LBRACK] = ACTIONS(2874), - [anon_sym_RBRACK] = ACTIONS(2874), - [anon_sym_DOLLAR] = ACTIONS(2872), - [aux_sym__non_special_token_token1] = ACTIONS(2872), - [anon_sym_SQUOTE] = ACTIONS(2872), - [anon_sym_as] = ACTIONS(2872), - [anon_sym_async] = ACTIONS(2872), - [anon_sym_await] = ACTIONS(2872), - [anon_sym_break] = ACTIONS(2872), - [anon_sym_const] = ACTIONS(2872), - [anon_sym_continue] = ACTIONS(2872), - [anon_sym_default] = ACTIONS(2872), - [anon_sym_enum] = ACTIONS(2872), - [anon_sym_fn] = ACTIONS(2872), - [anon_sym_for] = ACTIONS(2872), - [anon_sym_if] = ACTIONS(2872), - [anon_sym_impl] = ACTIONS(2872), - [anon_sym_let] = ACTIONS(2872), - [anon_sym_loop] = ACTIONS(2872), - [anon_sym_match] = ACTIONS(2872), - [anon_sym_mod] = ACTIONS(2872), - [anon_sym_pub] = ACTIONS(2872), - [anon_sym_return] = ACTIONS(2872), - [anon_sym_static] = ACTIONS(2872), - [anon_sym_struct] = ACTIONS(2872), - [anon_sym_trait] = ACTIONS(2872), - [anon_sym_type] = ACTIONS(2872), - [anon_sym_union] = ACTIONS(2872), - [anon_sym_unsafe] = ACTIONS(2872), - [anon_sym_use] = ACTIONS(2872), - [anon_sym_where] = ACTIONS(2872), - [anon_sym_while] = ACTIONS(2872), - [sym_mutable_specifier] = ACTIONS(2872), - [sym_integer_literal] = ACTIONS(2874), - [aux_sym_string_literal_token1] = ACTIONS(2874), - [sym_char_literal] = ACTIONS(2874), - [anon_sym_true] = ACTIONS(2872), - [anon_sym_false] = ACTIONS(2872), - [anon_sym_u8] = ACTIONS(2872), - [anon_sym_i8] = ACTIONS(2872), - [anon_sym_u16] = ACTIONS(2872), - [anon_sym_i16] = ACTIONS(2872), - [anon_sym_u32] = ACTIONS(2872), - [anon_sym_i32] = ACTIONS(2872), - [anon_sym_u64] = ACTIONS(2872), - [anon_sym_i64] = ACTIONS(2872), - [anon_sym_u128] = ACTIONS(2872), - [anon_sym_i128] = ACTIONS(2872), - [anon_sym_isize] = ACTIONS(2872), - [anon_sym_usize] = ACTIONS(2872), - [anon_sym_f32] = ACTIONS(2872), - [anon_sym_f64] = ACTIONS(2872), - [anon_sym_bool] = ACTIONS(2872), - [anon_sym_str] = ACTIONS(2872), - [anon_sym_char] = ACTIONS(2872), - [sym_line_comment] = ACTIONS(1172), - [sym__raw_identifier] = ACTIONS(2874), - [sym_self] = ACTIONS(2872), - [sym_super] = ACTIONS(2872), - [sym_crate] = ACTIONS(2872), - [sym_metavariable] = ACTIONS(2874), - [sym_grit_metavariable] = ACTIONS(2874), - [sym_raw_string_literal] = ACTIONS(2874), - [sym_float_literal] = ACTIONS(2874), + [643] = { + [sym__primitive_identifier] = ACTIONS(2874), + [anon_sym_LPAREN] = ACTIONS(2876), + [anon_sym_RPAREN] = ACTIONS(2876), + [anon_sym_LBRACE] = ACTIONS(2876), + [anon_sym_RBRACE] = ACTIONS(2876), + [anon_sym_LBRACK] = ACTIONS(2876), + [anon_sym_RBRACK] = ACTIONS(2876), + [anon_sym_DOLLAR] = ACTIONS(2874), + [aux_sym__non_special_token_token1] = ACTIONS(2874), + [anon_sym_SQUOTE] = ACTIONS(2874), + [anon_sym_as] = ACTIONS(2874), + [anon_sym_async] = ACTIONS(2874), + [anon_sym_await] = ACTIONS(2874), + [anon_sym_break] = ACTIONS(2874), + [anon_sym_const] = ACTIONS(2874), + [anon_sym_continue] = ACTIONS(2874), + [anon_sym_default] = ACTIONS(2874), + [anon_sym_enum] = ACTIONS(2874), + [anon_sym_fn] = ACTIONS(2874), + [anon_sym_for] = ACTIONS(2874), + [anon_sym_if] = ACTIONS(2874), + [anon_sym_impl] = ACTIONS(2874), + [anon_sym_let] = ACTIONS(2874), + [anon_sym_loop] = ACTIONS(2874), + [anon_sym_match] = ACTIONS(2874), + [anon_sym_mod] = ACTIONS(2874), + [anon_sym_pub] = ACTIONS(2874), + [anon_sym_return] = ACTIONS(2874), + [anon_sym_static] = ACTIONS(2874), + [anon_sym_struct] = ACTIONS(2874), + [anon_sym_trait] = ACTIONS(2874), + [anon_sym_type] = ACTIONS(2874), + [anon_sym_union] = ACTIONS(2874), + [anon_sym_unsafe] = ACTIONS(2874), + [anon_sym_use] = ACTIONS(2874), + [anon_sym_where] = ACTIONS(2874), + [anon_sym_while] = ACTIONS(2874), + [sym_mutable_specifier] = ACTIONS(2874), + [sym_integer_literal] = ACTIONS(2876), + [aux_sym_string_literal_token1] = ACTIONS(2876), + [sym_char_literal] = ACTIONS(2876), + [anon_sym_true] = ACTIONS(2874), + [anon_sym_false] = ACTIONS(2874), + [anon_sym_u8] = ACTIONS(2874), + [anon_sym_i8] = ACTIONS(2874), + [anon_sym_u16] = ACTIONS(2874), + [anon_sym_i16] = ACTIONS(2874), + [anon_sym_u32] = ACTIONS(2874), + [anon_sym_i32] = ACTIONS(2874), + [anon_sym_u64] = ACTIONS(2874), + [anon_sym_i64] = ACTIONS(2874), + [anon_sym_u128] = ACTIONS(2874), + [anon_sym_i128] = ACTIONS(2874), + [anon_sym_isize] = ACTIONS(2874), + [anon_sym_usize] = ACTIONS(2874), + [anon_sym_f32] = ACTIONS(2874), + [anon_sym_f64] = ACTIONS(2874), + [anon_sym_bool] = ACTIONS(2874), + [anon_sym_str] = ACTIONS(2874), + [anon_sym_char] = ACTIONS(2874), + [sym_line_comment] = ACTIONS(1112), + [sym__raw_identifier] = ACTIONS(2876), + [sym_self] = ACTIONS(2874), + [sym_super] = ACTIONS(2874), + [sym_crate] = ACTIONS(2874), + [sym_metavariable] = ACTIONS(2876), + [sym_grit_metavariable] = ACTIONS(2876), + [sym_raw_string_literal] = ACTIONS(2876), + [sym_float_literal] = ACTIONS(2876), [sym_block_comment] = ACTIONS(3), }, - [649] = { - [sym__primitive_identifier] = ACTIONS(2876), - [anon_sym_LPAREN] = ACTIONS(2878), - [anon_sym_RPAREN] = ACTIONS(2878), - [anon_sym_LBRACE] = ACTIONS(2878), - [anon_sym_RBRACE] = ACTIONS(2878), - [anon_sym_LBRACK] = ACTIONS(2878), - [anon_sym_RBRACK] = ACTIONS(2878), - [anon_sym_DOLLAR] = ACTIONS(2876), - [aux_sym__non_special_token_token1] = ACTIONS(2876), - [anon_sym_SQUOTE] = ACTIONS(2876), - [anon_sym_as] = ACTIONS(2876), - [anon_sym_async] = ACTIONS(2876), - [anon_sym_await] = ACTIONS(2876), - [anon_sym_break] = ACTIONS(2876), - [anon_sym_const] = ACTIONS(2876), - [anon_sym_continue] = ACTIONS(2876), - [anon_sym_default] = ACTIONS(2876), - [anon_sym_enum] = ACTIONS(2876), - [anon_sym_fn] = ACTIONS(2876), - [anon_sym_for] = ACTIONS(2876), - [anon_sym_if] = ACTIONS(2876), - [anon_sym_impl] = ACTIONS(2876), - [anon_sym_let] = ACTIONS(2876), - [anon_sym_loop] = ACTIONS(2876), - [anon_sym_match] = ACTIONS(2876), - [anon_sym_mod] = ACTIONS(2876), - [anon_sym_pub] = ACTIONS(2876), - [anon_sym_return] = ACTIONS(2876), - [anon_sym_static] = ACTIONS(2876), - [anon_sym_struct] = ACTIONS(2876), - [anon_sym_trait] = ACTIONS(2876), - [anon_sym_type] = ACTIONS(2876), - [anon_sym_union] = ACTIONS(2876), - [anon_sym_unsafe] = ACTIONS(2876), - [anon_sym_use] = ACTIONS(2876), - [anon_sym_where] = ACTIONS(2876), - [anon_sym_while] = ACTIONS(2876), - [sym_mutable_specifier] = ACTIONS(2876), - [sym_integer_literal] = ACTIONS(2878), - [aux_sym_string_literal_token1] = ACTIONS(2878), - [sym_char_literal] = ACTIONS(2878), - [anon_sym_true] = ACTIONS(2876), - [anon_sym_false] = ACTIONS(2876), - [anon_sym_u8] = ACTIONS(2876), - [anon_sym_i8] = ACTIONS(2876), - [anon_sym_u16] = ACTIONS(2876), - [anon_sym_i16] = ACTIONS(2876), - [anon_sym_u32] = ACTIONS(2876), - [anon_sym_i32] = ACTIONS(2876), - [anon_sym_u64] = ACTIONS(2876), - [anon_sym_i64] = ACTIONS(2876), - [anon_sym_u128] = ACTIONS(2876), - [anon_sym_i128] = ACTIONS(2876), - [anon_sym_isize] = ACTIONS(2876), - [anon_sym_usize] = ACTIONS(2876), - [anon_sym_f32] = ACTIONS(2876), - [anon_sym_f64] = ACTIONS(2876), - [anon_sym_bool] = ACTIONS(2876), - [anon_sym_str] = ACTIONS(2876), - [anon_sym_char] = ACTIONS(2876), - [sym_line_comment] = ACTIONS(1172), - [sym__raw_identifier] = ACTIONS(2878), - [sym_self] = ACTIONS(2876), - [sym_super] = ACTIONS(2876), - [sym_crate] = ACTIONS(2876), - [sym_metavariable] = ACTIONS(2878), - [sym_grit_metavariable] = ACTIONS(2878), - [sym_raw_string_literal] = ACTIONS(2878), - [sym_float_literal] = ACTIONS(2878), + [644] = { + [sym__primitive_identifier] = ACTIONS(2878), + [anon_sym_LPAREN] = ACTIONS(2880), + [anon_sym_RPAREN] = ACTIONS(2880), + [anon_sym_LBRACE] = ACTIONS(2880), + [anon_sym_RBRACE] = ACTIONS(2880), + [anon_sym_LBRACK] = ACTIONS(2880), + [anon_sym_RBRACK] = ACTIONS(2880), + [anon_sym_DOLLAR] = ACTIONS(2878), + [aux_sym__non_special_token_token1] = ACTIONS(2878), + [anon_sym_SQUOTE] = ACTIONS(2878), + [anon_sym_as] = ACTIONS(2878), + [anon_sym_async] = ACTIONS(2878), + [anon_sym_await] = ACTIONS(2878), + [anon_sym_break] = ACTIONS(2878), + [anon_sym_const] = ACTIONS(2878), + [anon_sym_continue] = ACTIONS(2878), + [anon_sym_default] = ACTIONS(2878), + [anon_sym_enum] = ACTIONS(2878), + [anon_sym_fn] = ACTIONS(2878), + [anon_sym_for] = ACTIONS(2878), + [anon_sym_if] = ACTIONS(2878), + [anon_sym_impl] = ACTIONS(2878), + [anon_sym_let] = ACTIONS(2878), + [anon_sym_loop] = ACTIONS(2878), + [anon_sym_match] = ACTIONS(2878), + [anon_sym_mod] = ACTIONS(2878), + [anon_sym_pub] = ACTIONS(2878), + [anon_sym_return] = ACTIONS(2878), + [anon_sym_static] = ACTIONS(2878), + [anon_sym_struct] = ACTIONS(2878), + [anon_sym_trait] = ACTIONS(2878), + [anon_sym_type] = ACTIONS(2878), + [anon_sym_union] = ACTIONS(2878), + [anon_sym_unsafe] = ACTIONS(2878), + [anon_sym_use] = ACTIONS(2878), + [anon_sym_where] = ACTIONS(2878), + [anon_sym_while] = ACTIONS(2878), + [sym_mutable_specifier] = ACTIONS(2878), + [sym_integer_literal] = ACTIONS(2880), + [aux_sym_string_literal_token1] = ACTIONS(2880), + [sym_char_literal] = ACTIONS(2880), + [anon_sym_true] = ACTIONS(2878), + [anon_sym_false] = ACTIONS(2878), + [anon_sym_u8] = ACTIONS(2878), + [anon_sym_i8] = ACTIONS(2878), + [anon_sym_u16] = ACTIONS(2878), + [anon_sym_i16] = ACTIONS(2878), + [anon_sym_u32] = ACTIONS(2878), + [anon_sym_i32] = ACTIONS(2878), + [anon_sym_u64] = ACTIONS(2878), + [anon_sym_i64] = ACTIONS(2878), + [anon_sym_u128] = ACTIONS(2878), + [anon_sym_i128] = ACTIONS(2878), + [anon_sym_isize] = ACTIONS(2878), + [anon_sym_usize] = ACTIONS(2878), + [anon_sym_f32] = ACTIONS(2878), + [anon_sym_f64] = ACTIONS(2878), + [anon_sym_bool] = ACTIONS(2878), + [anon_sym_str] = ACTIONS(2878), + [anon_sym_char] = ACTIONS(2878), + [sym_line_comment] = ACTIONS(1112), + [sym__raw_identifier] = ACTIONS(2880), + [sym_self] = ACTIONS(2878), + [sym_super] = ACTIONS(2878), + [sym_crate] = ACTIONS(2878), + [sym_metavariable] = ACTIONS(2880), + [sym_grit_metavariable] = ACTIONS(2880), + [sym_raw_string_literal] = ACTIONS(2880), + [sym_float_literal] = ACTIONS(2880), [sym_block_comment] = ACTIONS(3), }, - [650] = { - [sym_function_modifiers] = STATE(2642), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(1197), - [sym_bracketed_type] = STATE(2669), - [sym_lifetime] = STATE(2734), - [sym_array_type] = STATE(1166), - [sym_for_lifetimes] = STATE(1280), - [sym_function_type] = STATE(1166), - [sym_tuple_type] = STATE(1166), - [sym_unit_type] = STATE(1166), - [sym_generic_type] = STATE(1132), - [sym_generic_type_with_turbofish] = STATE(2670), - [sym_bounded_type] = STATE(1166), - [sym_reference_type] = STATE(1166), - [sym_pointer_type] = STATE(1166), - [sym_empty_type] = STATE(1166), - [sym_abstract_type] = STATE(1166), - [sym_dynamic_type] = STATE(1166), - [sym_macro_invocation] = STATE(1166), - [sym_scoped_identifier] = STATE(2544), - [sym_scoped_type_identifier] = STATE(830), - [sym_primitive_type] = STATE(1108), - [sym_identifier] = STATE(817), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(2880), - [anon_sym_LPAREN] = ACTIONS(2882), - [anon_sym_LBRACK] = ACTIONS(2884), - [anon_sym_PLUS] = ACTIONS(2886), - [anon_sym_STAR] = ACTIONS(2888), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(2890), + [645] = { + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(1503), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_PLUS] = ACTIONS(2882), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [sym_mutable_specifier] = ACTIONS(2884), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(2886), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), + [sym_block_comment] = ACTIONS(3), + }, + [646] = { + [sym_function_modifiers] = STATE(2771), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(2510), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2704), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1284), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(2283), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1822), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1701), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_PLUS] = ACTIONS(2888), + [anon_sym_STAR] = ACTIONS(2890), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), [anon_sym_fn] = ACTIONS(2892), - [anon_sym_for] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), [anon_sym_impl] = ACTIONS(2894), - [anon_sym_union] = ACTIONS(2896), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(2898), - [anon_sym_extern] = ACTIONS(876), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(2900), - [anon_sym_AMP] = ACTIONS(2902), - [anon_sym_dyn] = ACTIONS(2904), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(2896), + [anon_sym_dyn] = ACTIONS(2898), + [sym_mutable_specifier] = ACTIONS(2900), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), + [sym_block_comment] = ACTIONS(3), + }, + [647] = { + [sym__primitive_identifier] = ACTIONS(2902), + [anon_sym_LPAREN] = ACTIONS(2904), + [anon_sym_RPAREN] = ACTIONS(2904), + [anon_sym_LBRACE] = ACTIONS(2904), + [anon_sym_RBRACE] = ACTIONS(2904), + [anon_sym_LBRACK] = ACTIONS(2904), + [anon_sym_RBRACK] = ACTIONS(2904), + [anon_sym_DOLLAR] = ACTIONS(2902), + [aux_sym__non_special_token_token1] = ACTIONS(2902), + [anon_sym_SQUOTE] = ACTIONS(2902), + [anon_sym_as] = ACTIONS(2902), + [anon_sym_async] = ACTIONS(2902), + [anon_sym_await] = ACTIONS(2902), + [anon_sym_break] = ACTIONS(2902), + [anon_sym_const] = ACTIONS(2902), + [anon_sym_continue] = ACTIONS(2902), + [anon_sym_default] = ACTIONS(2902), + [anon_sym_enum] = ACTIONS(2902), + [anon_sym_fn] = ACTIONS(2902), + [anon_sym_for] = ACTIONS(2902), + [anon_sym_if] = ACTIONS(2902), + [anon_sym_impl] = ACTIONS(2902), + [anon_sym_let] = ACTIONS(2902), + [anon_sym_loop] = ACTIONS(2902), + [anon_sym_match] = ACTIONS(2902), + [anon_sym_mod] = ACTIONS(2902), + [anon_sym_pub] = ACTIONS(2902), + [anon_sym_return] = ACTIONS(2902), + [anon_sym_static] = ACTIONS(2902), + [anon_sym_struct] = ACTIONS(2902), + [anon_sym_trait] = ACTIONS(2902), + [anon_sym_type] = ACTIONS(2902), + [anon_sym_union] = ACTIONS(2902), + [anon_sym_unsafe] = ACTIONS(2902), + [anon_sym_use] = ACTIONS(2902), + [anon_sym_where] = ACTIONS(2902), + [anon_sym_while] = ACTIONS(2902), + [sym_mutable_specifier] = ACTIONS(2902), + [sym_integer_literal] = ACTIONS(2904), + [aux_sym_string_literal_token1] = ACTIONS(2904), + [sym_char_literal] = ACTIONS(2904), + [anon_sym_true] = ACTIONS(2902), + [anon_sym_false] = ACTIONS(2902), + [anon_sym_u8] = ACTIONS(2902), + [anon_sym_i8] = ACTIONS(2902), + [anon_sym_u16] = ACTIONS(2902), + [anon_sym_i16] = ACTIONS(2902), + [anon_sym_u32] = ACTIONS(2902), + [anon_sym_i32] = ACTIONS(2902), + [anon_sym_u64] = ACTIONS(2902), + [anon_sym_i64] = ACTIONS(2902), + [anon_sym_u128] = ACTIONS(2902), + [anon_sym_i128] = ACTIONS(2902), + [anon_sym_isize] = ACTIONS(2902), + [anon_sym_usize] = ACTIONS(2902), + [anon_sym_f32] = ACTIONS(2902), + [anon_sym_f64] = ACTIONS(2902), + [anon_sym_bool] = ACTIONS(2902), + [anon_sym_str] = ACTIONS(2902), + [anon_sym_char] = ACTIONS(2902), + [sym_line_comment] = ACTIONS(1112), + [sym__raw_identifier] = ACTIONS(2904), + [sym_self] = ACTIONS(2902), + [sym_super] = ACTIONS(2902), + [sym_crate] = ACTIONS(2902), + [sym_metavariable] = ACTIONS(2904), + [sym_grit_metavariable] = ACTIONS(2904), + [sym_raw_string_literal] = ACTIONS(2904), + [sym_float_literal] = ACTIONS(2904), + [sym_block_comment] = ACTIONS(3), + }, + [648] = { + [sym__primitive_identifier] = ACTIONS(2906), + [anon_sym_LPAREN] = ACTIONS(2908), + [anon_sym_RPAREN] = ACTIONS(2908), + [anon_sym_LBRACE] = ACTIONS(2908), + [anon_sym_RBRACE] = ACTIONS(2908), + [anon_sym_LBRACK] = ACTIONS(2908), + [anon_sym_RBRACK] = ACTIONS(2908), + [anon_sym_DOLLAR] = ACTIONS(2906), + [aux_sym__non_special_token_token1] = ACTIONS(2906), + [anon_sym_SQUOTE] = ACTIONS(2906), + [anon_sym_as] = ACTIONS(2906), + [anon_sym_async] = ACTIONS(2906), + [anon_sym_await] = ACTIONS(2906), + [anon_sym_break] = ACTIONS(2906), + [anon_sym_const] = ACTIONS(2906), + [anon_sym_continue] = ACTIONS(2906), + [anon_sym_default] = ACTIONS(2906), + [anon_sym_enum] = ACTIONS(2906), + [anon_sym_fn] = ACTIONS(2906), + [anon_sym_for] = ACTIONS(2906), + [anon_sym_if] = ACTIONS(2906), + [anon_sym_impl] = ACTIONS(2906), + [anon_sym_let] = ACTIONS(2906), + [anon_sym_loop] = ACTIONS(2906), + [anon_sym_match] = ACTIONS(2906), + [anon_sym_mod] = ACTIONS(2906), + [anon_sym_pub] = ACTIONS(2906), + [anon_sym_return] = ACTIONS(2906), + [anon_sym_static] = ACTIONS(2906), + [anon_sym_struct] = ACTIONS(2906), + [anon_sym_trait] = ACTIONS(2906), + [anon_sym_type] = ACTIONS(2906), + [anon_sym_union] = ACTIONS(2906), + [anon_sym_unsafe] = ACTIONS(2906), + [anon_sym_use] = ACTIONS(2906), + [anon_sym_where] = ACTIONS(2906), + [anon_sym_while] = ACTIONS(2906), [sym_mutable_specifier] = ACTIONS(2906), - [anon_sym_u8] = ACTIONS(95), - [anon_sym_i8] = ACTIONS(95), - [anon_sym_u16] = ACTIONS(95), - [anon_sym_i16] = ACTIONS(95), - [anon_sym_u32] = ACTIONS(95), - [anon_sym_i32] = ACTIONS(95), - [anon_sym_u64] = ACTIONS(95), - [anon_sym_i64] = ACTIONS(95), - [anon_sym_u128] = ACTIONS(95), - [anon_sym_i128] = ACTIONS(95), - [anon_sym_isize] = ACTIONS(95), - [anon_sym_usize] = ACTIONS(95), - [anon_sym_f32] = ACTIONS(95), - [anon_sym_f64] = ACTIONS(95), - [anon_sym_bool] = ACTIONS(95), - [anon_sym_str] = ACTIONS(95), - [anon_sym_char] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), + [sym_integer_literal] = ACTIONS(2908), + [aux_sym_string_literal_token1] = ACTIONS(2908), + [sym_char_literal] = ACTIONS(2908), + [anon_sym_true] = ACTIONS(2906), + [anon_sym_false] = ACTIONS(2906), + [anon_sym_u8] = ACTIONS(2906), + [anon_sym_i8] = ACTIONS(2906), + [anon_sym_u16] = ACTIONS(2906), + [anon_sym_i16] = ACTIONS(2906), + [anon_sym_u32] = ACTIONS(2906), + [anon_sym_i32] = ACTIONS(2906), + [anon_sym_u64] = ACTIONS(2906), + [anon_sym_i64] = ACTIONS(2906), + [anon_sym_u128] = ACTIONS(2906), + [anon_sym_i128] = ACTIONS(2906), + [anon_sym_isize] = ACTIONS(2906), + [anon_sym_usize] = ACTIONS(2906), + [anon_sym_f32] = ACTIONS(2906), + [anon_sym_f64] = ACTIONS(2906), + [anon_sym_bool] = ACTIONS(2906), + [anon_sym_str] = ACTIONS(2906), + [anon_sym_char] = ACTIONS(2906), + [sym_line_comment] = ACTIONS(1112), [sym__raw_identifier] = ACTIONS(2908), + [sym_self] = ACTIONS(2906), + [sym_super] = ACTIONS(2906), + [sym_crate] = ACTIONS(2906), + [sym_metavariable] = ACTIONS(2908), + [sym_grit_metavariable] = ACTIONS(2908), + [sym_raw_string_literal] = ACTIONS(2908), + [sym_float_literal] = ACTIONS(2908), + [sym_block_comment] = ACTIONS(3), + }, + [649] = { + [sym__primitive_identifier] = ACTIONS(2910), + [anon_sym_LPAREN] = ACTIONS(2912), + [anon_sym_RPAREN] = ACTIONS(2912), + [anon_sym_LBRACE] = ACTIONS(2912), + [anon_sym_RBRACE] = ACTIONS(2912), + [anon_sym_LBRACK] = ACTIONS(2912), + [anon_sym_RBRACK] = ACTIONS(2912), + [anon_sym_DOLLAR] = ACTIONS(2910), + [aux_sym__non_special_token_token1] = ACTIONS(2910), + [anon_sym_SQUOTE] = ACTIONS(2910), + [anon_sym_as] = ACTIONS(2910), + [anon_sym_async] = ACTIONS(2910), + [anon_sym_await] = ACTIONS(2910), + [anon_sym_break] = ACTIONS(2910), + [anon_sym_const] = ACTIONS(2910), + [anon_sym_continue] = ACTIONS(2910), + [anon_sym_default] = ACTIONS(2910), + [anon_sym_enum] = ACTIONS(2910), + [anon_sym_fn] = ACTIONS(2910), + [anon_sym_for] = ACTIONS(2910), + [anon_sym_if] = ACTIONS(2910), + [anon_sym_impl] = ACTIONS(2910), + [anon_sym_let] = ACTIONS(2910), + [anon_sym_loop] = ACTIONS(2910), + [anon_sym_match] = ACTIONS(2910), + [anon_sym_mod] = ACTIONS(2910), + [anon_sym_pub] = ACTIONS(2910), + [anon_sym_return] = ACTIONS(2910), + [anon_sym_static] = ACTIONS(2910), + [anon_sym_struct] = ACTIONS(2910), + [anon_sym_trait] = ACTIONS(2910), + [anon_sym_type] = ACTIONS(2910), + [anon_sym_union] = ACTIONS(2910), + [anon_sym_unsafe] = ACTIONS(2910), + [anon_sym_use] = ACTIONS(2910), + [anon_sym_where] = ACTIONS(2910), + [anon_sym_while] = ACTIONS(2910), + [sym_mutable_specifier] = ACTIONS(2910), + [sym_integer_literal] = ACTIONS(2912), + [aux_sym_string_literal_token1] = ACTIONS(2912), + [sym_char_literal] = ACTIONS(2912), + [anon_sym_true] = ACTIONS(2910), + [anon_sym_false] = ACTIONS(2910), + [anon_sym_u8] = ACTIONS(2910), + [anon_sym_i8] = ACTIONS(2910), + [anon_sym_u16] = ACTIONS(2910), + [anon_sym_i16] = ACTIONS(2910), + [anon_sym_u32] = ACTIONS(2910), + [anon_sym_i32] = ACTIONS(2910), + [anon_sym_u64] = ACTIONS(2910), + [anon_sym_i64] = ACTIONS(2910), + [anon_sym_u128] = ACTIONS(2910), + [anon_sym_i128] = ACTIONS(2910), + [anon_sym_isize] = ACTIONS(2910), + [anon_sym_usize] = ACTIONS(2910), + [anon_sym_f32] = ACTIONS(2910), + [anon_sym_f64] = ACTIONS(2910), + [anon_sym_bool] = ACTIONS(2910), + [anon_sym_str] = ACTIONS(2910), + [anon_sym_char] = ACTIONS(2910), + [sym_line_comment] = ACTIONS(1112), + [sym__raw_identifier] = ACTIONS(2912), [sym_self] = ACTIONS(2910), [sym_super] = ACTIONS(2910), [sym_crate] = ACTIONS(2910), [sym_metavariable] = ACTIONS(2912), - [sym_grit_metavariable] = ACTIONS(2908), + [sym_grit_metavariable] = ACTIONS(2912), + [sym_raw_string_literal] = ACTIONS(2912), + [sym_float_literal] = ACTIONS(2912), [sym_block_comment] = ACTIONS(3), }, - [651] = { + [650] = { [sym__primitive_identifier] = ACTIONS(2914), [anon_sym_LPAREN] = ACTIONS(2916), [anon_sym_RPAREN] = ACTIONS(2916), @@ -78739,7 +78742,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2914), [anon_sym_str] = ACTIONS(2914), [anon_sym_char] = ACTIONS(2914), - [sym_line_comment] = ACTIONS(1172), + [sym_line_comment] = ACTIONS(1112), [sym__raw_identifier] = ACTIONS(2916), [sym_self] = ACTIONS(2914), [sym_super] = ACTIONS(2914), @@ -78750,436 +78753,508 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2916), [sym_block_comment] = ACTIONS(3), }, - [652] = { - [sym_function_modifiers] = STATE(2619), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(2508), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2700), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1278), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(2273), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1833), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1685), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_PLUS] = ACTIONS(2838), - [anon_sym_STAR] = ACTIONS(2840), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(2842), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(2844), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(2846), - [anon_sym_dyn] = ACTIONS(2848), + [651] = { + [sym__primitive_identifier] = ACTIONS(2918), + [anon_sym_LPAREN] = ACTIONS(2920), + [anon_sym_RPAREN] = ACTIONS(2920), + [anon_sym_LBRACE] = ACTIONS(2920), + [anon_sym_RBRACE] = ACTIONS(2920), + [anon_sym_LBRACK] = ACTIONS(2920), + [anon_sym_RBRACK] = ACTIONS(2920), + [anon_sym_DOLLAR] = ACTIONS(2918), + [aux_sym__non_special_token_token1] = ACTIONS(2918), + [anon_sym_SQUOTE] = ACTIONS(2918), + [anon_sym_as] = ACTIONS(2918), + [anon_sym_async] = ACTIONS(2918), + [anon_sym_await] = ACTIONS(2918), + [anon_sym_break] = ACTIONS(2918), + [anon_sym_const] = ACTIONS(2918), + [anon_sym_continue] = ACTIONS(2918), + [anon_sym_default] = ACTIONS(2918), + [anon_sym_enum] = ACTIONS(2918), + [anon_sym_fn] = ACTIONS(2918), + [anon_sym_for] = ACTIONS(2918), + [anon_sym_if] = ACTIONS(2918), + [anon_sym_impl] = ACTIONS(2918), + [anon_sym_let] = ACTIONS(2918), + [anon_sym_loop] = ACTIONS(2918), + [anon_sym_match] = ACTIONS(2918), + [anon_sym_mod] = ACTIONS(2918), + [anon_sym_pub] = ACTIONS(2918), + [anon_sym_return] = ACTIONS(2918), + [anon_sym_static] = ACTIONS(2918), + [anon_sym_struct] = ACTIONS(2918), + [anon_sym_trait] = ACTIONS(2918), + [anon_sym_type] = ACTIONS(2918), + [anon_sym_union] = ACTIONS(2918), + [anon_sym_unsafe] = ACTIONS(2918), + [anon_sym_use] = ACTIONS(2918), + [anon_sym_where] = ACTIONS(2918), + [anon_sym_while] = ACTIONS(2918), [sym_mutable_specifier] = ACTIONS(2918), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), + [sym_integer_literal] = ACTIONS(2920), + [aux_sym_string_literal_token1] = ACTIONS(2920), + [sym_char_literal] = ACTIONS(2920), + [anon_sym_true] = ACTIONS(2918), + [anon_sym_false] = ACTIONS(2918), + [anon_sym_u8] = ACTIONS(2918), + [anon_sym_i8] = ACTIONS(2918), + [anon_sym_u16] = ACTIONS(2918), + [anon_sym_i16] = ACTIONS(2918), + [anon_sym_u32] = ACTIONS(2918), + [anon_sym_i32] = ACTIONS(2918), + [anon_sym_u64] = ACTIONS(2918), + [anon_sym_i64] = ACTIONS(2918), + [anon_sym_u128] = ACTIONS(2918), + [anon_sym_i128] = ACTIONS(2918), + [anon_sym_isize] = ACTIONS(2918), + [anon_sym_usize] = ACTIONS(2918), + [anon_sym_f32] = ACTIONS(2918), + [anon_sym_f64] = ACTIONS(2918), + [anon_sym_bool] = ACTIONS(2918), + [anon_sym_str] = ACTIONS(2918), + [anon_sym_char] = ACTIONS(2918), + [sym_line_comment] = ACTIONS(1112), + [sym__raw_identifier] = ACTIONS(2920), + [sym_self] = ACTIONS(2918), + [sym_super] = ACTIONS(2918), + [sym_crate] = ACTIONS(2918), + [sym_metavariable] = ACTIONS(2920), + [sym_grit_metavariable] = ACTIONS(2920), + [sym_raw_string_literal] = ACTIONS(2920), + [sym_float_literal] = ACTIONS(2920), [sym_block_comment] = ACTIONS(3), }, - [653] = { - [sym__primitive_identifier] = ACTIONS(1038), - [anon_sym_LPAREN] = ACTIONS(1040), - [anon_sym_RPAREN] = ACTIONS(1040), - [anon_sym_LBRACE] = ACTIONS(1040), - [anon_sym_RBRACE] = ACTIONS(1040), - [anon_sym_LBRACK] = ACTIONS(1040), - [anon_sym_RBRACK] = ACTIONS(1040), - [anon_sym_DOLLAR] = ACTIONS(1038), - [aux_sym__non_special_token_token1] = ACTIONS(1038), - [anon_sym_SQUOTE] = ACTIONS(1038), - [anon_sym_as] = ACTIONS(1038), - [anon_sym_async] = ACTIONS(1038), - [anon_sym_await] = ACTIONS(1038), - [anon_sym_break] = ACTIONS(1038), - [anon_sym_const] = ACTIONS(1038), - [anon_sym_continue] = ACTIONS(1038), - [anon_sym_default] = ACTIONS(1038), - [anon_sym_enum] = ACTIONS(1038), - [anon_sym_fn] = ACTIONS(1038), - [anon_sym_for] = ACTIONS(1038), - [anon_sym_if] = ACTIONS(1038), - [anon_sym_impl] = ACTIONS(1038), - [anon_sym_let] = ACTIONS(1038), - [anon_sym_loop] = ACTIONS(1038), - [anon_sym_match] = ACTIONS(1038), - [anon_sym_mod] = ACTIONS(1038), - [anon_sym_pub] = ACTIONS(1038), - [anon_sym_return] = ACTIONS(1038), - [anon_sym_static] = ACTIONS(1038), - [anon_sym_struct] = ACTIONS(1038), - [anon_sym_trait] = ACTIONS(1038), - [anon_sym_type] = ACTIONS(1038), - [anon_sym_union] = ACTIONS(1038), - [anon_sym_unsafe] = ACTIONS(1038), - [anon_sym_use] = ACTIONS(1038), - [anon_sym_where] = ACTIONS(1038), - [anon_sym_while] = ACTIONS(1038), - [sym_mutable_specifier] = ACTIONS(1038), - [sym_integer_literal] = ACTIONS(1040), - [aux_sym_string_literal_token1] = ACTIONS(1040), - [sym_char_literal] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1038), - [anon_sym_false] = ACTIONS(1038), - [anon_sym_u8] = ACTIONS(1038), - [anon_sym_i8] = ACTIONS(1038), - [anon_sym_u16] = ACTIONS(1038), - [anon_sym_i16] = ACTIONS(1038), - [anon_sym_u32] = ACTIONS(1038), - [anon_sym_i32] = ACTIONS(1038), - [anon_sym_u64] = ACTIONS(1038), - [anon_sym_i64] = ACTIONS(1038), - [anon_sym_u128] = ACTIONS(1038), - [anon_sym_i128] = ACTIONS(1038), - [anon_sym_isize] = ACTIONS(1038), - [anon_sym_usize] = ACTIONS(1038), - [anon_sym_f32] = ACTIONS(1038), - [anon_sym_f64] = ACTIONS(1038), - [anon_sym_bool] = ACTIONS(1038), - [anon_sym_str] = ACTIONS(1038), - [anon_sym_char] = ACTIONS(1038), - [sym_line_comment] = ACTIONS(1172), - [sym__raw_identifier] = ACTIONS(1040), - [sym_self] = ACTIONS(1038), - [sym_super] = ACTIONS(1038), - [sym_crate] = ACTIONS(1038), - [sym_metavariable] = ACTIONS(1040), - [sym_grit_metavariable] = ACTIONS(1040), - [sym_raw_string_literal] = ACTIONS(1040), - [sym_float_literal] = ACTIONS(1040), - [sym_block_comment] = ACTIONS(3), - }, - [654] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(1511), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_PLUS] = ACTIONS(2834), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [sym_mutable_specifier] = ACTIONS(2920), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), + [652] = { + [sym__primitive_identifier] = ACTIONS(2922), + [anon_sym_LPAREN] = ACTIONS(2924), + [anon_sym_RPAREN] = ACTIONS(2924), + [anon_sym_LBRACE] = ACTIONS(2924), + [anon_sym_RBRACE] = ACTIONS(2924), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_RBRACK] = ACTIONS(2924), + [anon_sym_DOLLAR] = ACTIONS(2922), + [aux_sym__non_special_token_token1] = ACTIONS(2922), + [anon_sym_SQUOTE] = ACTIONS(2922), + [anon_sym_as] = ACTIONS(2922), + [anon_sym_async] = ACTIONS(2922), + [anon_sym_await] = ACTIONS(2922), + [anon_sym_break] = ACTIONS(2922), + [anon_sym_const] = ACTIONS(2922), + [anon_sym_continue] = ACTIONS(2922), + [anon_sym_default] = ACTIONS(2922), + [anon_sym_enum] = ACTIONS(2922), + [anon_sym_fn] = ACTIONS(2922), + [anon_sym_for] = ACTIONS(2922), + [anon_sym_if] = ACTIONS(2922), + [anon_sym_impl] = ACTIONS(2922), + [anon_sym_let] = ACTIONS(2922), + [anon_sym_loop] = ACTIONS(2922), + [anon_sym_match] = ACTIONS(2922), + [anon_sym_mod] = ACTIONS(2922), + [anon_sym_pub] = ACTIONS(2922), + [anon_sym_return] = ACTIONS(2922), + [anon_sym_static] = ACTIONS(2922), + [anon_sym_struct] = ACTIONS(2922), + [anon_sym_trait] = ACTIONS(2922), + [anon_sym_type] = ACTIONS(2922), + [anon_sym_union] = ACTIONS(2922), + [anon_sym_unsafe] = ACTIONS(2922), + [anon_sym_use] = ACTIONS(2922), + [anon_sym_where] = ACTIONS(2922), + [anon_sym_while] = ACTIONS(2922), + [sym_mutable_specifier] = ACTIONS(2922), + [sym_integer_literal] = ACTIONS(2924), + [aux_sym_string_literal_token1] = ACTIONS(2924), + [sym_char_literal] = ACTIONS(2924), + [anon_sym_true] = ACTIONS(2922), + [anon_sym_false] = ACTIONS(2922), + [anon_sym_u8] = ACTIONS(2922), + [anon_sym_i8] = ACTIONS(2922), + [anon_sym_u16] = ACTIONS(2922), + [anon_sym_i16] = ACTIONS(2922), + [anon_sym_u32] = ACTIONS(2922), + [anon_sym_i32] = ACTIONS(2922), + [anon_sym_u64] = ACTIONS(2922), + [anon_sym_i64] = ACTIONS(2922), + [anon_sym_u128] = ACTIONS(2922), + [anon_sym_i128] = ACTIONS(2922), + [anon_sym_isize] = ACTIONS(2922), + [anon_sym_usize] = ACTIONS(2922), + [anon_sym_f32] = ACTIONS(2922), + [anon_sym_f64] = ACTIONS(2922), + [anon_sym_bool] = ACTIONS(2922), + [anon_sym_str] = ACTIONS(2922), + [anon_sym_char] = ACTIONS(2922), + [sym_line_comment] = ACTIONS(1112), + [sym__raw_identifier] = ACTIONS(2924), [sym_self] = ACTIONS(2922), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), + [sym_super] = ACTIONS(2922), + [sym_crate] = ACTIONS(2922), + [sym_metavariable] = ACTIONS(2924), + [sym_grit_metavariable] = ACTIONS(2924), + [sym_raw_string_literal] = ACTIONS(2924), + [sym_float_literal] = ACTIONS(2924), [sym_block_comment] = ACTIONS(3), }, - [655] = { - [sym__primitive_identifier] = ACTIONS(2924), + [653] = { + [sym__primitive_identifier] = ACTIONS(2926), [anon_sym_LPAREN] = ACTIONS(2928), [anon_sym_RPAREN] = ACTIONS(2928), [anon_sym_LBRACE] = ACTIONS(2928), [anon_sym_RBRACE] = ACTIONS(2928), [anon_sym_LBRACK] = ACTIONS(2928), [anon_sym_RBRACK] = ACTIONS(2928), - [anon_sym_DOLLAR] = ACTIONS(2924), - [aux_sym__non_special_token_token1] = ACTIONS(2924), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_as] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(2924), - [anon_sym_await] = ACTIONS(2924), - [anon_sym_break] = ACTIONS(2924), - [anon_sym_const] = ACTIONS(2924), - [anon_sym_continue] = ACTIONS(2924), - [anon_sym_default] = ACTIONS(2924), - [anon_sym_enum] = ACTIONS(2924), - [anon_sym_fn] = ACTIONS(2924), - [anon_sym_for] = ACTIONS(2924), - [anon_sym_if] = ACTIONS(2924), - [anon_sym_impl] = ACTIONS(2924), - [anon_sym_let] = ACTIONS(2924), - [anon_sym_loop] = ACTIONS(2924), - [anon_sym_match] = ACTIONS(2924), - [anon_sym_mod] = ACTIONS(2924), - [anon_sym_pub] = ACTIONS(2924), - [anon_sym_return] = ACTIONS(2924), - [anon_sym_static] = ACTIONS(2924), - [anon_sym_struct] = ACTIONS(2924), - [anon_sym_trait] = ACTIONS(2924), - [anon_sym_type] = ACTIONS(2924), - [anon_sym_union] = ACTIONS(2924), - [anon_sym_unsafe] = ACTIONS(2924), - [anon_sym_use] = ACTIONS(2924), - [anon_sym_where] = ACTIONS(2924), - [anon_sym_while] = ACTIONS(2924), - [sym_mutable_specifier] = ACTIONS(2924), + [anon_sym_DOLLAR] = ACTIONS(2926), + [aux_sym__non_special_token_token1] = ACTIONS(2926), + [anon_sym_SQUOTE] = ACTIONS(2926), + [anon_sym_as] = ACTIONS(2926), + [anon_sym_async] = ACTIONS(2926), + [anon_sym_await] = ACTIONS(2926), + [anon_sym_break] = ACTIONS(2926), + [anon_sym_const] = ACTIONS(2926), + [anon_sym_continue] = ACTIONS(2926), + [anon_sym_default] = ACTIONS(2926), + [anon_sym_enum] = ACTIONS(2926), + [anon_sym_fn] = ACTIONS(2926), + [anon_sym_for] = ACTIONS(2926), + [anon_sym_if] = ACTIONS(2926), + [anon_sym_impl] = ACTIONS(2926), + [anon_sym_let] = ACTIONS(2926), + [anon_sym_loop] = ACTIONS(2926), + [anon_sym_match] = ACTIONS(2926), + [anon_sym_mod] = ACTIONS(2926), + [anon_sym_pub] = ACTIONS(2926), + [anon_sym_return] = ACTIONS(2926), + [anon_sym_static] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(2926), + [anon_sym_trait] = ACTIONS(2926), + [anon_sym_type] = ACTIONS(2926), + [anon_sym_union] = ACTIONS(2926), + [anon_sym_unsafe] = ACTIONS(2926), + [anon_sym_use] = ACTIONS(2926), + [anon_sym_where] = ACTIONS(2926), + [anon_sym_while] = ACTIONS(2926), + [sym_mutable_specifier] = ACTIONS(2926), [sym_integer_literal] = ACTIONS(2928), [aux_sym_string_literal_token1] = ACTIONS(2928), [sym_char_literal] = ACTIONS(2928), - [anon_sym_true] = ACTIONS(2924), - [anon_sym_false] = ACTIONS(2924), - [anon_sym_u8] = ACTIONS(2924), - [anon_sym_i8] = ACTIONS(2924), - [anon_sym_u16] = ACTIONS(2924), - [anon_sym_i16] = ACTIONS(2924), - [anon_sym_u32] = ACTIONS(2924), - [anon_sym_i32] = ACTIONS(2924), - [anon_sym_u64] = ACTIONS(2924), - [anon_sym_i64] = ACTIONS(2924), - [anon_sym_u128] = ACTIONS(2924), - [anon_sym_i128] = ACTIONS(2924), - [anon_sym_isize] = ACTIONS(2924), - [anon_sym_usize] = ACTIONS(2924), - [anon_sym_f32] = ACTIONS(2924), - [anon_sym_f64] = ACTIONS(2924), - [anon_sym_bool] = ACTIONS(2924), - [anon_sym_str] = ACTIONS(2924), - [anon_sym_char] = ACTIONS(2924), - [sym_line_comment] = ACTIONS(1172), + [anon_sym_true] = ACTIONS(2926), + [anon_sym_false] = ACTIONS(2926), + [anon_sym_u8] = ACTIONS(2926), + [anon_sym_i8] = ACTIONS(2926), + [anon_sym_u16] = ACTIONS(2926), + [anon_sym_i16] = ACTIONS(2926), + [anon_sym_u32] = ACTIONS(2926), + [anon_sym_i32] = ACTIONS(2926), + [anon_sym_u64] = ACTIONS(2926), + [anon_sym_i64] = ACTIONS(2926), + [anon_sym_u128] = ACTIONS(2926), + [anon_sym_i128] = ACTIONS(2926), + [anon_sym_isize] = ACTIONS(2926), + [anon_sym_usize] = ACTIONS(2926), + [anon_sym_f32] = ACTIONS(2926), + [anon_sym_f64] = ACTIONS(2926), + [anon_sym_bool] = ACTIONS(2926), + [anon_sym_str] = ACTIONS(2926), + [anon_sym_char] = ACTIONS(2926), + [sym_line_comment] = ACTIONS(1112), [sym__raw_identifier] = ACTIONS(2928), - [sym_self] = ACTIONS(2924), - [sym_super] = ACTIONS(2924), - [sym_crate] = ACTIONS(2924), + [sym_self] = ACTIONS(2926), + [sym_super] = ACTIONS(2926), + [sym_crate] = ACTIONS(2926), [sym_metavariable] = ACTIONS(2928), [sym_grit_metavariable] = ACTIONS(2928), [sym_raw_string_literal] = ACTIONS(2928), [sym_float_literal] = ACTIONS(2928), [sym_block_comment] = ACTIONS(3), }, + [654] = { + [sym__primitive_identifier] = ACTIONS(2930), + [anon_sym_LPAREN] = ACTIONS(2932), + [anon_sym_RPAREN] = ACTIONS(2932), + [anon_sym_LBRACE] = ACTIONS(2932), + [anon_sym_RBRACE] = ACTIONS(2932), + [anon_sym_LBRACK] = ACTIONS(2932), + [anon_sym_RBRACK] = ACTIONS(2932), + [anon_sym_DOLLAR] = ACTIONS(2930), + [aux_sym__non_special_token_token1] = ACTIONS(2930), + [anon_sym_SQUOTE] = ACTIONS(2930), + [anon_sym_as] = ACTIONS(2930), + [anon_sym_async] = ACTIONS(2930), + [anon_sym_await] = ACTIONS(2930), + [anon_sym_break] = ACTIONS(2930), + [anon_sym_const] = ACTIONS(2930), + [anon_sym_continue] = ACTIONS(2930), + [anon_sym_default] = ACTIONS(2930), + [anon_sym_enum] = ACTIONS(2930), + [anon_sym_fn] = ACTIONS(2930), + [anon_sym_for] = ACTIONS(2930), + [anon_sym_if] = ACTIONS(2930), + [anon_sym_impl] = ACTIONS(2930), + [anon_sym_let] = ACTIONS(2930), + [anon_sym_loop] = ACTIONS(2930), + [anon_sym_match] = ACTIONS(2930), + [anon_sym_mod] = ACTIONS(2930), + [anon_sym_pub] = ACTIONS(2930), + [anon_sym_return] = ACTIONS(2930), + [anon_sym_static] = ACTIONS(2930), + [anon_sym_struct] = ACTIONS(2930), + [anon_sym_trait] = ACTIONS(2930), + [anon_sym_type] = ACTIONS(2930), + [anon_sym_union] = ACTIONS(2930), + [anon_sym_unsafe] = ACTIONS(2930), + [anon_sym_use] = ACTIONS(2930), + [anon_sym_where] = ACTIONS(2930), + [anon_sym_while] = ACTIONS(2930), + [sym_mutable_specifier] = ACTIONS(2930), + [sym_integer_literal] = ACTIONS(2932), + [aux_sym_string_literal_token1] = ACTIONS(2932), + [sym_char_literal] = ACTIONS(2932), + [anon_sym_true] = ACTIONS(2930), + [anon_sym_false] = ACTIONS(2930), + [anon_sym_u8] = ACTIONS(2930), + [anon_sym_i8] = ACTIONS(2930), + [anon_sym_u16] = ACTIONS(2930), + [anon_sym_i16] = ACTIONS(2930), + [anon_sym_u32] = ACTIONS(2930), + [anon_sym_i32] = ACTIONS(2930), + [anon_sym_u64] = ACTIONS(2930), + [anon_sym_i64] = ACTIONS(2930), + [anon_sym_u128] = ACTIONS(2930), + [anon_sym_i128] = ACTIONS(2930), + [anon_sym_isize] = ACTIONS(2930), + [anon_sym_usize] = ACTIONS(2930), + [anon_sym_f32] = ACTIONS(2930), + [anon_sym_f64] = ACTIONS(2930), + [anon_sym_bool] = ACTIONS(2930), + [anon_sym_str] = ACTIONS(2930), + [anon_sym_char] = ACTIONS(2930), + [sym_line_comment] = ACTIONS(1112), + [sym__raw_identifier] = ACTIONS(2932), + [sym_self] = ACTIONS(2930), + [sym_super] = ACTIONS(2930), + [sym_crate] = ACTIONS(2930), + [sym_metavariable] = ACTIONS(2932), + [sym_grit_metavariable] = ACTIONS(2932), + [sym_raw_string_literal] = ACTIONS(2932), + [sym_float_literal] = ACTIONS(2932), + [sym_block_comment] = ACTIONS(3), + }, + [655] = { + [sym__primitive_identifier] = ACTIONS(764), + [anon_sym_LPAREN] = ACTIONS(771), + [anon_sym_RPAREN] = ACTIONS(771), + [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_RBRACE] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(771), + [anon_sym_RBRACK] = ACTIONS(771), + [anon_sym_DOLLAR] = ACTIONS(764), + [aux_sym__non_special_token_token1] = ACTIONS(764), + [anon_sym_SQUOTE] = ACTIONS(764), + [anon_sym_as] = ACTIONS(764), + [anon_sym_async] = ACTIONS(764), + [anon_sym_await] = ACTIONS(764), + [anon_sym_break] = ACTIONS(764), + [anon_sym_const] = ACTIONS(764), + [anon_sym_continue] = ACTIONS(764), + [anon_sym_default] = ACTIONS(764), + [anon_sym_enum] = ACTIONS(764), + [anon_sym_fn] = ACTIONS(764), + [anon_sym_for] = ACTIONS(764), + [anon_sym_if] = ACTIONS(764), + [anon_sym_impl] = ACTIONS(764), + [anon_sym_let] = ACTIONS(764), + [anon_sym_loop] = ACTIONS(764), + [anon_sym_match] = ACTIONS(764), + [anon_sym_mod] = ACTIONS(764), + [anon_sym_pub] = ACTIONS(764), + [anon_sym_return] = ACTIONS(764), + [anon_sym_static] = ACTIONS(764), + [anon_sym_struct] = ACTIONS(764), + [anon_sym_trait] = ACTIONS(764), + [anon_sym_type] = ACTIONS(764), + [anon_sym_union] = ACTIONS(764), + [anon_sym_unsafe] = ACTIONS(764), + [anon_sym_use] = ACTIONS(764), + [anon_sym_where] = ACTIONS(764), + [anon_sym_while] = ACTIONS(764), + [sym_mutable_specifier] = ACTIONS(764), + [sym_integer_literal] = ACTIONS(771), + [aux_sym_string_literal_token1] = ACTIONS(771), + [sym_char_literal] = ACTIONS(771), + [anon_sym_true] = ACTIONS(764), + [anon_sym_false] = ACTIONS(764), + [anon_sym_u8] = ACTIONS(764), + [anon_sym_i8] = ACTIONS(764), + [anon_sym_u16] = ACTIONS(764), + [anon_sym_i16] = ACTIONS(764), + [anon_sym_u32] = ACTIONS(764), + [anon_sym_i32] = ACTIONS(764), + [anon_sym_u64] = ACTIONS(764), + [anon_sym_i64] = ACTIONS(764), + [anon_sym_u128] = ACTIONS(764), + [anon_sym_i128] = ACTIONS(764), + [anon_sym_isize] = ACTIONS(764), + [anon_sym_usize] = ACTIONS(764), + [anon_sym_f32] = ACTIONS(764), + [anon_sym_f64] = ACTIONS(764), + [anon_sym_bool] = ACTIONS(764), + [anon_sym_str] = ACTIONS(764), + [anon_sym_char] = ACTIONS(764), + [sym_line_comment] = ACTIONS(1112), + [sym__raw_identifier] = ACTIONS(771), + [sym_self] = ACTIONS(764), + [sym_super] = ACTIONS(764), + [sym_crate] = ACTIONS(764), + [sym_metavariable] = ACTIONS(771), + [sym_grit_metavariable] = ACTIONS(771), + [sym_raw_string_literal] = ACTIONS(771), + [sym_float_literal] = ACTIONS(771), + [sym_block_comment] = ACTIONS(3), + }, [656] = { - [sym__primitive_identifier] = ACTIONS(2932), - [anon_sym_LPAREN] = ACTIONS(2934), - [anon_sym_RPAREN] = ACTIONS(2934), - [anon_sym_LBRACE] = ACTIONS(2934), - [anon_sym_RBRACE] = ACTIONS(2934), - [anon_sym_LBRACK] = ACTIONS(2934), - [anon_sym_RBRACK] = ACTIONS(2934), - [anon_sym_DOLLAR] = ACTIONS(2932), - [aux_sym__non_special_token_token1] = ACTIONS(2932), - [anon_sym_SQUOTE] = ACTIONS(2932), - [anon_sym_as] = ACTIONS(2932), - [anon_sym_async] = ACTIONS(2932), - [anon_sym_await] = ACTIONS(2932), - [anon_sym_break] = ACTIONS(2932), - [anon_sym_const] = ACTIONS(2932), - [anon_sym_continue] = ACTIONS(2932), - [anon_sym_default] = ACTIONS(2932), - [anon_sym_enum] = ACTIONS(2932), - [anon_sym_fn] = ACTIONS(2932), - [anon_sym_for] = ACTIONS(2932), - [anon_sym_if] = ACTIONS(2932), - [anon_sym_impl] = ACTIONS(2932), - [anon_sym_let] = ACTIONS(2932), - [anon_sym_loop] = ACTIONS(2932), - [anon_sym_match] = ACTIONS(2932), - [anon_sym_mod] = ACTIONS(2932), - [anon_sym_pub] = ACTIONS(2932), - [anon_sym_return] = ACTIONS(2932), - [anon_sym_static] = ACTIONS(2932), - [anon_sym_struct] = ACTIONS(2932), - [anon_sym_trait] = ACTIONS(2932), - [anon_sym_type] = ACTIONS(2932), - [anon_sym_union] = ACTIONS(2932), - [anon_sym_unsafe] = ACTIONS(2932), - [anon_sym_use] = ACTIONS(2932), - [anon_sym_where] = ACTIONS(2932), - [anon_sym_while] = ACTIONS(2932), - [sym_mutable_specifier] = ACTIONS(2932), - [sym_integer_literal] = ACTIONS(2934), - [aux_sym_string_literal_token1] = ACTIONS(2934), - [sym_char_literal] = ACTIONS(2934), - [anon_sym_true] = ACTIONS(2932), - [anon_sym_false] = ACTIONS(2932), - [anon_sym_u8] = ACTIONS(2932), - [anon_sym_i8] = ACTIONS(2932), - [anon_sym_u16] = ACTIONS(2932), - [anon_sym_i16] = ACTIONS(2932), - [anon_sym_u32] = ACTIONS(2932), - [anon_sym_i32] = ACTIONS(2932), - [anon_sym_u64] = ACTIONS(2932), - [anon_sym_i64] = ACTIONS(2932), - [anon_sym_u128] = ACTIONS(2932), - [anon_sym_i128] = ACTIONS(2932), - [anon_sym_isize] = ACTIONS(2932), - [anon_sym_usize] = ACTIONS(2932), - [anon_sym_f32] = ACTIONS(2932), - [anon_sym_f64] = ACTIONS(2932), - [anon_sym_bool] = ACTIONS(2932), - [anon_sym_str] = ACTIONS(2932), - [anon_sym_char] = ACTIONS(2932), - [sym_line_comment] = ACTIONS(1172), - [sym__raw_identifier] = ACTIONS(2934), - [sym_self] = ACTIONS(2932), - [sym_super] = ACTIONS(2932), - [sym_crate] = ACTIONS(2932), - [sym_metavariable] = ACTIONS(2934), - [sym_grit_metavariable] = ACTIONS(2934), - [sym_raw_string_literal] = ACTIONS(2934), - [sym_float_literal] = ACTIONS(2934), + [sym__primitive_identifier] = ACTIONS(2934), + [anon_sym_LPAREN] = ACTIONS(2936), + [anon_sym_RPAREN] = ACTIONS(2936), + [anon_sym_LBRACE] = ACTIONS(2936), + [anon_sym_RBRACE] = ACTIONS(2936), + [anon_sym_LBRACK] = ACTIONS(2936), + [anon_sym_RBRACK] = ACTIONS(2936), + [anon_sym_DOLLAR] = ACTIONS(2934), + [aux_sym__non_special_token_token1] = ACTIONS(2934), + [anon_sym_SQUOTE] = ACTIONS(2934), + [anon_sym_as] = ACTIONS(2934), + [anon_sym_async] = ACTIONS(2934), + [anon_sym_await] = ACTIONS(2934), + [anon_sym_break] = ACTIONS(2934), + [anon_sym_const] = ACTIONS(2934), + [anon_sym_continue] = ACTIONS(2934), + [anon_sym_default] = ACTIONS(2934), + [anon_sym_enum] = ACTIONS(2934), + [anon_sym_fn] = ACTIONS(2934), + [anon_sym_for] = ACTIONS(2934), + [anon_sym_if] = ACTIONS(2934), + [anon_sym_impl] = ACTIONS(2934), + [anon_sym_let] = ACTIONS(2934), + [anon_sym_loop] = ACTIONS(2934), + [anon_sym_match] = ACTIONS(2934), + [anon_sym_mod] = ACTIONS(2934), + [anon_sym_pub] = ACTIONS(2934), + [anon_sym_return] = ACTIONS(2934), + [anon_sym_static] = ACTIONS(2934), + [anon_sym_struct] = ACTIONS(2934), + [anon_sym_trait] = ACTIONS(2934), + [anon_sym_type] = ACTIONS(2934), + [anon_sym_union] = ACTIONS(2934), + [anon_sym_unsafe] = ACTIONS(2934), + [anon_sym_use] = ACTIONS(2934), + [anon_sym_where] = ACTIONS(2934), + [anon_sym_while] = ACTIONS(2934), + [sym_mutable_specifier] = ACTIONS(2934), + [sym_integer_literal] = ACTIONS(2936), + [aux_sym_string_literal_token1] = ACTIONS(2936), + [sym_char_literal] = ACTIONS(2936), + [anon_sym_true] = ACTIONS(2934), + [anon_sym_false] = ACTIONS(2934), + [anon_sym_u8] = ACTIONS(2934), + [anon_sym_i8] = ACTIONS(2934), + [anon_sym_u16] = ACTIONS(2934), + [anon_sym_i16] = ACTIONS(2934), + [anon_sym_u32] = ACTIONS(2934), + [anon_sym_i32] = ACTIONS(2934), + [anon_sym_u64] = ACTIONS(2934), + [anon_sym_i64] = ACTIONS(2934), + [anon_sym_u128] = ACTIONS(2934), + [anon_sym_i128] = ACTIONS(2934), + [anon_sym_isize] = ACTIONS(2934), + [anon_sym_usize] = ACTIONS(2934), + [anon_sym_f32] = ACTIONS(2934), + [anon_sym_f64] = ACTIONS(2934), + [anon_sym_bool] = ACTIONS(2934), + [anon_sym_str] = ACTIONS(2934), + [anon_sym_char] = ACTIONS(2934), + [sym_line_comment] = ACTIONS(1112), + [sym__raw_identifier] = ACTIONS(2936), + [sym_self] = ACTIONS(2934), + [sym_super] = ACTIONS(2934), + [sym_crate] = ACTIONS(2934), + [sym_metavariable] = ACTIONS(2936), + [sym_grit_metavariable] = ACTIONS(2936), + [sym_raw_string_literal] = ACTIONS(2936), + [sym_float_literal] = ACTIONS(2936), [sym_block_comment] = ACTIONS(3), }, [657] = { - [sym__primitive_identifier] = ACTIONS(2936), - [anon_sym_LPAREN] = ACTIONS(2938), - [anon_sym_RPAREN] = ACTIONS(2938), - [anon_sym_LBRACE] = ACTIONS(2938), - [anon_sym_RBRACE] = ACTIONS(2938), - [anon_sym_LBRACK] = ACTIONS(2938), - [anon_sym_RBRACK] = ACTIONS(2938), - [anon_sym_DOLLAR] = ACTIONS(2936), - [aux_sym__non_special_token_token1] = ACTIONS(2936), - [anon_sym_SQUOTE] = ACTIONS(2936), - [anon_sym_as] = ACTIONS(2936), - [anon_sym_async] = ACTIONS(2936), - [anon_sym_await] = ACTIONS(2936), - [anon_sym_break] = ACTIONS(2936), - [anon_sym_const] = ACTIONS(2936), - [anon_sym_continue] = ACTIONS(2936), - [anon_sym_default] = ACTIONS(2936), - [anon_sym_enum] = ACTIONS(2936), - [anon_sym_fn] = ACTIONS(2936), - [anon_sym_for] = ACTIONS(2936), - [anon_sym_if] = ACTIONS(2936), - [anon_sym_impl] = ACTIONS(2936), - [anon_sym_let] = ACTIONS(2936), - [anon_sym_loop] = ACTIONS(2936), - [anon_sym_match] = ACTIONS(2936), - [anon_sym_mod] = ACTIONS(2936), - [anon_sym_pub] = ACTIONS(2936), - [anon_sym_return] = ACTIONS(2936), - [anon_sym_static] = ACTIONS(2936), - [anon_sym_struct] = ACTIONS(2936), - [anon_sym_trait] = ACTIONS(2936), - [anon_sym_type] = ACTIONS(2936), - [anon_sym_union] = ACTIONS(2936), - [anon_sym_unsafe] = ACTIONS(2936), - [anon_sym_use] = ACTIONS(2936), - [anon_sym_where] = ACTIONS(2936), - [anon_sym_while] = ACTIONS(2936), - [sym_mutable_specifier] = ACTIONS(2936), - [sym_integer_literal] = ACTIONS(2938), - [aux_sym_string_literal_token1] = ACTIONS(2938), - [sym_char_literal] = ACTIONS(2938), - [anon_sym_true] = ACTIONS(2936), - [anon_sym_false] = ACTIONS(2936), - [anon_sym_u8] = ACTIONS(2936), - [anon_sym_i8] = ACTIONS(2936), - [anon_sym_u16] = ACTIONS(2936), - [anon_sym_i16] = ACTIONS(2936), - [anon_sym_u32] = ACTIONS(2936), - [anon_sym_i32] = ACTIONS(2936), - [anon_sym_u64] = ACTIONS(2936), - [anon_sym_i64] = ACTIONS(2936), - [anon_sym_u128] = ACTIONS(2936), - [anon_sym_i128] = ACTIONS(2936), - [anon_sym_isize] = ACTIONS(2936), - [anon_sym_usize] = ACTIONS(2936), - [anon_sym_f32] = ACTIONS(2936), - [anon_sym_f64] = ACTIONS(2936), - [anon_sym_bool] = ACTIONS(2936), - [anon_sym_str] = ACTIONS(2936), - [anon_sym_char] = ACTIONS(2936), - [sym_line_comment] = ACTIONS(1172), - [sym__raw_identifier] = ACTIONS(2938), - [sym_self] = ACTIONS(2936), - [sym_super] = ACTIONS(2936), - [sym_crate] = ACTIONS(2936), - [sym_metavariable] = ACTIONS(2938), - [sym_grit_metavariable] = ACTIONS(2938), - [sym_raw_string_literal] = ACTIONS(2938), - [sym_float_literal] = ACTIONS(2938), + [sym_function_modifiers] = STATE(2771), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(1503), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2704), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1284), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(2283), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1822), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1701), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_PLUS] = ACTIONS(2888), + [anon_sym_STAR] = ACTIONS(2890), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(2892), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(2894), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(2896), + [anon_sym_dyn] = ACTIONS(2898), + [sym_mutable_specifier] = ACTIONS(2938), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, [658] = { @@ -79243,7 +79318,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2940), [anon_sym_str] = ACTIONS(2940), [anon_sym_char] = ACTIONS(2940), - [sym_line_comment] = ACTIONS(1172), + [sym_line_comment] = ACTIONS(1112), [sym__raw_identifier] = ACTIONS(2942), [sym_self] = ACTIONS(2940), [sym_super] = ACTIONS(2940), @@ -79255,121 +79330,548 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [659] = { - [sym_function_modifiers] = STATE(2724), - [sym_type_parameters] = STATE(700), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(1771), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1775), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1665), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1635), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), - [anon_sym_LT] = ACTIONS(2944), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(1503), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_PLUS] = ACTIONS(2882), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [sym_mutable_specifier] = ACTIONS(2944), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, [660] = { - [sym_function_modifiers] = STATE(2642), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(1238), - [sym_bracketed_type] = STATE(2669), - [sym_lifetime] = STATE(650), - [sym_array_type] = STATE(1166), - [sym_for_lifetimes] = STATE(1280), - [sym_function_type] = STATE(1166), - [sym_tuple_type] = STATE(1166), - [sym_unit_type] = STATE(1166), - [sym_generic_type] = STATE(1132), - [sym_generic_type_with_turbofish] = STATE(2670), - [sym_bounded_type] = STATE(1166), - [sym_reference_type] = STATE(1166), - [sym_pointer_type] = STATE(1166), - [sym_empty_type] = STATE(1166), - [sym_abstract_type] = STATE(1166), - [sym_dynamic_type] = STATE(1166), - [sym_macro_invocation] = STATE(1166), - [sym_scoped_identifier] = STATE(2544), - [sym_scoped_type_identifier] = STATE(830), - [sym_primitive_type] = STATE(1108), - [sym_identifier] = STATE(817), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(2880), - [anon_sym_LPAREN] = ACTIONS(2882), - [anon_sym_LBRACK] = ACTIONS(2884), - [anon_sym_STAR] = ACTIONS(2888), - [anon_sym_SQUOTE] = ACTIONS(2946), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(2890), + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(2151), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_RPAREN] = ACTIONS(2946), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), + [sym_block_comment] = ACTIONS(3), + }, + [661] = { + [sym_function_modifiers] = STATE(2667), + [sym_type_parameters] = STATE(771), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(1833), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1824), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1667), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1642), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), + [anon_sym_LT] = ACTIONS(2948), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), + [sym_block_comment] = ACTIONS(3), + }, + [662] = { + [sym__primitive_identifier] = ACTIONS(2950), + [anon_sym_LPAREN] = ACTIONS(2954), + [anon_sym_RPAREN] = ACTIONS(2954), + [anon_sym_LBRACE] = ACTIONS(2954), + [anon_sym_RBRACE] = ACTIONS(2954), + [anon_sym_LBRACK] = ACTIONS(2954), + [anon_sym_RBRACK] = ACTIONS(2954), + [anon_sym_DOLLAR] = ACTIONS(2954), + [aux_sym__non_special_token_token1] = ACTIONS(2950), + [anon_sym_SQUOTE] = ACTIONS(2950), + [anon_sym_as] = ACTIONS(2950), + [anon_sym_async] = ACTIONS(2950), + [anon_sym_await] = ACTIONS(2950), + [anon_sym_break] = ACTIONS(2950), + [anon_sym_const] = ACTIONS(2950), + [anon_sym_continue] = ACTIONS(2950), + [anon_sym_default] = ACTIONS(2950), + [anon_sym_enum] = ACTIONS(2950), + [anon_sym_fn] = ACTIONS(2950), + [anon_sym_for] = ACTIONS(2950), + [anon_sym_if] = ACTIONS(2950), + [anon_sym_impl] = ACTIONS(2950), + [anon_sym_let] = ACTIONS(2950), + [anon_sym_loop] = ACTIONS(2950), + [anon_sym_match] = ACTIONS(2950), + [anon_sym_mod] = ACTIONS(2950), + [anon_sym_pub] = ACTIONS(2950), + [anon_sym_return] = ACTIONS(2950), + [anon_sym_static] = ACTIONS(2950), + [anon_sym_struct] = ACTIONS(2950), + [anon_sym_trait] = ACTIONS(2950), + [anon_sym_type] = ACTIONS(2950), + [anon_sym_union] = ACTIONS(2950), + [anon_sym_unsafe] = ACTIONS(2950), + [anon_sym_use] = ACTIONS(2950), + [anon_sym_where] = ACTIONS(2950), + [anon_sym_while] = ACTIONS(2950), + [sym_mutable_specifier] = ACTIONS(2950), + [sym_integer_literal] = ACTIONS(2954), + [aux_sym_string_literal_token1] = ACTIONS(2954), + [sym_char_literal] = ACTIONS(2954), + [anon_sym_true] = ACTIONS(2950), + [anon_sym_false] = ACTIONS(2950), + [anon_sym_u8] = ACTIONS(2950), + [anon_sym_i8] = ACTIONS(2950), + [anon_sym_u16] = ACTIONS(2950), + [anon_sym_i16] = ACTIONS(2950), + [anon_sym_u32] = ACTIONS(2950), + [anon_sym_i32] = ACTIONS(2950), + [anon_sym_u64] = ACTIONS(2950), + [anon_sym_i64] = ACTIONS(2950), + [anon_sym_u128] = ACTIONS(2950), + [anon_sym_i128] = ACTIONS(2950), + [anon_sym_isize] = ACTIONS(2950), + [anon_sym_usize] = ACTIONS(2950), + [anon_sym_f32] = ACTIONS(2950), + [anon_sym_f64] = ACTIONS(2950), + [anon_sym_bool] = ACTIONS(2950), + [anon_sym_str] = ACTIONS(2950), + [anon_sym_char] = ACTIONS(2950), + [sym_line_comment] = ACTIONS(1112), + [sym__raw_identifier] = ACTIONS(2954), + [sym_self] = ACTIONS(2950), + [sym_super] = ACTIONS(2950), + [sym_crate] = ACTIONS(2950), + [sym_grit_metavariable] = ACTIONS(2954), + [sym_raw_string_literal] = ACTIONS(2954), + [sym_float_literal] = ACTIONS(2954), + [sym_block_comment] = ACTIONS(3), + }, + [663] = { + [sym_function_modifiers] = STATE(2771), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(2538), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(646), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1284), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(2283), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1822), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1701), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(2890), + [anon_sym_SQUOTE] = ACTIONS(2958), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), [anon_sym_fn] = ACTIONS(2892), - [anon_sym_for] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), [anon_sym_impl] = ACTIONS(2894), - [anon_sym_union] = ACTIONS(2896), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(2898), - [anon_sym_extern] = ACTIONS(876), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(2896), + [anon_sym_dyn] = ACTIONS(2898), + [sym_mutable_specifier] = ACTIONS(2960), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), + [sym_block_comment] = ACTIONS(3), + }, + [664] = { + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(2151), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_RPAREN] = ACTIONS(2962), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), + [sym_block_comment] = ACTIONS(3), + }, + [665] = { + [sym__primitive_identifier] = ACTIONS(1036), + [anon_sym_LPAREN] = ACTIONS(1038), + [anon_sym_RPAREN] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(1038), + [anon_sym_RBRACE] = ACTIONS(1038), + [anon_sym_LBRACK] = ACTIONS(1038), + [anon_sym_RBRACK] = ACTIONS(1038), + [anon_sym_DOLLAR] = ACTIONS(1038), + [aux_sym__non_special_token_token1] = ACTIONS(1036), + [anon_sym_SQUOTE] = ACTIONS(1036), + [anon_sym_as] = ACTIONS(1036), + [anon_sym_async] = ACTIONS(1036), + [anon_sym_await] = ACTIONS(1036), + [anon_sym_break] = ACTIONS(1036), + [anon_sym_const] = ACTIONS(1036), + [anon_sym_continue] = ACTIONS(1036), + [anon_sym_default] = ACTIONS(1036), + [anon_sym_enum] = ACTIONS(1036), + [anon_sym_fn] = ACTIONS(1036), + [anon_sym_for] = ACTIONS(1036), + [anon_sym_if] = ACTIONS(1036), + [anon_sym_impl] = ACTIONS(1036), + [anon_sym_let] = ACTIONS(1036), + [anon_sym_loop] = ACTIONS(1036), + [anon_sym_match] = ACTIONS(1036), + [anon_sym_mod] = ACTIONS(1036), + [anon_sym_pub] = ACTIONS(1036), + [anon_sym_return] = ACTIONS(1036), + [anon_sym_static] = ACTIONS(1036), + [anon_sym_struct] = ACTIONS(1036), + [anon_sym_trait] = ACTIONS(1036), + [anon_sym_type] = ACTIONS(1036), + [anon_sym_union] = ACTIONS(1036), + [anon_sym_unsafe] = ACTIONS(1036), + [anon_sym_use] = ACTIONS(1036), + [anon_sym_where] = ACTIONS(1036), + [anon_sym_while] = ACTIONS(1036), + [sym_mutable_specifier] = ACTIONS(1036), + [sym_integer_literal] = ACTIONS(1038), + [aux_sym_string_literal_token1] = ACTIONS(1038), + [sym_char_literal] = ACTIONS(1038), + [anon_sym_true] = ACTIONS(1036), + [anon_sym_false] = ACTIONS(1036), + [anon_sym_u8] = ACTIONS(1036), + [anon_sym_i8] = ACTIONS(1036), + [anon_sym_u16] = ACTIONS(1036), + [anon_sym_i16] = ACTIONS(1036), + [anon_sym_u32] = ACTIONS(1036), + [anon_sym_i32] = ACTIONS(1036), + [anon_sym_u64] = ACTIONS(1036), + [anon_sym_i64] = ACTIONS(1036), + [anon_sym_u128] = ACTIONS(1036), + [anon_sym_i128] = ACTIONS(1036), + [anon_sym_isize] = ACTIONS(1036), + [anon_sym_usize] = ACTIONS(1036), + [anon_sym_f32] = ACTIONS(1036), + [anon_sym_f64] = ACTIONS(1036), + [anon_sym_bool] = ACTIONS(1036), + [anon_sym_str] = ACTIONS(1036), + [anon_sym_char] = ACTIONS(1036), + [sym_line_comment] = ACTIONS(1112), + [sym__raw_identifier] = ACTIONS(1038), + [sym_self] = ACTIONS(1036), + [sym_super] = ACTIONS(1036), + [sym_crate] = ACTIONS(1036), + [sym_grit_metavariable] = ACTIONS(1038), + [sym_raw_string_literal] = ACTIONS(1038), + [sym_float_literal] = ACTIONS(1038), + [sym_block_comment] = ACTIONS(3), + }, + [666] = { + [sym_function_modifiers] = STATE(2645), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(1195), + [sym_bracketed_type] = STATE(2673), + [sym_lifetime] = STATE(640), + [sym_array_type] = STATE(1237), + [sym_for_lifetimes] = STATE(1282), + [sym_function_type] = STATE(1237), + [sym_tuple_type] = STATE(1237), + [sym_unit_type] = STATE(1237), + [sym_generic_type] = STATE(1135), + [sym_generic_type_with_turbofish] = STATE(2674), + [sym_bounded_type] = STATE(1237), + [sym_reference_type] = STATE(1237), + [sym_pointer_type] = STATE(1237), + [sym_empty_type] = STATE(1237), + [sym_abstract_type] = STATE(1237), + [sym_dynamic_type] = STATE(1237), + [sym_macro_invocation] = STATE(1237), + [sym_scoped_identifier] = STATE(2548), + [sym_scoped_type_identifier] = STATE(827), + [sym_primitive_type] = STATE(1116), + [sym_identifier] = STATE(818), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(2832), + [anon_sym_LPAREN] = ACTIONS(2834), + [anon_sym_LBRACK] = ACTIONS(2836), + [anon_sym_STAR] = ACTIONS(2840), + [anon_sym_SQUOTE] = ACTIONS(2958), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(2842), + [anon_sym_fn] = ACTIONS(2844), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(2846), + [anon_sym_union] = ACTIONS(2848), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(2850), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(2900), - [anon_sym_AMP] = ACTIONS(2902), - [anon_sym_dyn] = ACTIONS(2904), - [sym_mutable_specifier] = ACTIONS(2948), + [anon_sym_COLON_COLON] = ACTIONS(2852), + [anon_sym_AMP] = ACTIONS(2854), + [anon_sym_dyn] = ACTIONS(2856), + [sym_mutable_specifier] = ACTIONS(2964), [anon_sym_u8] = ACTIONS(95), [anon_sym_i8] = ACTIONS(95), [anon_sym_u16] = ACTIONS(95), @@ -79388,441 +79890,583 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(95), [anon_sym_char] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(2908), - [sym_self] = ACTIONS(2910), - [sym_super] = ACTIONS(2910), - [sym_crate] = ACTIONS(2910), - [sym_metavariable] = ACTIONS(2912), - [sym_grit_metavariable] = ACTIONS(2908), + [sym__raw_identifier] = ACTIONS(2860), + [sym_self] = ACTIONS(2862), + [sym_super] = ACTIONS(2862), + [sym_crate] = ACTIONS(2862), + [sym_metavariable] = ACTIONS(2864), + [sym_grit_metavariable] = ACTIONS(2860), [sym_block_comment] = ACTIONS(3), }, - [661] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(2372), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_RPAREN] = ACTIONS(2950), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [667] = { + [sym__primitive_identifier] = ACTIONS(822), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_RPAREN] = ACTIONS(820), + [anon_sym_LBRACE] = ACTIONS(820), + [anon_sym_RBRACE] = ACTIONS(820), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_RBRACK] = ACTIONS(820), + [anon_sym_DOLLAR] = ACTIONS(820), + [aux_sym__non_special_token_token1] = ACTIONS(822), + [anon_sym_SQUOTE] = ACTIONS(822), + [anon_sym_as] = ACTIONS(822), + [anon_sym_async] = ACTIONS(822), + [anon_sym_await] = ACTIONS(822), + [anon_sym_break] = ACTIONS(822), + [anon_sym_const] = ACTIONS(822), + [anon_sym_continue] = ACTIONS(822), + [anon_sym_default] = ACTIONS(822), + [anon_sym_enum] = ACTIONS(822), + [anon_sym_fn] = ACTIONS(822), + [anon_sym_for] = ACTIONS(822), + [anon_sym_if] = ACTIONS(822), + [anon_sym_impl] = ACTIONS(822), + [anon_sym_let] = ACTIONS(822), + [anon_sym_loop] = ACTIONS(822), + [anon_sym_match] = ACTIONS(822), + [anon_sym_mod] = ACTIONS(822), + [anon_sym_pub] = ACTIONS(822), + [anon_sym_return] = ACTIONS(822), + [anon_sym_static] = ACTIONS(822), + [anon_sym_struct] = ACTIONS(822), + [anon_sym_trait] = ACTIONS(822), + [anon_sym_type] = ACTIONS(822), + [anon_sym_union] = ACTIONS(822), + [anon_sym_unsafe] = ACTIONS(822), + [anon_sym_use] = ACTIONS(822), + [anon_sym_where] = ACTIONS(822), + [anon_sym_while] = ACTIONS(822), + [sym_mutable_specifier] = ACTIONS(822), + [sym_integer_literal] = ACTIONS(820), + [aux_sym_string_literal_token1] = ACTIONS(820), + [sym_char_literal] = ACTIONS(820), + [anon_sym_true] = ACTIONS(822), + [anon_sym_false] = ACTIONS(822), + [anon_sym_u8] = ACTIONS(822), + [anon_sym_i8] = ACTIONS(822), + [anon_sym_u16] = ACTIONS(822), + [anon_sym_i16] = ACTIONS(822), + [anon_sym_u32] = ACTIONS(822), + [anon_sym_i32] = ACTIONS(822), + [anon_sym_u64] = ACTIONS(822), + [anon_sym_i64] = ACTIONS(822), + [anon_sym_u128] = ACTIONS(822), + [anon_sym_i128] = ACTIONS(822), + [anon_sym_isize] = ACTIONS(822), + [anon_sym_usize] = ACTIONS(822), + [anon_sym_f32] = ACTIONS(822), + [anon_sym_f64] = ACTIONS(822), + [anon_sym_bool] = ACTIONS(822), + [anon_sym_str] = ACTIONS(822), + [anon_sym_char] = ACTIONS(822), + [sym_line_comment] = ACTIONS(1112), + [sym__raw_identifier] = ACTIONS(820), + [sym_self] = ACTIONS(822), + [sym_super] = ACTIONS(822), + [sym_crate] = ACTIONS(822), + [sym_grit_metavariable] = ACTIONS(820), + [sym_raw_string_literal] = ACTIONS(820), + [sym_float_literal] = ACTIONS(820), + [sym_block_comment] = ACTIONS(3), + }, + [668] = { + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(1989), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_RPAREN] = ACTIONS(2966), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, - [662] = { - [sym__primitive_identifier] = ACTIONS(2932), - [anon_sym_LPAREN] = ACTIONS(2934), - [anon_sym_RPAREN] = ACTIONS(2934), - [anon_sym_LBRACE] = ACTIONS(2934), - [anon_sym_RBRACE] = ACTIONS(2934), - [anon_sym_LBRACK] = ACTIONS(2934), - [anon_sym_RBRACK] = ACTIONS(2934), - [anon_sym_DOLLAR] = ACTIONS(2934), - [aux_sym__non_special_token_token1] = ACTIONS(2932), - [anon_sym_SQUOTE] = ACTIONS(2932), - [anon_sym_as] = ACTIONS(2932), - [anon_sym_async] = ACTIONS(2932), - [anon_sym_await] = ACTIONS(2932), - [anon_sym_break] = ACTIONS(2932), - [anon_sym_const] = ACTIONS(2932), - [anon_sym_continue] = ACTIONS(2932), - [anon_sym_default] = ACTIONS(2932), - [anon_sym_enum] = ACTIONS(2932), - [anon_sym_fn] = ACTIONS(2932), - [anon_sym_for] = ACTIONS(2932), - [anon_sym_if] = ACTIONS(2932), - [anon_sym_impl] = ACTIONS(2932), - [anon_sym_let] = ACTIONS(2932), - [anon_sym_loop] = ACTIONS(2932), - [anon_sym_match] = ACTIONS(2932), - [anon_sym_mod] = ACTIONS(2932), - [anon_sym_pub] = ACTIONS(2932), - [anon_sym_return] = ACTIONS(2932), - [anon_sym_static] = ACTIONS(2932), - [anon_sym_struct] = ACTIONS(2932), - [anon_sym_trait] = ACTIONS(2932), - [anon_sym_type] = ACTIONS(2932), - [anon_sym_union] = ACTIONS(2932), - [anon_sym_unsafe] = ACTIONS(2932), - [anon_sym_use] = ACTIONS(2932), - [anon_sym_where] = ACTIONS(2932), - [anon_sym_while] = ACTIONS(2932), - [sym_mutable_specifier] = ACTIONS(2932), - [sym_integer_literal] = ACTIONS(2934), - [aux_sym_string_literal_token1] = ACTIONS(2934), - [sym_char_literal] = ACTIONS(2934), - [anon_sym_true] = ACTIONS(2932), - [anon_sym_false] = ACTIONS(2932), - [anon_sym_u8] = ACTIONS(2932), - [anon_sym_i8] = ACTIONS(2932), - [anon_sym_u16] = ACTIONS(2932), - [anon_sym_i16] = ACTIONS(2932), - [anon_sym_u32] = ACTIONS(2932), - [anon_sym_i32] = ACTIONS(2932), - [anon_sym_u64] = ACTIONS(2932), - [anon_sym_i64] = ACTIONS(2932), - [anon_sym_u128] = ACTIONS(2932), - [anon_sym_i128] = ACTIONS(2932), - [anon_sym_isize] = ACTIONS(2932), - [anon_sym_usize] = ACTIONS(2932), - [anon_sym_f32] = ACTIONS(2932), - [anon_sym_f64] = ACTIONS(2932), - [anon_sym_bool] = ACTIONS(2932), - [anon_sym_str] = ACTIONS(2932), - [anon_sym_char] = ACTIONS(2932), - [sym_line_comment] = ACTIONS(1172), - [sym__raw_identifier] = ACTIONS(2934), - [sym_self] = ACTIONS(2932), - [sym_super] = ACTIONS(2932), - [sym_crate] = ACTIONS(2932), - [sym_grit_metavariable] = ACTIONS(2934), - [sym_raw_string_literal] = ACTIONS(2934), - [sym_float_literal] = ACTIONS(2934), + [669] = { + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(2151), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_RPAREN] = ACTIONS(2968), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, - [663] = { - [sym__primitive_identifier] = ACTIONS(2952), - [anon_sym_LPAREN] = ACTIONS(2956), - [anon_sym_RPAREN] = ACTIONS(2956), - [anon_sym_LBRACE] = ACTIONS(2956), - [anon_sym_RBRACE] = ACTIONS(2956), - [anon_sym_LBRACK] = ACTIONS(2956), - [anon_sym_RBRACK] = ACTIONS(2956), - [anon_sym_DOLLAR] = ACTIONS(2956), - [aux_sym__non_special_token_token1] = ACTIONS(2952), - [anon_sym_SQUOTE] = ACTIONS(2952), - [anon_sym_as] = ACTIONS(2952), - [anon_sym_async] = ACTIONS(2952), - [anon_sym_await] = ACTIONS(2952), - [anon_sym_break] = ACTIONS(2952), - [anon_sym_const] = ACTIONS(2952), - [anon_sym_continue] = ACTIONS(2952), - [anon_sym_default] = ACTIONS(2952), - [anon_sym_enum] = ACTIONS(2952), - [anon_sym_fn] = ACTIONS(2952), - [anon_sym_for] = ACTIONS(2952), - [anon_sym_if] = ACTIONS(2952), - [anon_sym_impl] = ACTIONS(2952), - [anon_sym_let] = ACTIONS(2952), - [anon_sym_loop] = ACTIONS(2952), - [anon_sym_match] = ACTIONS(2952), - [anon_sym_mod] = ACTIONS(2952), - [anon_sym_pub] = ACTIONS(2952), - [anon_sym_return] = ACTIONS(2952), - [anon_sym_static] = ACTIONS(2952), - [anon_sym_struct] = ACTIONS(2952), - [anon_sym_trait] = ACTIONS(2952), - [anon_sym_type] = ACTIONS(2952), - [anon_sym_union] = ACTIONS(2952), - [anon_sym_unsafe] = ACTIONS(2952), - [anon_sym_use] = ACTIONS(2952), - [anon_sym_where] = ACTIONS(2952), - [anon_sym_while] = ACTIONS(2952), - [sym_mutable_specifier] = ACTIONS(2952), - [sym_integer_literal] = ACTIONS(2956), - [aux_sym_string_literal_token1] = ACTIONS(2956), - [sym_char_literal] = ACTIONS(2956), - [anon_sym_true] = ACTIONS(2952), - [anon_sym_false] = ACTIONS(2952), - [anon_sym_u8] = ACTIONS(2952), - [anon_sym_i8] = ACTIONS(2952), - [anon_sym_u16] = ACTIONS(2952), - [anon_sym_i16] = ACTIONS(2952), - [anon_sym_u32] = ACTIONS(2952), - [anon_sym_i32] = ACTIONS(2952), - [anon_sym_u64] = ACTIONS(2952), - [anon_sym_i64] = ACTIONS(2952), - [anon_sym_u128] = ACTIONS(2952), - [anon_sym_i128] = ACTIONS(2952), - [anon_sym_isize] = ACTIONS(2952), - [anon_sym_usize] = ACTIONS(2952), - [anon_sym_f32] = ACTIONS(2952), - [anon_sym_f64] = ACTIONS(2952), - [anon_sym_bool] = ACTIONS(2952), - [anon_sym_str] = ACTIONS(2952), - [anon_sym_char] = ACTIONS(2952), - [sym_line_comment] = ACTIONS(1172), - [sym__raw_identifier] = ACTIONS(2956), - [sym_self] = ACTIONS(2952), - [sym_super] = ACTIONS(2952), - [sym_crate] = ACTIONS(2952), - [sym_grit_metavariable] = ACTIONS(2956), - [sym_raw_string_literal] = ACTIONS(2956), - [sym_float_literal] = ACTIONS(2956), + [670] = { + [sym_function_modifiers] = STATE(2771), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(1531), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(657), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1284), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(2283), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1822), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1701), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(2890), + [anon_sym_SQUOTE] = ACTIONS(2958), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(2892), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(2894), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(2896), + [anon_sym_dyn] = ACTIONS(2898), + [sym_mutable_specifier] = ACTIONS(2970), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, - [664] = { - [sym_function_modifiers] = STATE(2724), - [sym_type_parameters] = STATE(805), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(1819), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1769), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1668), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1637), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), - [anon_sym_LT] = ACTIONS(2944), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), + [671] = { + [sym__primitive_identifier] = ACTIONS(2930), + [anon_sym_LPAREN] = ACTIONS(2932), + [anon_sym_RPAREN] = ACTIONS(2932), + [anon_sym_LBRACE] = ACTIONS(2932), + [anon_sym_RBRACE] = ACTIONS(2932), + [anon_sym_LBRACK] = ACTIONS(2932), + [anon_sym_RBRACK] = ACTIONS(2932), + [anon_sym_DOLLAR] = ACTIONS(2932), + [aux_sym__non_special_token_token1] = ACTIONS(2930), + [anon_sym_SQUOTE] = ACTIONS(2930), + [anon_sym_as] = ACTIONS(2930), + [anon_sym_async] = ACTIONS(2930), + [anon_sym_await] = ACTIONS(2930), + [anon_sym_break] = ACTIONS(2930), + [anon_sym_const] = ACTIONS(2930), + [anon_sym_continue] = ACTIONS(2930), + [anon_sym_default] = ACTIONS(2930), + [anon_sym_enum] = ACTIONS(2930), + [anon_sym_fn] = ACTIONS(2930), + [anon_sym_for] = ACTIONS(2930), + [anon_sym_if] = ACTIONS(2930), + [anon_sym_impl] = ACTIONS(2930), + [anon_sym_let] = ACTIONS(2930), + [anon_sym_loop] = ACTIONS(2930), + [anon_sym_match] = ACTIONS(2930), + [anon_sym_mod] = ACTIONS(2930), + [anon_sym_pub] = ACTIONS(2930), + [anon_sym_return] = ACTIONS(2930), + [anon_sym_static] = ACTIONS(2930), + [anon_sym_struct] = ACTIONS(2930), + [anon_sym_trait] = ACTIONS(2930), + [anon_sym_type] = ACTIONS(2930), + [anon_sym_union] = ACTIONS(2930), + [anon_sym_unsafe] = ACTIONS(2930), + [anon_sym_use] = ACTIONS(2930), + [anon_sym_where] = ACTIONS(2930), + [anon_sym_while] = ACTIONS(2930), + [sym_mutable_specifier] = ACTIONS(2930), + [sym_integer_literal] = ACTIONS(2932), + [aux_sym_string_literal_token1] = ACTIONS(2932), + [sym_char_literal] = ACTIONS(2932), + [anon_sym_true] = ACTIONS(2930), + [anon_sym_false] = ACTIONS(2930), + [anon_sym_u8] = ACTIONS(2930), + [anon_sym_i8] = ACTIONS(2930), + [anon_sym_u16] = ACTIONS(2930), + [anon_sym_i16] = ACTIONS(2930), + [anon_sym_u32] = ACTIONS(2930), + [anon_sym_i32] = ACTIONS(2930), + [anon_sym_u64] = ACTIONS(2930), + [anon_sym_i64] = ACTIONS(2930), + [anon_sym_u128] = ACTIONS(2930), + [anon_sym_i128] = ACTIONS(2930), + [anon_sym_isize] = ACTIONS(2930), + [anon_sym_usize] = ACTIONS(2930), + [anon_sym_f32] = ACTIONS(2930), + [anon_sym_f64] = ACTIONS(2930), + [anon_sym_bool] = ACTIONS(2930), + [anon_sym_str] = ACTIONS(2930), + [anon_sym_char] = ACTIONS(2930), + [sym_line_comment] = ACTIONS(1112), + [sym__raw_identifier] = ACTIONS(2932), + [sym_self] = ACTIONS(2930), + [sym_super] = ACTIONS(2930), + [sym_crate] = ACTIONS(2930), + [sym_grit_metavariable] = ACTIONS(2932), + [sym_raw_string_literal] = ACTIONS(2932), + [sym_float_literal] = ACTIONS(2932), [sym_block_comment] = ACTIONS(3), }, - [665] = { - [sym__primitive_identifier] = ACTIONS(832), - [anon_sym_LPAREN] = ACTIONS(830), - [anon_sym_RPAREN] = ACTIONS(830), - [anon_sym_LBRACE] = ACTIONS(830), - [anon_sym_RBRACE] = ACTIONS(830), - [anon_sym_LBRACK] = ACTIONS(830), - [anon_sym_RBRACK] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(830), - [aux_sym__non_special_token_token1] = ACTIONS(832), - [anon_sym_SQUOTE] = ACTIONS(832), - [anon_sym_as] = ACTIONS(832), - [anon_sym_async] = ACTIONS(832), - [anon_sym_await] = ACTIONS(832), - [anon_sym_break] = ACTIONS(832), - [anon_sym_const] = ACTIONS(832), - [anon_sym_continue] = ACTIONS(832), - [anon_sym_default] = ACTIONS(832), - [anon_sym_enum] = ACTIONS(832), - [anon_sym_fn] = ACTIONS(832), - [anon_sym_for] = ACTIONS(832), - [anon_sym_if] = ACTIONS(832), - [anon_sym_impl] = ACTIONS(832), - [anon_sym_let] = ACTIONS(832), - [anon_sym_loop] = ACTIONS(832), - [anon_sym_match] = ACTIONS(832), - [anon_sym_mod] = ACTIONS(832), - [anon_sym_pub] = ACTIONS(832), - [anon_sym_return] = ACTIONS(832), - [anon_sym_static] = ACTIONS(832), - [anon_sym_struct] = ACTIONS(832), - [anon_sym_trait] = ACTIONS(832), - [anon_sym_type] = ACTIONS(832), - [anon_sym_union] = ACTIONS(832), - [anon_sym_unsafe] = ACTIONS(832), - [anon_sym_use] = ACTIONS(832), - [anon_sym_where] = ACTIONS(832), - [anon_sym_while] = ACTIONS(832), - [sym_mutable_specifier] = ACTIONS(832), - [sym_integer_literal] = ACTIONS(830), - [aux_sym_string_literal_token1] = ACTIONS(830), - [sym_char_literal] = ACTIONS(830), - [anon_sym_true] = ACTIONS(832), - [anon_sym_false] = ACTIONS(832), - [anon_sym_u8] = ACTIONS(832), - [anon_sym_i8] = ACTIONS(832), - [anon_sym_u16] = ACTIONS(832), - [anon_sym_i16] = ACTIONS(832), - [anon_sym_u32] = ACTIONS(832), - [anon_sym_i32] = ACTIONS(832), - [anon_sym_u64] = ACTIONS(832), - [anon_sym_i64] = ACTIONS(832), - [anon_sym_u128] = ACTIONS(832), - [anon_sym_i128] = ACTIONS(832), - [anon_sym_isize] = ACTIONS(832), - [anon_sym_usize] = ACTIONS(832), - [anon_sym_f32] = ACTIONS(832), - [anon_sym_f64] = ACTIONS(832), - [anon_sym_bool] = ACTIONS(832), - [anon_sym_str] = ACTIONS(832), - [anon_sym_char] = ACTIONS(832), - [sym_line_comment] = ACTIONS(1172), - [sym__raw_identifier] = ACTIONS(830), - [sym_self] = ACTIONS(832), - [sym_super] = ACTIONS(832), - [sym_crate] = ACTIONS(832), - [sym_grit_metavariable] = ACTIONS(830), - [sym_raw_string_literal] = ACTIONS(830), - [sym_float_literal] = ACTIONS(830), + [672] = { + [sym__primitive_identifier] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_RPAREN] = ACTIONS(711), + [anon_sym_LBRACE] = ACTIONS(711), + [anon_sym_RBRACE] = ACTIONS(711), + [anon_sym_LBRACK] = ACTIONS(711), + [anon_sym_RBRACK] = ACTIONS(711), + [anon_sym_DOLLAR] = ACTIONS(711), + [aux_sym__non_special_token_token1] = ACTIONS(713), + [anon_sym_SQUOTE] = ACTIONS(713), + [anon_sym_as] = ACTIONS(713), + [anon_sym_async] = ACTIONS(713), + [anon_sym_await] = ACTIONS(713), + [anon_sym_break] = ACTIONS(713), + [anon_sym_const] = ACTIONS(713), + [anon_sym_continue] = ACTIONS(713), + [anon_sym_default] = ACTIONS(713), + [anon_sym_enum] = ACTIONS(713), + [anon_sym_fn] = ACTIONS(713), + [anon_sym_for] = ACTIONS(713), + [anon_sym_if] = ACTIONS(713), + [anon_sym_impl] = ACTIONS(713), + [anon_sym_let] = ACTIONS(713), + [anon_sym_loop] = ACTIONS(713), + [anon_sym_match] = ACTIONS(713), + [anon_sym_mod] = ACTIONS(713), + [anon_sym_pub] = ACTIONS(713), + [anon_sym_return] = ACTIONS(713), + [anon_sym_static] = ACTIONS(713), + [anon_sym_struct] = ACTIONS(713), + [anon_sym_trait] = ACTIONS(713), + [anon_sym_type] = ACTIONS(713), + [anon_sym_union] = ACTIONS(713), + [anon_sym_unsafe] = ACTIONS(713), + [anon_sym_use] = ACTIONS(713), + [anon_sym_where] = ACTIONS(713), + [anon_sym_while] = ACTIONS(713), + [sym_mutable_specifier] = ACTIONS(713), + [sym_integer_literal] = ACTIONS(711), + [aux_sym_string_literal_token1] = ACTIONS(711), + [sym_char_literal] = ACTIONS(711), + [anon_sym_true] = ACTIONS(713), + [anon_sym_false] = ACTIONS(713), + [anon_sym_u8] = ACTIONS(713), + [anon_sym_i8] = ACTIONS(713), + [anon_sym_u16] = ACTIONS(713), + [anon_sym_i16] = ACTIONS(713), + [anon_sym_u32] = ACTIONS(713), + [anon_sym_i32] = ACTIONS(713), + [anon_sym_u64] = ACTIONS(713), + [anon_sym_i64] = ACTIONS(713), + [anon_sym_u128] = ACTIONS(713), + [anon_sym_i128] = ACTIONS(713), + [anon_sym_isize] = ACTIONS(713), + [anon_sym_usize] = ACTIONS(713), + [anon_sym_f32] = ACTIONS(713), + [anon_sym_f64] = ACTIONS(713), + [anon_sym_bool] = ACTIONS(713), + [anon_sym_str] = ACTIONS(713), + [anon_sym_char] = ACTIONS(713), + [sym_line_comment] = ACTIONS(1112), + [sym__raw_identifier] = ACTIONS(711), + [sym_self] = ACTIONS(713), + [sym_super] = ACTIONS(713), + [sym_crate] = ACTIONS(713), + [sym_grit_metavariable] = ACTIONS(711), + [sym_raw_string_literal] = ACTIONS(711), + [sym_float_literal] = ACTIONS(711), [sym_block_comment] = ACTIONS(3), }, - [666] = { - [sym__primitive_identifier] = ACTIONS(719), - [anon_sym_LPAREN] = ACTIONS(717), - [anon_sym_RPAREN] = ACTIONS(717), - [anon_sym_LBRACE] = ACTIONS(717), - [anon_sym_RBRACE] = ACTIONS(717), - [anon_sym_LBRACK] = ACTIONS(717), - [anon_sym_RBRACK] = ACTIONS(717), - [anon_sym_DOLLAR] = ACTIONS(717), - [aux_sym__non_special_token_token1] = ACTIONS(719), - [anon_sym_SQUOTE] = ACTIONS(719), - [anon_sym_as] = ACTIONS(719), - [anon_sym_async] = ACTIONS(719), - [anon_sym_await] = ACTIONS(719), - [anon_sym_break] = ACTIONS(719), - [anon_sym_const] = ACTIONS(719), - [anon_sym_continue] = ACTIONS(719), - [anon_sym_default] = ACTIONS(719), - [anon_sym_enum] = ACTIONS(719), - [anon_sym_fn] = ACTIONS(719), - [anon_sym_for] = ACTIONS(719), - [anon_sym_if] = ACTIONS(719), - [anon_sym_impl] = ACTIONS(719), - [anon_sym_let] = ACTIONS(719), - [anon_sym_loop] = ACTIONS(719), - [anon_sym_match] = ACTIONS(719), - [anon_sym_mod] = ACTIONS(719), - [anon_sym_pub] = ACTIONS(719), - [anon_sym_return] = ACTIONS(719), - [anon_sym_static] = ACTIONS(719), - [anon_sym_struct] = ACTIONS(719), - [anon_sym_trait] = ACTIONS(719), - [anon_sym_type] = ACTIONS(719), - [anon_sym_union] = ACTIONS(719), - [anon_sym_unsafe] = ACTIONS(719), - [anon_sym_use] = ACTIONS(719), - [anon_sym_where] = ACTIONS(719), - [anon_sym_while] = ACTIONS(719), - [sym_mutable_specifier] = ACTIONS(719), - [sym_integer_literal] = ACTIONS(717), - [aux_sym_string_literal_token1] = ACTIONS(717), - [sym_char_literal] = ACTIONS(717), - [anon_sym_true] = ACTIONS(719), - [anon_sym_false] = ACTIONS(719), - [anon_sym_u8] = ACTIONS(719), - [anon_sym_i8] = ACTIONS(719), - [anon_sym_u16] = ACTIONS(719), - [anon_sym_i16] = ACTIONS(719), - [anon_sym_u32] = ACTIONS(719), - [anon_sym_i32] = ACTIONS(719), - [anon_sym_u64] = ACTIONS(719), - [anon_sym_i64] = ACTIONS(719), - [anon_sym_u128] = ACTIONS(719), - [anon_sym_i128] = ACTIONS(719), - [anon_sym_isize] = ACTIONS(719), - [anon_sym_usize] = ACTIONS(719), - [anon_sym_f32] = ACTIONS(719), - [anon_sym_f64] = ACTIONS(719), - [anon_sym_bool] = ACTIONS(719), - [anon_sym_str] = ACTIONS(719), - [anon_sym_char] = ACTIONS(719), - [sym_line_comment] = ACTIONS(1172), - [sym__raw_identifier] = ACTIONS(717), - [sym_self] = ACTIONS(719), - [sym_super] = ACTIONS(719), - [sym_crate] = ACTIONS(719), - [sym_grit_metavariable] = ACTIONS(717), - [sym_raw_string_literal] = ACTIONS(717), - [sym_float_literal] = ACTIONS(717), + [673] = { + [sym_function_modifiers] = STATE(2667), + [sym_type_parameters] = STATE(740), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(1876), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1753), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1657), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1625), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), + [anon_sym_LT] = ACTIONS(2948), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, - [667] = { + [674] = { + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(2151), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_RPAREN] = ACTIONS(2972), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), + [sym_block_comment] = ACTIONS(3), + }, + [675] = { [sym__primitive_identifier] = ACTIONS(2940), [anon_sym_LPAREN] = ACTIONS(2942), [anon_sym_RPAREN] = ACTIONS(2942), @@ -79883,7 +80527,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2940), [anon_sym_str] = ACTIONS(2940), [anon_sym_char] = ACTIONS(2940), - [sym_line_comment] = ACTIONS(1172), + [sym_line_comment] = ACTIONS(1112), [sym__raw_identifier] = ACTIONS(2942), [sym_self] = ACTIONS(2940), [sym_super] = ACTIONS(2940), @@ -79893,2165 +80537,1248 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2942), [sym_block_comment] = ACTIONS(3), }, - [668] = { - [sym__primitive_identifier] = ACTIONS(1038), - [anon_sym_LPAREN] = ACTIONS(1040), - [anon_sym_RPAREN] = ACTIONS(1040), - [anon_sym_LBRACE] = ACTIONS(1040), - [anon_sym_RBRACE] = ACTIONS(1040), - [anon_sym_LBRACK] = ACTIONS(1040), - [anon_sym_RBRACK] = ACTIONS(1040), - [anon_sym_DOLLAR] = ACTIONS(1040), - [aux_sym__non_special_token_token1] = ACTIONS(1038), - [anon_sym_SQUOTE] = ACTIONS(1038), - [anon_sym_as] = ACTIONS(1038), - [anon_sym_async] = ACTIONS(1038), - [anon_sym_await] = ACTIONS(1038), - [anon_sym_break] = ACTIONS(1038), - [anon_sym_const] = ACTIONS(1038), - [anon_sym_continue] = ACTIONS(1038), - [anon_sym_default] = ACTIONS(1038), - [anon_sym_enum] = ACTIONS(1038), - [anon_sym_fn] = ACTIONS(1038), - [anon_sym_for] = ACTIONS(1038), - [anon_sym_if] = ACTIONS(1038), - [anon_sym_impl] = ACTIONS(1038), - [anon_sym_let] = ACTIONS(1038), - [anon_sym_loop] = ACTIONS(1038), - [anon_sym_match] = ACTIONS(1038), - [anon_sym_mod] = ACTIONS(1038), - [anon_sym_pub] = ACTIONS(1038), - [anon_sym_return] = ACTIONS(1038), - [anon_sym_static] = ACTIONS(1038), - [anon_sym_struct] = ACTIONS(1038), - [anon_sym_trait] = ACTIONS(1038), - [anon_sym_type] = ACTIONS(1038), - [anon_sym_union] = ACTIONS(1038), - [anon_sym_unsafe] = ACTIONS(1038), - [anon_sym_use] = ACTIONS(1038), - [anon_sym_where] = ACTIONS(1038), - [anon_sym_while] = ACTIONS(1038), - [sym_mutable_specifier] = ACTIONS(1038), - [sym_integer_literal] = ACTIONS(1040), - [aux_sym_string_literal_token1] = ACTIONS(1040), - [sym_char_literal] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1038), - [anon_sym_false] = ACTIONS(1038), - [anon_sym_u8] = ACTIONS(1038), - [anon_sym_i8] = ACTIONS(1038), - [anon_sym_u16] = ACTIONS(1038), - [anon_sym_i16] = ACTIONS(1038), - [anon_sym_u32] = ACTIONS(1038), - [anon_sym_i32] = ACTIONS(1038), - [anon_sym_u64] = ACTIONS(1038), - [anon_sym_i64] = ACTIONS(1038), - [anon_sym_u128] = ACTIONS(1038), - [anon_sym_i128] = ACTIONS(1038), - [anon_sym_isize] = ACTIONS(1038), - [anon_sym_usize] = ACTIONS(1038), - [anon_sym_f32] = ACTIONS(1038), - [anon_sym_f64] = ACTIONS(1038), - [anon_sym_bool] = ACTIONS(1038), - [anon_sym_str] = ACTIONS(1038), - [anon_sym_char] = ACTIONS(1038), - [sym_line_comment] = ACTIONS(1172), - [sym__raw_identifier] = ACTIONS(1040), - [sym_self] = ACTIONS(1038), - [sym_super] = ACTIONS(1038), - [sym_crate] = ACTIONS(1038), - [sym_grit_metavariable] = ACTIONS(1040), - [sym_raw_string_literal] = ACTIONS(1040), - [sym_float_literal] = ACTIONS(1040), - [sym_block_comment] = ACTIONS(3), - }, - [669] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(1509), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(640), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2946), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [sym_mutable_specifier] = ACTIONS(2960), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), - [sym_block_comment] = ACTIONS(3), - }, - [670] = { - [sym__primitive_identifier] = ACTIONS(2852), - [anon_sym_LPAREN] = ACTIONS(2854), - [anon_sym_RPAREN] = ACTIONS(2854), - [anon_sym_LBRACE] = ACTIONS(2854), - [anon_sym_RBRACE] = ACTIONS(2854), - [anon_sym_LBRACK] = ACTIONS(2854), - [anon_sym_RBRACK] = ACTIONS(2854), - [anon_sym_DOLLAR] = ACTIONS(2854), - [aux_sym__non_special_token_token1] = ACTIONS(2852), - [anon_sym_SQUOTE] = ACTIONS(2852), - [anon_sym_as] = ACTIONS(2852), - [anon_sym_async] = ACTIONS(2852), - [anon_sym_await] = ACTIONS(2852), - [anon_sym_break] = ACTIONS(2852), - [anon_sym_const] = ACTIONS(2852), - [anon_sym_continue] = ACTIONS(2852), - [anon_sym_default] = ACTIONS(2852), - [anon_sym_enum] = ACTIONS(2852), - [anon_sym_fn] = ACTIONS(2852), - [anon_sym_for] = ACTIONS(2852), - [anon_sym_if] = ACTIONS(2852), - [anon_sym_impl] = ACTIONS(2852), - [anon_sym_let] = ACTIONS(2852), - [anon_sym_loop] = ACTIONS(2852), - [anon_sym_match] = ACTIONS(2852), - [anon_sym_mod] = ACTIONS(2852), - [anon_sym_pub] = ACTIONS(2852), - [anon_sym_return] = ACTIONS(2852), - [anon_sym_static] = ACTIONS(2852), - [anon_sym_struct] = ACTIONS(2852), - [anon_sym_trait] = ACTIONS(2852), - [anon_sym_type] = ACTIONS(2852), - [anon_sym_union] = ACTIONS(2852), - [anon_sym_unsafe] = ACTIONS(2852), - [anon_sym_use] = ACTIONS(2852), - [anon_sym_where] = ACTIONS(2852), - [anon_sym_while] = ACTIONS(2852), - [sym_mutable_specifier] = ACTIONS(2852), - [sym_integer_literal] = ACTIONS(2854), - [aux_sym_string_literal_token1] = ACTIONS(2854), - [sym_char_literal] = ACTIONS(2854), - [anon_sym_true] = ACTIONS(2852), - [anon_sym_false] = ACTIONS(2852), - [anon_sym_u8] = ACTIONS(2852), - [anon_sym_i8] = ACTIONS(2852), - [anon_sym_u16] = ACTIONS(2852), - [anon_sym_i16] = ACTIONS(2852), - [anon_sym_u32] = ACTIONS(2852), - [anon_sym_i32] = ACTIONS(2852), - [anon_sym_u64] = ACTIONS(2852), - [anon_sym_i64] = ACTIONS(2852), - [anon_sym_u128] = ACTIONS(2852), - [anon_sym_i128] = ACTIONS(2852), - [anon_sym_isize] = ACTIONS(2852), - [anon_sym_usize] = ACTIONS(2852), - [anon_sym_f32] = ACTIONS(2852), - [anon_sym_f64] = ACTIONS(2852), - [anon_sym_bool] = ACTIONS(2852), - [anon_sym_str] = ACTIONS(2852), - [anon_sym_char] = ACTIONS(2852), - [sym_line_comment] = ACTIONS(1172), - [sym__raw_identifier] = ACTIONS(2854), - [sym_self] = ACTIONS(2852), - [sym_super] = ACTIONS(2852), - [sym_crate] = ACTIONS(2852), - [sym_grit_metavariable] = ACTIONS(2854), - [sym_raw_string_literal] = ACTIONS(2854), - [sym_float_literal] = ACTIONS(2854), - [sym_block_comment] = ACTIONS(3), - }, - [671] = { - [sym__primitive_identifier] = ACTIONS(2876), - [anon_sym_LPAREN] = ACTIONS(2878), - [anon_sym_RPAREN] = ACTIONS(2878), - [anon_sym_LBRACE] = ACTIONS(2878), - [anon_sym_RBRACE] = ACTIONS(2878), - [anon_sym_LBRACK] = ACTIONS(2878), - [anon_sym_RBRACK] = ACTIONS(2878), - [anon_sym_DOLLAR] = ACTIONS(2878), - [aux_sym__non_special_token_token1] = ACTIONS(2876), - [anon_sym_SQUOTE] = ACTIONS(2876), - [anon_sym_as] = ACTIONS(2876), - [anon_sym_async] = ACTIONS(2876), - [anon_sym_await] = ACTIONS(2876), - [anon_sym_break] = ACTIONS(2876), - [anon_sym_const] = ACTIONS(2876), - [anon_sym_continue] = ACTIONS(2876), - [anon_sym_default] = ACTIONS(2876), - [anon_sym_enum] = ACTIONS(2876), - [anon_sym_fn] = ACTIONS(2876), - [anon_sym_for] = ACTIONS(2876), - [anon_sym_if] = ACTIONS(2876), - [anon_sym_impl] = ACTIONS(2876), - [anon_sym_let] = ACTIONS(2876), - [anon_sym_loop] = ACTIONS(2876), - [anon_sym_match] = ACTIONS(2876), - [anon_sym_mod] = ACTIONS(2876), - [anon_sym_pub] = ACTIONS(2876), - [anon_sym_return] = ACTIONS(2876), - [anon_sym_static] = ACTIONS(2876), - [anon_sym_struct] = ACTIONS(2876), - [anon_sym_trait] = ACTIONS(2876), - [anon_sym_type] = ACTIONS(2876), - [anon_sym_union] = ACTIONS(2876), - [anon_sym_unsafe] = ACTIONS(2876), - [anon_sym_use] = ACTIONS(2876), - [anon_sym_where] = ACTIONS(2876), - [anon_sym_while] = ACTIONS(2876), - [sym_mutable_specifier] = ACTIONS(2876), - [sym_integer_literal] = ACTIONS(2878), - [aux_sym_string_literal_token1] = ACTIONS(2878), - [sym_char_literal] = ACTIONS(2878), - [anon_sym_true] = ACTIONS(2876), - [anon_sym_false] = ACTIONS(2876), - [anon_sym_u8] = ACTIONS(2876), - [anon_sym_i8] = ACTIONS(2876), - [anon_sym_u16] = ACTIONS(2876), - [anon_sym_i16] = ACTIONS(2876), - [anon_sym_u32] = ACTIONS(2876), - [anon_sym_i32] = ACTIONS(2876), - [anon_sym_u64] = ACTIONS(2876), - [anon_sym_i64] = ACTIONS(2876), - [anon_sym_u128] = ACTIONS(2876), - [anon_sym_i128] = ACTIONS(2876), - [anon_sym_isize] = ACTIONS(2876), - [anon_sym_usize] = ACTIONS(2876), - [anon_sym_f32] = ACTIONS(2876), - [anon_sym_f64] = ACTIONS(2876), - [anon_sym_bool] = ACTIONS(2876), - [anon_sym_str] = ACTIONS(2876), - [anon_sym_char] = ACTIONS(2876), - [sym_line_comment] = ACTIONS(1172), - [sym__raw_identifier] = ACTIONS(2878), - [sym_self] = ACTIONS(2876), - [sym_super] = ACTIONS(2876), - [sym_crate] = ACTIONS(2876), - [sym_grit_metavariable] = ACTIONS(2878), - [sym_raw_string_literal] = ACTIONS(2878), - [sym_float_literal] = ACTIONS(2878), - [sym_block_comment] = ACTIONS(3), - }, - [672] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(2145), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_RPAREN] = ACTIONS(2962), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), - [sym_block_comment] = ACTIONS(3), - }, - [673] = { - [sym_function_modifiers] = STATE(2724), - [sym_type_parameters] = STATE(740), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(1793), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1805), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1659), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1631), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), - [anon_sym_LT] = ACTIONS(2944), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), - [sym_block_comment] = ACTIONS(3), - }, - [674] = { - [sym_function_modifiers] = STATE(2619), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(2481), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(652), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1278), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(2273), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1833), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1685), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(2840), - [anon_sym_SQUOTE] = ACTIONS(2946), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(2842), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(2844), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(2846), - [anon_sym_dyn] = ACTIONS(2848), - [sym_mutable_specifier] = ACTIONS(2964), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), - [sym_block_comment] = ACTIONS(3), - }, - [675] = { - [sym__primitive_identifier] = ACTIONS(2936), - [anon_sym_LPAREN] = ACTIONS(2938), - [anon_sym_RPAREN] = ACTIONS(2938), - [anon_sym_LBRACE] = ACTIONS(2938), - [anon_sym_RBRACE] = ACTIONS(2938), - [anon_sym_LBRACK] = ACTIONS(2938), - [anon_sym_RBRACK] = ACTIONS(2938), - [anon_sym_DOLLAR] = ACTIONS(2938), - [aux_sym__non_special_token_token1] = ACTIONS(2936), - [anon_sym_SQUOTE] = ACTIONS(2936), - [anon_sym_as] = ACTIONS(2936), - [anon_sym_async] = ACTIONS(2936), - [anon_sym_await] = ACTIONS(2936), - [anon_sym_break] = ACTIONS(2936), - [anon_sym_const] = ACTIONS(2936), - [anon_sym_continue] = ACTIONS(2936), - [anon_sym_default] = ACTIONS(2936), - [anon_sym_enum] = ACTIONS(2936), - [anon_sym_fn] = ACTIONS(2936), - [anon_sym_for] = ACTIONS(2936), - [anon_sym_if] = ACTIONS(2936), - [anon_sym_impl] = ACTIONS(2936), - [anon_sym_let] = ACTIONS(2936), - [anon_sym_loop] = ACTIONS(2936), - [anon_sym_match] = ACTIONS(2936), - [anon_sym_mod] = ACTIONS(2936), - [anon_sym_pub] = ACTIONS(2936), - [anon_sym_return] = ACTIONS(2936), - [anon_sym_static] = ACTIONS(2936), - [anon_sym_struct] = ACTIONS(2936), - [anon_sym_trait] = ACTIONS(2936), - [anon_sym_type] = ACTIONS(2936), - [anon_sym_union] = ACTIONS(2936), - [anon_sym_unsafe] = ACTIONS(2936), - [anon_sym_use] = ACTIONS(2936), - [anon_sym_where] = ACTIONS(2936), - [anon_sym_while] = ACTIONS(2936), - [sym_mutable_specifier] = ACTIONS(2936), - [sym_integer_literal] = ACTIONS(2938), - [aux_sym_string_literal_token1] = ACTIONS(2938), - [sym_char_literal] = ACTIONS(2938), - [anon_sym_true] = ACTIONS(2936), - [anon_sym_false] = ACTIONS(2936), - [anon_sym_u8] = ACTIONS(2936), - [anon_sym_i8] = ACTIONS(2936), - [anon_sym_u16] = ACTIONS(2936), - [anon_sym_i16] = ACTIONS(2936), - [anon_sym_u32] = ACTIONS(2936), - [anon_sym_i32] = ACTIONS(2936), - [anon_sym_u64] = ACTIONS(2936), - [anon_sym_i64] = ACTIONS(2936), - [anon_sym_u128] = ACTIONS(2936), - [anon_sym_i128] = ACTIONS(2936), - [anon_sym_isize] = ACTIONS(2936), - [anon_sym_usize] = ACTIONS(2936), - [anon_sym_f32] = ACTIONS(2936), - [anon_sym_f64] = ACTIONS(2936), - [anon_sym_bool] = ACTIONS(2936), - [anon_sym_str] = ACTIONS(2936), - [anon_sym_char] = ACTIONS(2936), - [sym_line_comment] = ACTIONS(1172), - [sym__raw_identifier] = ACTIONS(2938), - [sym_self] = ACTIONS(2936), - [sym_super] = ACTIONS(2936), - [sym_crate] = ACTIONS(2936), - [sym_grit_metavariable] = ACTIONS(2938), - [sym_raw_string_literal] = ACTIONS(2938), - [sym_float_literal] = ACTIONS(2938), - [sym_block_comment] = ACTIONS(3), - }, [676] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(2011), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_RPAREN] = ACTIONS(2966), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(1531), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(659), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2958), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [sym_mutable_specifier] = ACTIONS(2974), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, [677] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(2372), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_RPAREN] = ACTIONS(2968), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), + [sym_function_modifiers] = STATE(2667), + [sym_type_parameters] = STATE(805), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(1754), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1791), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1671), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1634), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), + [anon_sym_LT] = ACTIONS(2948), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, [678] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(2372), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_RPAREN] = ACTIONS(2970), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), + [sym__primitive_identifier] = ACTIONS(2934), + [anon_sym_LPAREN] = ACTIONS(2936), + [anon_sym_RPAREN] = ACTIONS(2936), + [anon_sym_LBRACE] = ACTIONS(2936), + [anon_sym_RBRACE] = ACTIONS(2936), + [anon_sym_LBRACK] = ACTIONS(2936), + [anon_sym_RBRACK] = ACTIONS(2936), + [anon_sym_DOLLAR] = ACTIONS(2936), + [aux_sym__non_special_token_token1] = ACTIONS(2934), + [anon_sym_SQUOTE] = ACTIONS(2934), + [anon_sym_as] = ACTIONS(2934), + [anon_sym_async] = ACTIONS(2934), + [anon_sym_await] = ACTIONS(2934), + [anon_sym_break] = ACTIONS(2934), + [anon_sym_const] = ACTIONS(2934), + [anon_sym_continue] = ACTIONS(2934), + [anon_sym_default] = ACTIONS(2934), + [anon_sym_enum] = ACTIONS(2934), + [anon_sym_fn] = ACTIONS(2934), + [anon_sym_for] = ACTIONS(2934), + [anon_sym_if] = ACTIONS(2934), + [anon_sym_impl] = ACTIONS(2934), + [anon_sym_let] = ACTIONS(2934), + [anon_sym_loop] = ACTIONS(2934), + [anon_sym_match] = ACTIONS(2934), + [anon_sym_mod] = ACTIONS(2934), + [anon_sym_pub] = ACTIONS(2934), + [anon_sym_return] = ACTIONS(2934), + [anon_sym_static] = ACTIONS(2934), + [anon_sym_struct] = ACTIONS(2934), + [anon_sym_trait] = ACTIONS(2934), + [anon_sym_type] = ACTIONS(2934), + [anon_sym_union] = ACTIONS(2934), + [anon_sym_unsafe] = ACTIONS(2934), + [anon_sym_use] = ACTIONS(2934), + [anon_sym_where] = ACTIONS(2934), + [anon_sym_while] = ACTIONS(2934), + [sym_mutable_specifier] = ACTIONS(2934), + [sym_integer_literal] = ACTIONS(2936), + [aux_sym_string_literal_token1] = ACTIONS(2936), + [sym_char_literal] = ACTIONS(2936), + [anon_sym_true] = ACTIONS(2934), + [anon_sym_false] = ACTIONS(2934), + [anon_sym_u8] = ACTIONS(2934), + [anon_sym_i8] = ACTIONS(2934), + [anon_sym_u16] = ACTIONS(2934), + [anon_sym_i16] = ACTIONS(2934), + [anon_sym_u32] = ACTIONS(2934), + [anon_sym_i32] = ACTIONS(2934), + [anon_sym_u64] = ACTIONS(2934), + [anon_sym_i64] = ACTIONS(2934), + [anon_sym_u128] = ACTIONS(2934), + [anon_sym_i128] = ACTIONS(2934), + [anon_sym_isize] = ACTIONS(2934), + [anon_sym_usize] = ACTIONS(2934), + [anon_sym_f32] = ACTIONS(2934), + [anon_sym_f64] = ACTIONS(2934), + [anon_sym_bool] = ACTIONS(2934), + [anon_sym_str] = ACTIONS(2934), + [anon_sym_char] = ACTIONS(2934), + [sym_line_comment] = ACTIONS(1112), + [sym__raw_identifier] = ACTIONS(2936), + [sym_self] = ACTIONS(2934), + [sym_super] = ACTIONS(2934), + [sym_crate] = ACTIONS(2934), + [sym_grit_metavariable] = ACTIONS(2936), + [sym_raw_string_literal] = ACTIONS(2936), + [sym_float_literal] = ACTIONS(2936), [sym_block_comment] = ACTIONS(3), }, [679] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(2372), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_RPAREN] = ACTIONS(2972), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), + [sym_function_modifiers] = STATE(2667), + [sym_type_parameters] = STATE(725), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(1850), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1851), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1669), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1626), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), + [anon_sym_LT] = ACTIONS(2948), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, [680] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(2163), - [sym_bracketed_type] = STATE(2646), - [sym_qualified_type] = STATE(2753), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), + [sym__primitive_identifier] = ACTIONS(2812), + [anon_sym_LPAREN] = ACTIONS(2814), + [anon_sym_RPAREN] = ACTIONS(2814), + [anon_sym_LBRACE] = ACTIONS(2814), + [anon_sym_RBRACE] = ACTIONS(2814), + [anon_sym_LBRACK] = ACTIONS(2814), + [anon_sym_RBRACK] = ACTIONS(2814), + [anon_sym_DOLLAR] = ACTIONS(2814), + [aux_sym__non_special_token_token1] = ACTIONS(2812), + [anon_sym_SQUOTE] = ACTIONS(2812), + [anon_sym_as] = ACTIONS(2812), + [anon_sym_async] = ACTIONS(2812), + [anon_sym_await] = ACTIONS(2812), + [anon_sym_break] = ACTIONS(2812), + [anon_sym_const] = ACTIONS(2812), + [anon_sym_continue] = ACTIONS(2812), + [anon_sym_default] = ACTIONS(2812), + [anon_sym_enum] = ACTIONS(2812), + [anon_sym_fn] = ACTIONS(2812), + [anon_sym_for] = ACTIONS(2812), + [anon_sym_if] = ACTIONS(2812), + [anon_sym_impl] = ACTIONS(2812), + [anon_sym_let] = ACTIONS(2812), + [anon_sym_loop] = ACTIONS(2812), + [anon_sym_match] = ACTIONS(2812), + [anon_sym_mod] = ACTIONS(2812), + [anon_sym_pub] = ACTIONS(2812), + [anon_sym_return] = ACTIONS(2812), + [anon_sym_static] = ACTIONS(2812), + [anon_sym_struct] = ACTIONS(2812), + [anon_sym_trait] = ACTIONS(2812), + [anon_sym_type] = ACTIONS(2812), + [anon_sym_union] = ACTIONS(2812), + [anon_sym_unsafe] = ACTIONS(2812), + [anon_sym_use] = ACTIONS(2812), + [anon_sym_where] = ACTIONS(2812), + [anon_sym_while] = ACTIONS(2812), + [sym_mutable_specifier] = ACTIONS(2812), + [sym_integer_literal] = ACTIONS(2814), + [aux_sym_string_literal_token1] = ACTIONS(2814), + [sym_char_literal] = ACTIONS(2814), + [anon_sym_true] = ACTIONS(2812), + [anon_sym_false] = ACTIONS(2812), + [anon_sym_u8] = ACTIONS(2812), + [anon_sym_i8] = ACTIONS(2812), + [anon_sym_u16] = ACTIONS(2812), + [anon_sym_i16] = ACTIONS(2812), + [anon_sym_u32] = ACTIONS(2812), + [anon_sym_i32] = ACTIONS(2812), + [anon_sym_u64] = ACTIONS(2812), + [anon_sym_i64] = ACTIONS(2812), + [anon_sym_u128] = ACTIONS(2812), + [anon_sym_i128] = ACTIONS(2812), + [anon_sym_isize] = ACTIONS(2812), + [anon_sym_usize] = ACTIONS(2812), + [anon_sym_f32] = ACTIONS(2812), + [anon_sym_f64] = ACTIONS(2812), + [anon_sym_bool] = ACTIONS(2812), + [anon_sym_str] = ACTIONS(2812), + [anon_sym_char] = ACTIONS(2812), + [sym_line_comment] = ACTIONS(1112), + [sym__raw_identifier] = ACTIONS(2814), + [sym_self] = ACTIONS(2812), + [sym_super] = ACTIONS(2812), + [sym_crate] = ACTIONS(2812), + [sym_grit_metavariable] = ACTIONS(2814), + [sym_raw_string_literal] = ACTIONS(2814), + [sym_float_literal] = ACTIONS(2814), [sym_block_comment] = ACTIONS(3), }, [681] = { - [sym_function_modifiers] = STATE(2724), - [sym_type_parameters] = STATE(806), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(1774), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1825), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1669), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1638), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), - [anon_sym_LT] = ACTIONS(2944), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(2016), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_RPAREN] = ACTIONS(2976), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, [682] = { - [sym_function_modifiers] = STATE(2619), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(1509), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(641), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1278), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(2273), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1833), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1685), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(2840), - [anon_sym_SQUOTE] = ACTIONS(2946), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(2842), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(2844), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(2846), - [anon_sym_dyn] = ACTIONS(2848), - [sym_mutable_specifier] = ACTIONS(2974), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), + [sym__primitive_identifier] = ACTIONS(2922), + [anon_sym_LPAREN] = ACTIONS(2924), + [anon_sym_RPAREN] = ACTIONS(2924), + [anon_sym_LBRACE] = ACTIONS(2924), + [anon_sym_RBRACE] = ACTIONS(2924), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_RBRACK] = ACTIONS(2924), + [anon_sym_DOLLAR] = ACTIONS(2924), + [aux_sym__non_special_token_token1] = ACTIONS(2922), + [anon_sym_SQUOTE] = ACTIONS(2922), + [anon_sym_as] = ACTIONS(2922), + [anon_sym_async] = ACTIONS(2922), + [anon_sym_await] = ACTIONS(2922), + [anon_sym_break] = ACTIONS(2922), + [anon_sym_const] = ACTIONS(2922), + [anon_sym_continue] = ACTIONS(2922), + [anon_sym_default] = ACTIONS(2922), + [anon_sym_enum] = ACTIONS(2922), + [anon_sym_fn] = ACTIONS(2922), + [anon_sym_for] = ACTIONS(2922), + [anon_sym_if] = ACTIONS(2922), + [anon_sym_impl] = ACTIONS(2922), + [anon_sym_let] = ACTIONS(2922), + [anon_sym_loop] = ACTIONS(2922), + [anon_sym_match] = ACTIONS(2922), + [anon_sym_mod] = ACTIONS(2922), + [anon_sym_pub] = ACTIONS(2922), + [anon_sym_return] = ACTIONS(2922), + [anon_sym_static] = ACTIONS(2922), + [anon_sym_struct] = ACTIONS(2922), + [anon_sym_trait] = ACTIONS(2922), + [anon_sym_type] = ACTIONS(2922), + [anon_sym_union] = ACTIONS(2922), + [anon_sym_unsafe] = ACTIONS(2922), + [anon_sym_use] = ACTIONS(2922), + [anon_sym_where] = ACTIONS(2922), + [anon_sym_while] = ACTIONS(2922), + [sym_mutable_specifier] = ACTIONS(2922), + [sym_integer_literal] = ACTIONS(2924), + [aux_sym_string_literal_token1] = ACTIONS(2924), + [sym_char_literal] = ACTIONS(2924), + [anon_sym_true] = ACTIONS(2922), + [anon_sym_false] = ACTIONS(2922), + [anon_sym_u8] = ACTIONS(2922), + [anon_sym_i8] = ACTIONS(2922), + [anon_sym_u16] = ACTIONS(2922), + [anon_sym_i16] = ACTIONS(2922), + [anon_sym_u32] = ACTIONS(2922), + [anon_sym_i32] = ACTIONS(2922), + [anon_sym_u64] = ACTIONS(2922), + [anon_sym_i64] = ACTIONS(2922), + [anon_sym_u128] = ACTIONS(2922), + [anon_sym_i128] = ACTIONS(2922), + [anon_sym_isize] = ACTIONS(2922), + [anon_sym_usize] = ACTIONS(2922), + [anon_sym_f32] = ACTIONS(2922), + [anon_sym_f64] = ACTIONS(2922), + [anon_sym_bool] = ACTIONS(2922), + [anon_sym_str] = ACTIONS(2922), + [anon_sym_char] = ACTIONS(2922), + [sym_line_comment] = ACTIONS(1112), + [sym__raw_identifier] = ACTIONS(2924), + [sym_self] = ACTIONS(2922), + [sym_super] = ACTIONS(2922), + [sym_crate] = ACTIONS(2922), + [sym_grit_metavariable] = ACTIONS(2924), + [sym_raw_string_literal] = ACTIONS(2924), + [sym_float_literal] = ACTIONS(2924), [sym_block_comment] = ACTIONS(3), }, [683] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(1865), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(2215), + [sym_bracketed_type] = STATE(2652), + [sym_qualified_type] = STATE(2639), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, [684] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(2189), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [sym_function_modifiers] = STATE(2771), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(1525), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2704), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1284), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(2283), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1822), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1701), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(2890), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(2892), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(2894), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(2896), + [anon_sym_dyn] = ACTIONS(2898), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, [685] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(1792), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(1530), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, [686] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(1840), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(1828), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, [687] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(1841), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(1829), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, [688] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(1791), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(1781), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, [689] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(2170), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(1817), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, [690] = { - [sym_function_modifiers] = STATE(2619), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(1508), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2700), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1278), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(2273), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1833), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1685), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(2840), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(2842), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(2844), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(2503), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(2846), - [anon_sym_dyn] = ACTIONS(2848), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, [691] = { - [sym_function_modifiers] = STATE(2619), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(1508), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(1525), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1278), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(2273), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1833), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1685), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(2840), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(2842), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(2844), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(2314), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(2846), - [anon_sym_dyn] = ACTIONS(2848), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, [692] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(1489), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(2091), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, [693] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(1494), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), - [sym_block_comment] = ACTIONS(3), - }, - [694] = { - [sym_function_modifiers] = STATE(2619), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(1511), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2700), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1278), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(2273), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1833), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1685), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(2840), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(2842), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(2844), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(2846), - [anon_sym_dyn] = ACTIONS(2848), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), - [sym_block_comment] = ACTIONS(3), - }, - [695] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(1967), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), - [sym_block_comment] = ACTIONS(3), - }, - [696] = { - [sym_function_modifiers] = STATE(2619), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(1502), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2700), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1278), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(2273), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1833), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1685), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), + [sym_function_modifiers] = STATE(2645), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(1184), + [sym_bracketed_type] = STATE(2673), + [sym_lifetime] = STATE(2638), + [sym_array_type] = STATE(1237), + [sym_for_lifetimes] = STATE(1282), + [sym_function_type] = STATE(1237), + [sym_tuple_type] = STATE(1237), + [sym_unit_type] = STATE(1237), + [sym_generic_type] = STATE(1135), + [sym_generic_type_with_turbofish] = STATE(2674), + [sym_bounded_type] = STATE(1237), + [sym_reference_type] = STATE(1237), + [sym_pointer_type] = STATE(1237), + [sym_empty_type] = STATE(1237), + [sym_abstract_type] = STATE(1237), + [sym_dynamic_type] = STATE(1237), + [sym_macro_invocation] = STATE(1237), + [sym_scoped_identifier] = STATE(2548), + [sym_scoped_type_identifier] = STATE(827), + [sym_primitive_type] = STATE(1116), + [sym_identifier] = STATE(818), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(2832), + [anon_sym_LPAREN] = ACTIONS(2834), + [anon_sym_LBRACK] = ACTIONS(2836), [anon_sym_STAR] = ACTIONS(2840), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(2842), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(2844), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(2846), - [anon_sym_dyn] = ACTIONS(2848), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), - [sym_block_comment] = ACTIONS(3), - }, - [697] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(2200), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), - [sym_block_comment] = ACTIONS(3), - }, - [698] = { - [sym_function_modifiers] = STATE(2642), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(1232), - [sym_bracketed_type] = STATE(2669), - [sym_lifetime] = STATE(2734), - [sym_array_type] = STATE(1166), - [sym_for_lifetimes] = STATE(1280), - [sym_function_type] = STATE(1166), - [sym_tuple_type] = STATE(1166), - [sym_unit_type] = STATE(1166), - [sym_generic_type] = STATE(1132), - [sym_generic_type_with_turbofish] = STATE(2670), - [sym_bounded_type] = STATE(1166), - [sym_reference_type] = STATE(1166), - [sym_pointer_type] = STATE(1166), - [sym_empty_type] = STATE(1166), - [sym_abstract_type] = STATE(1166), - [sym_dynamic_type] = STATE(1166), - [sym_macro_invocation] = STATE(1166), - [sym_scoped_identifier] = STATE(2544), - [sym_scoped_type_identifier] = STATE(830), - [sym_primitive_type] = STATE(1108), - [sym_identifier] = STATE(817), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(2880), - [anon_sym_LPAREN] = ACTIONS(2882), - [anon_sym_LBRACK] = ACTIONS(2884), - [anon_sym_STAR] = ACTIONS(2888), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(2890), - [anon_sym_fn] = ACTIONS(2892), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(2894), - [anon_sym_union] = ACTIONS(2896), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(2898), - [anon_sym_extern] = ACTIONS(876), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(2842), + [anon_sym_fn] = ACTIONS(2844), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(2846), + [anon_sym_union] = ACTIONS(2848), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(2850), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(2900), - [anon_sym_AMP] = ACTIONS(2902), - [anon_sym_dyn] = ACTIONS(2904), + [anon_sym_COLON_COLON] = ACTIONS(2852), + [anon_sym_AMP] = ACTIONS(2854), + [anon_sym_dyn] = ACTIONS(2856), [anon_sym_u8] = ACTIONS(95), [anon_sym_i8] = ACTIONS(95), [anon_sym_u16] = ACTIONS(95), @@ -82070,58 +81797,268 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(95), [anon_sym_char] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(2908), - [sym_self] = ACTIONS(2910), - [sym_super] = ACTIONS(2910), - [sym_crate] = ACTIONS(2910), - [sym_metavariable] = ACTIONS(2912), - [sym_grit_metavariable] = ACTIONS(2908), + [sym__raw_identifier] = ACTIONS(2860), + [sym_self] = ACTIONS(2862), + [sym_super] = ACTIONS(2862), + [sym_crate] = ACTIONS(2862), + [sym_metavariable] = ACTIONS(2864), + [sym_grit_metavariable] = ACTIONS(2860), [sym_block_comment] = ACTIONS(3), }, - [699] = { - [sym_function_modifiers] = STATE(2642), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(1231), - [sym_bracketed_type] = STATE(2669), - [sym_lifetime] = STATE(2734), - [sym_array_type] = STATE(1166), - [sym_for_lifetimes] = STATE(1280), - [sym_function_type] = STATE(1166), - [sym_tuple_type] = STATE(1166), - [sym_unit_type] = STATE(1166), - [sym_generic_type] = STATE(1132), - [sym_generic_type_with_turbofish] = STATE(2670), - [sym_bounded_type] = STATE(1166), - [sym_reference_type] = STATE(1166), - [sym_pointer_type] = STATE(1166), - [sym_empty_type] = STATE(1166), - [sym_abstract_type] = STATE(1166), - [sym_dynamic_type] = STATE(1166), - [sym_macro_invocation] = STATE(1166), - [sym_scoped_identifier] = STATE(2544), - [sym_scoped_type_identifier] = STATE(830), - [sym_primitive_type] = STATE(1108), - [sym_identifier] = STATE(817), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(2880), - [anon_sym_LPAREN] = ACTIONS(2882), - [anon_sym_LBRACK] = ACTIONS(2884), - [anon_sym_STAR] = ACTIONS(2888), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(2890), - [anon_sym_fn] = ACTIONS(2892), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(2894), - [anon_sym_union] = ACTIONS(2896), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(2898), - [anon_sym_extern] = ACTIONS(876), + [694] = { + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(1498), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), + [sym_block_comment] = ACTIONS(3), + }, + [695] = { + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(2196), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), + [sym_block_comment] = ACTIONS(3), + }, + [696] = { + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(1495), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), + [sym_block_comment] = ACTIONS(3), + }, + [697] = { + [sym_function_modifiers] = STATE(2645), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(1238), + [sym_bracketed_type] = STATE(2673), + [sym_lifetime] = STATE(2638), + [sym_array_type] = STATE(1237), + [sym_for_lifetimes] = STATE(1282), + [sym_function_type] = STATE(1237), + [sym_tuple_type] = STATE(1237), + [sym_unit_type] = STATE(1237), + [sym_generic_type] = STATE(1135), + [sym_generic_type_with_turbofish] = STATE(2674), + [sym_bounded_type] = STATE(1237), + [sym_reference_type] = STATE(1237), + [sym_pointer_type] = STATE(1237), + [sym_empty_type] = STATE(1237), + [sym_abstract_type] = STATE(1237), + [sym_dynamic_type] = STATE(1237), + [sym_macro_invocation] = STATE(1237), + [sym_scoped_identifier] = STATE(2548), + [sym_scoped_type_identifier] = STATE(827), + [sym_primitive_type] = STATE(1116), + [sym_identifier] = STATE(818), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(2832), + [anon_sym_LPAREN] = ACTIONS(2834), + [anon_sym_LBRACK] = ACTIONS(2836), + [anon_sym_STAR] = ACTIONS(2840), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(2842), + [anon_sym_fn] = ACTIONS(2844), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(2846), + [anon_sym_union] = ACTIONS(2848), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(2850), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(2900), - [anon_sym_AMP] = ACTIONS(2902), - [anon_sym_dyn] = ACTIONS(2904), + [anon_sym_COLON_COLON] = ACTIONS(2852), + [anon_sym_AMP] = ACTIONS(2854), + [anon_sym_dyn] = ACTIONS(2856), [anon_sym_u8] = ACTIONS(95), [anon_sym_i8] = ACTIONS(95), [anon_sym_u16] = ACTIONS(95), @@ -82140,408 +82077,1248 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(95), [anon_sym_char] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(2908), - [sym_self] = ACTIONS(2910), - [sym_super] = ACTIONS(2910), - [sym_crate] = ACTIONS(2910), - [sym_metavariable] = ACTIONS(2912), - [sym_grit_metavariable] = ACTIONS(2908), + [sym__raw_identifier] = ACTIONS(2860), + [sym_self] = ACTIONS(2862), + [sym_super] = ACTIONS(2862), + [sym_crate] = ACTIONS(2862), + [sym_metavariable] = ACTIONS(2864), + [sym_grit_metavariable] = ACTIONS(2860), [sym_block_comment] = ACTIONS(3), }, - [700] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(1763), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1757), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1655), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1622), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [698] = { + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(2075), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), + [sym_block_comment] = ACTIONS(3), + }, + [699] = { + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(2198), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), + [sym_block_comment] = ACTIONS(3), + }, + [700] = { + [sym_function_modifiers] = STATE(2771), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(1495), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2704), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1284), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(2283), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1822), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1701), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(2890), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(2892), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(2894), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(2896), + [anon_sym_dyn] = ACTIONS(2898), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, [701] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(1502), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(2327), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, [702] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(2150), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [sym_function_modifiers] = STATE(2771), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(1498), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2704), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1284), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(2283), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1822), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1701), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(2890), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(2892), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(2894), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(2896), + [anon_sym_dyn] = ACTIONS(2898), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, [703] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(1818), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(1787), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, [704] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(2342), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(1497), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, [705] = { - [sym_function_modifiers] = STATE(2642), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(1221), - [sym_bracketed_type] = STATE(2669), - [sym_lifetime] = STATE(2734), - [sym_array_type] = STATE(1166), - [sym_for_lifetimes] = STATE(1280), - [sym_function_type] = STATE(1166), - [sym_tuple_type] = STATE(1166), - [sym_unit_type] = STATE(1166), - [sym_generic_type] = STATE(1132), - [sym_generic_type_with_turbofish] = STATE(2670), - [sym_bounded_type] = STATE(1166), - [sym_reference_type] = STATE(1166), - [sym_pointer_type] = STATE(1166), - [sym_empty_type] = STATE(1166), - [sym_abstract_type] = STATE(1166), - [sym_dynamic_type] = STATE(1166), - [sym_macro_invocation] = STATE(1166), - [sym_scoped_identifier] = STATE(2544), - [sym_scoped_type_identifier] = STATE(830), - [sym_primitive_type] = STATE(1108), - [sym_identifier] = STATE(817), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(2880), - [anon_sym_LPAREN] = ACTIONS(2882), - [anon_sym_LBRACK] = ACTIONS(2884), - [anon_sym_STAR] = ACTIONS(2888), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(2890), + [sym_attribute_item] = STATE(705), + [aux_sym_enum_variant_list_repeat1] = STATE(705), + [sym__primitive_identifier] = ACTIONS(2978), + [sym_underscore] = ACTIONS(2978), + [anon_sym_LPAREN] = ACTIONS(2980), + [anon_sym_LBRACE] = ACTIONS(2980), + [anon_sym_LBRACK] = ACTIONS(2980), + [anon_sym_RBRACK] = ACTIONS(2980), + [anon_sym_STAR] = ACTIONS(2980), + [anon_sym_SQUOTE] = ACTIONS(2978), + [anon_sym_async] = ACTIONS(2978), + [anon_sym_break] = ACTIONS(2978), + [anon_sym_const] = ACTIONS(2978), + [anon_sym_continue] = ACTIONS(2978), + [anon_sym_default] = ACTIONS(2978), + [anon_sym_for] = ACTIONS(2978), + [anon_sym_if] = ACTIONS(2978), + [anon_sym_loop] = ACTIONS(2978), + [anon_sym_match] = ACTIONS(2978), + [anon_sym_return] = ACTIONS(2978), + [anon_sym_union] = ACTIONS(2978), + [anon_sym_unsafe] = ACTIONS(2978), + [anon_sym_while] = ACTIONS(2978), + [anon_sym_POUND] = ACTIONS(2982), + [anon_sym_BANG] = ACTIONS(2980), + [anon_sym_COMMA] = ACTIONS(2980), + [anon_sym_ref] = ACTIONS(2978), + [anon_sym_LT] = ACTIONS(2980), + [anon_sym_COLON_COLON] = ACTIONS(2980), + [anon_sym_AMP] = ACTIONS(2980), + [sym_mutable_specifier] = ACTIONS(2978), + [anon_sym_DOT_DOT] = ACTIONS(2980), + [anon_sym_DASH] = ACTIONS(2980), + [anon_sym_PIPE] = ACTIONS(2980), + [anon_sym_yield] = ACTIONS(2978), + [anon_sym_move] = ACTIONS(2978), + [sym_integer_literal] = ACTIONS(2980), + [aux_sym_string_literal_token1] = ACTIONS(2980), + [sym_char_literal] = ACTIONS(2980), + [anon_sym_true] = ACTIONS(2978), + [anon_sym_false] = ACTIONS(2978), + [anon_sym_u8] = ACTIONS(2978), + [anon_sym_i8] = ACTIONS(2978), + [anon_sym_u16] = ACTIONS(2978), + [anon_sym_i16] = ACTIONS(2978), + [anon_sym_u32] = ACTIONS(2978), + [anon_sym_i32] = ACTIONS(2978), + [anon_sym_u64] = ACTIONS(2978), + [anon_sym_i64] = ACTIONS(2978), + [anon_sym_u128] = ACTIONS(2978), + [anon_sym_i128] = ACTIONS(2978), + [anon_sym_isize] = ACTIONS(2978), + [anon_sym_usize] = ACTIONS(2978), + [anon_sym_f32] = ACTIONS(2978), + [anon_sym_f64] = ACTIONS(2978), + [anon_sym_bool] = ACTIONS(2978), + [anon_sym_str] = ACTIONS(2978), + [anon_sym_char] = ACTIONS(2978), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(2980), + [sym_self] = ACTIONS(2978), + [sym_super] = ACTIONS(2978), + [sym_crate] = ACTIONS(2978), + [sym_metavariable] = ACTIONS(2980), + [sym_grit_metavariable] = ACTIONS(2980), + [sym_raw_string_literal] = ACTIONS(2980), + [sym_float_literal] = ACTIONS(2980), + [sym_block_comment] = ACTIONS(3), + }, + [706] = { + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(2151), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), + [sym_block_comment] = ACTIONS(3), + }, + [707] = { + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(2207), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), + [sym_block_comment] = ACTIONS(3), + }, + [708] = { + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(2357), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), + [sym_block_comment] = ACTIONS(3), + }, + [709] = { + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(1786), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), + [sym_block_comment] = ACTIONS(3), + }, + [710] = { + [sym_function_modifiers] = STATE(2771), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(1502), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2704), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1284), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(2283), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1822), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1701), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(2890), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), [anon_sym_fn] = ACTIONS(2892), - [anon_sym_for] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), [anon_sym_impl] = ACTIONS(2894), - [anon_sym_union] = ACTIONS(2896), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(2898), - [anon_sym_extern] = ACTIONS(876), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(2896), + [anon_sym_dyn] = ACTIONS(2898), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), + [sym_block_comment] = ACTIONS(3), + }, + [711] = { + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(2067), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), + [sym_block_comment] = ACTIONS(3), + }, + [712] = { + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(1840), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), + [sym_block_comment] = ACTIONS(3), + }, + [713] = { + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(2112), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(2900), - [anon_sym_AMP] = ACTIONS(2902), - [anon_sym_dyn] = ACTIONS(2904), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), + [sym_block_comment] = ACTIONS(3), + }, + [714] = { + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(2332), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), + [sym_block_comment] = ACTIONS(3), + }, + [715] = { + [sym_function_modifiers] = STATE(2645), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(1193), + [sym_bracketed_type] = STATE(2673), + [sym_lifetime] = STATE(2638), + [sym_array_type] = STATE(1237), + [sym_for_lifetimes] = STATE(1282), + [sym_function_type] = STATE(1237), + [sym_tuple_type] = STATE(1237), + [sym_unit_type] = STATE(1237), + [sym_generic_type] = STATE(1135), + [sym_generic_type_with_turbofish] = STATE(2674), + [sym_bounded_type] = STATE(1237), + [sym_reference_type] = STATE(1237), + [sym_pointer_type] = STATE(1237), + [sym_empty_type] = STATE(1237), + [sym_abstract_type] = STATE(1237), + [sym_dynamic_type] = STATE(1237), + [sym_macro_invocation] = STATE(1237), + [sym_scoped_identifier] = STATE(2548), + [sym_scoped_type_identifier] = STATE(827), + [sym_primitive_type] = STATE(1116), + [sym_identifier] = STATE(818), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(2832), + [anon_sym_LPAREN] = ACTIONS(2834), + [anon_sym_LBRACK] = ACTIONS(2836), + [anon_sym_STAR] = ACTIONS(2840), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(2842), + [anon_sym_fn] = ACTIONS(2844), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(2846), + [anon_sym_union] = ACTIONS(2848), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(2850), + [anon_sym_extern] = ACTIONS(878), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(2852), + [anon_sym_AMP] = ACTIONS(2854), + [anon_sym_dyn] = ACTIONS(2856), [anon_sym_u8] = ACTIONS(95), [anon_sym_i8] = ACTIONS(95), [anon_sym_u16] = ACTIONS(95), @@ -82560,58 +83337,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(95), [anon_sym_char] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(2908), - [sym_self] = ACTIONS(2910), - [sym_super] = ACTIONS(2910), - [sym_crate] = ACTIONS(2910), - [sym_metavariable] = ACTIONS(2912), - [sym_grit_metavariable] = ACTIONS(2908), + [sym__raw_identifier] = ACTIONS(2860), + [sym_self] = ACTIONS(2862), + [sym_super] = ACTIONS(2862), + [sym_crate] = ACTIONS(2862), + [sym_metavariable] = ACTIONS(2864), + [sym_grit_metavariable] = ACTIONS(2860), [sym_block_comment] = ACTIONS(3), }, - [706] = { - [sym_function_modifiers] = STATE(2642), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(1161), - [sym_bracketed_type] = STATE(2669), - [sym_lifetime] = STATE(2734), - [sym_array_type] = STATE(1166), - [sym_for_lifetimes] = STATE(1280), - [sym_function_type] = STATE(1166), - [sym_tuple_type] = STATE(1166), - [sym_unit_type] = STATE(1166), - [sym_generic_type] = STATE(1132), - [sym_generic_type_with_turbofish] = STATE(2670), - [sym_bounded_type] = STATE(1166), - [sym_reference_type] = STATE(1166), - [sym_pointer_type] = STATE(1166), - [sym_empty_type] = STATE(1166), - [sym_abstract_type] = STATE(1166), - [sym_dynamic_type] = STATE(1166), - [sym_macro_invocation] = STATE(1166), - [sym_scoped_identifier] = STATE(2544), - [sym_scoped_type_identifier] = STATE(830), - [sym_primitive_type] = STATE(1108), - [sym_identifier] = STATE(817), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(2880), - [anon_sym_LPAREN] = ACTIONS(2882), - [anon_sym_LBRACK] = ACTIONS(2884), - [anon_sym_STAR] = ACTIONS(2888), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(2890), - [anon_sym_fn] = ACTIONS(2892), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(2894), - [anon_sym_union] = ACTIONS(2896), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(2898), - [anon_sym_extern] = ACTIONS(876), + [716] = { + [sym_function_modifiers] = STATE(2645), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(1239), + [sym_bracketed_type] = STATE(2673), + [sym_lifetime] = STATE(2638), + [sym_array_type] = STATE(1237), + [sym_for_lifetimes] = STATE(1282), + [sym_function_type] = STATE(1237), + [sym_tuple_type] = STATE(1237), + [sym_unit_type] = STATE(1237), + [sym_generic_type] = STATE(1135), + [sym_generic_type_with_turbofish] = STATE(2674), + [sym_bounded_type] = STATE(1237), + [sym_reference_type] = STATE(1237), + [sym_pointer_type] = STATE(1237), + [sym_empty_type] = STATE(1237), + [sym_abstract_type] = STATE(1237), + [sym_dynamic_type] = STATE(1237), + [sym_macro_invocation] = STATE(1237), + [sym_scoped_identifier] = STATE(2548), + [sym_scoped_type_identifier] = STATE(827), + [sym_primitive_type] = STATE(1116), + [sym_identifier] = STATE(818), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(2832), + [anon_sym_LPAREN] = ACTIONS(2834), + [anon_sym_LBRACK] = ACTIONS(2836), + [anon_sym_STAR] = ACTIONS(2840), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(2842), + [anon_sym_fn] = ACTIONS(2844), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(2846), + [anon_sym_union] = ACTIONS(2848), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(2850), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(2900), - [anon_sym_AMP] = ACTIONS(2902), - [anon_sym_dyn] = ACTIONS(2904), + [anon_sym_COLON_COLON] = ACTIONS(2852), + [anon_sym_AMP] = ACTIONS(2854), + [anon_sym_dyn] = ACTIONS(2856), [anon_sym_u8] = ACTIONS(95), [anon_sym_i8] = ACTIONS(95), [anon_sym_u16] = ACTIONS(95), @@ -82630,1178 +83407,898 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(95), [anon_sym_char] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(2908), - [sym_self] = ACTIONS(2910), - [sym_super] = ACTIONS(2910), - [sym_crate] = ACTIONS(2910), - [sym_metavariable] = ACTIONS(2912), - [sym_grit_metavariable] = ACTIONS(2908), - [sym_block_comment] = ACTIONS(3), - }, - [707] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(1806), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), + [sym__raw_identifier] = ACTIONS(2860), + [sym_self] = ACTIONS(2862), + [sym_super] = ACTIONS(2862), + [sym_crate] = ACTIONS(2862), + [sym_metavariable] = ACTIONS(2864), + [sym_grit_metavariable] = ACTIONS(2860), [sym_block_comment] = ACTIONS(3), }, - [708] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(2050), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [717] = { + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(1779), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, - [709] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(1845), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [718] = { + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(1502), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(2985), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, - [710] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(1511), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [719] = { + [sym_function_modifiers] = STATE(2771), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(1508), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2704), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1284), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(2283), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1822), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1701), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(2890), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(2892), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(2894), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(2896), + [anon_sym_dyn] = ACTIONS(2898), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, - [711] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(2186), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [720] = { + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(1863), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, - [712] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(1487), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [721] = { + [sym_function_modifiers] = STATE(2771), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(2521), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2704), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1284), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(2283), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1822), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1701), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(2890), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(2892), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(2894), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(2896), + [anon_sym_dyn] = ACTIONS(2898), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, - [713] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(1760), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [722] = { + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(2257), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, - [714] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(1508), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(1525), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [723] = { + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(2165), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, - [715] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(1770), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [724] = { + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(1750), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, - [716] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(1508), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [725] = { + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(1755), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1756), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1658), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1638), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, - [717] = { - [sym_function_modifiers] = STATE(2619), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(1493), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2700), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1278), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(2273), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1833), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1685), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), + [726] = { + [sym_function_modifiers] = STATE(2645), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(1178), + [sym_bracketed_type] = STATE(2673), + [sym_lifetime] = STATE(2638), + [sym_array_type] = STATE(1237), + [sym_for_lifetimes] = STATE(1282), + [sym_function_type] = STATE(1237), + [sym_tuple_type] = STATE(1237), + [sym_unit_type] = STATE(1237), + [sym_generic_type] = STATE(1135), + [sym_generic_type_with_turbofish] = STATE(2674), + [sym_bounded_type] = STATE(1237), + [sym_reference_type] = STATE(1237), + [sym_pointer_type] = STATE(1237), + [sym_empty_type] = STATE(1237), + [sym_abstract_type] = STATE(1237), + [sym_dynamic_type] = STATE(1237), + [sym_macro_invocation] = STATE(1237), + [sym_scoped_identifier] = STATE(2548), + [sym_scoped_type_identifier] = STATE(827), + [sym_primitive_type] = STATE(1116), + [sym_identifier] = STATE(818), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(2832), + [anon_sym_LPAREN] = ACTIONS(2834), + [anon_sym_LBRACK] = ACTIONS(2836), [anon_sym_STAR] = ACTIONS(2840), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(2842), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(2844), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(2846), - [anon_sym_dyn] = ACTIONS(2848), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), - [sym_block_comment] = ACTIONS(3), - }, - [718] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(1783), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), - [sym_block_comment] = ACTIONS(3), - }, - [719] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(1786), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), - [sym_block_comment] = ACTIONS(3), - }, - [720] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(2055), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(2842), + [anon_sym_fn] = ACTIONS(2844), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(2846), + [anon_sym_union] = ACTIONS(2848), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(2850), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(2852), + [anon_sym_AMP] = ACTIONS(2854), + [anon_sym_dyn] = ACTIONS(2856), + [anon_sym_u8] = ACTIONS(95), + [anon_sym_i8] = ACTIONS(95), + [anon_sym_u16] = ACTIONS(95), + [anon_sym_i16] = ACTIONS(95), + [anon_sym_u32] = ACTIONS(95), + [anon_sym_i32] = ACTIONS(95), + [anon_sym_u64] = ACTIONS(95), + [anon_sym_i64] = ACTIONS(95), + [anon_sym_u128] = ACTIONS(95), + [anon_sym_i128] = ACTIONS(95), + [anon_sym_isize] = ACTIONS(95), + [anon_sym_usize] = ACTIONS(95), + [anon_sym_f32] = ACTIONS(95), + [anon_sym_f64] = ACTIONS(95), + [anon_sym_bool] = ACTIONS(95), + [anon_sym_str] = ACTIONS(95), + [anon_sym_char] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(2860), + [sym_self] = ACTIONS(2862), + [sym_super] = ACTIONS(2862), + [sym_crate] = ACTIONS(2862), + [sym_metavariable] = ACTIONS(2864), + [sym_grit_metavariable] = ACTIONS(2860), [sym_block_comment] = ACTIONS(3), }, - [721] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(1722), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [727] = { + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(2273), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, - [722] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(2195), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [728] = { + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(1773), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, - [723] = { - [sym_function_modifiers] = STATE(2642), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(1174), - [sym_bracketed_type] = STATE(2669), - [sym_lifetime] = STATE(2734), - [sym_array_type] = STATE(1166), - [sym_for_lifetimes] = STATE(1280), - [sym_function_type] = STATE(1166), - [sym_tuple_type] = STATE(1166), - [sym_unit_type] = STATE(1166), - [sym_generic_type] = STATE(1132), - [sym_generic_type_with_turbofish] = STATE(2670), - [sym_bounded_type] = STATE(1166), - [sym_reference_type] = STATE(1166), - [sym_pointer_type] = STATE(1166), - [sym_empty_type] = STATE(1166), - [sym_abstract_type] = STATE(1166), - [sym_dynamic_type] = STATE(1166), - [sym_macro_invocation] = STATE(1166), - [sym_scoped_identifier] = STATE(2544), - [sym_scoped_type_identifier] = STATE(830), - [sym_primitive_type] = STATE(1108), - [sym_identifier] = STATE(817), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(2880), - [anon_sym_LPAREN] = ACTIONS(2882), - [anon_sym_LBRACK] = ACTIONS(2884), - [anon_sym_STAR] = ACTIONS(2888), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(2890), - [anon_sym_fn] = ACTIONS(2892), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(2894), - [anon_sym_union] = ACTIONS(2896), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(2898), - [anon_sym_extern] = ACTIONS(876), + [729] = { + [sym_function_modifiers] = STATE(2645), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(1247), + [sym_bracketed_type] = STATE(2673), + [sym_lifetime] = STATE(2638), + [sym_array_type] = STATE(1237), + [sym_for_lifetimes] = STATE(1282), + [sym_function_type] = STATE(1237), + [sym_tuple_type] = STATE(1237), + [sym_unit_type] = STATE(1237), + [sym_generic_type] = STATE(1135), + [sym_generic_type_with_turbofish] = STATE(2674), + [sym_bounded_type] = STATE(1237), + [sym_reference_type] = STATE(1237), + [sym_pointer_type] = STATE(1237), + [sym_empty_type] = STATE(1237), + [sym_abstract_type] = STATE(1237), + [sym_dynamic_type] = STATE(1237), + [sym_macro_invocation] = STATE(1237), + [sym_scoped_identifier] = STATE(2548), + [sym_scoped_type_identifier] = STATE(827), + [sym_primitive_type] = STATE(1116), + [sym_identifier] = STATE(818), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(2832), + [anon_sym_LPAREN] = ACTIONS(2834), + [anon_sym_LBRACK] = ACTIONS(2836), + [anon_sym_STAR] = ACTIONS(2840), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(2842), + [anon_sym_fn] = ACTIONS(2844), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(2846), + [anon_sym_union] = ACTIONS(2848), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(2850), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(2900), - [anon_sym_AMP] = ACTIONS(2902), - [anon_sym_dyn] = ACTIONS(2904), + [anon_sym_COLON_COLON] = ACTIONS(2852), + [anon_sym_AMP] = ACTIONS(2854), + [anon_sym_dyn] = ACTIONS(2856), [anon_sym_u8] = ACTIONS(95), [anon_sym_i8] = ACTIONS(95), [anon_sym_u16] = ACTIONS(95), @@ -83820,58 +84317,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(95), [anon_sym_char] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(2908), - [sym_self] = ACTIONS(2910), - [sym_super] = ACTIONS(2910), - [sym_crate] = ACTIONS(2910), - [sym_metavariable] = ACTIONS(2912), - [sym_grit_metavariable] = ACTIONS(2908), + [sym__raw_identifier] = ACTIONS(2860), + [sym_self] = ACTIONS(2862), + [sym_super] = ACTIONS(2862), + [sym_crate] = ACTIONS(2862), + [sym_metavariable] = ACTIONS(2864), + [sym_grit_metavariable] = ACTIONS(2860), [sym_block_comment] = ACTIONS(3), }, - [724] = { - [sym_function_modifiers] = STATE(2642), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(1206), - [sym_bracketed_type] = STATE(2669), - [sym_lifetime] = STATE(2734), - [sym_array_type] = STATE(1166), - [sym_for_lifetimes] = STATE(1280), - [sym_function_type] = STATE(1166), - [sym_tuple_type] = STATE(1166), - [sym_unit_type] = STATE(1166), - [sym_generic_type] = STATE(1132), - [sym_generic_type_with_turbofish] = STATE(2670), - [sym_bounded_type] = STATE(1166), - [sym_reference_type] = STATE(1166), - [sym_pointer_type] = STATE(1166), - [sym_empty_type] = STATE(1166), - [sym_abstract_type] = STATE(1166), - [sym_dynamic_type] = STATE(1166), - [sym_macro_invocation] = STATE(1166), - [sym_scoped_identifier] = STATE(2544), - [sym_scoped_type_identifier] = STATE(830), - [sym_primitive_type] = STATE(1108), - [sym_identifier] = STATE(817), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(2880), - [anon_sym_LPAREN] = ACTIONS(2882), - [anon_sym_LBRACK] = ACTIONS(2884), - [anon_sym_STAR] = ACTIONS(2888), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(2890), - [anon_sym_fn] = ACTIONS(2892), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(2894), - [anon_sym_union] = ACTIONS(2896), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(2898), - [anon_sym_extern] = ACTIONS(876), + [730] = { + [sym_function_modifiers] = STATE(2645), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(1213), + [sym_bracketed_type] = STATE(2673), + [sym_lifetime] = STATE(2638), + [sym_array_type] = STATE(1237), + [sym_for_lifetimes] = STATE(1282), + [sym_function_type] = STATE(1237), + [sym_tuple_type] = STATE(1237), + [sym_unit_type] = STATE(1237), + [sym_generic_type] = STATE(1135), + [sym_generic_type_with_turbofish] = STATE(2674), + [sym_bounded_type] = STATE(1237), + [sym_reference_type] = STATE(1237), + [sym_pointer_type] = STATE(1237), + [sym_empty_type] = STATE(1237), + [sym_abstract_type] = STATE(1237), + [sym_dynamic_type] = STATE(1237), + [sym_macro_invocation] = STATE(1237), + [sym_scoped_identifier] = STATE(2548), + [sym_scoped_type_identifier] = STATE(827), + [sym_primitive_type] = STATE(1116), + [sym_identifier] = STATE(818), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(2832), + [anon_sym_LPAREN] = ACTIONS(2834), + [anon_sym_LBRACK] = ACTIONS(2836), + [anon_sym_STAR] = ACTIONS(2840), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(2842), + [anon_sym_fn] = ACTIONS(2844), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(2846), + [anon_sym_union] = ACTIONS(2848), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(2850), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(2900), - [anon_sym_AMP] = ACTIONS(2902), - [anon_sym_dyn] = ACTIONS(2904), + [anon_sym_COLON_COLON] = ACTIONS(2852), + [anon_sym_AMP] = ACTIONS(2854), + [anon_sym_dyn] = ACTIONS(2856), [anon_sym_u8] = ACTIONS(95), [anon_sym_i8] = ACTIONS(95), [anon_sym_u16] = ACTIONS(95), @@ -83890,128 +84387,198 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(95), [anon_sym_char] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(2908), - [sym_self] = ACTIONS(2910), - [sym_super] = ACTIONS(2910), - [sym_crate] = ACTIONS(2910), - [sym_metavariable] = ACTIONS(2912), - [sym_grit_metavariable] = ACTIONS(2908), + [sym__raw_identifier] = ACTIONS(2860), + [sym_self] = ACTIONS(2862), + [sym_super] = ACTIONS(2862), + [sym_crate] = ACTIONS(2862), + [sym_metavariable] = ACTIONS(2864), + [sym_grit_metavariable] = ACTIONS(2860), [sym_block_comment] = ACTIONS(3), }, - [725] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(2277), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [731] = { + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(1808), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, - [726] = { - [sym_function_modifiers] = STATE(2642), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(1222), - [sym_bracketed_type] = STATE(2669), - [sym_lifetime] = STATE(2734), - [sym_array_type] = STATE(1166), - [sym_for_lifetimes] = STATE(1280), - [sym_function_type] = STATE(1166), - [sym_tuple_type] = STATE(1166), - [sym_unit_type] = STATE(1166), - [sym_generic_type] = STATE(1132), - [sym_generic_type_with_turbofish] = STATE(2670), - [sym_bounded_type] = STATE(1166), - [sym_reference_type] = STATE(1166), - [sym_pointer_type] = STATE(1166), - [sym_empty_type] = STATE(1166), - [sym_abstract_type] = STATE(1166), - [sym_dynamic_type] = STATE(1166), - [sym_macro_invocation] = STATE(1166), - [sym_scoped_identifier] = STATE(2544), - [sym_scoped_type_identifier] = STATE(830), - [sym_primitive_type] = STATE(1108), - [sym_identifier] = STATE(817), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(2880), - [anon_sym_LPAREN] = ACTIONS(2882), - [anon_sym_LBRACK] = ACTIONS(2884), - [anon_sym_STAR] = ACTIONS(2888), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(2890), - [anon_sym_fn] = ACTIONS(2892), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(2894), - [anon_sym_union] = ACTIONS(2896), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(2898), - [anon_sym_extern] = ACTIONS(876), + [732] = { + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(2330), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), + [sym_block_comment] = ACTIONS(3), + }, + [733] = { + [sym_function_modifiers] = STATE(2645), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(1208), + [sym_bracketed_type] = STATE(2673), + [sym_lifetime] = STATE(2638), + [sym_array_type] = STATE(1237), + [sym_for_lifetimes] = STATE(1282), + [sym_function_type] = STATE(1237), + [sym_tuple_type] = STATE(1237), + [sym_unit_type] = STATE(1237), + [sym_generic_type] = STATE(1135), + [sym_generic_type_with_turbofish] = STATE(2674), + [sym_bounded_type] = STATE(1237), + [sym_reference_type] = STATE(1237), + [sym_pointer_type] = STATE(1237), + [sym_empty_type] = STATE(1237), + [sym_abstract_type] = STATE(1237), + [sym_dynamic_type] = STATE(1237), + [sym_macro_invocation] = STATE(1237), + [sym_scoped_identifier] = STATE(2548), + [sym_scoped_type_identifier] = STATE(827), + [sym_primitive_type] = STATE(1116), + [sym_identifier] = STATE(818), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(2832), + [anon_sym_LPAREN] = ACTIONS(2834), + [anon_sym_LBRACK] = ACTIONS(2836), + [anon_sym_STAR] = ACTIONS(2840), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(2842), + [anon_sym_fn] = ACTIONS(2844), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(2846), + [anon_sym_union] = ACTIONS(2848), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(2850), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(2900), - [anon_sym_AMP] = ACTIONS(2902), - [anon_sym_dyn] = ACTIONS(2904), + [anon_sym_COLON_COLON] = ACTIONS(2852), + [anon_sym_AMP] = ACTIONS(2854), + [anon_sym_dyn] = ACTIONS(2856), [anon_sym_u8] = ACTIONS(95), [anon_sym_i8] = ACTIONS(95), [anon_sym_u16] = ACTIONS(95), @@ -84030,758 +84597,968 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(95), [anon_sym_char] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(2908), - [sym_self] = ACTIONS(2910), - [sym_super] = ACTIONS(2910), - [sym_crate] = ACTIONS(2910), - [sym_metavariable] = ACTIONS(2912), - [sym_grit_metavariable] = ACTIONS(2908), + [sym__raw_identifier] = ACTIONS(2860), + [sym_self] = ACTIONS(2862), + [sym_super] = ACTIONS(2862), + [sym_crate] = ACTIONS(2862), + [sym_metavariable] = ACTIONS(2864), + [sym_grit_metavariable] = ACTIONS(2860), [sym_block_comment] = ACTIONS(3), }, - [727] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(1807), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [734] = { + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(2334), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, - [728] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(2198), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [735] = { + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(1989), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, - [729] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(2011), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [736] = { + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(2463), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, - [730] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(1808), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [737] = { + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(1771), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, - [731] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(2283), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [738] = { + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(2443), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, - [732] = { - [sym_function_modifiers] = STATE(2619), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(1489), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2700), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1278), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(2273), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1833), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1685), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(2840), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(2842), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(2844), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [739] = { + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(1727), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(2846), - [anon_sym_dyn] = ACTIONS(2848), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, - [733] = { - [sym_function_modifiers] = STATE(2619), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(1494), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2700), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1278), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(2273), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1833), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1685), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(2840), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(2842), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(2844), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [740] = { + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(1760), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1757), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1674), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1645), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(2846), - [anon_sym_dyn] = ACTIONS(2848), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, - [734] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(1843), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [741] = { + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(2573), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, - [735] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(2448), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [742] = { + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(2599), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, - [736] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(2010), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [743] = { + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(1502), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, - [737] = { - [sym_function_modifiers] = STATE(2642), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(1196), - [sym_bracketed_type] = STATE(2669), - [sym_lifetime] = STATE(2734), - [sym_array_type] = STATE(1166), - [sym_for_lifetimes] = STATE(1280), - [sym_function_type] = STATE(1166), - [sym_tuple_type] = STATE(1166), - [sym_unit_type] = STATE(1166), - [sym_generic_type] = STATE(1132), - [sym_generic_type_with_turbofish] = STATE(2670), - [sym_bounded_type] = STATE(1166), - [sym_reference_type] = STATE(1166), - [sym_pointer_type] = STATE(1166), - [sym_empty_type] = STATE(1166), - [sym_abstract_type] = STATE(1166), - [sym_dynamic_type] = STATE(1166), - [sym_macro_invocation] = STATE(1166), - [sym_scoped_identifier] = STATE(2544), - [sym_scoped_type_identifier] = STATE(830), - [sym_primitive_type] = STATE(1108), - [sym_identifier] = STATE(817), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(2880), - [anon_sym_LPAREN] = ACTIONS(2882), - [anon_sym_LBRACK] = ACTIONS(2884), - [anon_sym_STAR] = ACTIONS(2888), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(2890), - [anon_sym_fn] = ACTIONS(2892), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(2894), - [anon_sym_union] = ACTIONS(2896), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(2898), - [anon_sym_extern] = ACTIONS(876), + [744] = { + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(1821), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), + [sym_block_comment] = ACTIONS(3), + }, + [745] = { + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(1525), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), + [sym_block_comment] = ACTIONS(3), + }, + [746] = { + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(2246), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(2900), - [anon_sym_AMP] = ACTIONS(2902), - [anon_sym_dyn] = ACTIONS(2904), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), + [sym_block_comment] = ACTIONS(3), + }, + [747] = { + [sym_function_modifiers] = STATE(2645), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(1205), + [sym_bracketed_type] = STATE(2673), + [sym_lifetime] = STATE(2638), + [sym_array_type] = STATE(1237), + [sym_for_lifetimes] = STATE(1282), + [sym_function_type] = STATE(1237), + [sym_tuple_type] = STATE(1237), + [sym_unit_type] = STATE(1237), + [sym_generic_type] = STATE(1135), + [sym_generic_type_with_turbofish] = STATE(2674), + [sym_bounded_type] = STATE(1237), + [sym_reference_type] = STATE(1237), + [sym_pointer_type] = STATE(1237), + [sym_empty_type] = STATE(1237), + [sym_abstract_type] = STATE(1237), + [sym_dynamic_type] = STATE(1237), + [sym_macro_invocation] = STATE(1237), + [sym_scoped_identifier] = STATE(2548), + [sym_scoped_type_identifier] = STATE(827), + [sym_primitive_type] = STATE(1116), + [sym_identifier] = STATE(818), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(2832), + [anon_sym_LPAREN] = ACTIONS(2834), + [anon_sym_LBRACK] = ACTIONS(2836), + [anon_sym_STAR] = ACTIONS(2840), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(2842), + [anon_sym_fn] = ACTIONS(2844), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(2846), + [anon_sym_union] = ACTIONS(2848), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(2850), + [anon_sym_extern] = ACTIONS(878), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(2852), + [anon_sym_AMP] = ACTIONS(2854), + [anon_sym_dyn] = ACTIONS(2856), [anon_sym_u8] = ACTIONS(95), [anon_sym_i8] = ACTIONS(95), [anon_sym_u16] = ACTIONS(95), @@ -84800,408 +85577,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(95), [anon_sym_char] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(2908), - [sym_self] = ACTIONS(2910), - [sym_super] = ACTIONS(2910), - [sym_crate] = ACTIONS(2910), - [sym_metavariable] = ACTIONS(2912), - [sym_grit_metavariable] = ACTIONS(2908), - [sym_block_comment] = ACTIONS(3), - }, - [738] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(2450), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), - [sym_block_comment] = ACTIONS(3), - }, - [739] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(1495), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), - [sym_block_comment] = ACTIONS(3), - }, - [740] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(1846), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1844), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1670), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1624), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), - [sym_block_comment] = ACTIONS(3), - }, - [741] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(2372), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), - [sym_block_comment] = ACTIONS(3), - }, - [742] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(2201), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), + [sym__raw_identifier] = ACTIONS(2860), + [sym_self] = ACTIONS(2862), + [sym_super] = ACTIONS(2862), + [sym_crate] = ACTIONS(2862), + [sym_metavariable] = ACTIONS(2864), + [sym_grit_metavariable] = ACTIONS(2860), [sym_block_comment] = ACTIONS(3), }, - [743] = { - [sym_function_modifiers] = STATE(2642), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(1241), - [sym_bracketed_type] = STATE(2669), - [sym_lifetime] = STATE(2734), - [sym_array_type] = STATE(1166), - [sym_for_lifetimes] = STATE(1280), - [sym_function_type] = STATE(1166), - [sym_tuple_type] = STATE(1166), - [sym_unit_type] = STATE(1166), - [sym_generic_type] = STATE(1132), - [sym_generic_type_with_turbofish] = STATE(2670), - [sym_bounded_type] = STATE(1166), - [sym_reference_type] = STATE(1166), - [sym_pointer_type] = STATE(1166), - [sym_empty_type] = STATE(1166), - [sym_abstract_type] = STATE(1166), - [sym_dynamic_type] = STATE(1166), - [sym_macro_invocation] = STATE(1166), - [sym_scoped_identifier] = STATE(2544), - [sym_scoped_type_identifier] = STATE(830), - [sym_primitive_type] = STATE(1108), - [sym_identifier] = STATE(817), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(2880), - [anon_sym_LPAREN] = ACTIONS(2882), - [anon_sym_LBRACK] = ACTIONS(2884), - [anon_sym_STAR] = ACTIONS(2888), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(2890), - [anon_sym_fn] = ACTIONS(2892), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(2894), - [anon_sym_union] = ACTIONS(2896), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(2898), - [anon_sym_extern] = ACTIONS(876), + [748] = { + [sym_function_modifiers] = STATE(2645), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(1204), + [sym_bracketed_type] = STATE(2673), + [sym_lifetime] = STATE(2638), + [sym_array_type] = STATE(1237), + [sym_for_lifetimes] = STATE(1282), + [sym_function_type] = STATE(1237), + [sym_tuple_type] = STATE(1237), + [sym_unit_type] = STATE(1237), + [sym_generic_type] = STATE(1135), + [sym_generic_type_with_turbofish] = STATE(2674), + [sym_bounded_type] = STATE(1237), + [sym_reference_type] = STATE(1237), + [sym_pointer_type] = STATE(1237), + [sym_empty_type] = STATE(1237), + [sym_abstract_type] = STATE(1237), + [sym_dynamic_type] = STATE(1237), + [sym_macro_invocation] = STATE(1237), + [sym_scoped_identifier] = STATE(2548), + [sym_scoped_type_identifier] = STATE(827), + [sym_primitive_type] = STATE(1116), + [sym_identifier] = STATE(818), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(2832), + [anon_sym_LPAREN] = ACTIONS(2834), + [anon_sym_LBRACK] = ACTIONS(2836), + [anon_sym_STAR] = ACTIONS(2840), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(2842), + [anon_sym_fn] = ACTIONS(2844), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(2846), + [anon_sym_union] = ACTIONS(2848), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(2850), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(2900), - [anon_sym_AMP] = ACTIONS(2902), - [anon_sym_dyn] = ACTIONS(2904), + [anon_sym_COLON_COLON] = ACTIONS(2852), + [anon_sym_AMP] = ACTIONS(2854), + [anon_sym_dyn] = ACTIONS(2856), [anon_sym_u8] = ACTIONS(95), [anon_sym_i8] = ACTIONS(95), [anon_sym_u16] = ACTIONS(95), @@ -85220,4770 +85647,4490 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(95), [anon_sym_char] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(2908), - [sym_self] = ACTIONS(2910), - [sym_super] = ACTIONS(2910), - [sym_crate] = ACTIONS(2910), - [sym_metavariable] = ACTIONS(2912), - [sym_grit_metavariable] = ACTIONS(2908), + [sym__raw_identifier] = ACTIONS(2860), + [sym_self] = ACTIONS(2862), + [sym_super] = ACTIONS(2862), + [sym_crate] = ACTIONS(2862), + [sym_metavariable] = ACTIONS(2864), + [sym_grit_metavariable] = ACTIONS(2860), [sym_block_comment] = ACTIONS(3), }, - [744] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(2310), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [749] = { + [sym_function_modifiers] = STATE(2771), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(1518), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2704), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1284), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(2283), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1822), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1701), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(2890), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(2892), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(2894), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), - [sym_block_comment] = ACTIONS(3), - }, - [745] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(2484), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), - [sym_block_comment] = ACTIONS(3), - }, - [746] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(1812), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), - [sym_block_comment] = ACTIONS(3), - }, - [747] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(1864), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), - [sym_block_comment] = ACTIONS(3), - }, - [748] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(2379), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), - [sym_block_comment] = ACTIONS(3), - }, - [749] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(1493), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(2976), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(2896), + [anon_sym_dyn] = ACTIONS(2898), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, [750] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(2212), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(1818), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, [751] = { - [sym_function_modifiers] = STATE(2642), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(1168), - [sym_bracketed_type] = STATE(2669), - [sym_lifetime] = STATE(2734), - [sym_array_type] = STATE(1166), - [sym_for_lifetimes] = STATE(1280), - [sym_function_type] = STATE(1166), - [sym_tuple_type] = STATE(1166), - [sym_unit_type] = STATE(1166), - [sym_generic_type] = STATE(1132), - [sym_generic_type_with_turbofish] = STATE(2670), - [sym_bounded_type] = STATE(1166), - [sym_reference_type] = STATE(1166), - [sym_pointer_type] = STATE(1166), - [sym_empty_type] = STATE(1166), - [sym_abstract_type] = STATE(1166), - [sym_dynamic_type] = STATE(1166), - [sym_macro_invocation] = STATE(1166), - [sym_scoped_identifier] = STATE(2544), - [sym_scoped_type_identifier] = STATE(830), - [sym_primitive_type] = STATE(1108), - [sym_identifier] = STATE(817), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(2880), - [anon_sym_LPAREN] = ACTIONS(2882), - [anon_sym_LBRACK] = ACTIONS(2884), - [anon_sym_STAR] = ACTIONS(2888), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(2890), - [anon_sym_fn] = ACTIONS(2892), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(2894), - [anon_sym_union] = ACTIONS(2896), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(2898), - [anon_sym_extern] = ACTIONS(876), + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(1792), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(2900), - [anon_sym_AMP] = ACTIONS(2902), - [anon_sym_dyn] = ACTIONS(2904), - [anon_sym_u8] = ACTIONS(95), - [anon_sym_i8] = ACTIONS(95), - [anon_sym_u16] = ACTIONS(95), - [anon_sym_i16] = ACTIONS(95), - [anon_sym_u32] = ACTIONS(95), - [anon_sym_i32] = ACTIONS(95), - [anon_sym_u64] = ACTIONS(95), - [anon_sym_i64] = ACTIONS(95), - [anon_sym_u128] = ACTIONS(95), - [anon_sym_i128] = ACTIONS(95), - [anon_sym_isize] = ACTIONS(95), - [anon_sym_usize] = ACTIONS(95), - [anon_sym_f32] = ACTIONS(95), - [anon_sym_f64] = ACTIONS(95), - [anon_sym_bool] = ACTIONS(95), - [anon_sym_str] = ACTIONS(95), - [anon_sym_char] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(2908), - [sym_self] = ACTIONS(2910), - [sym_super] = ACTIONS(2910), - [sym_crate] = ACTIONS(2910), - [sym_metavariable] = ACTIONS(2912), - [sym_grit_metavariable] = ACTIONS(2908), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, [752] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(1842), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(2173), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, [753] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(2515), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(2236), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, [754] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(2531), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(2111), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, [755] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(2086), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(1849), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, [756] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(1813), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(1503), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, [757] = { - [sym_function_modifiers] = STATE(2642), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(1197), - [sym_bracketed_type] = STATE(2669), - [sym_lifetime] = STATE(2734), - [sym_array_type] = STATE(1166), - [sym_for_lifetimes] = STATE(1280), - [sym_function_type] = STATE(1166), - [sym_tuple_type] = STATE(1166), - [sym_unit_type] = STATE(1166), - [sym_generic_type] = STATE(1132), - [sym_generic_type_with_turbofish] = STATE(2670), - [sym_bounded_type] = STATE(1166), - [sym_reference_type] = STATE(1166), - [sym_pointer_type] = STATE(1166), - [sym_empty_type] = STATE(1166), - [sym_abstract_type] = STATE(1166), - [sym_dynamic_type] = STATE(1166), - [sym_macro_invocation] = STATE(1166), - [sym_scoped_identifier] = STATE(2544), - [sym_scoped_type_identifier] = STATE(830), - [sym_primitive_type] = STATE(1108), - [sym_identifier] = STATE(817), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(2880), - [anon_sym_LPAREN] = ACTIONS(2882), - [anon_sym_LBRACK] = ACTIONS(2884), - [anon_sym_STAR] = ACTIONS(2888), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(2890), - [anon_sym_fn] = ACTIONS(2892), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(2894), - [anon_sym_union] = ACTIONS(2896), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(2898), - [anon_sym_extern] = ACTIONS(876), + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(1815), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(2900), - [anon_sym_AMP] = ACTIONS(2902), - [anon_sym_dyn] = ACTIONS(2904), - [anon_sym_u8] = ACTIONS(95), - [anon_sym_i8] = ACTIONS(95), - [anon_sym_u16] = ACTIONS(95), - [anon_sym_i16] = ACTIONS(95), - [anon_sym_u32] = ACTIONS(95), - [anon_sym_i32] = ACTIONS(95), - [anon_sym_u64] = ACTIONS(95), - [anon_sym_i64] = ACTIONS(95), - [anon_sym_u128] = ACTIONS(95), - [anon_sym_i128] = ACTIONS(95), - [anon_sym_isize] = ACTIONS(95), - [anon_sym_usize] = ACTIONS(95), - [anon_sym_f32] = ACTIONS(95), - [anon_sym_f64] = ACTIONS(95), - [anon_sym_bool] = ACTIONS(95), - [anon_sym_str] = ACTIONS(95), - [anon_sym_char] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(2908), - [sym_self] = ACTIONS(2910), - [sym_super] = ACTIONS(2910), - [sym_crate] = ACTIONS(2910), - [sym_metavariable] = ACTIONS(2912), - [sym_grit_metavariable] = ACTIONS(2908), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, [758] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(2326), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [sym_function_modifiers] = STATE(2771), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(1530), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2704), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1284), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(2283), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1822), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1701), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(2890), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(2892), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(2894), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(2896), + [anon_sym_dyn] = ACTIONS(2898), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, [759] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(2218), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [sym_function_modifiers] = STATE(2771), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(1523), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2704), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1284), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(2283), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1822), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1701), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(2890), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(2892), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(2894), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(2896), + [anon_sym_dyn] = ACTIONS(2898), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, [760] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(2048), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(1766), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, [761] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(1854), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(1864), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, [762] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(1823), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(1866), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, [763] = { - [sym_function_modifiers] = STATE(2619), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(2519), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2700), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1278), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(2273), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1833), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1685), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(2840), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(2842), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(2844), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(1493), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(1491), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(2846), - [anon_sym_dyn] = ACTIONS(2848), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, [764] = { - [sym_function_modifiers] = STATE(2619), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(1487), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2700), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1278), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(2273), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1833), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1685), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(2840), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(2842), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(2844), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [sym_function_modifiers] = STATE(2771), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(1493), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2704), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1284), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(2283), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1822), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1701), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(2890), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(2892), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(2894), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(2846), - [anon_sym_dyn] = ACTIONS(2848), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(2896), + [anon_sym_dyn] = ACTIONS(2898), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, [765] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(1785), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(2561), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, [766] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(1782), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(1493), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, [767] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(2330), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [sym_function_modifiers] = STATE(2771), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(1493), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(1491), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1284), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(2283), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1822), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1701), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(2890), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(2892), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(2894), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(2896), + [anon_sym_dyn] = ACTIONS(2898), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, [768] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(1724), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(2262), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, [769] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(2439), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [sym_function_modifiers] = STATE(2771), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(1503), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2704), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1284), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(2283), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1822), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1701), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(2890), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(2892), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(2894), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(2896), + [anon_sym_dyn] = ACTIONS(2898), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, [770] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(1830), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(1867), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, [771] = { - [sym_function_modifiers] = STATE(2619), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(2523), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2700), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1278), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(2273), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1833), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1685), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(2840), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(2842), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(2844), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(1872), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1790), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1666), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1647), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(2846), - [anon_sym_dyn] = ACTIONS(2848), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, [772] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(2293), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(2385), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, [773] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(2238), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(2366), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, [774] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(2133), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(1764), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, [775] = { - [sym_function_modifiers] = STATE(2619), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(1505), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2700), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1278), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(2273), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1833), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1685), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(2840), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(2842), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(2844), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [sym_function_modifiers] = STATE(2771), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(2499), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2704), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1284), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(2283), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1822), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1701), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(2890), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(2892), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(2894), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(2846), - [anon_sym_dyn] = ACTIONS(2848), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(2896), + [anon_sym_dyn] = ACTIONS(2898), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, [776] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(2105), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(2245), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, [777] = { - [sym_function_modifiers] = STATE(2619), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(1492), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2700), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1278), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(2273), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1833), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1685), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(2840), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(2842), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(2844), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(2080), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(2846), - [anon_sym_dyn] = ACTIONS(2848), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, [778] = { - [sym_function_modifiers] = STATE(2619), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(1490), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2700), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1278), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(2273), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1833), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1685), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(2840), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(2842), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(2844), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(2216), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(2846), - [anon_sym_dyn] = ACTIONS(2848), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, [779] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(2362), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(2050), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, [780] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(1804), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(1843), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, [781] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(2248), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(1978), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, [782] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(1861), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(1806), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, [783] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(1831), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [sym_function_modifiers] = STATE(2771), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(2512), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2704), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1284), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(2283), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1822), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1701), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(2890), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(2892), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(2894), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(2896), + [anon_sym_dyn] = ACTIONS(2898), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, [784] = { - [sym_function_modifiers] = STATE(2619), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(2508), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2700), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1278), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(2273), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1833), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1685), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(2840), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(2842), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(2844), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [sym_function_modifiers] = STATE(2771), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(2510), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2704), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1284), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(2283), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1822), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1701), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(2890), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(2892), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(2894), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(2846), - [anon_sym_dyn] = ACTIONS(2848), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(2896), + [anon_sym_dyn] = ACTIONS(2898), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, [785] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(1490), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(2255), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, [786] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(1492), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(2345), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, [787] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(2327), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(1839), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, [788] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(1505), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(1858), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, [789] = { - [sym_function_modifiers] = STATE(2619), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(2507), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2700), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1278), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(2273), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1833), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1685), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(2840), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(2842), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(2844), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(1508), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(2846), - [anon_sym_dyn] = ACTIONS(2848), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, [790] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(1832), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(2342), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, [791] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(1834), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(1765), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, [792] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(2260), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(2152), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, [793] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(1493), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(1816), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, [794] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(2263), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [sym_function_modifiers] = STATE(2645), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(1181), + [sym_bracketed_type] = STATE(2673), + [sym_lifetime] = STATE(2638), + [sym_array_type] = STATE(1237), + [sym_for_lifetimes] = STATE(1282), + [sym_function_type] = STATE(1237), + [sym_tuple_type] = STATE(1237), + [sym_unit_type] = STATE(1237), + [sym_generic_type] = STATE(1135), + [sym_generic_type_with_turbofish] = STATE(2674), + [sym_bounded_type] = STATE(1237), + [sym_reference_type] = STATE(1237), + [sym_pointer_type] = STATE(1237), + [sym_empty_type] = STATE(1237), + [sym_abstract_type] = STATE(1237), + [sym_dynamic_type] = STATE(1237), + [sym_macro_invocation] = STATE(1237), + [sym_scoped_identifier] = STATE(2548), + [sym_scoped_type_identifier] = STATE(827), + [sym_primitive_type] = STATE(1116), + [sym_identifier] = STATE(818), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(2832), + [anon_sym_LPAREN] = ACTIONS(2834), + [anon_sym_LBRACK] = ACTIONS(2836), + [anon_sym_STAR] = ACTIONS(2840), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(2842), + [anon_sym_fn] = ACTIONS(2844), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(2846), + [anon_sym_union] = ACTIONS(2848), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(2850), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(2852), + [anon_sym_AMP] = ACTIONS(2854), + [anon_sym_dyn] = ACTIONS(2856), + [anon_sym_u8] = ACTIONS(95), + [anon_sym_i8] = ACTIONS(95), + [anon_sym_u16] = ACTIONS(95), + [anon_sym_i16] = ACTIONS(95), + [anon_sym_u32] = ACTIONS(95), + [anon_sym_i32] = ACTIONS(95), + [anon_sym_u64] = ACTIONS(95), + [anon_sym_i64] = ACTIONS(95), + [anon_sym_u128] = ACTIONS(95), + [anon_sym_i128] = ACTIONS(95), + [anon_sym_isize] = ACTIONS(95), + [anon_sym_usize] = ACTIONS(95), + [anon_sym_f32] = ACTIONS(95), + [anon_sym_f64] = ACTIONS(95), + [anon_sym_bool] = ACTIONS(95), + [anon_sym_str] = ACTIONS(95), + [anon_sym_char] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(2860), + [sym_self] = ACTIONS(2862), + [sym_super] = ACTIONS(2862), + [sym_crate] = ACTIONS(2862), + [sym_metavariable] = ACTIONS(2864), + [sym_grit_metavariable] = ACTIONS(2860), [sym_block_comment] = ACTIONS(3), }, [795] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(1835), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(2204), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, [796] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(2375), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(1810), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, [797] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(2323), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(2543), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, [798] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(2405), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(1523), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, [799] = { - [sym_attribute_item] = STATE(799), - [aux_sym_enum_variant_list_repeat1] = STATE(799), - [sym__primitive_identifier] = ACTIONS(2978), - [sym_underscore] = ACTIONS(2978), - [anon_sym_LPAREN] = ACTIONS(2980), - [anon_sym_LBRACE] = ACTIONS(2980), - [anon_sym_LBRACK] = ACTIONS(2980), - [anon_sym_RBRACK] = ACTIONS(2980), - [anon_sym_STAR] = ACTIONS(2980), - [anon_sym_SQUOTE] = ACTIONS(2978), - [anon_sym_async] = ACTIONS(2978), - [anon_sym_break] = ACTIONS(2978), - [anon_sym_const] = ACTIONS(2978), - [anon_sym_continue] = ACTIONS(2978), - [anon_sym_default] = ACTIONS(2978), - [anon_sym_for] = ACTIONS(2978), - [anon_sym_if] = ACTIONS(2978), - [anon_sym_loop] = ACTIONS(2978), - [anon_sym_match] = ACTIONS(2978), - [anon_sym_return] = ACTIONS(2978), - [anon_sym_union] = ACTIONS(2978), - [anon_sym_unsafe] = ACTIONS(2978), - [anon_sym_while] = ACTIONS(2978), - [anon_sym_POUND] = ACTIONS(2982), - [anon_sym_BANG] = ACTIONS(2980), - [anon_sym_COMMA] = ACTIONS(2980), - [anon_sym_ref] = ACTIONS(2978), - [anon_sym_LT] = ACTIONS(2980), - [anon_sym_COLON_COLON] = ACTIONS(2980), - [anon_sym_AMP] = ACTIONS(2980), - [sym_mutable_specifier] = ACTIONS(2978), - [anon_sym_DOT_DOT] = ACTIONS(2980), - [anon_sym_DASH] = ACTIONS(2980), - [anon_sym_PIPE] = ACTIONS(2980), - [anon_sym_yield] = ACTIONS(2978), - [anon_sym_move] = ACTIONS(2978), - [sym_integer_literal] = ACTIONS(2980), - [aux_sym_string_literal_token1] = ACTIONS(2980), - [sym_char_literal] = ACTIONS(2980), - [anon_sym_true] = ACTIONS(2978), - [anon_sym_false] = ACTIONS(2978), - [anon_sym_u8] = ACTIONS(2978), - [anon_sym_i8] = ACTIONS(2978), - [anon_sym_u16] = ACTIONS(2978), - [anon_sym_i16] = ACTIONS(2978), - [anon_sym_u32] = ACTIONS(2978), - [anon_sym_i32] = ACTIONS(2978), - [anon_sym_u64] = ACTIONS(2978), - [anon_sym_i64] = ACTIONS(2978), - [anon_sym_u128] = ACTIONS(2978), - [anon_sym_i128] = ACTIONS(2978), - [anon_sym_isize] = ACTIONS(2978), - [anon_sym_usize] = ACTIONS(2978), - [anon_sym_f32] = ACTIONS(2978), - [anon_sym_f64] = ACTIONS(2978), - [anon_sym_bool] = ACTIONS(2978), - [anon_sym_str] = ACTIONS(2978), - [anon_sym_char] = ACTIONS(2978), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(2980), - [sym_self] = ACTIONS(2978), - [sym_super] = ACTIONS(2978), - [sym_crate] = ACTIONS(2978), - [sym_metavariable] = ACTIONS(2980), - [sym_grit_metavariable] = ACTIONS(2980), - [sym_raw_string_literal] = ACTIONS(2980), - [sym_float_literal] = ACTIONS(2980), + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(1807), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, [800] = { - [sym_function_modifiers] = STATE(2642), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(1162), - [sym_bracketed_type] = STATE(2669), - [sym_lifetime] = STATE(2734), - [sym_array_type] = STATE(1166), - [sym_for_lifetimes] = STATE(1280), - [sym_function_type] = STATE(1166), - [sym_tuple_type] = STATE(1166), - [sym_unit_type] = STATE(1166), - [sym_generic_type] = STATE(1132), - [sym_generic_type_with_turbofish] = STATE(2670), - [sym_bounded_type] = STATE(1166), - [sym_reference_type] = STATE(1166), - [sym_pointer_type] = STATE(1166), - [sym_empty_type] = STATE(1166), - [sym_abstract_type] = STATE(1166), - [sym_dynamic_type] = STATE(1166), - [sym_macro_invocation] = STATE(1166), - [sym_scoped_identifier] = STATE(2544), - [sym_scoped_type_identifier] = STATE(830), - [sym_primitive_type] = STATE(1108), - [sym_identifier] = STATE(817), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(2880), - [anon_sym_LPAREN] = ACTIONS(2882), - [anon_sym_LBRACK] = ACTIONS(2884), - [anon_sym_STAR] = ACTIONS(2888), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(2890), - [anon_sym_fn] = ACTIONS(2892), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(2894), - [anon_sym_union] = ACTIONS(2896), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(2898), - [anon_sym_extern] = ACTIONS(876), + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(2339), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(2900), - [anon_sym_AMP] = ACTIONS(2902), - [anon_sym_dyn] = ACTIONS(2904), - [anon_sym_u8] = ACTIONS(95), - [anon_sym_i8] = ACTIONS(95), - [anon_sym_u16] = ACTIONS(95), - [anon_sym_i16] = ACTIONS(95), - [anon_sym_u32] = ACTIONS(95), - [anon_sym_i32] = ACTIONS(95), - [anon_sym_u64] = ACTIONS(95), - [anon_sym_i64] = ACTIONS(95), - [anon_sym_u128] = ACTIONS(95), - [anon_sym_i128] = ACTIONS(95), - [anon_sym_isize] = ACTIONS(95), - [anon_sym_usize] = ACTIONS(95), - [anon_sym_f32] = ACTIONS(95), - [anon_sym_f64] = ACTIONS(95), - [anon_sym_bool] = ACTIONS(95), - [anon_sym_str] = ACTIONS(95), - [anon_sym_char] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(2908), - [sym_self] = ACTIONS(2910), - [sym_super] = ACTIONS(2910), - [sym_crate] = ACTIONS(2910), - [sym_metavariable] = ACTIONS(2912), - [sym_grit_metavariable] = ACTIONS(2908), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, [801] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(2242), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(2154), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, [802] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(1839), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(2379), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, [803] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(2594), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(1518), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, [804] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(2382), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(2400), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, [805] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(1838), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1836), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1661), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1632), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(1845), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1844), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1675), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1636), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, [806] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(1795), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1853), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1654), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1640), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(2264), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, [807] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(2491), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [sym_function_modifiers] = STATE(2771), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(1497), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2704), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1284), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(2283), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1822), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1701), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(2890), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(2892), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(2894), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(2896), + [anon_sym_dyn] = ACTIONS(2898), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, [808] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(1810), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [sym_function_modifiers] = STATE(2645), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(1179), + [sym_bracketed_type] = STATE(2673), + [sym_lifetime] = STATE(2638), + [sym_array_type] = STATE(1237), + [sym_for_lifetimes] = STATE(1282), + [sym_function_type] = STATE(1237), + [sym_tuple_type] = STATE(1237), + [sym_unit_type] = STATE(1237), + [sym_generic_type] = STATE(1135), + [sym_generic_type_with_turbofish] = STATE(2674), + [sym_bounded_type] = STATE(1237), + [sym_reference_type] = STATE(1237), + [sym_pointer_type] = STATE(1237), + [sym_empty_type] = STATE(1237), + [sym_abstract_type] = STATE(1237), + [sym_dynamic_type] = STATE(1237), + [sym_macro_invocation] = STATE(1237), + [sym_scoped_identifier] = STATE(2548), + [sym_scoped_type_identifier] = STATE(827), + [sym_primitive_type] = STATE(1116), + [sym_identifier] = STATE(818), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(2832), + [anon_sym_LPAREN] = ACTIONS(2834), + [anon_sym_LBRACK] = ACTIONS(2836), + [anon_sym_STAR] = ACTIONS(2840), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(2842), + [anon_sym_fn] = ACTIONS(2844), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(2846), + [anon_sym_union] = ACTIONS(2848), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(2850), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(2852), + [anon_sym_AMP] = ACTIONS(2854), + [anon_sym_dyn] = ACTIONS(2856), + [anon_sym_u8] = ACTIONS(95), + [anon_sym_i8] = ACTIONS(95), + [anon_sym_u16] = ACTIONS(95), + [anon_sym_i16] = ACTIONS(95), + [anon_sym_u32] = ACTIONS(95), + [anon_sym_i32] = ACTIONS(95), + [anon_sym_u64] = ACTIONS(95), + [anon_sym_i64] = ACTIONS(95), + [anon_sym_u128] = ACTIONS(95), + [anon_sym_i128] = ACTIONS(95), + [anon_sym_isize] = ACTIONS(95), + [anon_sym_usize] = ACTIONS(95), + [anon_sym_f32] = ACTIONS(95), + [anon_sym_f64] = ACTIONS(95), + [anon_sym_bool] = ACTIONS(95), + [anon_sym_str] = ACTIONS(95), + [anon_sym_char] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(2860), + [sym_self] = ACTIONS(2862), + [sym_super] = ACTIONS(2862), + [sym_crate] = ACTIONS(2862), + [sym_metavariable] = ACTIONS(2864), + [sym_grit_metavariable] = ACTIONS(2860), [sym_block_comment] = ACTIONS(3), }, [809] = { - [sym_function_modifiers] = STATE(2724), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(2386), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2725), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1281), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(1503), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1449), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1435), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(866), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(1797), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, [810] = { - [sym_function_modifiers] = STATE(2619), - [sym_extern_modifier] = STATE(1694), - [sym__type] = STATE(1495), - [sym_bracketed_type] = STATE(2646), - [sym_lifetime] = STATE(2700), - [sym_array_type] = STATE(1517), - [sym_for_lifetimes] = STATE(1278), - [sym_function_type] = STATE(1517), - [sym_tuple_type] = STATE(1517), - [sym_unit_type] = STATE(1517), - [sym_generic_type] = STATE(2273), - [sym_generic_type_with_turbofish] = STATE(2644), - [sym_bounded_type] = STATE(1517), - [sym_reference_type] = STATE(1517), - [sym_pointer_type] = STATE(1517), - [sym_empty_type] = STATE(1517), - [sym_abstract_type] = STATE(1517), - [sym_dynamic_type] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym_scoped_identifier] = STATE(2570), - [sym_scoped_type_identifier] = STATE(1833), - [sym_primitive_type] = STATE(1479), - [sym_identifier] = STATE(1685), - [aux_sym_function_modifiers_repeat1] = STATE(1694), - [sym__primitive_identifier] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(2840), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(2842), - [anon_sym_for] = ACTIONS(864), - [anon_sym_impl] = ACTIONS(2844), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_extern] = ACTIONS(876), + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(2476), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(2846), - [anon_sym_dyn] = ACTIONS(2848), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(902), - [sym_self] = ACTIONS(1064), - [sym_super] = ACTIONS(1064), - [sym_crate] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1066), - [sym_grit_metavariable] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, [811] = { - [sym__primitive_identifier] = ACTIONS(2519), - [sym_underscore] = ACTIONS(2519), - [anon_sym_LPAREN] = ACTIONS(2517), - [anon_sym_LBRACE] = ACTIONS(2517), - [anon_sym_LBRACK] = ACTIONS(2517), - [anon_sym_RBRACK] = ACTIONS(2517), - [anon_sym_STAR] = ACTIONS(2517), - [anon_sym_SQUOTE] = ACTIONS(2519), - [anon_sym_async] = ACTIONS(2519), - [anon_sym_break] = ACTIONS(2519), - [anon_sym_const] = ACTIONS(2519), - [anon_sym_continue] = ACTIONS(2519), - [anon_sym_default] = ACTIONS(2519), - [anon_sym_for] = ACTIONS(2519), - [anon_sym_if] = ACTIONS(2519), - [anon_sym_loop] = ACTIONS(2519), - [anon_sym_match] = ACTIONS(2519), - [anon_sym_return] = ACTIONS(2519), - [anon_sym_union] = ACTIONS(2519), - [anon_sym_unsafe] = ACTIONS(2519), - [anon_sym_while] = ACTIONS(2519), - [anon_sym_POUND] = ACTIONS(2517), - [anon_sym_BANG] = ACTIONS(2517), - [anon_sym_COMMA] = ACTIONS(2517), - [anon_sym_ref] = ACTIONS(2519), - [anon_sym_LT] = ACTIONS(2517), - [anon_sym_COLON_COLON] = ACTIONS(2517), - [anon_sym_AMP] = ACTIONS(2517), - [sym_mutable_specifier] = ACTIONS(2519), - [anon_sym_DOT_DOT] = ACTIONS(2517), - [anon_sym_DASH] = ACTIONS(2517), - [anon_sym_PIPE] = ACTIONS(2517), - [anon_sym_yield] = ACTIONS(2519), - [anon_sym_move] = ACTIONS(2519), - [sym_integer_literal] = ACTIONS(2517), - [aux_sym_string_literal_token1] = ACTIONS(2517), - [sym_char_literal] = ACTIONS(2517), - [anon_sym_true] = ACTIONS(2519), - [anon_sym_false] = ACTIONS(2519), - [anon_sym_u8] = ACTIONS(2519), - [anon_sym_i8] = ACTIONS(2519), - [anon_sym_u16] = ACTIONS(2519), - [anon_sym_i16] = ACTIONS(2519), - [anon_sym_u32] = ACTIONS(2519), - [anon_sym_i32] = ACTIONS(2519), - [anon_sym_u64] = ACTIONS(2519), - [anon_sym_i64] = ACTIONS(2519), - [anon_sym_u128] = ACTIONS(2519), - [anon_sym_i128] = ACTIONS(2519), - [anon_sym_isize] = ACTIONS(2519), - [anon_sym_usize] = ACTIONS(2519), - [anon_sym_f32] = ACTIONS(2519), - [anon_sym_f64] = ACTIONS(2519), - [anon_sym_bool] = ACTIONS(2519), - [anon_sym_str] = ACTIONS(2519), - [anon_sym_char] = ACTIONS(2519), - [sym_line_comment] = ACTIONS(3), - [sym__raw_identifier] = ACTIONS(2517), - [sym_self] = ACTIONS(2519), - [sym_super] = ACTIONS(2519), - [sym_crate] = ACTIONS(2519), - [sym_metavariable] = ACTIONS(2517), - [sym_grit_metavariable] = ACTIONS(2517), - [sym_raw_string_literal] = ACTIONS(2517), - [sym_float_literal] = ACTIONS(2517), + [sym_function_modifiers] = STATE(2667), + [sym_extern_modifier] = STATE(1681), + [sym__type] = STATE(1799), + [sym_bracketed_type] = STATE(2652), + [sym_lifetime] = STATE(2666), + [sym_array_type] = STATE(1514), + [sym_for_lifetimes] = STATE(1285), + [sym_function_type] = STATE(1514), + [sym_tuple_type] = STATE(1514), + [sym_unit_type] = STATE(1514), + [sym_generic_type] = STATE(1528), + [sym_generic_type_with_turbofish] = STATE(2649), + [sym_bounded_type] = STATE(1514), + [sym_reference_type] = STATE(1514), + [sym_pointer_type] = STATE(1514), + [sym_empty_type] = STATE(1514), + [sym_abstract_type] = STATE(1514), + [sym_dynamic_type] = STATE(1514), + [sym_macro_invocation] = STATE(1514), + [sym_scoped_identifier] = STATE(2509), + [sym_scoped_type_identifier] = STATE(1451), + [sym_primitive_type] = STATE(1483), + [sym_identifier] = STATE(1437), + [aux_sym_function_modifiers_repeat1] = STATE(1681), + [sym__primitive_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(858), + [anon_sym_const] = ACTIONS(858), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(864), + [anon_sym_for] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(868), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(878), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_dyn] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(904), + [sym_self] = ACTIONS(1066), + [sym_super] = ACTIONS(1066), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1068), + [sym_grit_metavariable] = ACTIONS(904), + [sym_block_comment] = ACTIONS(3), + }, + [812] = { + [sym__primitive_identifier] = ACTIONS(2237), + [sym_underscore] = ACTIONS(2237), + [anon_sym_LPAREN] = ACTIONS(2235), + [anon_sym_LBRACE] = ACTIONS(2235), + [anon_sym_LBRACK] = ACTIONS(2235), + [anon_sym_RBRACK] = ACTIONS(2235), + [anon_sym_STAR] = ACTIONS(2235), + [anon_sym_SQUOTE] = ACTIONS(2237), + [anon_sym_async] = ACTIONS(2237), + [anon_sym_break] = ACTIONS(2237), + [anon_sym_const] = ACTIONS(2237), + [anon_sym_continue] = ACTIONS(2237), + [anon_sym_default] = ACTIONS(2237), + [anon_sym_for] = ACTIONS(2237), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_loop] = ACTIONS(2237), + [anon_sym_match] = ACTIONS(2237), + [anon_sym_return] = ACTIONS(2237), + [anon_sym_union] = ACTIONS(2237), + [anon_sym_unsafe] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(2237), + [anon_sym_POUND] = ACTIONS(2235), + [anon_sym_BANG] = ACTIONS(2235), + [anon_sym_COMMA] = ACTIONS(2235), + [anon_sym_ref] = ACTIONS(2237), + [anon_sym_LT] = ACTIONS(2235), + [anon_sym_COLON_COLON] = ACTIONS(2235), + [anon_sym_AMP] = ACTIONS(2235), + [sym_mutable_specifier] = ACTIONS(2237), + [anon_sym_DOT_DOT] = ACTIONS(2235), + [anon_sym_DASH] = ACTIONS(2235), + [anon_sym_PIPE] = ACTIONS(2235), + [anon_sym_yield] = ACTIONS(2237), + [anon_sym_move] = ACTIONS(2237), + [sym_integer_literal] = ACTIONS(2235), + [aux_sym_string_literal_token1] = ACTIONS(2235), + [sym_char_literal] = ACTIONS(2235), + [anon_sym_true] = ACTIONS(2237), + [anon_sym_false] = ACTIONS(2237), + [anon_sym_u8] = ACTIONS(2237), + [anon_sym_i8] = ACTIONS(2237), + [anon_sym_u16] = ACTIONS(2237), + [anon_sym_i16] = ACTIONS(2237), + [anon_sym_u32] = ACTIONS(2237), + [anon_sym_i32] = ACTIONS(2237), + [anon_sym_u64] = ACTIONS(2237), + [anon_sym_i64] = ACTIONS(2237), + [anon_sym_u128] = ACTIONS(2237), + [anon_sym_i128] = ACTIONS(2237), + [anon_sym_isize] = ACTIONS(2237), + [anon_sym_usize] = ACTIONS(2237), + [anon_sym_f32] = ACTIONS(2237), + [anon_sym_f64] = ACTIONS(2237), + [anon_sym_bool] = ACTIONS(2237), + [anon_sym_str] = ACTIONS(2237), + [anon_sym_char] = ACTIONS(2237), + [sym_line_comment] = ACTIONS(3), + [sym__raw_identifier] = ACTIONS(2235), + [sym_self] = ACTIONS(2237), + [sym_super] = ACTIONS(2237), + [sym_crate] = ACTIONS(2237), + [sym_metavariable] = ACTIONS(2235), + [sym_grit_metavariable] = ACTIONS(2235), + [sym_raw_string_literal] = ACTIONS(2235), + [sym_float_literal] = ACTIONS(2235), [sym_block_comment] = ACTIONS(3), }, }; @@ -89993,7 +90140,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2987), 19, + ACTIONS(1046), 19, sym_raw_string_literal, sym_float_literal, anon_sym_LPAREN, @@ -90013,7 +90160,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2985), 40, + ACTIONS(1044), 40, anon_sym_SQUOTE, anon_sym_async, anon_sym_break, @@ -90058,7 +90205,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2991), 19, + ACTIONS(2989), 19, sym_raw_string_literal, sym_float_literal, anon_sym_LPAREN, @@ -90078,7 +90225,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2989), 40, + ACTIONS(2987), 40, anon_sym_SQUOTE, anon_sym_async, anon_sym_break, @@ -90123,20 +90270,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(581), 20, + ACTIONS(2993), 19, sym_raw_string_literal, sym_float_literal, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_STAR, anon_sym_BANG, + anon_sym_DASH_GT, anon_sym_LT, anon_sym_COLON_COLON, anon_sym_AMP, anon_sym_DOT_DOT, - anon_sym_DASH, anon_sym_PIPE, sym_integer_literal, aux_sym_string_literal_token1, @@ -90144,7 +90290,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2993), 39, + ACTIONS(2991), 40, anon_sym_SQUOTE, anon_sym_async, anon_sym_break, @@ -90159,6 +90305,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, anon_sym_unsafe, anon_sym_while, + anon_sym_DASH, anon_sym_yield, anon_sym_move, anon_sym_true, @@ -90188,19 +90335,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1044), 19, + ACTIONS(573), 20, sym_raw_string_literal, sym_float_literal, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_STAR, anon_sym_BANG, - anon_sym_DASH_GT, anon_sym_LT, anon_sym_COLON_COLON, anon_sym_AMP, anon_sym_DOT_DOT, + anon_sym_DASH, anon_sym_PIPE, sym_integer_literal, aux_sym_string_literal_token1, @@ -90208,7 +90356,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1042), 40, + ACTIONS(2995), 39, anon_sym_SQUOTE, anon_sym_async, anon_sym_break, @@ -90223,7 +90371,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, anon_sym_unsafe, anon_sym_while, - anon_sym_DASH, anon_sym_yield, anon_sym_move, anon_sym_true, @@ -90253,7 +90400,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2517), 17, + ACTIONS(2235), 17, sym_raw_string_literal, sym_float_literal, anon_sym_LPAREN, @@ -90271,7 +90418,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2519), 38, + ACTIONS(2237), 38, sym_underscore, anon_sym_SQUOTE, anon_sym_async, @@ -90311,22 +90458,22 @@ static const uint16_t ts_small_parse_table[] = { sym_super, sym_crate, [336] = 9, - ACTIONS(2997), 1, + ACTIONS(2999), 1, anon_sym_LPAREN, - ACTIONS(3001), 1, - anon_sym_BANG, ACTIONS(3003), 1, - anon_sym_COLON_COLON, + anon_sym_BANG, ACTIONS(3005), 1, + anon_sym_COLON_COLON, + ACTIONS(3007), 1, anon_sym_LT2, - STATE(1112), 1, + STATE(1124), 1, sym_type_arguments, - STATE(1121), 1, + STATE(1147), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2999), 17, + ACTIONS(3001), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -90344,7 +90491,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2995), 27, + ACTIONS(2997), 27, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -90376,7 +90523,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1859), 11, + ACTIONS(2451), 11, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90388,7 +90535,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1861), 38, + ACTIONS(2453), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -90427,131 +90574,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [465] = 8, - ACTIONS(2997), 1, - anon_sym_LPAREN, - ACTIONS(3003), 1, - anon_sym_COLON_COLON, - ACTIONS(3005), 1, - anon_sym_LT2, - STATE(1112), 1, - sym_type_arguments, - STATE(1121), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3009), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_LT_EQ, - anon_sym_DOT, - ACTIONS(3007), 27, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_GT_GT_EQ, - [533] = 8, - ACTIONS(2997), 1, - anon_sym_LPAREN, - ACTIONS(3003), 1, - anon_sym_COLON_COLON, - ACTIONS(3005), 1, - anon_sym_LT2, - STATE(1112), 1, - sym_type_arguments, - STATE(1121), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3013), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_LT_EQ, - anon_sym_DOT, - ACTIONS(3011), 27, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_GT_GT_EQ, - [601] = 3, + [465] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1843), 11, + ACTIONS(2351), 11, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90563,7 +90590,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1845), 38, + ACTIONS(2353), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -90602,11 +90629,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [659] = 3, + [523] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2007), 11, + ACTIONS(1541), 11, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90618,7 +90645,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2009), 38, + ACTIONS(1543), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -90657,66 +90684,71 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [717] = 3, + [581] = 8, + ACTIONS(2999), 1, + anon_sym_LPAREN, + ACTIONS(3005), 1, + anon_sym_COLON_COLON, + ACTIONS(3007), 1, + anon_sym_LT2, + STATE(1124), 1, + sym_type_arguments, + STATE(1147), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1527), 11, + ACTIONS(3011), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT_LT_EQ, + anon_sym_DOT, + ACTIONS(3009), 27, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_EQ, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, anon_sym_COMMA, - anon_sym_LT, - anon_sym_COLON_COLON, - sym__raw_identifier, - sym_metavariable, - sym_grit_metavariable, - ACTIONS(1529), 38, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - 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_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - 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__primitive_identifier, - sym_self, - sym_super, - sym_crate, - [775] = 3, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_GT_GT_EQ, + [649] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2199), 11, + ACTIONS(2151), 11, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90728,7 +90760,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2201), 38, + ACTIONS(2153), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -90767,69 +90799,21 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [833] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1038), 18, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_LT_EQ, - anon_sym_DOT, - ACTIONS(1040), 30, - anon_sym_SEMI, + [707] = 8, + ACTIONS(2999), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, + ACTIONS(3005), 1, anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, + ACTIONS(3007), 1, anon_sym_LT2, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_GT_GT_EQ, - [890] = 5, - ACTIONS(3019), 1, - anon_sym_BANG, - ACTIONS(3021), 1, - anon_sym_COLON_COLON, + STATE(1124), 1, + sym_type_arguments, + STATE(1147), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3017), 17, + ACTIONS(3015), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -90847,9 +90831,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(3015), 29, + ACTIONS(3013), 27, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -90861,7 +90844,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_DOT_DOT_DOT, - anon_sym_LT2, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -90877,105 +90859,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [951] = 24, - ACTIONS(75), 1, - anon_sym_LT, - ACTIONS(842), 1, - sym__primitive_identifier, - ACTIONS(1058), 1, - anon_sym_COLON_COLON, - ACTIONS(2738), 1, - anon_sym_SQUOTE, - ACTIONS(3025), 1, - anon_sym_LPAREN, - ACTIONS(3027), 1, - anon_sym_STAR, - ACTIONS(3031), 1, - anon_sym_for, - ACTIONS(3033), 1, - anon_sym_AMP, - ACTIONS(3035), 1, - sym_metavariable, - STATE(1954), 1, - sym_identifier, - STATE(2095), 1, - sym_scoped_type_identifier, - STATE(2287), 1, - sym_where_predicate, - STATE(2314), 1, - sym_primitive_type, - STATE(2315), 1, - sym_generic_type, - STATE(2644), 1, - sym_generic_type_with_turbofish, - STATE(2645), 1, - sym_scoped_identifier, - STATE(2646), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(902), 2, - sym__raw_identifier, - sym_grit_metavariable, - ACTIONS(3023), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - ACTIONS(3029), 2, - anon_sym_default, - anon_sym_union, - ACTIONS(1064), 3, - sym_self, - sym_super, - sym_crate, - STATE(2483), 5, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(95), 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, - [1050] = 6, - ACTIONS(1040), 1, - anon_sym_BANG, - ACTIONS(3044), 1, - anon_sym_COLON_COLON, + [775] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3039), 8, + ACTIONS(1817), 11, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, anon_sym_POUND, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_LT, + anon_sym_COLON_COLON, sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(3041), 14, + ACTIONS(1819), 38, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_impl, + anon_sym_let, anon_sym_mod, + anon_sym_pub, anon_sym_static, anon_sym_struct, anon_sym_trait, @@ -90984,10 +90893,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, - ACTIONS(3037), 24, - anon_sym_impl, - anon_sym_let, - anon_sym_pub, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91009,19 +90914,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1113] = 7, - ACTIONS(2997), 1, - anon_sym_LPAREN, - ACTIONS(3005), 1, - anon_sym_LT2, - STATE(1111), 1, - sym_type_arguments, - STATE(1120), 1, - sym_parameters, + [833] = 5, + ACTIONS(3021), 1, + anon_sym_BANG, + ACTIONS(3023), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3049), 17, + ACTIONS(3019), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -91039,8 +90940,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(3047), 27, + ACTIONS(3017), 29, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -91052,6 +90954,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_DOT_DOT_DOT, + anon_sym_LT2, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -91067,19 +90970,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [1178] = 7, - ACTIONS(2997), 1, + [894] = 7, + ACTIONS(2999), 1, anon_sym_LPAREN, - ACTIONS(3005), 1, + ACTIONS(3007), 1, anon_sym_LT2, - STATE(1111), 1, + STATE(1115), 1, sym_type_arguments, - STATE(1120), 1, + STATE(1146), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3053), 17, + ACTIONS(3027), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -91097,7 +91000,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(3051), 27, + ACTIONS(3025), 27, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -91125,17 +91028,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [1243] = 5, - ACTIONS(3059), 1, - anon_sym_BANG, - ACTIONS(3061), 1, - anon_sym_COLON_COLON, + [959] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 17, + ACTIONS(1036), 18, anon_sym_PLUS, anon_sym_STAR, + anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -91151,7 +91051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(3055), 29, + ACTIONS(1038), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -91164,6 +91064,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_COMMA, anon_sym_else, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_LT2, anon_sym_DOT_DOT_EQ, @@ -91181,15 +91082,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [1304] = 5, - ACTIONS(3067), 1, + [1016] = 5, + ACTIONS(3033), 1, anon_sym_BANG, - ACTIONS(3069), 1, + ACTIONS(3035), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3065), 17, + ACTIONS(3031), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -91207,7 +91108,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(3063), 29, + ACTIONS(3029), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -91237,58 +91138,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [1365] = 24, + [1077] = 24, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(842), 1, + ACTIONS(844), 1, sym__primitive_identifier, - ACTIONS(1058), 1, + ACTIONS(1060), 1, anon_sym_COLON_COLON, - ACTIONS(2738), 1, + ACTIONS(2740), 1, anon_sym_SQUOTE, - ACTIONS(3025), 1, + ACTIONS(3039), 1, anon_sym_LPAREN, - ACTIONS(3027), 1, + ACTIONS(3041), 1, anon_sym_STAR, - ACTIONS(3031), 1, + ACTIONS(3045), 1, anon_sym_for, - ACTIONS(3033), 1, + ACTIONS(3047), 1, anon_sym_AMP, - ACTIONS(3035), 1, + ACTIONS(3049), 1, sym_metavariable, - STATE(1954), 1, + STATE(1934), 1, sym_identifier, - STATE(2095), 1, + STATE(2048), 1, sym_scoped_type_identifier, - STATE(2287), 1, + STATE(2306), 1, sym_where_predicate, - STATE(2314), 1, - sym_primitive_type, - STATE(2315), 1, + STATE(2341), 1, sym_generic_type, - STATE(2644), 1, + STATE(2344), 1, + sym_primitive_type, + STATE(2621), 1, + sym_scoped_identifier, + STATE(2649), 1, sym_generic_type_with_turbofish, - STATE(2645), 1, + STATE(2652), 1, + sym_bracketed_type, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(904), 2, + sym__raw_identifier, + sym_grit_metavariable, + ACTIONS(3037), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + ACTIONS(3043), 2, + anon_sym_default, + anon_sym_union, + ACTIONS(1066), 3, + sym_self, + sym_super, + sym_crate, + STATE(2461), 5, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(95), 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, + [1176] = 24, + ACTIONS(75), 1, + anon_sym_LT, + ACTIONS(844), 1, + sym__primitive_identifier, + ACTIONS(1060), 1, + anon_sym_COLON_COLON, + ACTIONS(2740), 1, + anon_sym_SQUOTE, + ACTIONS(3039), 1, + anon_sym_LPAREN, + ACTIONS(3041), 1, + anon_sym_STAR, + ACTIONS(3045), 1, + anon_sym_for, + ACTIONS(3047), 1, + anon_sym_AMP, + ACTIONS(3049), 1, + sym_metavariable, + STATE(1934), 1, + sym_identifier, + STATE(2048), 1, + sym_scoped_type_identifier, + STATE(2306), 1, + sym_where_predicate, + STATE(2341), 1, + sym_generic_type, + STATE(2344), 1, + sym_primitive_type, + STATE(2621), 1, sym_scoped_identifier, - STATE(2646), 1, + STATE(2649), 1, + sym_generic_type_with_turbofish, + STATE(2652), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(902), 2, + ACTIONS(904), 2, sym__raw_identifier, sym_grit_metavariable, - ACTIONS(3029), 2, + ACTIONS(3043), 2, anon_sym_default, anon_sym_union, - ACTIONS(3071), 2, + ACTIONS(3051), 2, anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(1064), 3, + ACTIONS(1066), 3, sym_self, sym_super, sym_crate, - STATE(2483), 5, + STATE(2461), 5, sym_higher_ranked_trait_bound, sym_lifetime, sym_tuple_type, @@ -91312,19 +91288,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1464] = 7, - ACTIONS(3001), 1, + [1275] = 5, + ACTIONS(3057), 1, anon_sym_BANG, - ACTIONS(3073), 1, - anon_sym_LBRACE, - ACTIONS(3075), 1, + ACTIONS(3059), 1, anon_sym_COLON_COLON, - STATE(1233), 1, - sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(727), 15, + ACTIONS(3055), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -91335,15 +91307,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, + anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(725), 29, + ACTIONS(3053), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -91353,12 +91328,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_DOT_DOT_DOT, + anon_sym_LT2, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -91368,17 +91343,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [1529] = 5, - ACTIONS(3081), 1, + [1336] = 7, + ACTIONS(3003), 1, anon_sym_BANG, - ACTIONS(3083), 1, + ACTIONS(3061), 1, + anon_sym_LBRACE, + ACTIONS(3063), 1, anon_sym_COLON_COLON, + STATE(1202), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3079), 17, + ACTIONS(725), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -91389,18 +91367,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(3077), 29, + ACTIONS(723), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -91410,12 +91385,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_DOT_DOT_DOT, - anon_sym_LT2, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -91425,20 +91400,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [1590] = 7, - ACTIONS(2997), 1, - anon_sym_LPAREN, - ACTIONS(3005), 1, - anon_sym_LT2, - STATE(1111), 1, - sym_type_arguments, - STATE(1120), 1, - sym_parameters, + [1401] = 5, + ACTIONS(3069), 1, + anon_sym_BANG, + ACTIONS(3071), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3087), 17, + ACTIONS(3067), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -91456,8 +91428,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(3085), 27, + ACTIONS(3065), 29, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -91469,6 +91442,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_DOT_DOT_DOT, + anon_sym_LT2, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -91484,30 +91458,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [1655] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(830), 9, - anon_sym_SEMI, + [1462] = 7, + ACTIONS(2999), 1, + anon_sym_LPAREN, + ACTIONS(3007), 1, + anon_sym_LT2, + STATE(1115), 1, + sym_type_arguments, + STATE(1146), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3075), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT_LT_EQ, + anon_sym_DOT, + ACTIONS(3073), 27, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_GT_GT_EQ, + [1527] = 7, + ACTIONS(2999), 1, + anon_sym_LPAREN, + ACTIONS(3007), 1, + anon_sym_LT2, + STATE(1115), 1, + sym_type_arguments, + STATE(1146), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3079), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT_LT_EQ, + anon_sym_DOT, + ACTIONS(3077), 27, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_GT_GT_EQ, + [1592] = 6, + ACTIONS(1038), 1, + anon_sym_BANG, + ACTIONS(3088), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3083), 8, + anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LT, - anon_sym_COLON_COLON, sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(832), 38, + ACTIONS(3085), 14, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_enum, anon_sym_fn, - anon_sym_impl, - anon_sym_let, anon_sym_mod, - anon_sym_pub, anon_sym_static, anon_sym_struct, anon_sym_trait, @@ -91516,6 +91606,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + ACTIONS(3081), 24, + anon_sym_impl, + anon_sym_let, + anon_sym_pub, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91537,11 +91631,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1711] = 3, + [1655] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1903), 9, + ACTIONS(1581), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91551,7 +91645,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1905), 38, + ACTIONS(1583), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -91590,11 +91684,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1767] = 3, + [1711] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2409), 9, + ACTIONS(1947), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91604,7 +91698,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2411), 38, + ACTIONS(1949), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -91643,11 +91737,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1823] = 3, + [1767] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(693), 9, + ACTIONS(2091), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91657,7 +91751,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(695), 38, + ACTIONS(2093), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -91696,176 +91790,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1879] = 4, - ACTIONS(3089), 1, - anon_sym_LBRACE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3059), 16, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(3061), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [1937] = 5, - ACTIONS(3095), 1, - anon_sym_SQUOTE, - STATE(1173), 1, - sym_loop_label, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3093), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(3091), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [1997] = 6, - ACTIONS(3103), 1, - anon_sym_BANG, - ACTIONS(3105), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3101), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - ACTIONS(3099), 16, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(3097), 23, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [2059] = 3, + [1823] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2035), 9, + ACTIONS(1777), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91875,7 +91804,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2037), 38, + ACTIONS(1779), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -91914,11 +91843,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [2115] = 3, + [1879] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(709), 9, + ACTIONS(2015), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91928,7 +91857,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(711), 38, + ACTIONS(2017), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -91967,11 +91896,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [2171] = 3, + [1935] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(806), 9, + ACTIONS(2011), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91981,7 +91910,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(808), 38, + ACTIONS(2013), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -92020,11 +91949,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [2227] = 3, + [1991] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2031), 9, + ACTIONS(2163), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92034,7 +91963,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2033), 38, + ACTIONS(2165), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -92073,11 +92002,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [2283] = 3, + [2047] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1487), 9, + ACTIONS(1437), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92087,7 +92016,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1489), 38, + ACTIONS(1439), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -92126,11 +92055,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [2339] = 3, + [2103] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1771), 9, + ACTIONS(2171), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92140,7 +92069,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1773), 38, + ACTIONS(2173), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -92179,11 +92108,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [2395] = 3, + [2159] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1779), 9, + ACTIONS(2175), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92193,7 +92122,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1781), 38, + ACTIONS(2177), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -92232,11 +92161,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [2451] = 3, + [2215] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1823), 9, + ACTIONS(2003), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92246,7 +92175,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1825), 38, + ACTIONS(2005), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -92285,11 +92214,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [2507] = 3, + [2271] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1847), 9, + ACTIONS(2183), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92299,7 +92228,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1849), 38, + ACTIONS(2185), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -92338,65 +92267,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [2563] = 4, - ACTIONS(3107), 1, - anon_sym_LBRACE, + [2327] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3081), 16, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(3083), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [2621] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1851), 9, + ACTIONS(1999), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92406,7 +92281,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1853), 38, + ACTIONS(2001), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -92445,11 +92320,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [2677] = 3, + [2383] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1875), 9, + ACTIONS(1433), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92459,7 +92334,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1877), 38, + ACTIONS(1435), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -92498,11 +92373,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [2733] = 3, + [2439] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1887), 9, + ACTIONS(2063), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92512,7 +92387,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1889), 38, + ACTIONS(2065), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -92551,11 +92426,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [2789] = 3, + [2495] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1907), 9, + ACTIONS(1951), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92565,7 +92440,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1909), 38, + ACTIONS(1953), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -92604,11 +92479,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [2845] = 3, + [2551] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1923), 9, + ACTIONS(2211), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92618,7 +92493,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1925), 38, + ACTIONS(2213), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -92657,11 +92532,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [2901] = 3, + [2607] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1939), 9, + ACTIONS(2223), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92671,7 +92546,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1941), 38, + ACTIONS(2225), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -92710,11 +92585,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [2957] = 3, + [2663] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2011), 9, + ACTIONS(2231), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92724,7 +92599,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2013), 38, + ACTIONS(2233), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -92763,11 +92638,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [3013] = 3, + [2719] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2127), 9, + ACTIONS(1935), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92777,7 +92652,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2129), 38, + ACTIONS(1937), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -92816,11 +92691,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [3069] = 3, + [2775] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2293), 9, + ACTIONS(1931), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92830,7 +92705,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2295), 38, + ACTIONS(1933), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -92869,11 +92744,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [3125] = 3, + [2831] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2297), 9, + ACTIONS(1853), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92883,7 +92758,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2299), 38, + ACTIONS(1855), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -92922,11 +92797,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [3181] = 3, + [2887] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2517), 9, + ACTIONS(1991), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92936,7 +92811,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2519), 38, + ACTIONS(1993), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -92975,11 +92850,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [3237] = 3, + [2943] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2469), 9, + ACTIONS(2239), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92989,7 +92864,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2471), 38, + ACTIONS(2241), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -93028,11 +92903,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [3293] = 3, + [2999] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2493), 9, + ACTIONS(2243), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93042,7 +92917,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2495), 38, + ACTIONS(2245), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -93081,11 +92956,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [3349] = 3, + [3055] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2473), 9, + ACTIONS(1849), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93095,7 +92970,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2475), 38, + ACTIONS(1851), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -93134,11 +93009,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [3405] = 3, + [3111] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2003), 9, + ACTIONS(1833), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93148,7 +93023,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2005), 38, + ACTIONS(1835), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -93187,11 +93062,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [3461] = 3, + [3167] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1999), 9, + ACTIONS(1829), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93201,7 +93076,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2001), 38, + ACTIONS(1831), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -93240,11 +93115,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [3517] = 3, + [3223] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1455), 9, + ACTIONS(1821), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93254,7 +93129,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1457), 38, + ACTIONS(1823), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -93293,11 +93168,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [3573] = 3, + [3279] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(717), 9, + ACTIONS(1809), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93307,7 +93182,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(719), 38, + ACTIONS(1811), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -93346,11 +93221,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [3629] = 3, + [3335] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1459), 9, + ACTIONS(2247), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93360,7 +93235,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1461), 38, + ACTIONS(2249), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -93399,11 +93274,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [3685] = 3, + [3391] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1463), 9, + ACTIONS(2251), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93413,7 +93288,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1465), 38, + ACTIONS(2253), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -93452,11 +93327,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [3741] = 3, + [3447] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1635), 9, + ACTIONS(2255), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93466,7 +93341,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1637), 38, + ACTIONS(2257), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -93505,11 +93380,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [3797] = 3, + [3503] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1647), 9, + ACTIONS(2263), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93519,7 +93394,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1649), 38, + ACTIONS(2265), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -93558,11 +93433,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [3853] = 3, + [3559] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1651), 9, + ACTIONS(1797), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93572,7 +93447,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1653), 38, + ACTIONS(1799), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -93611,11 +93486,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [3909] = 3, + [3615] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1655), 9, + ACTIONS(2267), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93625,7 +93500,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1657), 38, + ACTIONS(2269), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -93664,11 +93539,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [3965] = 3, + [3671] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2277), 9, + ACTIONS(2303), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93678,7 +93553,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2279), 38, + ACTIONS(2305), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -93717,11 +93592,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [4021] = 3, + [3727] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2385), 9, + ACTIONS(1685), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93731,7 +93606,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2387), 38, + ACTIONS(1687), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -93770,11 +93645,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [4077] = 3, + [3783] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2417), 9, + ACTIONS(2179), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93784,7 +93659,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2419), 38, + ACTIONS(2181), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -93823,11 +93698,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [4133] = 3, + [3839] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2421), 9, + ACTIONS(2307), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93837,7 +93712,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2423), 38, + ACTIONS(2309), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -93876,11 +93751,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [4189] = 3, + [3895] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2429), 9, + ACTIONS(1681), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93890,7 +93765,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2431), 38, + ACTIONS(1683), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -93929,11 +93804,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [4245] = 3, + [3951] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(685), 9, + ACTIONS(1657), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93943,7 +93818,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(687), 38, + ACTIONS(1659), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -93982,11 +93857,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [4301] = 3, + [4007] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2433), 9, + ACTIONS(1641), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93996,7 +93871,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2435), 38, + ACTIONS(1643), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -94035,11 +93910,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [4357] = 3, + [4063] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2437), 9, + ACTIONS(1621), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94049,7 +93924,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2439), 38, + ACTIONS(1623), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -94088,11 +93963,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [4413] = 3, + [4119] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2441), 9, + ACTIONS(1617), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94102,7 +93977,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2443), 38, + ACTIONS(1619), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -94141,11 +94016,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [4469] = 3, + [4175] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(699), 9, + ACTIONS(1609), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94155,7 +94030,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(701), 38, + ACTIONS(1611), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -94194,11 +94069,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [4525] = 3, + [4231] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2449), 9, + ACTIONS(1605), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94208,7 +94083,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2451), 38, + ACTIONS(1607), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -94247,11 +94122,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [4581] = 3, + [4287] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2453), 9, + ACTIONS(1601), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94261,7 +94136,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2455), 38, + ACTIONS(1603), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -94300,11 +94175,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [4637] = 3, + [4343] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2457), 9, + ACTIONS(1597), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94314,7 +94189,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2459), 38, + ACTIONS(1599), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -94353,11 +94228,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [4693] = 3, + [4399] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2461), 9, + ACTIONS(2311), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94367,7 +94242,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2463), 38, + ACTIONS(2313), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -94406,11 +94281,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [4749] = 3, + [4455] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2465), 9, + ACTIONS(1593), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94420,7 +94295,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2467), 38, + ACTIONS(1595), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -94459,11 +94334,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [4805] = 3, + [4511] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2513), 9, + ACTIONS(1589), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94473,7 +94348,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2515), 38, + ACTIONS(1591), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -94512,64 +94387,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [4861] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2876), 16, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2878), 31, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [4917] = 3, + [4567] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2521), 9, + ACTIONS(1585), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94579,7 +94401,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2523), 38, + ACTIONS(1587), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -94618,11 +94440,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [4973] = 3, + [4623] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2525), 9, + ACTIONS(1569), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94632,7 +94454,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2527), 38, + ACTIONS(1571), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -94671,11 +94493,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5029] = 3, + [4679] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2509), 9, + ACTIONS(1565), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94685,7 +94507,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2511), 38, + ACTIONS(1567), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -94724,11 +94546,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5085] = 3, + [4735] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2505), 9, + ACTIONS(1561), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94738,7 +94560,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2507), 38, + ACTIONS(1563), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -94777,11 +94599,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5141] = 3, + [4791] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2501), 9, + ACTIONS(1557), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94791,7 +94613,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2503), 38, + ACTIONS(1559), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -94830,11 +94652,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5197] = 3, + [4847] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2497), 9, + ACTIONS(1549), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94844,7 +94666,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2499), 38, + ACTIONS(1551), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -94883,11 +94705,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5253] = 3, + [4903] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2489), 9, + ACTIONS(1529), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94897,7 +94719,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2491), 38, + ACTIONS(1531), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -94936,11 +94758,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5309] = 3, + [4959] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2485), 9, + ACTIONS(2283), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94950,7 +94772,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2487), 38, + ACTIONS(2285), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -94989,11 +94811,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5365] = 3, + [5015] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2481), 9, + ACTIONS(1521), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95003,7 +94825,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2483), 38, + ACTIONS(1523), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -95042,11 +94864,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5421] = 3, + [5071] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2477), 9, + ACTIONS(1517), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95056,7 +94878,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2479), 38, + ACTIONS(1519), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -95095,11 +94917,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5477] = 3, + [5127] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2167), 9, + ACTIONS(1513), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95109,7 +94931,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2169), 38, + ACTIONS(1515), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -95148,11 +94970,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5533] = 3, + [5183] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2445), 9, + ACTIONS(2327), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95162,7 +94984,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2447), 38, + ACTIONS(2329), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -95201,11 +95023,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5589] = 3, + [5239] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2405), 9, + ACTIONS(2335), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95215,7 +95037,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2407), 38, + ACTIONS(2337), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -95254,11 +95076,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5645] = 3, + [5295] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2401), 9, + ACTIONS(1505), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95268,7 +95090,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2403), 38, + ACTIONS(1507), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -95307,11 +95129,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5701] = 3, + [5351] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2393), 9, + ACTIONS(2287), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95321,7 +95143,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2395), 38, + ACTIONS(2289), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -95360,11 +95182,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5757] = 3, + [5407] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2381), 9, + ACTIONS(1501), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95374,7 +95196,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2383), 38, + ACTIONS(1503), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -95413,11 +95235,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5813] = 3, + [5463] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2377), 9, + ACTIONS(1975), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95427,7 +95249,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2379), 38, + ACTIONS(1977), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -95466,11 +95288,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5869] = 3, + [5519] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2373), 9, + ACTIONS(1497), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95480,7 +95302,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2375), 38, + ACTIONS(1499), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -95519,11 +95341,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5925] = 3, + [5575] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2425), 9, + ACTIONS(1493), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95533,7 +95355,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2427), 38, + ACTIONS(1495), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -95572,11 +95394,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5981] = 3, + [5631] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2413), 9, + ACTIONS(2355), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95586,7 +95408,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2415), 38, + ACTIONS(2357), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -95625,11 +95447,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6037] = 3, + [5687] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2397), 9, + ACTIONS(2359), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95639,7 +95461,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2399), 38, + ACTIONS(2361), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -95678,11 +95500,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6093] = 3, + [5743] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2353), 9, + ACTIONS(2363), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95692,7 +95514,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2355), 38, + ACTIONS(2365), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -95731,11 +95553,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6149] = 3, + [5799] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2389), 9, + ACTIONS(1485), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95745,7 +95567,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2391), 38, + ACTIONS(1487), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -95784,11 +95606,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6205] = 3, + [5855] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2349), 9, + ACTIONS(1481), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95798,7 +95620,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2351), 38, + ACTIONS(1483), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -95837,11 +95659,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6261] = 3, + [5911] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2369), 9, + ACTIONS(2367), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95851,7 +95673,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2371), 38, + ACTIONS(2369), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -95890,11 +95712,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6317] = 3, + [5967] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2345), 9, + ACTIONS(2371), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95904,7 +95726,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2347), 38, + ACTIONS(2373), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -95943,11 +95765,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6373] = 3, + [6023] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2341), 9, + ACTIONS(1473), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95957,7 +95779,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2343), 38, + ACTIONS(1475), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -95996,11 +95818,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6429] = 3, + [6079] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2365), 9, + ACTIONS(2007), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96010,7 +95832,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2367), 38, + ACTIONS(2009), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -96049,11 +95871,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6485] = 3, + [6135] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2361), 9, + ACTIONS(2395), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96063,7 +95885,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2363), 38, + ACTIONS(2397), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -96102,11 +95924,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6541] = 3, + [6191] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2357), 9, + ACTIONS(1959), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96116,7 +95938,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2359), 38, + ACTIONS(1961), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -96155,11 +95977,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6597] = 3, + [6247] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2313), 9, + ACTIONS(2043), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96169,7 +95991,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2315), 38, + ACTIONS(2045), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -96208,11 +96030,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6653] = 3, + [6303] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2337), 9, + ACTIONS(1939), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96222,7 +96044,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2339), 38, + ACTIONS(1941), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -96261,11 +96083,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6709] = 3, + [6359] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2305), 9, + ACTIONS(1927), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96275,7 +96097,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2307), 38, + ACTIONS(1929), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -96314,11 +96136,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6765] = 3, + [6415] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2333), 9, + ACTIONS(2399), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96328,7 +96150,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2335), 38, + ACTIONS(2401), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -96367,11 +96189,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6821] = 3, + [6471] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2329), 9, + ACTIONS(2403), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96381,7 +96203,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2331), 38, + ACTIONS(2405), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -96420,11 +96242,65 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6877] = 3, + [6527] = 4, + ACTIONS(3091), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2285), 9, + ACTIONS(3033), 16, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(3035), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [6585] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2407), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96434,7 +96310,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2287), 38, + ACTIONS(2409), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -96473,11 +96349,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6933] = 3, + [6641] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2325), 9, + ACTIONS(1453), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96487,7 +96363,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2327), 38, + ACTIONS(1455), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -96526,11 +96402,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6989] = 3, + [6697] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2281), 9, + ACTIONS(1457), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96540,7 +96416,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2283), 38, + ACTIONS(1459), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -96579,11 +96455,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7045] = 3, + [6753] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2321), 9, + ACTIONS(2143), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96593,7 +96469,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2323), 38, + ACTIONS(2145), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -96632,11 +96508,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7101] = 3, + [6809] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2317), 9, + ACTIONS(2411), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96646,7 +96522,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2319), 38, + ACTIONS(2413), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -96685,11 +96561,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7157] = 3, + [6865] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2203), 9, + ACTIONS(1461), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96699,7 +96575,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2205), 38, + ACTIONS(1463), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -96738,11 +96614,66 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7213] = 3, + [6921] = 5, + ACTIONS(1036), 1, + anon_sym_BANG, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1038), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + ACTIONS(764), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(771), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [6981] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1639), 9, + ACTIONS(1465), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96752,7 +96683,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1641), 38, + ACTIONS(1467), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -96791,11 +96722,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7269] = 3, + [7037] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2099), 9, + ACTIONS(2139), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96805,7 +96736,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2101), 38, + ACTIONS(2141), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -96844,11 +96775,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7325] = 3, + [7093] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2047), 9, + ACTIONS(1841), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96858,7 +96789,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2049), 38, + ACTIONS(1843), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -96897,11 +96828,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7381] = 3, + [7149] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1435), 9, + ACTIONS(1837), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96911,7 +96842,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1437), 38, + ACTIONS(1839), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -96950,11 +96881,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7437] = 3, + [7205] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2039), 9, + ACTIONS(2419), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96964,7 +96895,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2041), 38, + ACTIONS(2421), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -97003,11 +96934,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7493] = 3, + [7261] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2027), 9, + ACTIONS(1813), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97017,7 +96948,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2029), 38, + ACTIONS(1815), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -97056,11 +96987,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7549] = 3, + [7317] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2023), 9, + ACTIONS(1769), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97070,7 +97001,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2025), 38, + ACTIONS(1771), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -97109,11 +97040,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7605] = 3, + [7373] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2309), 9, + ACTIONS(2135), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97123,7 +97054,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2311), 38, + ACTIONS(2137), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -97162,11 +97093,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7661] = 3, + [7429] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2019), 9, + ACTIONS(1525), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97176,7 +97107,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2021), 38, + ACTIONS(1527), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -97215,11 +97146,65 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7717] = 3, + [7485] = 4, + ACTIONS(3093), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2301), 9, + ACTIONS(3021), 16, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(3023), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [7543] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1533), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97229,7 +97214,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2303), 38, + ACTIONS(1535), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -97268,11 +97253,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7773] = 3, + [7599] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2289), 9, + ACTIONS(1761), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97282,7 +97267,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2291), 38, + ACTIONS(1763), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -97321,11 +97306,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7829] = 3, + [7655] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2207), 9, + ACTIONS(1545), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97335,7 +97320,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2209), 38, + ACTIONS(1547), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -97374,11 +97359,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7885] = 3, + [7711] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1987), 9, + ACTIONS(1923), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97388,7 +97373,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1989), 38, + ACTIONS(1925), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -97427,11 +97412,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7941] = 3, + [7767] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1983), 9, + ACTIONS(1701), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97441,7 +97426,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1985), 38, + ACTIONS(1703), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -97480,11 +97465,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7997] = 3, + [7823] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1979), 9, + ACTIONS(2131), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97494,7 +97479,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1981), 38, + ACTIONS(2133), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -97533,11 +97518,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8053] = 3, + [7879] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2195), 9, + ACTIONS(2427), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97547,7 +97532,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2197), 38, + ACTIONS(2429), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -97586,11 +97571,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8109] = 3, + [7935] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2191), 9, + ACTIONS(1613), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97600,7 +97585,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2193), 38, + ACTIONS(1615), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -97639,11 +97624,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8165] = 3, + [7991] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2187), 9, + ACTIONS(1625), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97653,7 +97638,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2189), 38, + ACTIONS(1627), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -97692,11 +97677,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8221] = 3, + [8047] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2183), 9, + ACTIONS(1629), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97706,7 +97691,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2185), 38, + ACTIONS(1631), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -97745,65 +97730,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8277] = 4, - ACTIONS(3109), 1, - anon_sym_LBRACE, + [8103] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3019), 16, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(3021), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [8335] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1975), 9, + ACTIONS(1645), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97813,7 +97744,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1977), 38, + ACTIONS(1647), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -97852,11 +97783,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8391] = 3, + [8159] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2179), 9, + ACTIONS(1653), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97866,7 +97797,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2181), 38, + ACTIONS(1655), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -97905,11 +97836,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8447] = 3, + [8215] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1971), 9, + ACTIONS(1661), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97919,7 +97850,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1973), 38, + ACTIONS(1663), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -97958,11 +97889,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8503] = 3, + [8271] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1951), 9, + ACTIONS(1665), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97972,7 +97903,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1953), 38, + ACTIONS(1667), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -98011,11 +97942,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8559] = 3, + [8327] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1899), 9, + ACTIONS(1669), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98025,7 +97956,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1901), 38, + ACTIONS(1671), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -98064,11 +97995,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8615] = 3, + [8383] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2175), 9, + ACTIONS(2431), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98078,7 +98009,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2177), 38, + ACTIONS(2433), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -98117,11 +98048,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8671] = 3, + [8439] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1883), 9, + ACTIONS(1673), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98131,7 +98062,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1885), 38, + ACTIONS(1675), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -98170,11 +98101,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8727] = 3, + [8495] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2171), 9, + ACTIONS(1677), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98184,7 +98115,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2173), 38, + ACTIONS(1679), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -98223,11 +98154,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8783] = 3, + [8551] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1879), 9, + ACTIONS(1689), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98237,7 +98168,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1881), 38, + ACTIONS(1691), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -98276,11 +98207,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8839] = 3, + [8607] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1871), 9, + ACTIONS(1697), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98290,7 +98221,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1873), 38, + ACTIONS(1699), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -98329,11 +98260,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8895] = 3, + [8663] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1863), 9, + ACTIONS(2127), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98343,7 +98274,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1865), 38, + ACTIONS(2129), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -98382,11 +98313,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8951] = 3, + [8719] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2163), 9, + ACTIONS(1705), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98396,7 +98327,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2165), 38, + ACTIONS(1707), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -98435,11 +98366,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9007] = 3, + [8775] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2159), 9, + ACTIONS(1709), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98449,7 +98380,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2161), 38, + ACTIONS(1711), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -98488,11 +98419,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9063] = 3, + [8831] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1839), 9, + ACTIONS(1713), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98502,7 +98433,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1841), 38, + ACTIONS(1715), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -98541,64 +98472,64 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9119] = 3, + [8887] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3067), 16, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(3069), 31, + ACTIONS(2435), 9, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, + anon_sym_POUND, + anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [9175] = 3, + sym__raw_identifier, + sym_metavariable, + sym_grit_metavariable, + ACTIONS(2437), 38, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + 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_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + 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__primitive_identifier, + sym_self, + sym_super, + sym_crate, + [8943] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1831), 9, + ACTIONS(705), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98608,7 +98539,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1833), 38, + ACTIONS(707), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -98647,11 +98578,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9231] = 3, + [8999] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1723), 9, + ACTIONS(1717), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98661,7 +98592,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1725), 38, + ACTIONS(1719), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -98700,11 +98631,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9287] = 3, + [9055] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1667), 9, + ACTIONS(1721), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98714,7 +98645,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1669), 38, + ACTIONS(1723), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -98753,11 +98684,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9343] = 3, + [9111] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1663), 9, + ACTIONS(1725), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98767,7 +98698,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1665), 38, + ACTIONS(1727), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -98806,11 +98737,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9399] = 3, + [9167] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1659), 9, + ACTIONS(1729), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98820,7 +98751,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1661), 38, + ACTIONS(1731), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -98859,11 +98790,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9455] = 3, + [9223] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2155), 9, + ACTIONS(695), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98873,7 +98804,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2157), 38, + ACTIONS(697), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -98912,11 +98843,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9511] = 3, + [9279] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2151), 9, + ACTIONS(1733), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98926,7 +98857,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2153), 38, + ACTIONS(1735), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -98965,11 +98896,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9567] = 3, + [9335] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2147), 9, + ACTIONS(1737), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98979,7 +98910,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2149), 38, + ACTIONS(1739), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -99018,11 +98949,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9623] = 3, + [9391] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2143), 9, + ACTIONS(1741), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -99032,7 +98963,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2145), 38, + ACTIONS(1743), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -99071,11 +99002,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9679] = 3, + [9447] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1603), 9, + ACTIONS(1745), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -99085,7 +99016,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1605), 38, + ACTIONS(1747), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -99124,11 +99055,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9735] = 3, + [9503] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2139), 9, + ACTIONS(689), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -99138,7 +99069,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2141), 38, + ACTIONS(691), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -99177,11 +99108,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9791] = 3, + [9559] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2135), 9, + ACTIONS(1649), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -99191,7 +99122,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2137), 38, + ACTIONS(1651), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -99230,11 +99161,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9847] = 3, + [9615] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1631), 9, + ACTIONS(1749), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -99244,7 +99175,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1633), 38, + ACTIONS(1751), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -99283,11 +99214,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9903] = 3, + [9671] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1615), 9, + ACTIONS(1753), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -99297,7 +99228,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1617), 38, + ACTIONS(1755), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -99336,11 +99267,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9959] = 3, + [9727] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1611), 9, + ACTIONS(1757), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -99350,7 +99281,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1613), 38, + ACTIONS(1759), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -99389,11 +99320,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10015] = 3, + [9783] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2131), 9, + ACTIONS(1765), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -99403,7 +99334,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2133), 38, + ACTIONS(1767), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -99442,11 +99373,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10071] = 3, + [9839] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1607), 9, + ACTIONS(820), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -99456,7 +99387,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1609), 38, + ACTIONS(822), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -99495,11 +99426,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10127] = 3, + [9895] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2123), 9, + ACTIONS(1773), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -99509,7 +99440,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2125), 38, + ACTIONS(1775), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -99548,11 +99479,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10183] = 3, + [9951] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1579), 9, + ACTIONS(1781), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -99562,7 +99493,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1581), 38, + ACTIONS(1783), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -99601,11 +99532,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10239] = 3, + [10007] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1495), 9, + ACTIONS(1785), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -99615,7 +99546,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1497), 38, + ACTIONS(1787), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -99654,11 +99585,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10295] = 3, + [10063] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1499), 9, + ACTIONS(1789), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -99668,7 +99599,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1501), 38, + ACTIONS(1791), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -99707,11 +99638,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10351] = 3, + [10119] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1535), 9, + ACTIONS(1793), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -99721,7 +99652,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1537), 38, + ACTIONS(1795), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -99760,11 +99691,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10407] = 3, + [10175] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2119), 9, + ACTIONS(1801), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -99774,7 +99705,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2121), 38, + ACTIONS(1803), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -99813,11 +99744,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10463] = 3, + [10231] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1547), 9, + ACTIONS(1805), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -99827,7 +99758,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1549), 38, + ACTIONS(1807), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -99866,11 +99797,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10519] = 3, + [10287] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1443), 9, + ACTIONS(2439), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -99880,7 +99811,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1445), 38, + ACTIONS(2441), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -99919,11 +99850,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10575] = 3, + [10343] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1467), 9, + ACTIONS(2119), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -99933,7 +99864,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1469), 38, + ACTIONS(2121), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -99972,11 +99903,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10631] = 3, + [10399] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1543), 9, + ACTIONS(1845), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -99986,7 +99917,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1545), 38, + ACTIONS(1847), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -100025,11 +99956,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10687] = 3, + [10455] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1595), 9, + ACTIONS(711), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -100039,7 +99970,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1597), 38, + ACTIONS(713), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -100078,11 +100009,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10743] = 3, + [10511] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2043), 9, + ACTIONS(2471), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -100092,7 +100023,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2045), 38, + ACTIONS(2473), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -100131,11 +100062,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10799] = 3, + [10567] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1439), 9, + ACTIONS(2495), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -100145,7 +100076,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1441), 38, + ACTIONS(2497), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -100184,11 +100115,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10855] = 3, + [10623] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2115), 9, + ACTIONS(1637), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -100198,7 +100129,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2117), 38, + ACTIONS(1639), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -100237,11 +100168,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10911] = 3, + [10679] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1447), 9, + ACTIONS(1943), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -100251,7 +100182,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1449), 38, + ACTIONS(1945), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -100290,11 +100221,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10967] = 3, + [10735] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2111), 9, + ACTIONS(2083), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -100304,7 +100235,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2113), 38, + ACTIONS(2085), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -100343,11 +100274,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11023] = 3, + [10791] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2107), 9, + ACTIONS(1955), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -100357,7 +100288,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2109), 38, + ACTIONS(1957), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -100396,11 +100327,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11079] = 3, + [10847] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1451), 9, + ACTIONS(2443), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -100410,7 +100341,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1453), 38, + ACTIONS(2445), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -100449,11 +100380,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11135] = 3, + [10903] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1471), 9, + ACTIONS(1963), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -100463,7 +100394,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1473), 38, + ACTIONS(1965), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -100502,11 +100433,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11191] = 3, + [10959] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1475), 9, + ACTIONS(1967), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -100516,7 +100447,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1477), 38, + ACTIONS(1969), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -100555,11 +100486,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11247] = 3, + [11015] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1479), 9, + ACTIONS(2447), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -100569,7 +100500,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1481), 38, + ACTIONS(2449), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -100608,11 +100539,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11303] = 3, + [11071] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1483), 9, + ACTIONS(1971), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -100622,7 +100553,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1485), 38, + ACTIONS(1973), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -100661,11 +100592,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11359] = 3, + [11127] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1491), 9, + ACTIONS(1979), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -100675,7 +100606,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1493), 38, + ACTIONS(1981), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -100714,223 +100645,67 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11415] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1431), 9, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, + [11183] = 6, + ACTIONS(3101), 1, + anon_sym_BANG, + ACTIONS(3103), 1, anon_sym_COLON_COLON, - sym__raw_identifier, - sym_metavariable, - sym_grit_metavariable, - ACTIONS(1433), 38, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - 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_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - 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__primitive_identifier, - sym_self, - sym_super, - sym_crate, - [11471] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1503), 9, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym__raw_identifier, - sym_metavariable, - sym_grit_metavariable, - ACTIONS(1505), 38, + ACTIONS(3099), 6, anon_sym_async, anon_sym_const, anon_sym_default, - anon_sym_enum, anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - 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_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - 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__primitive_identifier, - sym_self, - sym_super, - sym_crate, - [11527] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1507), 9, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(3097), 16, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_as, + anon_sym_EQ, anon_sym_LT, - anon_sym_COLON_COLON, - sym__raw_identifier, - sym_metavariable, - sym_grit_metavariable, - ACTIONS(1509), 38, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - 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_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - 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__primitive_identifier, - sym_self, - sym_super, - sym_crate, - [11583] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1511), 9, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(3095), 23, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym__raw_identifier, - sym_metavariable, - sym_grit_metavariable, - ACTIONS(1513), 38, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - 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_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - 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__primitive_identifier, - sym_self, - sym_super, - sym_crate, - [11639] = 3, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [11245] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1515), 9, + ACTIONS(1633), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -100940,7 +100715,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1517), 38, + ACTIONS(1635), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -100979,11 +100754,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11695] = 3, + [11301] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2103), 9, + ACTIONS(2115), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -100993,7 +100768,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2105), 38, + ACTIONS(2117), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -101032,11 +100807,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11751] = 3, + [11357] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2095), 9, + ACTIONS(2503), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -101046,7 +100821,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2097), 38, + ACTIONS(2505), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -101085,11 +100860,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11807] = 3, + [11413] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1519), 9, + ACTIONS(2107), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -101099,7 +100874,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1521), 38, + ACTIONS(2109), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -101138,11 +100913,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11863] = 3, + [11469] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2091), 9, + ACTIONS(1983), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -101152,7 +100927,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2093), 38, + ACTIONS(1985), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -101191,64 +100966,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11919] = 3, + [11525] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1523), 9, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym__raw_identifier, - sym_metavariable, - sym_grit_metavariable, - ACTIONS(1525), 38, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - 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_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - 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__primitive_identifier, - sym_self, - sym_super, - sym_crate, - [11975] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2087), 9, + ACTIONS(1987), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -101258,7 +100980,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2089), 38, + ACTIONS(1989), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -101297,11 +101019,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12031] = 3, + [11581] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1531), 9, + ACTIONS(2455), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -101311,7 +101033,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1533), 38, + ACTIONS(2457), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -101350,11 +101072,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12087] = 3, + [11637] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1539), 9, + ACTIONS(2059), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -101364,7 +101086,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1541), 38, + ACTIONS(2061), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -101403,11 +101125,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12143] = 3, + [11693] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1551), 9, + ACTIONS(2071), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -101417,7 +101139,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1553), 38, + ACTIONS(2073), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -101456,11 +101178,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12199] = 3, + [11749] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1555), 9, + ACTIONS(2103), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -101470,7 +101192,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1557), 38, + ACTIONS(2105), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -101509,11 +101231,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12255] = 3, + [11805] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1559), 9, + ACTIONS(2459), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -101523,7 +101245,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1561), 38, + ACTIONS(2461), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -101562,11 +101284,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12311] = 3, + [11861] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2083), 9, + ACTIONS(2463), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -101576,7 +101298,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2085), 38, + ACTIONS(2465), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -101615,11 +101337,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12367] = 3, + [11917] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1563), 9, + ACTIONS(2467), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -101629,7 +101351,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1565), 38, + ACTIONS(2469), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -101668,11 +101390,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12423] = 3, + [11973] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1567), 9, + ACTIONS(2479), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -101682,7 +101404,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1569), 38, + ACTIONS(2481), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -101721,11 +101443,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12479] = 3, + [12029] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2079), 9, + ACTIONS(1577), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -101735,7 +101457,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2081), 38, + ACTIONS(1579), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -101774,11 +101496,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12535] = 3, + [12085] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1571), 9, + ACTIONS(2019), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -101788,7 +101510,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1573), 38, + ACTIONS(2021), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -101827,11 +101549,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12591] = 3, + [12141] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2075), 9, + ACTIONS(2023), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -101841,7 +101563,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2077), 38, + ACTIONS(2025), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -101880,11 +101602,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12647] = 3, + [12197] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2071), 9, + ACTIONS(2027), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -101894,7 +101616,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2073), 38, + ACTIONS(2029), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -101933,11 +101655,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12703] = 3, + [12253] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1575), 9, + ACTIONS(2031), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -101947,7 +101669,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1577), 38, + ACTIONS(2033), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -101986,11 +101708,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12759] = 3, + [12309] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2067), 9, + ACTIONS(2483), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -102000,7 +101722,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2069), 38, + ACTIONS(2485), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -102039,11 +101761,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12815] = 3, + [12365] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1583), 9, + ACTIONS(2475), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -102053,7 +101775,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1585), 38, + ACTIONS(2477), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -102092,16 +101814,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12871] = 5, - ACTIONS(1038), 1, - anon_sym_BANG, + [12421] = 5, + ACTIONS(3109), 1, + anon_sym_SQUOTE, + STATE(1166), 1, + sym_loop_label, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1040), 2, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - ACTIONS(768), 15, + ACTIONS(3107), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -102117,10 +101838,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(775), 29, + ACTIONS(3105), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -102147,11 +101869,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [12931] = 3, + [12481] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1587), 9, + ACTIONS(2523), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -102161,7 +101883,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1589), 38, + ACTIONS(2525), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -102200,11 +101922,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12987] = 3, + [12537] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1591), 9, + ACTIONS(2075), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -102214,7 +101936,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1593), 38, + ACTIONS(2077), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -102253,11 +101975,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13043] = 3, + [12593] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2063), 9, + ACTIONS(2423), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -102267,7 +101989,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2065), 38, + ACTIONS(2425), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -102306,11 +102028,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13099] = 3, + [12649] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1599), 9, + ACTIONS(2487), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -102320,7 +102042,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1601), 38, + ACTIONS(2489), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -102359,65 +102081,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13155] = 4, - ACTIONS(3111), 1, - anon_sym_LBRACE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3067), 16, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(3069), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [13213] = 3, + [12705] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2059), 9, + ACTIONS(2055), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -102427,7 +102095,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2061), 38, + ACTIONS(2057), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -102466,11 +102134,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13269] = 3, + [12761] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2055), 9, + ACTIONS(2491), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -102480,7 +102148,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2057), 38, + ACTIONS(2493), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -102519,11 +102187,65 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13325] = 3, + [12817] = 4, + ACTIONS(3111), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2051), 9, + ACTIONS(3057), 16, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(3059), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [12875] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2067), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -102533,7 +102255,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2053), 38, + ACTIONS(2069), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -102572,11 +102294,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13381] = 3, + [12931] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1619), 9, + ACTIONS(780), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -102586,7 +102308,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1621), 38, + ACTIONS(782), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -102625,11 +102347,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13437] = 3, + [12987] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1623), 9, + ACTIONS(2499), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -102639,7 +102361,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1625), 38, + ACTIONS(2501), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -102678,11 +102400,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13493] = 3, + [13043] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1038), 16, + ACTIONS(1036), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_BANG, @@ -102699,7 +102421,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(1040), 31, + ACTIONS(1038), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102731,11 +102453,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [13549] = 3, + [13099] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2015), 9, + ACTIONS(2087), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -102745,7 +102467,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2017), 38, + ACTIONS(2089), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -102784,11 +102506,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13605] = 3, + [13155] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1627), 9, + ACTIONS(2111), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -102798,7 +102520,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1629), 38, + ACTIONS(2113), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -102837,11 +102559,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13661] = 3, + [13211] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1995), 9, + ACTIONS(2123), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -102851,7 +102573,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1997), 38, + ACTIONS(2125), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -102890,11 +102612,64 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13717] = 3, + [13267] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2930), 16, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2932), 31, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [13323] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1643), 9, + ACTIONS(2415), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -102904,7 +102679,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1645), 38, + ACTIONS(2417), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -102943,11 +102718,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13773] = 3, + [13379] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1991), 9, + ACTIONS(727), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -102957,7 +102732,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1993), 38, + ACTIONS(729), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -102996,11 +102771,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13829] = 3, + [13435] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1967), 9, + ACTIONS(2507), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -103010,7 +102785,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1969), 38, + ACTIONS(2509), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -103049,11 +102824,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13885] = 3, + [13491] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1671), 9, + ACTIONS(2155), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -103063,7 +102838,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1673), 38, + ACTIONS(2157), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -103102,11 +102877,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13941] = 3, + [13547] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1675), 9, + ACTIONS(2159), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -103116,7 +102891,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1677), 38, + ACTIONS(2161), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -103155,11 +102930,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13997] = 3, + [13603] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1963), 9, + ACTIONS(2167), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -103169,7 +102944,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1965), 38, + ACTIONS(2169), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -103208,11 +102983,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14053] = 3, + [13659] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1959), 9, + ACTIONS(2511), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -103222,7 +102997,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1961), 38, + ACTIONS(2513), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -103261,11 +103036,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14109] = 3, + [13715] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1955), 9, + ACTIONS(2187), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -103275,7 +103050,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1957), 38, + ACTIONS(2189), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -103314,11 +103089,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14165] = 3, + [13771] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1679), 9, + ACTIONS(2191), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -103328,7 +103103,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1681), 38, + ACTIONS(2193), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -103367,11 +103142,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14221] = 3, + [13827] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1683), 9, + ACTIONS(2195), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -103381,7 +103156,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1685), 38, + ACTIONS(2197), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -103420,11 +103195,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14277] = 3, + [13883] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1687), 9, + ACTIONS(2199), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -103434,7 +103209,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1689), 38, + ACTIONS(2201), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -103473,11 +103248,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14333] = 3, + [13939] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1691), 9, + ACTIONS(2203), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -103487,7 +103262,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1693), 38, + ACTIONS(2205), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -103526,11 +103301,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14389] = 3, + [13995] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1695), 9, + ACTIONS(2099), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -103540,7 +103315,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1697), 38, + ACTIONS(2101), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -103579,11 +103354,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14445] = 3, + [14051] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1947), 9, + ACTIONS(2215), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -103593,7 +103368,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1949), 38, + ACTIONS(2217), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -103632,11 +103407,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14501] = 3, + [14107] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1699), 9, + ACTIONS(2227), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -103646,7 +103421,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1701), 38, + ACTIONS(2229), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -103685,11 +103460,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14557] = 3, + [14163] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1703), 9, + ACTIONS(1573), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -103699,7 +103474,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1705), 38, + ACTIONS(1575), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -103738,11 +103513,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14613] = 3, + [14219] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1707), 9, + ACTIONS(2079), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -103752,7 +103527,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1709), 38, + ACTIONS(2081), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -103791,11 +103566,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14669] = 3, + [14275] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1943), 9, + ACTIONS(2259), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -103805,7 +103580,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1945), 38, + ACTIONS(2261), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -103844,11 +103619,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14725] = 3, + [14331] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1711), 9, + ACTIONS(2271), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -103858,7 +103633,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1713), 38, + ACTIONS(2273), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -103897,11 +103672,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14781] = 3, + [14387] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1935), 9, + ACTIONS(2275), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -103911,7 +103686,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1937), 38, + ACTIONS(2277), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -103950,11 +103725,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14837] = 3, + [14443] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1715), 9, + ACTIONS(2039), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -103964,7 +103739,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1717), 38, + ACTIONS(2041), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -104003,11 +103778,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14893] = 3, + [14499] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1719), 9, + ACTIONS(2279), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -104017,7 +103792,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1721), 38, + ACTIONS(2281), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -104056,11 +103831,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14949] = 3, + [14555] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1727), 9, + ACTIONS(2291), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -104070,7 +103845,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1729), 38, + ACTIONS(2293), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -104109,11 +103884,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15005] = 3, + [14611] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1731), 9, + ACTIONS(2295), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -104123,7 +103898,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1733), 38, + ACTIONS(2297), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -104162,11 +103937,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15061] = 3, + [14667] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1735), 9, + ACTIONS(2299), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -104176,7 +103951,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1737), 38, + ACTIONS(2301), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -104215,11 +103990,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15117] = 3, + [14723] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1931), 9, + ACTIONS(2315), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -104229,7 +104004,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1933), 38, + ACTIONS(2317), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -104268,11 +104043,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15173] = 3, + [14779] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1739), 9, + ACTIONS(2319), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -104282,7 +104057,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1741), 38, + ACTIONS(2321), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -104321,11 +104096,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15229] = 3, + [14835] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1743), 9, + ACTIONS(2323), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -104335,7 +104110,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1745), 38, + ACTIONS(2325), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -104374,11 +104149,64 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15285] = 3, + [14891] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3021), 16, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(3023), 31, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [14947] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1747), 9, + ACTIONS(2331), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -104388,7 +104216,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1749), 38, + ACTIONS(2333), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -104427,11 +104255,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15341] = 3, + [15003] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1927), 9, + ACTIONS(2515), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -104441,7 +104269,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1929), 38, + ACTIONS(2517), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -104480,11 +104308,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15397] = 3, + [15059] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1755), 9, + ACTIONS(2519), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -104494,7 +104322,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1757), 38, + ACTIONS(2521), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -104533,11 +104361,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15453] = 3, + [15115] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1759), 9, + ACTIONS(2339), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -104547,7 +104375,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1761), 38, + ACTIONS(2341), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -104586,11 +104414,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15509] = 3, + [15171] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1763), 9, + ACTIONS(2343), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -104600,7 +104428,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1765), 38, + ACTIONS(2345), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -104639,11 +104467,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15565] = 3, + [15227] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1919), 9, + ACTIONS(2347), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -104653,7 +104481,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1921), 38, + ACTIONS(2349), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -104692,11 +104520,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15621] = 3, + [15283] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1767), 9, + ACTIONS(2527), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -104706,7 +104534,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1769), 38, + ACTIONS(2529), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -104745,11 +104573,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15677] = 3, + [15339] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1915), 9, + ACTIONS(2051), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -104759,7 +104587,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1917), 38, + ACTIONS(2053), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -104798,11 +104626,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15733] = 3, + [15395] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1911), 9, + ACTIONS(2035), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -104812,7 +104640,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1913), 38, + ACTIONS(2037), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -104851,11 +104679,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15789] = 3, + [15451] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1775), 9, + ACTIONS(2375), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -104865,7 +104693,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1777), 38, + ACTIONS(2377), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -104904,11 +104732,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15845] = 3, + [15507] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1783), 9, + ACTIONS(1489), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -104918,7 +104746,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1785), 38, + ACTIONS(1491), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -104957,11 +104785,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15901] = 3, + [15563] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1787), 9, + ACTIONS(1449), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -104971,7 +104799,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1789), 38, + ACTIONS(1451), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -105010,11 +104838,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15957] = 3, + [15619] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1791), 9, + ACTIONS(1445), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -105024,7 +104852,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1793), 38, + ACTIONS(1447), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -105063,11 +104891,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16013] = 3, + [15675] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1795), 9, + ACTIONS(2379), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -105077,7 +104905,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1797), 38, + ACTIONS(2381), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -105116,11 +104944,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16069] = 3, + [15731] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1799), 9, + ACTIONS(1995), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -105130,7 +104958,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1801), 38, + ACTIONS(1997), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -105169,11 +104997,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16125] = 3, + [15787] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1803), 9, + ACTIONS(2383), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -105183,7 +105011,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1805), 38, + ACTIONS(2385), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -105222,11 +105050,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16181] = 3, + [15843] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1807), 9, + ACTIONS(1441), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -105236,7 +105064,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1809), 38, + ACTIONS(1443), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -105275,11 +105103,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16237] = 3, + [15899] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1811), 9, + ACTIONS(1469), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -105289,7 +105117,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1813), 38, + ACTIONS(1471), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -105328,11 +105156,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16293] = 3, + [15955] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1815), 9, + ACTIONS(1693), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -105342,7 +105170,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1817), 38, + ACTIONS(1695), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -105381,11 +105209,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16349] = 3, + [16011] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1819), 9, + ACTIONS(2095), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -105395,7 +105223,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1821), 38, + ACTIONS(2097), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -105434,11 +105262,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16405] = 3, + [16067] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1827), 9, + ACTIONS(1477), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -105448,7 +105276,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1829), 38, + ACTIONS(1479), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -105487,11 +105315,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16461] = 3, + [16123] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1835), 9, + ACTIONS(2387), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -105501,7 +105329,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1837), 38, + ACTIONS(2389), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -105540,11 +105368,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16517] = 3, + [16179] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1855), 9, + ACTIONS(2391), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -105554,7 +105382,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1857), 38, + ACTIONS(2393), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -105593,11 +105421,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16573] = 3, + [16235] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1867), 9, + ACTIONS(1509), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -105607,7 +105435,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1869), 38, + ACTIONS(1511), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -105646,11 +105474,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16629] = 3, + [16291] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1891), 9, + ACTIONS(2207), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -105660,7 +105488,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1893), 38, + ACTIONS(2209), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -105699,11 +105527,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16685] = 3, + [16347] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1895), 9, + ACTIONS(2147), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -105713,7 +105541,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1897), 38, + ACTIONS(2149), 38, anon_sym_async, anon_sym_const, anon_sym_default, @@ -105752,37 +105580,38 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16741] = 3, + [16403] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3115), 14, + ACTIONS(2235), 9, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_EQ, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_AMP, sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(3113), 32, + ACTIONS(2237), 38, 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, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -105804,67 +105633,16 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16796] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3119), 14, - anon_sym_SEMI, - anon_sym_LPAREN, + [16459] = 4, + ACTIONS(3113), 1, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - sym__raw_identifier, - sym_metavariable, - sym_grit_metavariable, - ACTIONS(3117), 32, - 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, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - 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__primitive_identifier, - sym_self, - sym_super, - sym_crate, - [16851] = 4, - ACTIONS(3121), 1, - anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3053), 15, + ACTIONS(3069), 16, anon_sym_PLUS, anon_sym_STAR, + anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -105878,11 +105656,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3051), 30, + ACTIONS(3071), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -105891,6 +105668,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_COMMA, anon_sym_else, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -105909,92 +105687,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [16908] = 4, - ACTIONS(3123), 1, - anon_sym_COLON_COLON, + [16517] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3053), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(3051), 30, + ACTIONS(1537), 9, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [16965] = 5, - ACTIONS(3125), 1, anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym__raw_identifier, + sym_metavariable, + sym_grit_metavariable, + ACTIONS(1539), 38, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + 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_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + 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__primitive_identifier, + sym_self, + sym_super, + sym_crate, + [16573] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1110), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - ACTIONS(2980), 11, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, + ACTIONS(2219), 9, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_AMP, sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(2978), 32, + ACTIONS(2221), 38, 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, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -106016,11 +105793,121 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17024] = 3, + [16629] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2047), 9, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym__raw_identifier, + sym_metavariable, + sym_grit_metavariable, + ACTIONS(2049), 38, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + 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_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + 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__primitive_identifier, + sym_self, + sym_super, + sym_crate, + [16685] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1825), 9, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym__raw_identifier, + sym_metavariable, + sym_grit_metavariable, + ACTIONS(1827), 38, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + 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_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + 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__primitive_identifier, + sym_self, + sym_super, + sym_crate, + [16741] = 5, + ACTIONS(3117), 1, + anon_sym_LPAREN, + STATE(1249), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3130), 15, + ACTIONS(3119), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -106036,9 +105923,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3128), 31, + ACTIONS(3115), 29, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -106049,7 +105935,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_COMMA, anon_sym_else, - anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -106068,11 +105953,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [17079] = 3, + [16800] = 4, + ACTIONS(3125), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3123), 16, + sym_raw_string_literal, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym__raw_identifier, + sym_metavariable, + sym_grit_metavariable, + ACTIONS(3121), 29, + sym_underscore, + anon_sym_const, + anon_sym_default, + anon_sym_union, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + 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__primitive_identifier, + sym_self, + sym_super, + sym_crate, + [16857] = 4, + ACTIONS(3131), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3134), 15, + ACTIONS(3129), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -106088,7 +106028,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3132), 31, + ACTIONS(3127), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -106101,7 +106041,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_COMMA, anon_sym_else, - anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -106120,38 +106059,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [17134] = 4, - ACTIONS(3140), 1, - anon_sym_RBRACE, + [16914] = 5, + ACTIONS(3133), 1, + anon_sym_POUND, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3138), 16, - sym_raw_string_literal, - sym_float_literal, + STATE(1110), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + ACTIONS(2980), 11, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_POUND, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, anon_sym_LT, anon_sym_COLON_COLON, anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(3136), 29, - sym_underscore, + ACTIONS(2978), 32, + 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_ref, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -106173,15 +106113,14 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17191] = 5, - ACTIONS(3142), 1, - anon_sym_else, - STATE(1188), 1, - sym_else_clause, + [16973] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(567), 15, + ACTIONS(3138), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + ACTIONS(3140), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -106197,11 +106136,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(565), 29, + ACTIONS(3136), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -106209,6 +106147,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -106227,13 +106166,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [17250] = 4, - ACTIONS(3148), 1, + [17030] = 4, + ACTIONS(3146), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3146), 15, + ACTIONS(3144), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -106249,7 +106188,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3144), 30, + ACTIONS(3142), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -106280,13 +106219,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [17307] = 4, - ACTIONS(3150), 1, - anon_sym_COLON_COLON, + [17087] = 4, + ACTIONS(3152), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3049), 15, + ACTIONS(3150), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -106302,7 +106241,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3047), 30, + ACTIONS(3148), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -106333,37 +106272,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [17364] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3154), 14, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_EQ, + [17144] = 23, + ACTIONS(75), 1, anon_sym_LT, + ACTIONS(844), 1, + sym__primitive_identifier, + ACTIONS(1060), 1, anon_sym_COLON_COLON, + ACTIONS(2740), 1, + anon_sym_SQUOTE, + ACTIONS(3039), 1, + anon_sym_LPAREN, + ACTIONS(3041), 1, + anon_sym_STAR, + ACTIONS(3045), 1, + anon_sym_for, + ACTIONS(3047), 1, anon_sym_AMP, - sym__raw_identifier, + ACTIONS(3049), 1, sym_metavariable, + STATE(1934), 1, + sym_identifier, + STATE(2048), 1, + sym_scoped_type_identifier, + STATE(2306), 1, + sym_where_predicate, + STATE(2341), 1, + sym_generic_type, + STATE(2344), 1, + sym_primitive_type, + STATE(2621), 1, + sym_scoped_identifier, + STATE(2649), 1, + sym_generic_type_with_turbofish, + STATE(2652), 1, + sym_bracketed_type, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(904), 2, + sym__raw_identifier, sym_grit_metavariable, - ACTIONS(3152), 32, - anon_sym_async, - anon_sym_const, + ACTIONS(3043), 2, 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, + ACTIONS(1066), 3, + sym_self, + sym_super, + sym_crate, + STATE(2461), 5, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(95), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -106381,17 +106344,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - sym__primitive_identifier, - sym_self, - sym_super, - sym_crate, - [17419] = 4, - ACTIONS(3150), 1, - anon_sym_COLON_COLON, + [17239] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3087), 15, + ACTIONS(3156), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -106407,7 +106364,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3085), 30, + ACTIONS(3154), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -106420,6 +106377,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_COMMA, anon_sym_else, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -106438,65 +106396,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [17476] = 3, + [17294] = 4, + ACTIONS(3158), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3158), 14, + ACTIONS(3027), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(3025), 30, anon_sym_SEMI, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [17351] = 4, + ACTIONS(3160), 1, anon_sym_COLON_COLON, - anon_sym_AMP, - sym__raw_identifier, - sym_metavariable, - sym_grit_metavariable, - ACTIONS(3156), 32, - 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, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - 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__primitive_identifier, - sym_self, - sym_super, - sym_crate, - [17531] = 4, - ACTIONS(3164), 1, - anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3162), 15, + ACTIONS(3027), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -106512,7 +106471,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3160), 30, + ACTIONS(3025), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -106543,13 +106502,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [17588] = 4, - ACTIONS(3170), 1, - anon_sym_DASH_GT, + [17408] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3168), 15, + ACTIONS(3019), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -106560,12 +106517,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, + anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(3166), 30, + ACTIONS(3017), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -106579,12 +106538,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_DOT_DOT_DOT, + anon_sym_LT2, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -106594,63 +106553,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [17645] = 23, - ACTIONS(75), 1, - anon_sym_LT, - ACTIONS(842), 1, - sym__primitive_identifier, - ACTIONS(1058), 1, - anon_sym_COLON_COLON, - ACTIONS(2738), 1, - anon_sym_SQUOTE, - ACTIONS(3025), 1, - anon_sym_LPAREN, - ACTIONS(3027), 1, - anon_sym_STAR, - ACTIONS(3031), 1, - anon_sym_for, - ACTIONS(3033), 1, - anon_sym_AMP, - ACTIONS(3035), 1, - sym_metavariable, - STATE(1954), 1, - sym_identifier, - STATE(2095), 1, - sym_scoped_type_identifier, - STATE(2098), 1, - sym_where_predicate, - STATE(2314), 1, - sym_primitive_type, - STATE(2315), 1, - sym_generic_type, - STATE(2644), 1, - sym_generic_type_with_turbofish, - STATE(2645), 1, - sym_scoped_identifier, - STATE(2646), 1, - sym_bracketed_type, + [17463] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(902), 2, + ACTIONS(3164), 14, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, sym__raw_identifier, + sym_metavariable, sym_grit_metavariable, - ACTIONS(3029), 2, + ACTIONS(3162), 32, + anon_sym_async, + anon_sym_const, anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, anon_sym_union, - ACTIONS(1064), 3, - sym_self, - sym_super, - sym_crate, - STATE(2483), 5, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(95), 17, + anon_sym_unsafe, + anon_sym_where, + anon_sym_extern, + anon_sym_dyn, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -106668,14 +106602,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [17740] = 4, + sym__primitive_identifier, + sym_self, + sym_super, + sym_crate, + [17518] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3174), 2, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - ACTIONS(3176), 15, + ACTIONS(3168), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -106691,10 +106626,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3172), 29, + ACTIONS(3166), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -106702,6 +106638,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -106721,11 +106658,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [17797] = 3, + [17573] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3180), 15, + ACTIONS(3172), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -106741,7 +106678,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3178), 31, + ACTIONS(3170), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -106753,8 +106690,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_else, - anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -106773,11 +106710,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [17852] = 3, + [17628] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3184), 15, + ACTIONS(3176), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -106793,7 +106730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3182), 31, + ACTIONS(3174), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -106805,8 +106742,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_else, - anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -106825,11 +106762,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [17907] = 3, + [17683] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3184), 15, + ACTIONS(3180), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -106845,7 +106782,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3182), 31, + ACTIONS(3178), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -106877,88 +106814,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [17962] = 25, - ACTIONS(75), 1, - anon_sym_LT, - ACTIONS(842), 1, - sym__primitive_identifier, - ACTIONS(862), 1, - anon_sym_fn, - ACTIONS(864), 1, - anon_sym_for, - ACTIONS(876), 1, - anon_sym_extern, - ACTIONS(1058), 1, - anon_sym_COLON_COLON, - ACTIONS(3029), 1, - anon_sym_union, - ACTIONS(3035), 1, - sym_metavariable, - ACTIONS(3186), 1, - anon_sym_default, - STATE(1281), 1, - sym_for_lifetimes, - STATE(1440), 1, - sym_identifier, - STATE(1460), 1, - sym_scoped_type_identifier, - STATE(1515), 1, - sym_generic_type, - STATE(1516), 1, - sym_function_type, - STATE(2644), 1, - sym_generic_type_with_turbofish, - STATE(2645), 1, - sym_scoped_identifier, - STATE(2646), 1, - sym_bracketed_type, - STATE(2653), 1, - sym_primitive_type, - STATE(2724), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(902), 2, - sym__raw_identifier, - sym_grit_metavariable, - STATE(1694), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(856), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1064), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(95), 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, - [18061] = 4, + [17738] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3188), 2, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - ACTIONS(3176), 15, + ACTIONS(3184), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -106974,10 +106834,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3172), 29, + ACTIONS(3182), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -106986,6 +106847,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_COMMA, anon_sym_else, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -107004,38 +106866,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [18118] = 4, - ACTIONS(3194), 1, - anon_sym_RBRACE, + [17793] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3192), 16, - sym_raw_string_literal, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_POUND, + ACTIONS(3188), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, - anon_sym_COLON_COLON, + anon_sym_GT, anon_sym_AMP, anon_sym_DOT_DOT, anon_sym_DASH, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(3186), 31, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [17848] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3192), 14, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(3190), 29, - sym_underscore, + ACTIONS(3190), 32, + anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, anon_sym_union, - anon_sym_ref, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, + anon_sym_unsafe, + anon_sym_where, + anon_sym_extern, + anon_sym_dyn, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -107057,20 +106970,20 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18175] = 5, + [17903] = 5, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3198), 3, + ACTIONS(3196), 3, anon_sym_LPAREN, anon_sym_BANG, anon_sym_COLON_COLON, - ACTIONS(1040), 4, + ACTIONS(1038), 4, anon_sym_RPAREN, anon_sym_PLUS, anon_sym_COMMA, anon_sym_LT2, - ACTIONS(3201), 7, + ACTIONS(3199), 7, anon_sym_LBRACK, anon_sym_STAR, anon_sym_SQUOTE, @@ -107078,7 +106991,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(3196), 32, + ACTIONS(3194), 32, anon_sym_async, anon_sym_const, anon_sym_default, @@ -107111,11 +107024,13 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18234] = 3, + [17962] = 4, + ACTIONS(3205), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3205), 15, + ACTIONS(3203), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -107131,7 +107046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3203), 31, + ACTIONS(3201), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -107143,7 +107058,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -107163,13 +107077,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [18289] = 4, - ACTIONS(3150), 1, - anon_sym_COLON_COLON, + [18019] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3053), 15, + ACTIONS(3209), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -107185,7 +107097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3051), 30, + ACTIONS(3207), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -107198,6 +107110,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_COMMA, anon_sym_else, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -107216,11 +107129,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [18346] = 3, + [18074] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3065), 17, + ACTIONS(3209), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -107231,14 +107144,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(3063), 29, + ACTIONS(3207), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -107251,13 +107162,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_COMMA, anon_sym_else, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, - anon_sym_LT2, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -107267,84 +107179,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [18401] = 23, - ACTIONS(75), 1, - anon_sym_LT, - ACTIONS(842), 1, - sym__primitive_identifier, - ACTIONS(1058), 1, - anon_sym_COLON_COLON, - ACTIONS(2738), 1, - anon_sym_SQUOTE, - ACTIONS(3025), 1, - anon_sym_LPAREN, - ACTIONS(3027), 1, - anon_sym_STAR, - ACTIONS(3031), 1, - anon_sym_for, - ACTIONS(3033), 1, - anon_sym_AMP, - ACTIONS(3035), 1, - sym_metavariable, - STATE(1954), 1, - sym_identifier, - STATE(2095), 1, - sym_scoped_type_identifier, - STATE(2287), 1, - sym_where_predicate, - STATE(2314), 1, - sym_primitive_type, - STATE(2315), 1, - sym_generic_type, - STATE(2644), 1, - sym_generic_type_with_turbofish, - STATE(2645), 1, - sym_scoped_identifier, - STATE(2646), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(902), 2, - sym__raw_identifier, - sym_grit_metavariable, - ACTIONS(3029), 2, - anon_sym_default, - anon_sym_union, - ACTIONS(1064), 3, - sym_self, - sym_super, - sym_crate, - STATE(2483), 5, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(95), 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, - [18496] = 3, + [18129] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3209), 15, + ACTIONS(3213), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -107360,7 +107201,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3207), 31, + ACTIONS(3211), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -107392,161 +107233,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [18551] = 25, - ACTIONS(75), 1, - anon_sym_LT, - ACTIONS(842), 1, - sym__primitive_identifier, - ACTIONS(864), 1, - anon_sym_for, - ACTIONS(876), 1, - anon_sym_extern, - ACTIONS(1058), 1, - anon_sym_COLON_COLON, - ACTIONS(2842), 1, - anon_sym_fn, - ACTIONS(3029), 1, - anon_sym_union, - ACTIONS(3035), 1, - sym_metavariable, - ACTIONS(3186), 1, - anon_sym_default, - STATE(1278), 1, - sym_for_lifetimes, - STATE(1507), 1, - sym_function_type, - STATE(1706), 1, - sym_identifier, - STATE(1803), 1, - sym_scoped_type_identifier, - STATE(2157), 1, - sym_generic_type, - STATE(2619), 1, - sym_function_modifiers, - STATE(2644), 1, - sym_generic_type_with_turbofish, - STATE(2645), 1, - sym_scoped_identifier, - STATE(2646), 1, - sym_bracketed_type, - STATE(2653), 1, - sym_primitive_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(902), 2, - sym__raw_identifier, - sym_grit_metavariable, - STATE(1694), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(856), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1064), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(95), 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, - [18650] = 25, - ACTIONS(75), 1, - anon_sym_LT, - ACTIONS(842), 1, - sym__primitive_identifier, - ACTIONS(864), 1, - anon_sym_for, - ACTIONS(876), 1, - anon_sym_extern, - ACTIONS(1058), 1, - anon_sym_COLON_COLON, - ACTIONS(2842), 1, - anon_sym_fn, - ACTIONS(3029), 1, - anon_sym_union, - ACTIONS(3035), 1, - sym_metavariable, - ACTIONS(3186), 1, - anon_sym_default, - STATE(1278), 1, - sym_for_lifetimes, - STATE(1516), 1, - sym_function_type, - STATE(1710), 1, - sym_identifier, - STATE(1809), 1, - sym_scoped_type_identifier, - STATE(2152), 1, - sym_generic_type, - STATE(2619), 1, - sym_function_modifiers, - STATE(2644), 1, - sym_generic_type_with_turbofish, - STATE(2645), 1, - sym_scoped_identifier, - STATE(2646), 1, - sym_bracketed_type, - STATE(2653), 1, - sym_primitive_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(902), 2, - sym__raw_identifier, - sym_grit_metavariable, - STATE(1694), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(856), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1064), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(95), 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, - [18749] = 4, + [18184] = 5, ACTIONS(3215), 1, - anon_sym_DASH_GT, + anon_sym_else, + STATE(1228), 1, + sym_else_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3213), 15, + ACTIONS(679), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -107562,7 +107257,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3211), 30, + ACTIONS(677), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -107574,7 +107269,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -107593,15 +107287,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [18806] = 5, - ACTIONS(3001), 1, - anon_sym_BANG, - ACTIONS(3217), 1, - anon_sym_COLON_COLON, + [18243] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(727), 15, + ACTIONS(3219), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -107617,10 +107307,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(725), 29, + ACTIONS(3217), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -107628,6 +107319,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -107647,13 +107339,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [18865] = 4, - ACTIONS(3223), 1, - anon_sym_DASH_GT, + [18298] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3221), 15, + ACTIONS(3223), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -107669,7 +107359,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3219), 30, + ACTIONS(3221), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -107681,6 +107371,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -107700,13 +107391,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [18922] = 4, - ACTIONS(3229), 1, - anon_sym_DASH_GT, + [18353] = 4, + ACTIONS(3225), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3227), 15, + ACTIONS(3027), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -107722,7 +107413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3225), 30, + ACTIONS(3025), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -107753,11 +107444,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [18979] = 3, + [18410] = 4, + ACTIONS(3231), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3233), 15, + ACTIONS(3229), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -107773,7 +107466,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3231), 31, + ACTIONS(3227), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -107785,7 +107478,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -107805,11 +107497,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [19034] = 3, + [18467] = 4, + ACTIONS(3225), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3237), 15, + ACTIONS(3075), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -107825,7 +107519,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3235), 31, + ACTIONS(3073), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -107837,7 +107531,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -107857,63 +107550,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [19089] = 25, - ACTIONS(75), 1, - anon_sym_LT, - ACTIONS(842), 1, - sym__primitive_identifier, - ACTIONS(862), 1, - anon_sym_fn, - ACTIONS(864), 1, - anon_sym_for, - ACTIONS(876), 1, - anon_sym_extern, - ACTIONS(1058), 1, - anon_sym_COLON_COLON, - ACTIONS(3029), 1, - anon_sym_union, - ACTIONS(3035), 1, - sym_metavariable, - ACTIONS(3186), 1, - anon_sym_default, - STATE(1281), 1, - sym_for_lifetimes, - STATE(1443), 1, - sym_identifier, - STATE(1450), 1, - sym_scoped_type_identifier, - STATE(1506), 1, - sym_generic_type, - STATE(1507), 1, - sym_function_type, - STATE(2644), 1, - sym_generic_type_with_turbofish, - STATE(2645), 1, - sym_scoped_identifier, - STATE(2646), 1, - sym_bracketed_type, - STATE(2653), 1, - sym_primitive_type, - STATE(2724), 1, - sym_function_modifiers, + [18524] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(902), 2, + ACTIONS(3235), 14, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, sym__raw_identifier, + sym_metavariable, sym_grit_metavariable, - STATE(1694), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(856), 3, + ACTIONS(3233), 32, anon_sym_async, anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_union, anon_sym_unsafe, - ACTIONS(1064), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(95), 17, + anon_sym_where, + anon_sym_extern, + anon_sym_dyn, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -107931,11 +107598,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [19188] = 3, + sym__primitive_identifier, + sym_self, + sym_super, + sym_crate, + [18579] = 4, + ACTIONS(3237), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1024), 15, + ACTIONS(725), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -107951,7 +107624,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(1026), 31, + ACTIONS(723), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -107960,7 +107633,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, @@ -107983,63 +107655,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [19243] = 25, - ACTIONS(75), 1, - anon_sym_LT, - ACTIONS(864), 1, - anon_sym_for, - ACTIONS(876), 1, - anon_sym_extern, - ACTIONS(2880), 1, - sym__primitive_identifier, - ACTIONS(2892), 1, - anon_sym_fn, - ACTIONS(2900), 1, - anon_sym_COLON_COLON, - ACTIONS(3239), 1, - anon_sym_default, - ACTIONS(3241), 1, - anon_sym_union, - ACTIONS(3243), 1, - sym_metavariable, - STATE(819), 1, - sym_identifier, - STATE(829), 1, - sym_scoped_type_identifier, - STATE(1116), 1, - sym_generic_type, - STATE(1246), 1, - sym_function_type, - STATE(1280), 1, - sym_for_lifetimes, - STATE(2627), 1, - sym_scoped_identifier, - STATE(2628), 1, - sym_primitive_type, - STATE(2642), 1, - sym_function_modifiers, - STATE(2669), 1, - sym_bracketed_type, - STATE(2670), 1, - sym_generic_type_with_turbofish, + [18636] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2908), 2, + ACTIONS(3241), 14, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, sym__raw_identifier, + sym_metavariable, sym_grit_metavariable, - STATE(1694), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(856), 3, + ACTIONS(3239), 32, anon_sym_async, anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_union, anon_sym_unsafe, - ACTIONS(2910), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(95), 17, + anon_sym_where, + anon_sym_extern, + anon_sym_dyn, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -108057,89 +107703,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [19342] = 25, - ACTIONS(75), 1, - anon_sym_LT, - ACTIONS(864), 1, - anon_sym_for, - ACTIONS(876), 1, - anon_sym_extern, - ACTIONS(2880), 1, sym__primitive_identifier, - ACTIONS(2892), 1, - anon_sym_fn, - ACTIONS(2900), 1, - anon_sym_COLON_COLON, - ACTIONS(3239), 1, - anon_sym_default, - ACTIONS(3241), 1, - anon_sym_union, - ACTIONS(3243), 1, - sym_metavariable, - STATE(820), 1, - sym_identifier, - STATE(836), 1, - sym_scoped_type_identifier, - STATE(1118), 1, - sym_generic_type, - STATE(1229), 1, - sym_function_type, - STATE(1280), 1, - sym_for_lifetimes, - STATE(2627), 1, - sym_scoped_identifier, - STATE(2628), 1, - sym_primitive_type, - STATE(2642), 1, - sym_function_modifiers, - STATE(2669), 1, - sym_bracketed_type, - STATE(2670), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2908), 2, - sym__raw_identifier, - sym_grit_metavariable, - STATE(1694), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(856), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(2910), 3, sym_self, sym_super, sym_crate, - ACTIONS(95), 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, - [19441] = 5, - ACTIONS(3247), 1, - anon_sym_LPAREN, - STATE(1244), 1, - sym_arguments, + [18691] = 4, + ACTIONS(3225), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3249), 15, + ACTIONS(3079), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -108155,8 +107729,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3245), 29, + ACTIONS(3077), 30, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -108185,11 +107760,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [19500] = 3, + [18748] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3253), 15, + ACTIONS(3245), 14, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + sym__raw_identifier, + sym_metavariable, + sym_grit_metavariable, + ACTIONS(3243), 32, + 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, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + 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__primitive_identifier, + sym_self, + sym_super, + sym_crate, + [18803] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3249), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -108205,7 +107832,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3251), 31, + ACTIONS(3247), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -108237,11 +107864,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [19555] = 3, + [18858] = 23, + ACTIONS(75), 1, + anon_sym_LT, + ACTIONS(844), 1, + sym__primitive_identifier, + ACTIONS(1060), 1, + anon_sym_COLON_COLON, + ACTIONS(2740), 1, + anon_sym_SQUOTE, + ACTIONS(3039), 1, + anon_sym_LPAREN, + ACTIONS(3041), 1, + anon_sym_STAR, + ACTIONS(3045), 1, + anon_sym_for, + ACTIONS(3047), 1, + anon_sym_AMP, + ACTIONS(3049), 1, + sym_metavariable, + STATE(1934), 1, + sym_identifier, + STATE(2046), 1, + sym_where_predicate, + STATE(2048), 1, + sym_scoped_type_identifier, + STATE(2341), 1, + sym_generic_type, + STATE(2344), 1, + sym_primitive_type, + STATE(2621), 1, + sym_scoped_identifier, + STATE(2649), 1, + sym_generic_type_with_turbofish, + STATE(2652), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3257), 15, + ACTIONS(904), 2, + sym__raw_identifier, + sym_grit_metavariable, + ACTIONS(3043), 2, + anon_sym_default, + anon_sym_union, + ACTIONS(1066), 3, + sym_self, + sym_super, + sym_crate, + STATE(2461), 5, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(95), 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, + [18953] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3253), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -108257,7 +107956,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3255), 31, + ACTIONS(3251), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -108289,11 +107988,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [19610] = 3, + [19008] = 4, + ACTIONS(3259), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3261), 15, + ACTIONS(3257), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -108309,7 +108010,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3259), 31, + ACTIONS(3255), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -108321,7 +108022,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -108341,11 +108041,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [19665] = 3, + [19065] = 4, + ACTIONS(3265), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3265), 15, + ACTIONS(3263), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -108361,7 +108063,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3263), 31, + ACTIONS(3261), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -108373,7 +108075,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -108393,11 +108094,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [19720] = 3, + [19122] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3269), 14, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + sym__raw_identifier, + sym_metavariable, + sym_grit_metavariable, + ACTIONS(3267), 32, + 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, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + 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__primitive_identifier, + sym_self, + sym_super, + sym_crate, + [19177] = 5, + ACTIONS(3103), 1, + anon_sym_COLON_COLON, + ACTIONS(3271), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3269), 15, + ACTIONS(3097), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -108413,11 +108170,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3267), 31, + ACTIONS(3095), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -108426,7 +108182,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_COMMA, anon_sym_else, - anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -108445,15 +108200,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [19775] = 5, - ACTIONS(3105), 1, - anon_sym_COLON_COLON, - ACTIONS(3271), 1, - anon_sym_BANG, + [19236] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3099), 15, + ACTIONS(3275), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -108469,10 +108220,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3097), 29, + ACTIONS(3273), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -108480,6 +108232,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -108499,11 +108252,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [19834] = 3, + [19291] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3275), 15, + ACTIONS(3279), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -108519,7 +108272,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3273), 31, + ACTIONS(3277), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -108551,37 +108304,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [19889] = 3, + [19346] = 25, + ACTIONS(75), 1, + anon_sym_LT, + ACTIONS(866), 1, + anon_sym_for, + ACTIONS(878), 1, + anon_sym_extern, + ACTIONS(2832), 1, + sym__primitive_identifier, + ACTIONS(2844), 1, + anon_sym_fn, + ACTIONS(2852), 1, + anon_sym_COLON_COLON, + ACTIONS(3281), 1, + anon_sym_default, + ACTIONS(3283), 1, + anon_sym_union, + ACTIONS(3285), 1, + sym_metavariable, + STATE(824), 1, + sym_identifier, + STATE(835), 1, + sym_scoped_type_identifier, + STATE(1137), 1, + sym_generic_type, + STATE(1197), 1, + sym_function_type, + STATE(1282), 1, + sym_for_lifetimes, + STATE(2629), 1, + sym_scoped_identifier, + STATE(2630), 1, + sym_primitive_type, + STATE(2645), 1, + sym_function_modifiers, + STATE(2673), 1, + sym_bracketed_type, + STATE(2674), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3279), 14, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, + ACTIONS(2860), 2, sym__raw_identifier, - sym_metavariable, sym_grit_metavariable, - ACTIONS(3277), 32, + STATE(1681), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(858), 3, 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, + ACTIONS(2862), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(95), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -108599,69 +108378,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - sym__primitive_identifier, - sym_self, - sym_super, - sym_crate, - [19944] = 3, + [19445] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3283), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(3281), 31, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(3287), 2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [19999] = 4, - ACTIONS(3289), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3287), 15, + anon_sym_COLON_COLON, + ACTIONS(3140), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -108677,11 +108401,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3285), 30, + ACTIONS(3136), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -108708,37 +108431,285 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [20056] = 3, + [19502] = 25, + ACTIONS(75), 1, + anon_sym_LT, + ACTIONS(866), 1, + anon_sym_for, + ACTIONS(878), 1, + anon_sym_extern, + ACTIONS(2832), 1, + sym__primitive_identifier, + ACTIONS(2844), 1, + anon_sym_fn, + ACTIONS(2852), 1, + anon_sym_COLON_COLON, + ACTIONS(3281), 1, + anon_sym_default, + ACTIONS(3283), 1, + anon_sym_union, + ACTIONS(3285), 1, + sym_metavariable, + STATE(822), 1, + sym_identifier, + STATE(836), 1, + sym_scoped_type_identifier, + STATE(1141), 1, + sym_generic_type, + STATE(1187), 1, + sym_function_type, + STATE(1282), 1, + sym_for_lifetimes, + STATE(2629), 1, + sym_scoped_identifier, + STATE(2630), 1, + sym_primitive_type, + STATE(2645), 1, + sym_function_modifiers, + STATE(2673), 1, + sym_bracketed_type, + STATE(2674), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3293), 14, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, + ACTIONS(2860), 2, sym__raw_identifier, - sym_metavariable, sym_grit_metavariable, - ACTIONS(3291), 32, - anon_sym_async, + STATE(1681), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(858), 3, + anon_sym_async, anon_sym_const, - anon_sym_default, + anon_sym_unsafe, + ACTIONS(2862), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(95), 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, + [19601] = 25, + ACTIONS(75), 1, + anon_sym_LT, + ACTIONS(844), 1, + sym__primitive_identifier, + ACTIONS(866), 1, + anon_sym_for, + ACTIONS(878), 1, + anon_sym_extern, + ACTIONS(1060), 1, + anon_sym_COLON_COLON, + ACTIONS(2892), 1, anon_sym_fn, + ACTIONS(3043), 1, + anon_sym_union, + ACTIONS(3049), 1, + sym_metavariable, + ACTIONS(3289), 1, + anon_sym_default, + STATE(1284), 1, + sym_for_lifetimes, + STATE(1529), 1, + sym_function_type, + STATE(1743), 1, + sym_identifier, + STATE(1874), 1, + sym_scoped_type_identifier, + STATE(2161), 1, + sym_generic_type, + STATE(2619), 1, + sym_primitive_type, + STATE(2621), 1, + sym_scoped_identifier, + STATE(2649), 1, + sym_generic_type_with_turbofish, + STATE(2652), 1, + sym_bracketed_type, + STATE(2771), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(904), 2, + sym__raw_identifier, + sym_grit_metavariable, + STATE(1681), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(858), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(1066), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(95), 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, + [19700] = 25, + ACTIONS(75), 1, + anon_sym_LT, + ACTIONS(844), 1, + sym__primitive_identifier, + ACTIONS(866), 1, anon_sym_for, - anon_sym_impl, + ACTIONS(878), 1, + anon_sym_extern, + ACTIONS(1060), 1, + anon_sym_COLON_COLON, + ACTIONS(2892), 1, + anon_sym_fn, + ACTIONS(3043), 1, anon_sym_union, + ACTIONS(3049), 1, + sym_metavariable, + ACTIONS(3289), 1, + anon_sym_default, + STATE(1284), 1, + sym_for_lifetimes, + STATE(1512), 1, + sym_function_type, + STATE(1737), 1, + sym_identifier, + STATE(1873), 1, + sym_scoped_type_identifier, + STATE(2156), 1, + sym_generic_type, + STATE(2619), 1, + sym_primitive_type, + STATE(2621), 1, + sym_scoped_identifier, + STATE(2649), 1, + sym_generic_type_with_turbofish, + STATE(2652), 1, + sym_bracketed_type, + STATE(2771), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(904), 2, + sym__raw_identifier, + sym_grit_metavariable, + STATE(1681), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(858), 3, + anon_sym_async, + anon_sym_const, anon_sym_unsafe, - anon_sym_where, + ACTIONS(1066), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(95), 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, + [19799] = 25, + ACTIONS(75), 1, + anon_sym_LT, + ACTIONS(844), 1, + sym__primitive_identifier, + ACTIONS(864), 1, + anon_sym_fn, + ACTIONS(866), 1, + anon_sym_for, + ACTIONS(878), 1, anon_sym_extern, - anon_sym_dyn, + ACTIONS(1060), 1, + anon_sym_COLON_COLON, + ACTIONS(3043), 1, + anon_sym_union, + ACTIONS(3049), 1, + sym_metavariable, + ACTIONS(3289), 1, + anon_sym_default, + STATE(1285), 1, + sym_for_lifetimes, + STATE(1450), 1, + sym_identifier, + STATE(1456), 1, + sym_scoped_type_identifier, + STATE(1527), 1, + sym_generic_type, + STATE(1529), 1, + sym_function_type, + STATE(2619), 1, + sym_primitive_type, + STATE(2621), 1, + sym_scoped_identifier, + STATE(2649), 1, + sym_generic_type_with_turbofish, + STATE(2652), 1, + sym_bracketed_type, + STATE(2667), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(904), 2, + sym__raw_identifier, + sym_grit_metavariable, + STATE(1681), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(858), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(1066), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(95), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -108756,17 +108727,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, + [19898] = 25, + ACTIONS(75), 1, + anon_sym_LT, + ACTIONS(844), 1, sym__primitive_identifier, + ACTIONS(864), 1, + anon_sym_fn, + ACTIONS(866), 1, + anon_sym_for, + ACTIONS(878), 1, + anon_sym_extern, + ACTIONS(1060), 1, + anon_sym_COLON_COLON, + ACTIONS(3043), 1, + anon_sym_union, + ACTIONS(3049), 1, + sym_metavariable, + ACTIONS(3289), 1, + anon_sym_default, + STATE(1285), 1, + sym_for_lifetimes, + STATE(1448), 1, + sym_identifier, + STATE(1463), 1, + sym_scoped_type_identifier, + STATE(1512), 1, + sym_function_type, + STATE(1513), 1, + sym_generic_type, + STATE(2619), 1, + sym_primitive_type, + STATE(2621), 1, + sym_scoped_identifier, + STATE(2649), 1, + sym_generic_type_with_turbofish, + STATE(2652), 1, + sym_bracketed_type, + STATE(2667), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(904), 2, + sym__raw_identifier, + sym_grit_metavariable, + STATE(1681), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(858), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(1066), 3, sym_self, sym_super, sym_crate, - [20111] = 4, - ACTIONS(3295), 1, + ACTIONS(95), 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, + [19997] = 5, + ACTIONS(3003), 1, + anon_sym_BANG, + ACTIONS(3291), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(727), 15, + ACTIONS(725), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -108782,11 +108825,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(725), 30, + ACTIONS(723), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -108813,11 +108855,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [20168] = 3, + [20056] = 4, + ACTIONS(3297), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3299), 15, + ACTIONS(3295), 16, + sym_raw_string_literal, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym__raw_identifier, + sym_metavariable, + sym_grit_metavariable, + ACTIONS(3293), 29, + sym_underscore, + anon_sym_const, + anon_sym_default, + anon_sym_union, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + 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__primitive_identifier, + sym_self, + sym_super, + sym_crate, + [20113] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1024), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -108833,7 +108928,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3297), 30, + ACTIONS(1026), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -108842,6 +108937,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, @@ -108864,11 +108960,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [20222] = 3, + [20168] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3303), 15, + ACTIONS(707), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -108884,7 +108980,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3301), 30, + ACTIONS(705), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -108915,79 +109011,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [20276] = 20, - ACTIONS(75), 1, - anon_sym_LT, - ACTIONS(842), 1, - sym__primitive_identifier, - ACTIONS(892), 1, - anon_sym_DASH, - ACTIONS(896), 1, - aux_sym_string_literal_token1, - ACTIONS(1116), 1, - anon_sym_COLON_COLON, - ACTIONS(3309), 1, - sym_metavariable, - STATE(1536), 1, - sym_primitive_type, - STATE(1538), 1, - sym_scoped_identifier, - STATE(1539), 1, - sym_identifier, - STATE(1601), 1, - sym__literal_pattern, - STATE(2668), 1, - sym_bracketed_type, - STATE(2752), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(898), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(902), 2, - sym__raw_identifier, - sym_grit_metavariable, - ACTIONS(3305), 2, - anon_sym_default, - anon_sym_union, - ACTIONS(3307), 3, - sym_self, - sym_super, - sym_crate, - STATE(1513), 3, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - ACTIONS(894), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(900), 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, - [20364] = 3, + [20222] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(824), 15, + ACTIONS(3301), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -109003,7 +109031,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(822), 30, + ACTIONS(3299), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -109034,11 +109062,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [20418] = 3, + [20276] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(820), 15, + ACTIONS(3305), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -109054,7 +109082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(818), 30, + ACTIONS(3303), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -109085,11 +109113,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [20472] = 3, + [20330] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3053), 15, + ACTIONS(3309), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -109105,7 +109133,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3051), 30, + ACTIONS(3307), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -109136,11 +109164,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [20526] = 3, + [20384] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2932), 15, + ACTIONS(3313), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -109156,7 +109184,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2934), 30, + ACTIONS(3311), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -109187,11 +109215,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [20580] = 3, + [20438] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3313), 15, + ACTIONS(818), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -109207,7 +109235,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3311), 30, + ACTIONS(816), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -109238,7 +109266,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [20634] = 3, + [20492] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -109289,7 +109317,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [20688] = 3, + [20546] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -109340,11 +109368,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [20742] = 3, + [20600] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(701), 15, + ACTIONS(3325), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -109360,7 +109388,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(699), 30, + ACTIONS(3323), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -109391,11 +109419,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [20796] = 3, + [20654] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(719), 15, + ACTIONS(3329), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -109411,7 +109439,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(717), 30, + ACTIONS(3327), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -109442,11 +109470,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [20850] = 3, + [20708] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3325), 15, + ACTIONS(3333), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -109462,7 +109490,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3323), 30, + ACTIONS(3331), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -109493,11 +109521,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [20904] = 3, + [20762] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3329), 15, + ACTIONS(3337), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -109513,7 +109541,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3327), 30, + ACTIONS(3335), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -109544,11 +109572,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [20958] = 3, + [20816] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3333), 15, + ACTIONS(3341), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -109564,7 +109592,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3331), 30, + ACTIONS(3339), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -109595,11 +109623,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [21012] = 3, + [20870] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(751), 15, + ACTIONS(3345), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -109615,7 +109643,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(749), 30, + ACTIONS(3343), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -109646,11 +109674,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [21066] = 3, + [20924] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(747), 15, + ACTIONS(802), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -109666,7 +109694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(745), 30, + ACTIONS(800), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -109697,11 +109725,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [21120] = 3, + [20978] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(687), 15, + ACTIONS(798), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -109717,7 +109745,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(685), 30, + ACTIONS(796), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -109748,79 +109776,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [21174] = 20, - ACTIONS(75), 1, - anon_sym_LT, - ACTIONS(842), 1, - sym__primitive_identifier, - ACTIONS(892), 1, - anon_sym_DASH, - ACTIONS(896), 1, - aux_sym_string_literal_token1, - ACTIONS(1116), 1, - anon_sym_COLON_COLON, - ACTIONS(3339), 1, - sym_metavariable, - STATE(1540), 1, - sym_primitive_type, - STATE(1541), 1, - sym_scoped_identifier, - STATE(1542), 1, - sym_identifier, - STATE(1596), 1, - sym__literal_pattern, - STATE(2668), 1, - sym_bracketed_type, - STATE(2752), 1, - sym_generic_type_with_turbofish, + [21032] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(898), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(902), 2, - sym__raw_identifier, - sym_grit_metavariable, - ACTIONS(3335), 2, - anon_sym_default, - anon_sym_union, - ACTIONS(3337), 3, - sym_self, - sym_super, - sym_crate, - STATE(1513), 3, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - ACTIONS(894), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(900), 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, - [21262] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3343), 15, + ACTIONS(3349), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -109836,7 +109796,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3341), 30, + ACTIONS(3347), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -109867,11 +109827,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [21316] = 3, + [21086] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3347), 15, + ACTIONS(3353), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -109887,7 +109847,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3345), 30, + ACTIONS(3351), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -109918,62 +109878,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [21370] = 3, + [21140] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3138), 16, - sym_raw_string_literal, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym__raw_identifier, - sym_metavariable, - sym_grit_metavariable, - ACTIONS(3136), 29, - sym_underscore, - anon_sym_const, - anon_sym_default, - anon_sym_union, - anon_sym_ref, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - 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__primitive_identifier, - sym_self, - sym_super, - sym_crate, - [21424] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3351), 15, + ACTIONS(3357), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -109989,7 +109898,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3349), 30, + ACTIONS(3355), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -110020,11 +109929,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [21478] = 3, + [21194] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(755), 15, + ACTIONS(3361), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -110040,7 +109949,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(753), 30, + ACTIONS(3359), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -110071,11 +109980,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [21532] = 3, + [21248] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(808), 15, + ACTIONS(3365), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -110091,7 +110000,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(806), 30, + ACTIONS(3363), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -110122,11 +110031,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [21586] = 3, + [21302] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3355), 15, + ACTIONS(3369), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -110142,7 +110051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3353), 30, + ACTIONS(3367), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -110173,11 +110082,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [21640] = 3, + [21356] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3359), 15, + ACTIONS(3373), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -110193,7 +110102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3357), 30, + ACTIONS(3371), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -110224,11 +110133,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [21694] = 3, + [21410] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(804), 15, + ACTIONS(3377), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -110244,7 +110153,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(802), 30, + ACTIONS(3375), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -110275,11 +110184,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [21748] = 3, + [21464] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3363), 15, + ACTIONS(786), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -110295,7 +110204,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3361), 30, + ACTIONS(784), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -110326,11 +110235,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [21802] = 3, + [21518] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3176), 15, + ACTIONS(3079), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -110346,7 +110255,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3172), 30, + ACTIONS(3077), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -110377,62 +110286,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [21856] = 3, + [21572] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3192), 16, - sym_raw_string_literal, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym__raw_identifier, - sym_metavariable, - sym_grit_metavariable, - ACTIONS(3190), 29, - sym_underscore, - anon_sym_const, - anon_sym_default, - anon_sym_union, - anon_sym_ref, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - 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__primitive_identifier, - sym_self, - sym_super, - sym_crate, - [21910] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3367), 15, + ACTIONS(3381), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -110448,7 +110306,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3365), 30, + ACTIONS(3379), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -110479,11 +110337,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [21964] = 3, + [21626] = 4, + ACTIONS(3103), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3371), 15, + ACTIONS(3097), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -110499,11 +110359,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3369), 30, + ACTIONS(3095), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -110530,11 +110389,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [22018] = 3, + [21682] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3375), 15, + ACTIONS(806), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -110550,7 +110409,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3373), 30, + ACTIONS(804), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -110581,11 +110440,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [22072] = 3, + [21736] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2852), 15, + ACTIONS(2940), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -110601,7 +110460,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2854), 30, + ACTIONS(2942), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -110632,11 +110491,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [22126] = 3, + [21790] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3379), 15, + ACTIONS(3385), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -110652,7 +110511,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3377), 30, + ACTIONS(3383), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -110683,11 +110542,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [22180] = 3, + [21844] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3383), 15, + ACTIONS(3389), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -110703,7 +110562,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3381), 30, + ACTIONS(3387), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -110734,11 +110593,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [22234] = 3, + [21898] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3123), 16, + sym_raw_string_literal, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym__raw_identifier, + sym_metavariable, + sym_grit_metavariable, + ACTIONS(3121), 29, + sym_underscore, + anon_sym_const, + anon_sym_default, + anon_sym_union, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + 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__primitive_identifier, + sym_self, + sym_super, + sym_crate, + [21952] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(739), 15, + ACTIONS(3393), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -110754,7 +110664,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(737), 30, + ACTIONS(3391), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -110785,11 +110695,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [22288] = 3, + [22006] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3387), 15, + ACTIONS(782), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -110805,7 +110715,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3385), 30, + ACTIONS(780), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -110836,11 +110746,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [22342] = 3, + [22060] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3391), 15, + ACTIONS(3075), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -110856,7 +110766,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3389), 30, + ACTIONS(3073), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -110887,11 +110797,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [22396] = 3, + [22114] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3395), 15, + ACTIONS(3119), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -110907,7 +110817,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3393), 30, + ACTIONS(3115), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -110938,11 +110848,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [22450] = 3, + [22168] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3399), 15, + ACTIONS(3397), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -110958,7 +110868,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3397), 30, + ACTIONS(3395), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -110989,11 +110899,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [22504] = 3, + [22222] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3403), 15, + ACTIONS(3401), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -111009,7 +110919,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3401), 30, + ACTIONS(3399), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -111040,11 +110950,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [22558] = 3, + [22276] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3303), 15, + ACTIONS(3405), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -111060,7 +110970,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3301), 30, + ACTIONS(3403), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -111091,11 +111001,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [22612] = 3, + [22330] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3407), 15, + ACTIONS(3409), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -111111,7 +111021,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3405), 30, + ACTIONS(3407), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -111142,11 +111052,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [22666] = 3, + [22384] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3411), 15, + ACTIONS(834), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -111162,7 +111072,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3409), 30, + ACTIONS(832), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -111193,11 +111103,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [22720] = 3, + [22438] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3415), 15, + ACTIONS(3413), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -111213,7 +111123,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3413), 30, + ACTIONS(3411), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -111244,11 +111154,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [22774] = 3, + [22492] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3419), 15, + ACTIONS(3417), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -111264,7 +111174,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3417), 30, + ACTIONS(3415), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -111295,11 +111205,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [22828] = 3, + [22546] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3423), 15, + ACTIONS(713), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -111315,7 +111225,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3421), 30, + ACTIONS(711), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -111346,11 +111256,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [22882] = 3, + [22600] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3427), 15, + ACTIONS(3421), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -111366,7 +111276,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3425), 30, + ACTIONS(3419), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -111397,11 +111307,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [22936] = 3, + [22654] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(828), 15, + ACTIONS(3425), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -111417,7 +111327,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(826), 30, + ACTIONS(3423), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -111448,11 +111358,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [22990] = 3, + [22708] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3431), 15, + ACTIONS(3429), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -111468,7 +111378,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3429), 30, + ACTIONS(3427), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -111499,11 +111409,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [23044] = 3, + [22762] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(812), 15, + ACTIONS(3433), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -111519,7 +111429,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(810), 30, + ACTIONS(3431), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -111550,11 +111460,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [23098] = 3, + [22816] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(715), 15, + ACTIONS(3437), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -111570,7 +111480,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(713), 30, + ACTIONS(3435), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -111601,11 +111511,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [23152] = 3, + [22870] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3435), 15, + ACTIONS(3441), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -111621,7 +111531,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3433), 30, + ACTIONS(3439), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -111652,11 +111562,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [23206] = 3, + [22924] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3439), 15, + ACTIONS(3445), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -111672,7 +111582,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3437), 30, + ACTIONS(3443), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -111703,11 +111613,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [23260] = 3, + [22978] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(816), 15, + ACTIONS(3449), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -111723,7 +111633,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(814), 30, + ACTIONS(3447), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -111754,11 +111664,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [23314] = 3, + [23032] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3295), 16, + sym_raw_string_literal, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym__raw_identifier, + sym_metavariable, + sym_grit_metavariable, + ACTIONS(3293), 29, + sym_underscore, + anon_sym_const, + anon_sym_default, + anon_sym_union, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + 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__primitive_identifier, + sym_self, + sym_super, + sym_crate, + [23086] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3443), 15, + ACTIONS(3453), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -111774,7 +111735,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3441), 30, + ACTIONS(3451), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -111805,11 +111766,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [23368] = 3, + [23140] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3447), 15, + ACTIONS(842), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -111825,7 +111786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3445), 30, + ACTIONS(840), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -111856,13 +111817,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [23422] = 4, - ACTIONS(3105), 1, - anon_sym_COLON_COLON, + [23194] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3099), 15, + ACTIONS(3457), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -111878,10 +111837,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3097), 29, + ACTIONS(3455), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -111908,11 +111868,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [23478] = 3, + [23248] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3451), 15, + ACTIONS(3461), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -111928,7 +111888,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3449), 30, + ACTIONS(3459), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -111959,11 +111919,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [23532] = 3, + [23302] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3455), 15, + ACTIONS(838), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -111979,7 +111939,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3453), 30, + ACTIONS(836), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -112010,11 +111970,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [23586] = 3, + [23356] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3459), 15, + ACTIONS(2922), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -112030,7 +111990,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3457), 30, + ACTIONS(2924), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -112061,11 +112021,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [23640] = 3, + [23410] = 4, + ACTIONS(3463), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(695), 15, + ACTIONS(725), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -112081,11 +112043,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(693), 30, + ACTIONS(723), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -112112,11 +112073,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [23694] = 3, + [23466] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3463), 15, + ACTIONS(822), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -112132,7 +112093,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3461), 30, + ACTIONS(820), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -112163,11 +112124,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [23748] = 3, + [23520] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2936), 15, + ACTIONS(3467), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -112183,7 +112144,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2938), 30, + ACTIONS(3465), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -112214,11 +112175,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [23802] = 3, + [23574] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3467), 15, + ACTIONS(826), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -112234,7 +112195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3465), 30, + ACTIONS(824), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -112265,11 +112226,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [23856] = 3, + [23628] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(759), 15, + ACTIONS(814), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -112285,7 +112246,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(757), 30, + ACTIONS(812), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -112316,11 +112277,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [23910] = 3, + [23682] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3087), 15, + ACTIONS(3471), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -112336,7 +112297,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3085), 30, + ACTIONS(3469), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -112367,11 +112328,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [23964] = 3, + [23736] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3249), 15, + ACTIONS(790), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -112387,7 +112348,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3245), 30, + ACTIONS(788), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -112418,11 +112379,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [24018] = 3, + [23790] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3471), 15, + ACTIONS(794), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -112438,7 +112399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3469), 30, + ACTIONS(792), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -112469,62 +112430,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [24072] = 3, + [23844] = 20, + ACTIONS(75), 1, + anon_sym_LT, + ACTIONS(844), 1, + sym__primitive_identifier, + ACTIONS(894), 1, + anon_sym_DASH, + ACTIONS(898), 1, + aux_sym_string_literal_token1, + ACTIONS(1161), 1, + anon_sym_COLON_COLON, + ACTIONS(3477), 1, + sym_metavariable, + STATE(1533), 1, + sym_identifier, + STATE(1534), 1, + sym_scoped_identifier, + STATE(1548), 1, + sym_primitive_type, + STATE(1616), 1, + sym__literal_pattern, + STATE(2656), 1, + sym_generic_type_with_turbofish, + STATE(2698), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3475), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(3473), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [24126] = 3, + ACTIONS(900), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(904), 2, + sym__raw_identifier, + sym_grit_metavariable, + ACTIONS(3473), 2, + anon_sym_default, + anon_sym_union, + ACTIONS(3475), 3, + sym_self, + sym_super, + sym_crate, + STATE(1521), 3, + sym_negative_literal, + sym_string_literal, + sym_boolean_literal, + ACTIONS(896), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(902), 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, + [23932] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3479), 15, + ACTIONS(3481), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -112540,7 +112518,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3477), 30, + ACTIONS(3479), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -112571,11 +112549,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [24180] = 3, + [23986] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3483), 15, + ACTIONS(3485), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -112591,7 +112569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3481), 30, + ACTIONS(3483), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -112622,11 +112600,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [24234] = 3, + [24040] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(840), 15, + ACTIONS(3489), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -112642,7 +112620,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(838), 30, + ACTIONS(3487), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -112673,11 +112651,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [24288] = 3, + [24094] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(711), 15, + ACTIONS(729), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -112693,7 +112671,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(709), 30, + ACTIONS(727), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -112724,11 +112702,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [24342] = 3, + [24148] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(836), 15, + ACTIONS(3140), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -112744,7 +112722,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(834), 30, + ACTIONS(3136), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -112775,11 +112753,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [24396] = 3, + [24202] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3487), 15, + ACTIONS(3493), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -112795,7 +112773,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3485), 30, + ACTIONS(3491), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -112826,11 +112804,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [24450] = 3, + [24256] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3491), 15, + ACTIONS(3027), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -112846,7 +112824,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3489), 30, + ACTIONS(3025), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -112877,11 +112855,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [24504] = 3, + [24310] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3495), 15, + ACTIONS(3497), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -112897,7 +112875,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3493), 30, + ACTIONS(3495), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -112928,11 +112906,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [24558] = 3, + [24364] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3499), 15, + ACTIONS(3501), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -112948,7 +112926,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3497), 30, + ACTIONS(3499), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -112979,11 +112957,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [24612] = 3, + [24418] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3503), 15, + ACTIONS(717), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -112999,7 +112977,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3501), 30, + ACTIONS(715), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -113030,11 +113008,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [24666] = 3, + [24472] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3507), 15, + ACTIONS(697), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -113050,7 +113028,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3505), 30, + ACTIONS(695), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -113081,11 +113059,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [24720] = 3, + [24526] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3511), 15, + ACTIONS(2812), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -113101,7 +113079,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3509), 30, + ACTIONS(2814), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -113132,11 +113110,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [24774] = 3, + [24580] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2940), 15, + ACTIONS(2934), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -113152,7 +113130,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2942), 30, + ACTIONS(2936), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -113183,11 +113161,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [24828] = 3, + [24634] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3049), 15, + ACTIONS(691), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -113203,7 +113181,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3047), 30, + ACTIONS(689), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -113234,15 +113212,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [24882] = 4, - ACTIONS(3513), 1, + [24688] = 8, + ACTIONS(3101), 1, + anon_sym_BANG, + ACTIONS(3103), 1, anon_sym_COLON_COLON, + ACTIONS(3503), 1, + sym__primitive_identifier, + STATE(1775), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(727), 15, + ACTIONS(3505), 2, + sym__raw_identifier, + sym_grit_metavariable, + ACTIONS(3097), 16, anon_sym_PLUS, anon_sym_STAR, + anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -113256,18 +113244,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(725), 29, + ACTIONS(3095), 23, anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -113286,62 +113268,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [24938] = 3, + [24752] = 20, + ACTIONS(75), 1, + anon_sym_LT, + ACTIONS(844), 1, + sym__primitive_identifier, + ACTIONS(894), 1, + anon_sym_DASH, + ACTIONS(898), 1, + aux_sym_string_literal_token1, + ACTIONS(1161), 1, + anon_sym_COLON_COLON, + ACTIONS(3511), 1, + sym_metavariable, + STATE(1537), 1, + sym_primitive_type, + STATE(1542), 1, + sym_identifier, + STATE(1547), 1, + sym_scoped_identifier, + STATE(1599), 1, + sym__literal_pattern, + STATE(2656), 1, + sym_generic_type_with_turbofish, + STATE(2698), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(743), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(741), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [24992] = 3, + ACTIONS(900), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(904), 2, + sym__raw_identifier, + sym_grit_metavariable, + ACTIONS(3507), 2, + anon_sym_default, + anon_sym_union, + ACTIONS(3509), 3, + sym_self, + sym_super, + sym_crate, + STATE(1521), 3, + sym_negative_literal, + sym_string_literal, + sym_boolean_literal, + ACTIONS(896), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(902), 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, + [24840] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(832), 15, + ACTIONS(3515), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -113357,7 +113356,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(830), 30, + ACTIONS(3513), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -113388,11 +113387,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [25046] = 3, + [24894] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(735), 15, + ACTIONS(3519), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -113408,7 +113407,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(733), 30, + ACTIONS(3517), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -113439,11 +113438,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [25100] = 3, + [24948] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3517), 15, + ACTIONS(3523), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -113459,7 +113458,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3515), 30, + ACTIONS(3521), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -113490,11 +113489,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [25154] = 3, + [25002] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3521), 15, + ACTIONS(3527), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -113510,7 +113509,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3519), 30, + ACTIONS(3525), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -113541,67 +113540,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [25208] = 8, - ACTIONS(3103), 1, - anon_sym_BANG, - ACTIONS(3105), 1, - anon_sym_COLON_COLON, - ACTIONS(3523), 1, - sym__primitive_identifier, - STATE(1849), 1, - sym_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3525), 2, - sym__raw_identifier, - sym_grit_metavariable, - ACTIONS(3099), 16, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(3097), 23, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [25272] = 3, + [25056] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3529), 15, + ACTIONS(3515), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -113617,7 +113560,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3527), 30, + ACTIONS(3513), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -113648,49 +113591,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [25326] = 12, - ACTIONS(3533), 1, - anon_sym_LBRACK, - ACTIONS(3539), 1, - anon_sym_as, - ACTIONS(3543), 1, - anon_sym_AMP, - ACTIONS(3547), 1, - anon_sym_DOT_DOT, - ACTIONS(3551), 1, - anon_sym_DOT, + [25110] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3535), 2, + ACTIONS(3531), 15, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3545), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3549), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3537), 3, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3541), 5, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - ACTIONS(3531), 25, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(3529), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_as, anon_sym_COMMA, anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -113707,128 +113642,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [25397] = 18, - ACTIONS(3533), 1, - anon_sym_LBRACK, - ACTIONS(3539), 1, - anon_sym_as, - ACTIONS(3543), 1, - anon_sym_AMP, - ACTIONS(3547), 1, - anon_sym_DOT_DOT, - ACTIONS(3551), 1, - anon_sym_DOT, - ACTIONS(3555), 1, - anon_sym_EQ, - ACTIONS(3559), 1, - anon_sym_AMP_AMP, - ACTIONS(3561), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3563), 1, - anon_sym_PIPE, - ACTIONS(3565), 1, - anon_sym_CARET, + [25164] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3535), 2, + ACTIONS(3535), 15, anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, anon_sym_DASH, - ACTIONS(3545), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3549), 2, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3557), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3537), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3567), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3553), 19, + anon_sym_DOT, + ACTIONS(3533), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_as, anon_sym_COMMA, anon_sym_else, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [25480] = 20, - ACTIONS(3533), 1, - anon_sym_LBRACK, - ACTIONS(3539), 1, - anon_sym_as, - ACTIONS(3543), 1, - anon_sym_AMP, - ACTIONS(3547), 1, - anon_sym_DOT_DOT, - ACTIONS(3551), 1, - anon_sym_DOT, - ACTIONS(3559), 1, - anon_sym_AMP_AMP, - ACTIONS(3561), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3563), 1, - anon_sym_PIPE, - ACTIONS(3565), 1, - anon_sym_CARET, - ACTIONS(3571), 1, - anon_sym_QMARK, - ACTIONS(3573), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3535), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3545), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3549), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3557), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3537), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3567), 4, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3569), 8, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_else, - ACTIONS(3575), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -113839,61 +113693,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [25567] = 18, - ACTIONS(451), 1, - anon_sym_EQ, - ACTIONS(3533), 1, - anon_sym_LBRACK, - ACTIONS(3539), 1, - anon_sym_as, - ACTIONS(3543), 1, - anon_sym_AMP, - ACTIONS(3547), 1, - anon_sym_DOT_DOT, - ACTIONS(3551), 1, - anon_sym_DOT, - ACTIONS(3559), 1, - anon_sym_AMP_AMP, - ACTIONS(3561), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3563), 1, - anon_sym_PIPE, - ACTIONS(3565), 1, - anon_sym_CARET, + [25218] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3535), 2, + ACTIONS(3539), 15, anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, anon_sym_DASH, - ACTIONS(3545), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3549), 2, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3557), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3537), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3567), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(445), 19, + anon_sym_DOT, + ACTIONS(3537), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_as, anon_sym_COMMA, anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -113904,59 +113744,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [25650] = 16, - ACTIONS(3533), 1, - anon_sym_LBRACK, - ACTIONS(3539), 1, - anon_sym_as, - ACTIONS(3541), 1, - anon_sym_EQ, - ACTIONS(3543), 1, - anon_sym_AMP, - ACTIONS(3547), 1, - anon_sym_DOT_DOT, - ACTIONS(3551), 1, - anon_sym_DOT, - ACTIONS(3563), 1, - anon_sym_PIPE, - ACTIONS(3565), 1, - anon_sym_CARET, + [25272] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3535), 2, + ACTIONS(810), 15, anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, anon_sym_DASH, - ACTIONS(3545), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3549), 2, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3557), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3537), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3567), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3531), 21, + anon_sym_DOT, + ACTIONS(808), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_as, anon_sym_COMMA, anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -113967,61 +113795,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [25729] = 18, - ACTIONS(3533), 1, - anon_sym_LBRACK, - ACTIONS(3539), 1, - anon_sym_as, - ACTIONS(3543), 1, - anon_sym_AMP, - ACTIONS(3547), 1, - anon_sym_DOT_DOT, - ACTIONS(3551), 1, - anon_sym_DOT, - ACTIONS(3559), 1, - anon_sym_AMP_AMP, - ACTIONS(3561), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3563), 1, - anon_sym_PIPE, - ACTIONS(3565), 1, - anon_sym_CARET, - ACTIONS(3579), 1, - anon_sym_EQ, + [25326] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3535), 2, + ACTIONS(3543), 15, anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, anon_sym_DASH, - ACTIONS(3545), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3549), 2, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3557), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3537), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3567), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3577), 19, + anon_sym_DOT, + ACTIONS(3541), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_as, anon_sym_COMMA, anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -114032,26 +113846,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [25812] = 7, - ACTIONS(3533), 1, - anon_sym_LBRACK, - ACTIONS(3547), 1, - anon_sym_DOT_DOT, - ACTIONS(3551), 1, - anon_sym_DOT, + [25380] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3545), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3583), 13, + ACTIONS(737), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, + anon_sym_DOT_DOT, anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, @@ -114059,17 +113865,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3581), 26, + anon_sym_DOT, + ACTIONS(735), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -114086,61 +113897,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [25873] = 18, - ACTIONS(3533), 1, - anon_sym_LBRACK, - ACTIONS(3539), 1, - anon_sym_as, - ACTIONS(3543), 1, - anon_sym_AMP, - ACTIONS(3547), 1, - anon_sym_DOT_DOT, - ACTIONS(3551), 1, - anon_sym_DOT, - ACTIONS(3559), 1, - anon_sym_AMP_AMP, - ACTIONS(3561), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3563), 1, - anon_sym_PIPE, - ACTIONS(3565), 1, - anon_sym_CARET, - ACTIONS(3587), 1, - anon_sym_EQ, + [25434] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3535), 2, + ACTIONS(733), 15, anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, anon_sym_DASH, - ACTIONS(3545), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3549), 2, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3557), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3537), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3567), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3585), 19, + anon_sym_DOT, + ACTIONS(731), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_as, anon_sym_COMMA, anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -114151,70 +113948,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [25956] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2517), 12, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_POUND, - anon_sym_BANG, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - sym__raw_identifier, - sym_metavariable, - sym_grit_metavariable, - ACTIONS(2519), 32, - 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, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - 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__primitive_identifier, - sym_self, - sym_super, - sym_crate, - [26009] = 7, - ACTIONS(3533), 1, - anon_sym_LBRACK, + [25488] = 7, ACTIONS(3547), 1, + anon_sym_LBRACK, + ACTIONS(3553), 1, anon_sym_DOT_DOT, - ACTIONS(3551), 1, + ACTIONS(3555), 1, anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3545), 2, + ACTIONS(3551), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3591), 13, + ACTIONS(3549), 13, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -114228,7 +113975,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3589), 26, + ACTIONS(3545), 26, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -114255,54 +114002,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [26070] = 20, - ACTIONS(3533), 1, - anon_sym_LBRACK, - ACTIONS(3539), 1, - anon_sym_as, - ACTIONS(3543), 1, - anon_sym_AMP, + [25549] = 20, ACTIONS(3547), 1, + anon_sym_LBRACK, + ACTIONS(3553), 1, anon_sym_DOT_DOT, - ACTIONS(3551), 1, + ACTIONS(3555), 1, anon_sym_DOT, - ACTIONS(3559), 1, - anon_sym_AMP_AMP, - ACTIONS(3561), 1, - anon_sym_PIPE_PIPE, ACTIONS(3563), 1, - anon_sym_PIPE, + anon_sym_QMARK, ACTIONS(3565), 1, - anon_sym_CARET, + anon_sym_as, + ACTIONS(3567), 1, + anon_sym_EQ, ACTIONS(3571), 1, - anon_sym_QMARK, + anon_sym_AMP, ACTIONS(3573), 1, - anon_sym_EQ, + anon_sym_AMP_AMP, + ACTIONS(3575), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3577), 1, + anon_sym_PIPE, + ACTIONS(3579), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3535), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3545), 2, + ACTIONS(3551), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3549), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3557), 2, + ACTIONS(3559), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3569), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3537), 3, + ACTIONS(3583), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3561), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3567), 4, + ACTIONS(3581), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3593), 8, + ACTIONS(3557), 8, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -114311,7 +114058,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_COMMA, anon_sym_else, - ACTIONS(3575), 10, + ACTIONS(3585), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -114322,52 +114069,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [26157] = 9, - ACTIONS(3533), 1, - anon_sym_LBRACK, - ACTIONS(3539), 1, - anon_sym_as, + [25636] = 20, ACTIONS(3547), 1, + anon_sym_LBRACK, + ACTIONS(3553), 1, anon_sym_DOT_DOT, - ACTIONS(3551), 1, + ACTIONS(3555), 1, anon_sym_DOT, + ACTIONS(3563), 1, + anon_sym_QMARK, + ACTIONS(3565), 1, + anon_sym_as, + ACTIONS(3567), 1, + anon_sym_EQ, + ACTIONS(3571), 1, + anon_sym_AMP, + ACTIONS(3573), 1, + anon_sym_AMP_AMP, + ACTIONS(3575), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3577), 1, + anon_sym_PIPE, + ACTIONS(3579), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3545), 2, + ACTIONS(3551), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3537), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3541), 10, + ACTIONS(3559), 2, anon_sym_PLUS, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(3569), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3583), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3531), 25, + ACTIONS(3561), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3581), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3587), 8, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_QMARK, anon_sym_COMMA, anon_sym_else, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3585), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -114378,41 +114136,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [26222] = 13, - ACTIONS(3533), 1, - anon_sym_LBRACK, - ACTIONS(3539), 1, - anon_sym_as, - ACTIONS(3543), 1, - anon_sym_AMP, + [25723] = 8, ACTIONS(3547), 1, + anon_sym_LBRACK, + ACTIONS(3553), 1, anon_sym_DOT_DOT, - ACTIONS(3551), 1, + ACTIONS(3555), 1, anon_sym_DOT, ACTIONS(3565), 1, - anon_sym_CARET, + anon_sym_as, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3535), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3545), 2, + ACTIONS(3551), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3549), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3537), 3, + ACTIONS(3591), 13, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3541), 4, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_AMP, + anon_sym_DASH, anon_sym_PIPE, - ACTIONS(3531), 25, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3589), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -114438,38 +114191,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [26295] = 10, - ACTIONS(3533), 1, - anon_sym_LBRACK, - ACTIONS(3539), 1, - anon_sym_as, + [25786] = 17, ACTIONS(3547), 1, + anon_sym_LBRACK, + ACTIONS(3553), 1, anon_sym_DOT_DOT, - ACTIONS(3551), 1, + ACTIONS(3555), 1, anon_sym_DOT, + ACTIONS(3565), 1, + anon_sym_as, + ACTIONS(3571), 1, + anon_sym_AMP, + ACTIONS(3573), 1, + anon_sym_AMP_AMP, + ACTIONS(3577), 1, + anon_sym_PIPE, + ACTIONS(3579), 1, + anon_sym_CARET, + ACTIONS(3591), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3535), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3545), 2, + ACTIONS(3551), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3537), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3541), 8, - anon_sym_EQ, + ACTIONS(3559), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3569), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3583), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3531), 25, + ACTIONS(3561), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3581), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3589), 20, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -114479,12 +114244,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_COMMA, anon_sym_else, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -114495,50 +114255,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [26362] = 17, - ACTIONS(3533), 1, - anon_sym_LBRACK, - ACTIONS(3539), 1, - anon_sym_as, - ACTIONS(3541), 1, + [25867] = 18, + ACTIONS(451), 1, anon_sym_EQ, - ACTIONS(3543), 1, - anon_sym_AMP, ACTIONS(3547), 1, + anon_sym_LBRACK, + ACTIONS(3553), 1, anon_sym_DOT_DOT, - ACTIONS(3551), 1, + ACTIONS(3555), 1, anon_sym_DOT, - ACTIONS(3559), 1, + ACTIONS(3565), 1, + anon_sym_as, + ACTIONS(3571), 1, + anon_sym_AMP, + ACTIONS(3573), 1, anon_sym_AMP_AMP, - ACTIONS(3563), 1, + ACTIONS(3575), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3577), 1, anon_sym_PIPE, - ACTIONS(3565), 1, + ACTIONS(3579), 1, anon_sym_CARET, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3535), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3545), 2, + ACTIONS(3551), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3549), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3557), 2, + ACTIONS(3559), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3569), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3537), 3, + ACTIONS(3583), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3561), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3567), 4, + ACTIONS(3581), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3531), 20, + ACTIONS(445), 19, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -114548,7 +114310,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_COMMA, anon_sym_else, - anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -114559,34 +114320,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [26443] = 7, - ACTIONS(3533), 1, - anon_sym_LBRACK, + [25950] = 18, ACTIONS(3547), 1, + anon_sym_LBRACK, + ACTIONS(3553), 1, anon_sym_DOT_DOT, - ACTIONS(3551), 1, + ACTIONS(3555), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3545), 2, + ACTIONS(3565), 1, + anon_sym_as, + ACTIONS(3571), 1, + anon_sym_AMP, + ACTIONS(3573), 1, + anon_sym_AMP_AMP, + ACTIONS(3575), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3577), 1, + anon_sym_PIPE, + ACTIONS(3579), 1, + anon_sym_CARET, + ACTIONS(3595), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3551), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3597), 13, + ACTIONS(3559), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(3569), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(3583), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3561), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3581), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3593), 19, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_else, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [26033] = 13, + ACTIONS(3547), 1, + anon_sym_LBRACK, + ACTIONS(3553), 1, + anon_sym_DOT_DOT, + ACTIONS(3555), 1, + anon_sym_DOT, + ACTIONS(3565), 1, + anon_sym_as, + ACTIONS(3571), 1, anon_sym_AMP, - anon_sym_DASH, - anon_sym_PIPE, + ACTIONS(3579), 1, anon_sym_CARET, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3551), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3559), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3583), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3561), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3595), 26, + ACTIONS(3591), 4, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + ACTIONS(3589), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -114594,7 +114427,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, anon_sym_COMMA, anon_sym_else, anon_sym_AMP_AMP, @@ -114613,52 +114445,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [26504] = 18, - ACTIONS(3533), 1, - anon_sym_LBRACK, - ACTIONS(3539), 1, - anon_sym_as, - ACTIONS(3543), 1, - anon_sym_AMP, + [26106] = 18, ACTIONS(3547), 1, + anon_sym_LBRACK, + ACTIONS(3553), 1, anon_sym_DOT_DOT, - ACTIONS(3551), 1, + ACTIONS(3555), 1, anon_sym_DOT, - ACTIONS(3559), 1, + ACTIONS(3565), 1, + anon_sym_as, + ACTIONS(3571), 1, + anon_sym_AMP, + ACTIONS(3573), 1, anon_sym_AMP_AMP, - ACTIONS(3561), 1, + ACTIONS(3575), 1, anon_sym_PIPE_PIPE, - ACTIONS(3563), 1, + ACTIONS(3577), 1, anon_sym_PIPE, - ACTIONS(3565), 1, + ACTIONS(3579), 1, anon_sym_CARET, - ACTIONS(3601), 1, + ACTIONS(3599), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3535), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3545), 2, + ACTIONS(3551), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3549), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3557), 2, + ACTIONS(3559), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3569), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3537), 3, + ACTIONS(3583), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3561), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3567), 4, + ACTIONS(3581), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3599), 19, + ACTIONS(3597), 19, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -114678,22 +114510,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [26587] = 8, - ACTIONS(3533), 1, - anon_sym_LBRACK, - ACTIONS(3539), 1, - anon_sym_as, + [26189] = 7, ACTIONS(3547), 1, + anon_sym_LBRACK, + ACTIONS(3553), 1, anon_sym_DOT_DOT, - ACTIONS(3551), 1, + ACTIONS(3555), 1, anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3545), 2, + ACTIONS(3551), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3541), 13, + ACTIONS(3603), 13, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -114707,7 +114537,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3531), 25, + ACTIONS(3601), 26, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -114715,6 +114545,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_as, anon_sym_COMMA, anon_sym_else, anon_sym_AMP_AMP, @@ -114733,16 +114564,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [26650] = 3, + [26250] = 10, + ACTIONS(3547), 1, + anon_sym_LBRACK, + ACTIONS(3553), 1, + anon_sym_DOT_DOT, + ACTIONS(3555), 1, + anon_sym_DOT, + ACTIONS(3565), 1, + anon_sym_as, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1040), 12, + ACTIONS(3551), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3559), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3561), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3591), 8, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3589), 25, + anon_sym_SEMI, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_else, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [26317] = 18, + ACTIONS(3547), 1, anon_sym_LBRACK, + ACTIONS(3553), 1, + anon_sym_DOT_DOT, + ACTIONS(3555), 1, + anon_sym_DOT, + ACTIONS(3565), 1, + anon_sym_as, + ACTIONS(3571), 1, + anon_sym_AMP, + ACTIONS(3573), 1, + anon_sym_AMP_AMP, + ACTIONS(3575), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3577), 1, + anon_sym_PIPE, + ACTIONS(3579), 1, + anon_sym_CARET, + ACTIONS(3607), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3551), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3559), 2, anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3569), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3583), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3561), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3581), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3605), 19, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_else, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [26400] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2235), 12, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_STAR, anon_sym_SQUOTE, + anon_sym_POUND, anon_sym_BANG, anon_sym_LT, anon_sym_COLON_COLON, @@ -114750,18 +114703,18 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(1038), 32, + ACTIONS(2237), 32, 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_mutable_specifier, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114783,72 +114736,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26703] = 14, - ACTIONS(3533), 1, - anon_sym_LBRACK, - ACTIONS(3539), 1, - anon_sym_as, - ACTIONS(3543), 1, - anon_sym_AMP, - ACTIONS(3547), 1, - anon_sym_DOT_DOT, - ACTIONS(3551), 1, - anon_sym_DOT, - ACTIONS(3563), 1, - anon_sym_PIPE, - ACTIONS(3565), 1, - anon_sym_CARET, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3535), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3545), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3549), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3537), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3541), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3531), 25, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_else, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [26778] = 3, + [26453] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3515), 12, + ACTIONS(3395), 12, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PLUS, @@ -114861,7 +114753,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(3517), 32, + ACTIONS(3397), 32, anon_sym_async, anon_sym_const, anon_sym_default, @@ -114894,52 +114786,52 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26831] = 18, - ACTIONS(3533), 1, - anon_sym_LBRACK, - ACTIONS(3539), 1, - anon_sym_as, - ACTIONS(3543), 1, - anon_sym_AMP, + [26506] = 18, ACTIONS(3547), 1, + anon_sym_LBRACK, + ACTIONS(3553), 1, anon_sym_DOT_DOT, - ACTIONS(3551), 1, + ACTIONS(3555), 1, anon_sym_DOT, - ACTIONS(3559), 1, + ACTIONS(3565), 1, + anon_sym_as, + ACTIONS(3571), 1, + anon_sym_AMP, + ACTIONS(3573), 1, anon_sym_AMP_AMP, - ACTIONS(3561), 1, + ACTIONS(3575), 1, anon_sym_PIPE_PIPE, - ACTIONS(3563), 1, + ACTIONS(3577), 1, anon_sym_PIPE, - ACTIONS(3565), 1, + ACTIONS(3579), 1, anon_sym_CARET, - ACTIONS(3605), 1, + ACTIONS(3611), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3535), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3545), 2, + ACTIONS(3551), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3549), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3557), 2, + ACTIONS(3559), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3569), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3537), 3, + ACTIONS(3583), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3561), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3567), 4, + ACTIONS(3581), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3603), 19, + ACTIONS(3609), 19, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -114959,39 +114851,165 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [26914] = 11, - ACTIONS(3533), 1, + [26589] = 14, + ACTIONS(3547), 1, anon_sym_LBRACK, - ACTIONS(3539), 1, + ACTIONS(3553), 1, + anon_sym_DOT_DOT, + ACTIONS(3555), 1, + anon_sym_DOT, + ACTIONS(3565), 1, anon_sym_as, + ACTIONS(3571), 1, + anon_sym_AMP, + ACTIONS(3577), 1, + anon_sym_PIPE, + ACTIONS(3579), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3551), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3559), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3583), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3561), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3591), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3589), 25, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_else, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [26664] = 18, ACTIONS(3547), 1, + anon_sym_LBRACK, + ACTIONS(3553), 1, anon_sym_DOT_DOT, - ACTIONS(3551), 1, + ACTIONS(3555), 1, anon_sym_DOT, + ACTIONS(3565), 1, + anon_sym_as, + ACTIONS(3571), 1, + anon_sym_AMP, + ACTIONS(3573), 1, + anon_sym_AMP_AMP, + ACTIONS(3575), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3577), 1, + anon_sym_PIPE, + ACTIONS(3579), 1, + anon_sym_CARET, + ACTIONS(3615), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3535), 2, + ACTIONS(3551), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3559), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3545), 2, + ACTIONS(3569), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3583), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3561), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3581), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3613), 19, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_else, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [26747] = 11, + ACTIONS(3547), 1, + anon_sym_LBRACK, + ACTIONS(3553), 1, + anon_sym_DOT_DOT, + ACTIONS(3555), 1, + anon_sym_DOT, + ACTIONS(3565), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3551), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3549), 2, + ACTIONS(3559), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3583), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3537), 3, + ACTIONS(3561), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3541), 6, + ACTIONS(3591), 6, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_CARET, - ACTIONS(3531), 25, + ACTIONS(3589), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -115017,94 +115035,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [26983] = 22, - ACTIONS(75), 1, - anon_sym_LT, - ACTIONS(842), 1, - sym__primitive_identifier, - ACTIONS(876), 1, - anon_sym_extern, - ACTIONS(1058), 1, - anon_sym_COLON_COLON, - ACTIONS(3029), 1, - anon_sym_union, - ACTIONS(3035), 1, - sym_metavariable, - ACTIONS(3186), 1, - anon_sym_default, - ACTIONS(3607), 1, - anon_sym_fn, - STATE(1913), 1, - sym_identifier, - STATE(2057), 1, - sym_scoped_type_identifier, - STATE(2644), 1, - sym_generic_type_with_turbofish, - STATE(2645), 1, - sym_scoped_identifier, - STATE(2646), 1, - sym_bracketed_type, - STATE(2653), 1, - sym_primitive_type, - STATE(2655), 1, - sym_generic_type, - STATE(2769), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(902), 2, - sym__raw_identifier, - sym_grit_metavariable, - STATE(1694), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(856), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1064), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(95), 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, - [27073] = 7, - ACTIONS(3073), 1, - anon_sym_LBRACE, - ACTIONS(3075), 1, - anon_sym_COLON_COLON, - ACTIONS(3609), 1, - anon_sym_BANG, - STATE(1233), 1, - sym_field_initializer_list, + [26816] = 7, + ACTIONS(3547), 1, + anon_sym_LBRACK, + ACTIONS(3553), 1, + anon_sym_DOT_DOT, + ACTIONS(3555), 1, + anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(727), 15, + ACTIONS(3551), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3619), 13, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, @@ -115112,16 +115062,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(725), 24, + ACTIONS(3617), 26, anon_sym_SEMI, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_else, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -115138,61 +115089,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [27133] = 22, - ACTIONS(75), 1, - anon_sym_LT, - ACTIONS(842), 1, - sym__primitive_identifier, - ACTIONS(876), 1, - anon_sym_extern, - ACTIONS(1058), 1, - anon_sym_COLON_COLON, - ACTIONS(3029), 1, - anon_sym_union, - ACTIONS(3035), 1, - sym_metavariable, - ACTIONS(3186), 1, - anon_sym_default, - ACTIONS(3611), 1, - anon_sym_fn, - STATE(1888), 1, - sym_identifier, - STATE(2120), 1, - sym_scoped_type_identifier, - STATE(2624), 1, - sym_function_modifiers, - STATE(2644), 1, - sym_generic_type_with_turbofish, - STATE(2645), 1, - sym_scoped_identifier, - STATE(2646), 1, - sym_bracketed_type, - STATE(2653), 1, - sym_primitive_type, - STATE(2655), 1, - sym_generic_type, + [26877] = 9, + ACTIONS(3547), 1, + anon_sym_LBRACK, + ACTIONS(3553), 1, + anon_sym_DOT_DOT, + ACTIONS(3555), 1, + anon_sym_DOT, + ACTIONS(3565), 1, + anon_sym_as, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(902), 2, - sym__raw_identifier, - sym_grit_metavariable, - STATE(1694), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(856), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1064), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(95), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, + ACTIONS(3551), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3561), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3591), 10, + anon_sym_PLUS, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3589), 25, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_else, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [26942] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1038), 12, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + sym__raw_identifier, + sym_metavariable, + sym_grit_metavariable, + ACTIONS(1036), 32, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, + sym_mutable_specifier, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, anon_sym_u32, anon_sym_i32, anon_sym_u64, @@ -115206,53 +115191,368 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [27223] = 22, + sym__primitive_identifier, + sym_self, + sym_super, + sym_crate, + [26995] = 12, + ACTIONS(3547), 1, + anon_sym_LBRACK, + ACTIONS(3553), 1, + anon_sym_DOT_DOT, + ACTIONS(3555), 1, + anon_sym_DOT, + ACTIONS(3565), 1, + anon_sym_as, + ACTIONS(3571), 1, + anon_sym_AMP, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3551), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3559), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3583), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3561), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3591), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(3589), 25, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_else, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [27066] = 16, + ACTIONS(3547), 1, + anon_sym_LBRACK, + ACTIONS(3553), 1, + anon_sym_DOT_DOT, + ACTIONS(3555), 1, + anon_sym_DOT, + ACTIONS(3565), 1, + anon_sym_as, + ACTIONS(3571), 1, + anon_sym_AMP, + ACTIONS(3577), 1, + anon_sym_PIPE, + ACTIONS(3579), 1, + anon_sym_CARET, + ACTIONS(3591), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3551), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3559), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3569), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3583), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3561), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3581), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3589), 21, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_else, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [27145] = 22, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(842), 1, + ACTIONS(844), 1, sym__primitive_identifier, - ACTIONS(876), 1, + ACTIONS(878), 1, anon_sym_extern, - ACTIONS(1058), 1, + ACTIONS(1060), 1, anon_sym_COLON_COLON, - ACTIONS(3029), 1, + ACTIONS(3043), 1, anon_sym_union, - ACTIONS(3035), 1, + ACTIONS(3049), 1, sym_metavariable, - ACTIONS(3186), 1, + ACTIONS(3289), 1, anon_sym_default, - ACTIONS(3613), 1, + ACTIONS(3621), 1, anon_sym_fn, - STATE(1916), 1, + STATE(1890), 1, sym_identifier, - STATE(2047), 1, + STATE(2144), 1, sym_scoped_type_identifier, - STATE(2629), 1, + STATE(2619), 1, + sym_primitive_type, + STATE(2621), 1, + sym_scoped_identifier, + STATE(2627), 1, sym_function_modifiers, - STATE(2644), 1, + STATE(2649), 1, sym_generic_type_with_turbofish, - STATE(2645), 1, + STATE(2652), 1, + sym_bracketed_type, + STATE(2683), 1, + sym_generic_type, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(904), 2, + sym__raw_identifier, + sym_grit_metavariable, + STATE(1681), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(858), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(1066), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(95), 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, + [27235] = 7, + ACTIONS(3061), 1, + anon_sym_LBRACE, + ACTIONS(3063), 1, + anon_sym_COLON_COLON, + ACTIONS(3623), 1, + anon_sym_BANG, + STATE(1202), 1, + sym_field_initializer_list, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(725), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(723), 24, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [27295] = 22, + ACTIONS(75), 1, + anon_sym_LT, + ACTIONS(844), 1, + sym__primitive_identifier, + ACTIONS(878), 1, + anon_sym_extern, + ACTIONS(1060), 1, + anon_sym_COLON_COLON, + ACTIONS(3043), 1, + anon_sym_union, + ACTIONS(3049), 1, + sym_metavariable, + ACTIONS(3289), 1, + anon_sym_default, + ACTIONS(3625), 1, + anon_sym_fn, + STATE(1907), 1, + sym_identifier, + STATE(2108), 1, + sym_scoped_type_identifier, + STATE(2619), 1, + sym_primitive_type, + STATE(2621), 1, sym_scoped_identifier, - STATE(2646), 1, + STATE(2649), 1, + sym_generic_type_with_turbofish, + STATE(2652), 1, sym_bracketed_type, - STATE(2653), 1, + STATE(2683), 1, + sym_generic_type, + STATE(2692), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(904), 2, + sym__raw_identifier, + sym_grit_metavariable, + STATE(1681), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(858), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(1066), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(95), 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, + [27385] = 22, + ACTIONS(75), 1, + anon_sym_LT, + ACTIONS(844), 1, + sym__primitive_identifier, + ACTIONS(878), 1, + anon_sym_extern, + ACTIONS(1060), 1, + anon_sym_COLON_COLON, + ACTIONS(3043), 1, + anon_sym_union, + ACTIONS(3049), 1, + sym_metavariable, + ACTIONS(3289), 1, + anon_sym_default, + ACTIONS(3627), 1, + anon_sym_fn, + STATE(1948), 1, + sym_identifier, + STATE(1991), 1, + sym_scoped_type_identifier, + STATE(2619), 1, sym_primitive_type, - STATE(2655), 1, + STATE(2621), 1, + sym_scoped_identifier, + STATE(2628), 1, + sym_function_modifiers, + STATE(2649), 1, + sym_generic_type_with_turbofish, + STATE(2652), 1, + sym_bracketed_type, + STATE(2683), 1, sym_generic_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(902), 2, + ACTIONS(904), 2, sym__raw_identifier, sym_grit_metavariable, - STATE(1694), 2, + STATE(1681), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(856), 3, + ACTIONS(858), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(1064), 3, + ACTIONS(1066), 3, sym_self, sym_super, sym_crate, @@ -115274,11 +115574,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [27313] = 3, + [27475] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3631), 11, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + sym__raw_identifier, + sym_metavariable, + sym_grit_metavariable, + ACTIONS(3629), 31, + 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, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + 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__primitive_identifier, + sym_self, + sym_super, + sym_crate, + [27526] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3617), 11, + ACTIONS(3192), 11, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, @@ -115290,7 +115638,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(3615), 31, + ACTIONS(3190), 31, anon_sym_async, anon_sym_const, anon_sym_default, @@ -115322,47 +115670,47 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27364] = 19, + [27577] = 19, ACTIONS(7), 1, sym__primitive_identifier, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(3619), 1, + ACTIONS(3633), 1, anon_sym_LBRACE, - ACTIONS(3621), 1, + ACTIONS(3635), 1, anon_sym_RBRACE, - ACTIONS(3623), 1, + ACTIONS(3637), 1, anon_sym_STAR, - ACTIONS(3627), 1, + ACTIONS(3641), 1, anon_sym_COMMA, - ACTIONS(3629), 1, + ACTIONS(3643), 1, anon_sym_COLON_COLON, - ACTIONS(3633), 1, + ACTIONS(3647), 1, sym_metavariable, - STATE(1906), 1, + STATE(1940), 1, + sym_primitive_type, + STATE(1944), 1, sym_identifier, - STATE(1908), 1, + STATE(1956), 1, sym_scoped_identifier, - STATE(1919), 1, - sym_primitive_type, - STATE(2693), 1, - sym_bracketed_type, - STATE(2761), 1, + STATE(2648), 1, sym_generic_type_with_turbofish, + STATE(2734), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, ACTIONS(97), 2, sym__raw_identifier, sym_grit_metavariable, - ACTIONS(3625), 2, + ACTIONS(3639), 2, anon_sym_default, anon_sym_union, - ACTIONS(3631), 3, + ACTIONS(3645), 3, sym_self, sym_super, sym_crate, - STATE(2282), 5, + STATE(2290), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, @@ -115386,13 +115734,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [27447] = 4, - ACTIONS(3635), 1, + [27660] = 4, + ACTIONS(3649), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3201), 10, + ACTIONS(3199), 10, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, @@ -115403,7 +115751,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(3196), 31, + ACTIONS(3194), 31, anon_sym_async, anon_sym_const, anon_sym_default, @@ -115435,11 +115783,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27500] = 3, + [27713] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3293), 11, + ACTIONS(3269), 11, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, @@ -115451,7 +115799,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(3291), 31, + ACTIONS(3267), 31, anon_sym_async, anon_sym_const, anon_sym_default, @@ -115483,12 +115831,13 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27551] = 3, + [27764] = 4, + ACTIONS(3651), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3639), 11, - anon_sym_LPAREN, + ACTIONS(3199), 10, anon_sym_LBRACK, anon_sym_STAR, anon_sym_SQUOTE, @@ -115499,7 +115848,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(3637), 31, + ACTIONS(3194), 31, anon_sym_async, anon_sym_const, anon_sym_default, @@ -115531,11 +115880,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27602] = 3, + [27817] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3643), 11, + ACTIONS(3655), 11, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, @@ -115547,7 +115896,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(3641), 31, + ACTIONS(3653), 31, anon_sym_async, anon_sym_const, anon_sym_default, @@ -115579,13 +115928,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27653] = 4, - ACTIONS(3645), 1, - anon_sym_LPAREN, + [27868] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3201), 10, + ACTIONS(3659), 11, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, anon_sym_SQUOTE, @@ -115596,7 +115944,7 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(3196), 31, + ACTIONS(3657), 31, anon_sym_async, anon_sym_const, anon_sym_default, @@ -115628,33 +115976,51 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27706] = 3, + [27919] = 18, + ACTIONS(7), 1, + sym__primitive_identifier, + ACTIONS(75), 1, + anon_sym_LT, + ACTIONS(3633), 1, + anon_sym_LBRACE, + ACTIONS(3637), 1, + anon_sym_STAR, + ACTIONS(3643), 1, + anon_sym_COLON_COLON, + ACTIONS(3647), 1, + sym_metavariable, + ACTIONS(3661), 1, + anon_sym_RBRACE, + STATE(1940), 1, + sym_primitive_type, + STATE(1944), 1, + sym_identifier, + STATE(1956), 1, + sym_scoped_identifier, + STATE(2648), 1, + sym_generic_type_with_turbofish, + STATE(2734), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3154), 11, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, + ACTIONS(97), 2, sym__raw_identifier, - sym_metavariable, sym_grit_metavariable, - ACTIONS(3152), 31, - anon_sym_async, - anon_sym_const, + ACTIONS(3639), 2, anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, + ACTIONS(3645), 3, + sym_self, + sym_super, + sym_crate, + STATE(2537), 5, + sym__use_clause, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(95), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115672,21 +116038,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - sym__primitive_identifier, - sym_self, - sym_super, - sym_crate, - [27757] = 6, - ACTIONS(3001), 1, + [27999] = 6, + ACTIONS(3003), 1, anon_sym_BANG, - ACTIONS(3647), 1, + ACTIONS(3663), 1, anon_sym_COLON_COLON, - STATE(1233), 1, + STATE(1202), 1, sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(727), 15, + ACTIONS(725), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -115702,7 +116064,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(725), 23, + ACTIONS(723), 23, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, @@ -115726,45 +116088,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [27813] = 18, + [28055] = 18, ACTIONS(7), 1, sym__primitive_identifier, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(3619), 1, + ACTIONS(3633), 1, anon_sym_LBRACE, - ACTIONS(3623), 1, + ACTIONS(3637), 1, anon_sym_STAR, - ACTIONS(3629), 1, + ACTIONS(3643), 1, anon_sym_COLON_COLON, - ACTIONS(3633), 1, + ACTIONS(3647), 1, sym_metavariable, - ACTIONS(3649), 1, + ACTIONS(3665), 1, anon_sym_RBRACE, - STATE(1906), 1, + STATE(1940), 1, + sym_primitive_type, + STATE(1944), 1, sym_identifier, - STATE(1908), 1, + STATE(1956), 1, sym_scoped_identifier, - STATE(1919), 1, - sym_primitive_type, - STATE(2693), 1, - sym_bracketed_type, - STATE(2761), 1, + STATE(2648), 1, sym_generic_type_with_turbofish, + STATE(2734), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, ACTIONS(97), 2, sym__raw_identifier, sym_grit_metavariable, - ACTIONS(3625), 2, + ACTIONS(3639), 2, anon_sym_default, anon_sym_union, - ACTIONS(3631), 3, + ACTIONS(3645), 3, sym_self, sym_super, sym_crate, - STATE(2465), 5, + STATE(2537), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, @@ -115788,15 +116150,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [27893] = 5, - ACTIONS(3217), 1, + [28135] = 5, + ACTIONS(3291), 1, anon_sym_COLON_COLON, - ACTIONS(3609), 1, + ACTIONS(3623), 1, anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(727), 15, + ACTIONS(725), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -115812,7 +116174,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(725), 24, + ACTIONS(723), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RBRACE, @@ -115837,45 +116199,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [27947] = 18, + [28189] = 17, ACTIONS(7), 1, sym__primitive_identifier, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(3619), 1, + ACTIONS(3633), 1, anon_sym_LBRACE, - ACTIONS(3623), 1, + ACTIONS(3637), 1, anon_sym_STAR, - ACTIONS(3629), 1, + ACTIONS(3643), 1, anon_sym_COLON_COLON, - ACTIONS(3633), 1, + ACTIONS(3647), 1, sym_metavariable, - ACTIONS(3651), 1, - anon_sym_RBRACE, - STATE(1906), 1, + STATE(1940), 1, + sym_primitive_type, + STATE(1944), 1, sym_identifier, - STATE(1908), 1, + STATE(1956), 1, sym_scoped_identifier, - STATE(1919), 1, - sym_primitive_type, - STATE(2693), 1, - sym_bracketed_type, - STATE(2761), 1, + STATE(2648), 1, sym_generic_type_with_turbofish, + STATE(2734), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, ACTIONS(97), 2, sym__raw_identifier, sym_grit_metavariable, - ACTIONS(3625), 2, + ACTIONS(3639), 2, anon_sym_default, anon_sym_union, - ACTIONS(3631), 3, + ACTIONS(3645), 3, sym_self, sym_super, sym_crate, - STATE(2465), 5, + STATE(2718), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, @@ -115899,91 +116259,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [28027] = 5, - ACTIONS(1038), 1, - anon_sym_BANG, - ACTIONS(1040), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(768), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + [28266] = 17, + ACTIONS(7), 1, + sym__primitive_identifier, + ACTIONS(75), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(775), 23, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [28080] = 17, - ACTIONS(7), 1, - sym__primitive_identifier, - ACTIONS(75), 1, - anon_sym_LT, - ACTIONS(3619), 1, + ACTIONS(3633), 1, anon_sym_LBRACE, - ACTIONS(3623), 1, + ACTIONS(3637), 1, anon_sym_STAR, - ACTIONS(3629), 1, + ACTIONS(3643), 1, anon_sym_COLON_COLON, - ACTIONS(3633), 1, + ACTIONS(3647), 1, sym_metavariable, - STATE(1906), 1, + STATE(1940), 1, + sym_primitive_type, + STATE(1944), 1, sym_identifier, - STATE(1908), 1, + STATE(1956), 1, sym_scoped_identifier, - STATE(1919), 1, - sym_primitive_type, - STATE(2693), 1, - sym_bracketed_type, - STATE(2761), 1, + STATE(2648), 1, sym_generic_type_with_turbofish, + STATE(2734), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, ACTIONS(97), 2, sym__raw_identifier, sym_grit_metavariable, - ACTIONS(3625), 2, + ACTIONS(3639), 2, anon_sym_default, anon_sym_union, - ACTIONS(3631), 3, + ACTIONS(3645), 3, sym_self, sym_super, sym_crate, - STATE(2708), 5, + STATE(2537), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, @@ -116007,17 +116319,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [28157] = 5, - ACTIONS(3001), 1, - anon_sym_BANG, - ACTIONS(3653), 1, - anon_sym_COLON_COLON, + [28343] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(727), 15, + ACTIONS(3033), 16, anon_sym_PLUS, anon_sym_STAR, + anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -116031,12 +116340,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(725), 23, + ACTIONS(3035), 24, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_as, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -116055,14 +116365,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [28210] = 3, + [28392] = 23, + ACTIONS(3547), 1, + anon_sym_LBRACK, + ACTIONS(3555), 1, + anon_sym_DOT, + ACTIONS(3563), 1, + anon_sym_QMARK, + ACTIONS(3565), 1, + anon_sym_as, + ACTIONS(3567), 1, + anon_sym_EQ, + ACTIONS(3571), 1, + anon_sym_AMP, + ACTIONS(3573), 1, + anon_sym_AMP_AMP, + ACTIONS(3575), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3577), 1, + anon_sym_PIPE, + ACTIONS(3579), 1, + anon_sym_CARET, + ACTIONS(3667), 1, + anon_sym_SEMI, + ACTIONS(3669), 1, + anon_sym_RBRACK, + ACTIONS(3671), 1, + anon_sym_COMMA, + ACTIONS(3675), 1, + anon_sym_DOT_DOT, + STATE(2331), 1, + aux_sym_array_expression_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3019), 16, + ACTIONS(3559), 2, anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3569), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3583), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3673), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3561), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3581), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3585), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [28481] = 5, + ACTIONS(1036), 1, anon_sym_BANG, + ACTIONS(1038), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(764), 15, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -116076,13 +116455,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3021), 24, + ACTIONS(771), 23, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_as, - anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -116101,11 +116479,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [28259] = 3, + [28534] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3081), 16, + ACTIONS(3021), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_BANG, @@ -116122,7 +116500,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3083), 24, + ACTIONS(3023), 24, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, @@ -116147,43 +116525,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [28308] = 17, + [28583] = 17, ACTIONS(7), 1, sym__primitive_identifier, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(3619), 1, + ACTIONS(3633), 1, anon_sym_LBRACE, - ACTIONS(3623), 1, + ACTIONS(3637), 1, anon_sym_STAR, - ACTIONS(3629), 1, + ACTIONS(3643), 1, anon_sym_COLON_COLON, - ACTIONS(3633), 1, + ACTIONS(3647), 1, sym_metavariable, - STATE(1906), 1, + STATE(1940), 1, + sym_primitive_type, + STATE(1944), 1, sym_identifier, - STATE(1908), 1, + STATE(1956), 1, sym_scoped_identifier, - STATE(1919), 1, - sym_primitive_type, - STATE(2693), 1, - sym_bracketed_type, - STATE(2761), 1, + STATE(2648), 1, sym_generic_type_with_turbofish, + STATE(2734), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, ACTIONS(97), 2, sym__raw_identifier, sym_grit_metavariable, - ACTIONS(3625), 2, + ACTIONS(3639), 2, anon_sym_default, anon_sym_union, - ACTIONS(3631), 3, + ACTIONS(3645), 3, sym_self, sym_super, sym_crate, - STATE(2465), 5, + STATE(2650), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, @@ -116207,14 +116585,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [28385] = 3, + [28660] = 5, + ACTIONS(3271), 1, + anon_sym_BANG, + ACTIONS(3677), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3067), 16, + ACTIONS(3097), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -116228,13 +116609,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3069), 24, + ACTIONS(3095), 23, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_as, - anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -116253,11 +116633,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [28434] = 3, + [28713] = 17, + ACTIONS(7), 1, + sym__primitive_identifier, + ACTIONS(75), 1, + anon_sym_LT, + ACTIONS(3633), 1, + anon_sym_LBRACE, + ACTIONS(3637), 1, + anon_sym_STAR, + ACTIONS(3643), 1, + anon_sym_COLON_COLON, + ACTIONS(3647), 1, + sym_metavariable, + STATE(1940), 1, + sym_primitive_type, + STATE(1944), 1, + sym_identifier, + STATE(1956), 1, + sym_scoped_identifier, + STATE(2648), 1, + sym_generic_type_with_turbofish, + STATE(2734), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3059), 16, + ACTIONS(97), 2, + sym__raw_identifier, + sym_grit_metavariable, + ACTIONS(3639), 2, + anon_sym_default, + anon_sym_union, + ACTIONS(3645), 3, + sym_self, + sym_super, + sym_crate, + STATE(2651), 5, + sym__use_clause, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(95), 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, + [28790] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3069), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_BANG, @@ -116274,7 +116714,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3061), 24, + ACTIONS(3071), 24, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, @@ -116299,62 +116739,156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [28483] = 23, - ACTIONS(531), 1, - anon_sym_RBRACK, - ACTIONS(3533), 1, + [28839] = 5, + ACTIONS(3003), 1, + anon_sym_BANG, + ACTIONS(3679), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(725), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(723), 23, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(3539), 1, + anon_sym_QMARK, anon_sym_as, - ACTIONS(3543), 1, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [28892] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3057), 16, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_AMP, - ACTIONS(3551), 1, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3559), 1, + ACTIONS(3059), 24, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, - ACTIONS(3561), 1, anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [28941] = 23, + ACTIONS(3547), 1, + anon_sym_LBRACK, + ACTIONS(3555), 1, + anon_sym_DOT, ACTIONS(3563), 1, - anon_sym_PIPE, + anon_sym_QMARK, ACTIONS(3565), 1, - anon_sym_CARET, + anon_sym_as, + ACTIONS(3567), 1, + anon_sym_EQ, ACTIONS(3571), 1, - anon_sym_QMARK, + anon_sym_AMP, ACTIONS(3573), 1, - anon_sym_EQ, - ACTIONS(3655), 1, + anon_sym_AMP_AMP, + ACTIONS(3575), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3577), 1, + anon_sym_PIPE, + ACTIONS(3579), 1, + anon_sym_CARET, + ACTIONS(3675), 1, + anon_sym_DOT_DOT, + ACTIONS(3681), 1, anon_sym_SEMI, - ACTIONS(3657), 1, + ACTIONS(3683), 1, + anon_sym_RBRACK, + ACTIONS(3685), 1, anon_sym_COMMA, - ACTIONS(3661), 1, - anon_sym_DOT_DOT, - STATE(2185), 1, + STATE(2272), 1, aux_sym_array_expression_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3535), 2, + ACTIONS(3559), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3549), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3557), 2, + ACTIONS(3569), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3659), 2, + ACTIONS(3583), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3673), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3537), 3, + ACTIONS(3561), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3567), 4, + ACTIONS(3581), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3575), 10, + ACTIONS(3585), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -116365,163 +116899,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [28572] = 17, + [29030] = 17, ACTIONS(7), 1, sym__primitive_identifier, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(3619), 1, - anon_sym_LBRACE, - ACTIONS(3623), 1, - anon_sym_STAR, - ACTIONS(3629), 1, - anon_sym_COLON_COLON, ACTIONS(3633), 1, - sym_metavariable, - STATE(1906), 1, - sym_identifier, - STATE(1908), 1, - sym_scoped_identifier, - STATE(1919), 1, - sym_primitive_type, - STATE(2693), 1, - sym_bracketed_type, - STATE(2761), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(97), 2, - sym__raw_identifier, - sym_grit_metavariable, - ACTIONS(3625), 2, - anon_sym_default, - anon_sym_union, - ACTIONS(3631), 3, - sym_self, - sym_super, - sym_crate, - STATE(2758), 5, - sym__use_clause, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(95), 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, - [28649] = 17, - ACTIONS(7), 1, - sym__primitive_identifier, - ACTIONS(75), 1, - anon_sym_LT, - ACTIONS(3619), 1, anon_sym_LBRACE, - ACTIONS(3623), 1, + ACTIONS(3637), 1, anon_sym_STAR, - ACTIONS(3629), 1, + ACTIONS(3643), 1, anon_sym_COLON_COLON, - ACTIONS(3633), 1, + ACTIONS(3647), 1, sym_metavariable, - STATE(1906), 1, - sym_identifier, - STATE(1908), 1, - sym_scoped_identifier, - STATE(1919), 1, + STATE(1940), 1, sym_primitive_type, - STATE(2693), 1, - sym_bracketed_type, - STATE(2761), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(97), 2, - sym__raw_identifier, - sym_grit_metavariable, - ACTIONS(3625), 2, - anon_sym_default, - anon_sym_union, - ACTIONS(3631), 3, - sym_self, - sym_super, - sym_crate, - STATE(2733), 5, - sym__use_clause, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(95), 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, - [28726] = 17, - ACTIONS(7), 1, - sym__primitive_identifier, - ACTIONS(75), 1, - anon_sym_LT, - ACTIONS(3619), 1, - anon_sym_LBRACE, - ACTIONS(3623), 1, - anon_sym_STAR, - ACTIONS(3629), 1, - anon_sym_COLON_COLON, - ACTIONS(3633), 1, - sym_metavariable, - STATE(1906), 1, + STATE(1944), 1, sym_identifier, - STATE(1908), 1, + STATE(1956), 1, sym_scoped_identifier, - STATE(1919), 1, - sym_primitive_type, - STATE(2693), 1, - sym_bracketed_type, - STATE(2761), 1, + STATE(2648), 1, sym_generic_type_with_turbofish, + STATE(2734), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, ACTIONS(97), 2, sym__raw_identifier, sym_grit_metavariable, - ACTIONS(3625), 2, + ACTIONS(3639), 2, anon_sym_default, anon_sym_union, - ACTIONS(3631), 3, + ACTIONS(3645), 3, sym_self, sym_super, sym_crate, - STATE(2750), 5, + STATE(2676), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, @@ -116545,62 +116959,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [28803] = 23, - ACTIONS(707), 1, - anon_sym_RBRACK, - ACTIONS(3533), 1, + [29107] = 22, + ACTIONS(545), 1, + anon_sym_RPAREN, + ACTIONS(3547), 1, anon_sym_LBRACK, - ACTIONS(3539), 1, + ACTIONS(3555), 1, + anon_sym_DOT, + ACTIONS(3563), 1, + anon_sym_QMARK, + ACTIONS(3565), 1, anon_sym_as, - ACTIONS(3543), 1, + ACTIONS(3567), 1, + anon_sym_EQ, + ACTIONS(3571), 1, anon_sym_AMP, - ACTIONS(3551), 1, - anon_sym_DOT, - ACTIONS(3559), 1, + ACTIONS(3573), 1, anon_sym_AMP_AMP, - ACTIONS(3561), 1, + ACTIONS(3575), 1, anon_sym_PIPE_PIPE, - ACTIONS(3563), 1, + ACTIONS(3577), 1, anon_sym_PIPE, - ACTIONS(3565), 1, + ACTIONS(3579), 1, anon_sym_CARET, - ACTIONS(3571), 1, - anon_sym_QMARK, - ACTIONS(3573), 1, - anon_sym_EQ, - ACTIONS(3661), 1, + ACTIONS(3675), 1, anon_sym_DOT_DOT, - ACTIONS(3663), 1, - anon_sym_SEMI, - ACTIONS(3665), 1, + ACTIONS(3687), 1, anon_sym_COMMA, - STATE(2286), 1, - aux_sym_array_expression_repeat1, + STATE(2319), 1, + aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3535), 2, + ACTIONS(3559), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3549), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3557), 2, + ACTIONS(3569), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3659), 2, + ACTIONS(3583), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3673), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3537), 3, + ACTIONS(3561), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3567), 4, + ACTIONS(3581), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3575), 10, + ACTIONS(3585), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -116611,15 +117023,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [28892] = 5, - ACTIONS(3271), 1, - anon_sym_BANG, - ACTIONS(3667), 1, + [29193] = 4, + ACTIONS(3677), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3099), 15, + ACTIONS(3097), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -116635,7 +117045,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3097), 23, + ACTIONS(3095), 23, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, @@ -116659,13 +117069,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [28945] = 4, - ACTIONS(3174), 1, + [29243] = 4, + ACTIONS(3287), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3176), 15, + ACTIONS(3140), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -116681,7 +117091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3172), 23, + ACTIONS(3136), 23, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, @@ -116705,60 +117115,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [28995] = 22, - ACTIONS(3533), 1, - anon_sym_LBRACK, - ACTIONS(3539), 1, - anon_sym_as, - ACTIONS(3543), 1, + [29293] = 4, + ACTIONS(3689), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(725), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_AMP, - ACTIONS(3551), 1, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3559), 1, + ACTIONS(723), 23, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, - ACTIONS(3561), 1, anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [29343] = 22, + ACTIONS(3547), 1, + anon_sym_LBRACK, + ACTIONS(3555), 1, + anon_sym_DOT, ACTIONS(3563), 1, - anon_sym_PIPE, + anon_sym_QMARK, ACTIONS(3565), 1, - anon_sym_CARET, + anon_sym_as, + ACTIONS(3567), 1, + anon_sym_EQ, ACTIONS(3571), 1, - anon_sym_QMARK, + anon_sym_AMP, ACTIONS(3573), 1, - anon_sym_EQ, - ACTIONS(3661), 1, + anon_sym_AMP_AMP, + ACTIONS(3575), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3577), 1, + anon_sym_PIPE, + ACTIONS(3579), 1, + anon_sym_CARET, + ACTIONS(3675), 1, anon_sym_DOT_DOT, - ACTIONS(3669), 1, + ACTIONS(3691), 1, anon_sym_RPAREN, - ACTIONS(3671), 1, + ACTIONS(3693), 1, anon_sym_COMMA, - STATE(2232), 1, + STATE(2182), 1, aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3535), 2, + ACTIONS(3559), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3549), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3557), 2, + ACTIONS(3569), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3659), 2, + ACTIONS(3583), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3673), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3537), 3, + ACTIONS(3561), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3567), 4, + ACTIONS(3581), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3575), 10, + ACTIONS(3585), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -116769,13 +117225,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29081] = 4, - ACTIONS(3673), 1, + [29429] = 4, + ACTIONS(3138), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(727), 15, + ACTIONS(3140), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -116791,7 +117247,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(725), 23, + ACTIONS(3136), 23, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, @@ -116815,106 +117271,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29131] = 4, - ACTIONS(3667), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3099), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(3097), 23, - anon_sym_LPAREN, - anon_sym_LBRACE, + [29479] = 21, + ACTIONS(3547), 1, anon_sym_LBRACK, + ACTIONS(3555), 1, + anon_sym_DOT, + ACTIONS(3563), 1, anon_sym_QMARK, + ACTIONS(3565), 1, anon_sym_as, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [29181] = 22, - ACTIONS(555), 1, - anon_sym_RPAREN, - ACTIONS(3533), 1, - anon_sym_LBRACK, - ACTIONS(3539), 1, - anon_sym_as, - ACTIONS(3543), 1, + ACTIONS(3567), 1, + anon_sym_EQ, + ACTIONS(3571), 1, anon_sym_AMP, - ACTIONS(3551), 1, - anon_sym_DOT, - ACTIONS(3559), 1, + ACTIONS(3573), 1, anon_sym_AMP_AMP, - ACTIONS(3561), 1, + ACTIONS(3575), 1, anon_sym_PIPE_PIPE, - ACTIONS(3563), 1, + ACTIONS(3577), 1, anon_sym_PIPE, - ACTIONS(3565), 1, + ACTIONS(3579), 1, anon_sym_CARET, - ACTIONS(3571), 1, - anon_sym_QMARK, - ACTIONS(3573), 1, - anon_sym_EQ, - ACTIONS(3661), 1, - anon_sym_DOT_DOT, ACTIONS(3675), 1, - anon_sym_COMMA, - STATE(2301), 1, - aux_sym_arguments_repeat1, + anon_sym_DOT_DOT, + ACTIONS(3695), 1, + anon_sym_SEMI, + ACTIONS(3697), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3535), 2, + ACTIONS(3559), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3549), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3557), 2, + ACTIONS(3569), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3659), 2, + ACTIONS(3583), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3673), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3537), 3, + ACTIONS(3561), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3567), 4, + ACTIONS(3581), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3575), 10, + ACTIONS(3585), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -116925,36 +117333,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29267] = 4, - ACTIONS(3188), 1, - anon_sym_COLON_COLON, + [29562] = 9, + ACTIONS(3547), 1, + anon_sym_LBRACK, + ACTIONS(3555), 1, + anon_sym_DOT, + ACTIONS(3565), 1, + anon_sym_as, + ACTIONS(3703), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3176), 15, - anon_sym_PLUS, + ACTIONS(3701), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3699), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3591), 10, + anon_sym_PLUS, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(3172), 23, + ACTIONS(3589), 19, anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -116971,58 +117383,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29317] = 21, - ACTIONS(111), 1, - anon_sym_RBRACE, - ACTIONS(3533), 1, + [29621] = 21, + ACTIONS(3547), 1, anon_sym_LBRACK, - ACTIONS(3539), 1, + ACTIONS(3555), 1, + anon_sym_DOT, + ACTIONS(3563), 1, + anon_sym_QMARK, + ACTIONS(3565), 1, anon_sym_as, - ACTIONS(3543), 1, + ACTIONS(3567), 1, + anon_sym_EQ, + ACTIONS(3571), 1, anon_sym_AMP, - ACTIONS(3551), 1, - anon_sym_DOT, - ACTIONS(3559), 1, + ACTIONS(3573), 1, anon_sym_AMP_AMP, - ACTIONS(3561), 1, + ACTIONS(3575), 1, anon_sym_PIPE_PIPE, - ACTIONS(3563), 1, + ACTIONS(3577), 1, anon_sym_PIPE, - ACTIONS(3565), 1, + ACTIONS(3579), 1, anon_sym_CARET, - ACTIONS(3571), 1, - anon_sym_QMARK, - ACTIONS(3573), 1, - anon_sym_EQ, - ACTIONS(3661), 1, + ACTIONS(3675), 1, anon_sym_DOT_DOT, - ACTIONS(3677), 1, + ACTIONS(3705), 1, anon_sym_SEMI, + ACTIONS(3707), 1, + anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3535), 2, + ACTIONS(3559), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3549), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3557), 2, + ACTIONS(3569), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3659), 2, + ACTIONS(3583), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3673), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3537), 3, + ACTIONS(3561), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3567), 4, + ACTIONS(3581), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3575), 10, + ACTIONS(3585), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -117033,107 +117445,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29400] = 8, - ACTIONS(3533), 1, + [29704] = 21, + ACTIONS(3547), 1, anon_sym_LBRACK, - ACTIONS(3539), 1, - anon_sym_as, - ACTIONS(3551), 1, + ACTIONS(3555), 1, anon_sym_DOT, - ACTIONS(3681), 1, - anon_sym_DOT_DOT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3679), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3541), 13, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3531), 19, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(3563), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [29457] = 21, - ACTIONS(3533), 1, - anon_sym_LBRACK, - ACTIONS(3539), 1, + ACTIONS(3565), 1, anon_sym_as, - ACTIONS(3543), 1, + ACTIONS(3567), 1, + anon_sym_EQ, + ACTIONS(3571), 1, anon_sym_AMP, - ACTIONS(3551), 1, - anon_sym_DOT, - ACTIONS(3559), 1, + ACTIONS(3573), 1, anon_sym_AMP_AMP, - ACTIONS(3561), 1, + ACTIONS(3575), 1, anon_sym_PIPE_PIPE, - ACTIONS(3563), 1, + ACTIONS(3577), 1, anon_sym_PIPE, - ACTIONS(3565), 1, + ACTIONS(3579), 1, anon_sym_CARET, - ACTIONS(3571), 1, - anon_sym_QMARK, - ACTIONS(3573), 1, - anon_sym_EQ, - ACTIONS(3661), 1, + ACTIONS(3675), 1, anon_sym_DOT_DOT, - ACTIONS(3677), 1, + ACTIONS(3695), 1, anon_sym_SEMI, - ACTIONS(3683), 1, + ACTIONS(3709), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3535), 2, + ACTIONS(3559), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3549), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3557), 2, + ACTIONS(3569), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3659), 2, + ACTIONS(3583), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3673), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3537), 3, + ACTIONS(3561), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3567), 4, + ACTIONS(3581), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3575), 10, + ACTIONS(3585), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -117144,57 +117507,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29540] = 20, - ACTIONS(3533), 1, + [29787] = 20, + ACTIONS(3547), 1, anon_sym_LBRACK, - ACTIONS(3539), 1, + ACTIONS(3555), 1, + anon_sym_DOT, + ACTIONS(3563), 1, + anon_sym_QMARK, + ACTIONS(3565), 1, anon_sym_as, - ACTIONS(3543), 1, + ACTIONS(3567), 1, + anon_sym_EQ, + ACTIONS(3571), 1, anon_sym_AMP, - ACTIONS(3551), 1, - anon_sym_DOT, - ACTIONS(3559), 1, + ACTIONS(3573), 1, anon_sym_AMP_AMP, - ACTIONS(3561), 1, + ACTIONS(3575), 1, anon_sym_PIPE_PIPE, - ACTIONS(3563), 1, + ACTIONS(3577), 1, anon_sym_PIPE, - ACTIONS(3565), 1, + ACTIONS(3579), 1, anon_sym_CARET, - ACTIONS(3571), 1, - anon_sym_QMARK, - ACTIONS(3573), 1, - anon_sym_EQ, - ACTIONS(3661), 1, + ACTIONS(3675), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3535), 2, + ACTIONS(3559), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3549), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3557), 2, + ACTIONS(3569), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3659), 2, + ACTIONS(3583), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3673), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3685), 2, + ACTIONS(3711), 2, anon_sym_RBRACE, anon_sym_COMMA, - ACTIONS(3537), 3, + ACTIONS(3561), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3567), 4, + ACTIONS(3581), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3575), 10, + ACTIONS(3585), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -117205,57 +117568,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29621] = 20, - ACTIONS(3533), 1, + [29868] = 21, + ACTIONS(447), 1, + anon_sym_LBRACE, + ACTIONS(3547), 1, anon_sym_LBRACK, - ACTIONS(3539), 1, + ACTIONS(3555), 1, + anon_sym_DOT, + ACTIONS(3563), 1, + anon_sym_QMARK, + ACTIONS(3565), 1, anon_sym_as, - ACTIONS(3543), 1, + ACTIONS(3715), 1, + anon_sym_EQ, + ACTIONS(3719), 1, anon_sym_AMP, - ACTIONS(3551), 1, - anon_sym_DOT, - ACTIONS(3559), 1, + ACTIONS(3723), 1, + anon_sym_DOT_DOT, + ACTIONS(3725), 1, anon_sym_AMP_AMP, - ACTIONS(3561), 1, + ACTIONS(3727), 1, anon_sym_PIPE_PIPE, - ACTIONS(3563), 1, + ACTIONS(3729), 1, anon_sym_PIPE, - ACTIONS(3565), 1, + ACTIONS(3731), 1, anon_sym_CARET, - ACTIONS(3571), 1, - anon_sym_QMARK, - ACTIONS(3573), 1, - anon_sym_EQ, - ACTIONS(3661), 1, - anon_sym_DOT_DOT, + STATE(1186), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3535), 2, + ACTIONS(3713), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3549), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3557), 2, + ACTIONS(3717), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3659), 2, + ACTIONS(3721), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3687), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(3537), 3, + ACTIONS(3735), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3699), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3567), 4, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3575), 10, + ACTIONS(3737), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -117266,57 +117630,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29702] = 20, - ACTIONS(3533), 1, + [29951] = 21, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(3547), 1, anon_sym_LBRACK, - ACTIONS(3539), 1, + ACTIONS(3555), 1, + anon_sym_DOT, + ACTIONS(3563), 1, + anon_sym_QMARK, + ACTIONS(3565), 1, anon_sym_as, - ACTIONS(3543), 1, + ACTIONS(3715), 1, + anon_sym_EQ, + ACTIONS(3719), 1, anon_sym_AMP, - ACTIONS(3551), 1, - anon_sym_DOT, - ACTIONS(3559), 1, + ACTIONS(3723), 1, + anon_sym_DOT_DOT, + ACTIONS(3725), 1, anon_sym_AMP_AMP, - ACTIONS(3561), 1, + ACTIONS(3727), 1, anon_sym_PIPE_PIPE, - ACTIONS(3563), 1, + ACTIONS(3729), 1, anon_sym_PIPE, - ACTIONS(3565), 1, + ACTIONS(3731), 1, anon_sym_CARET, - ACTIONS(3571), 1, - anon_sym_QMARK, - ACTIONS(3573), 1, - anon_sym_EQ, - ACTIONS(3661), 1, - anon_sym_DOT_DOT, + STATE(180), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3535), 2, + ACTIONS(3713), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3549), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3557), 2, + ACTIONS(3717), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3659), 2, + ACTIONS(3721), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3689), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3537), 3, + ACTIONS(3735), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3699), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3567), 4, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3575), 10, + ACTIONS(3737), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -117327,58 +117692,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29783] = 21, - ACTIONS(3533), 1, + [30034] = 20, + ACTIONS(3547), 1, anon_sym_LBRACK, - ACTIONS(3539), 1, + ACTIONS(3555), 1, + anon_sym_DOT, + ACTIONS(3563), 1, + anon_sym_QMARK, + ACTIONS(3565), 1, anon_sym_as, - ACTIONS(3543), 1, + ACTIONS(3567), 1, + anon_sym_EQ, + ACTIONS(3571), 1, anon_sym_AMP, - ACTIONS(3551), 1, - anon_sym_DOT, - ACTIONS(3559), 1, + ACTIONS(3573), 1, anon_sym_AMP_AMP, - ACTIONS(3561), 1, + ACTIONS(3575), 1, anon_sym_PIPE_PIPE, - ACTIONS(3563), 1, + ACTIONS(3577), 1, anon_sym_PIPE, - ACTIONS(3565), 1, + ACTIONS(3579), 1, anon_sym_CARET, - ACTIONS(3571), 1, - anon_sym_QMARK, - ACTIONS(3573), 1, - anon_sym_EQ, - ACTIONS(3661), 1, + ACTIONS(3675), 1, anon_sym_DOT_DOT, - ACTIONS(3691), 1, - anon_sym_RBRACE, - ACTIONS(3693), 1, - anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3535), 2, + ACTIONS(3559), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3549), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3557), 2, + ACTIONS(3569), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3659), 2, + ACTIONS(3583), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3673), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3537), 3, + ACTIONS(3739), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(3561), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3567), 4, + ACTIONS(3581), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3575), 10, + ACTIONS(3585), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -117389,58 +117753,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29866] = 21, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(3533), 1, + [30115] = 20, + ACTIONS(3547), 1, anon_sym_LBRACK, - ACTIONS(3539), 1, - anon_sym_as, - ACTIONS(3551), 1, + ACTIONS(3555), 1, anon_sym_DOT, - ACTIONS(3571), 1, + ACTIONS(3563), 1, anon_sym_QMARK, - ACTIONS(3699), 1, + ACTIONS(3565), 1, + anon_sym_as, + ACTIONS(3567), 1, anon_sym_EQ, - ACTIONS(3703), 1, + ACTIONS(3571), 1, anon_sym_AMP, - ACTIONS(3707), 1, - anon_sym_DOT_DOT, - ACTIONS(3709), 1, + ACTIONS(3573), 1, anon_sym_AMP_AMP, - ACTIONS(3711), 1, + ACTIONS(3575), 1, anon_sym_PIPE_PIPE, - ACTIONS(3713), 1, + ACTIONS(3577), 1, anon_sym_PIPE, - ACTIONS(3715), 1, + ACTIONS(3579), 1, anon_sym_CARET, - STATE(98), 1, - sym_block, + ACTIONS(3675), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3695), 2, + ACTIONS(3559), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3701), 2, + ACTIONS(3569), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3705), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3719), 2, + ACTIONS(3583), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3697), 3, + ACTIONS(3673), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3741), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3561), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3717), 4, + ACTIONS(3581), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3721), 10, + ACTIONS(3585), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -117451,58 +117814,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29949] = 21, - ACTIONS(433), 1, - anon_sym_RBRACE, - ACTIONS(3533), 1, + [30196] = 18, + ACTIONS(3547), 1, anon_sym_LBRACK, - ACTIONS(3539), 1, + ACTIONS(3555), 1, + anon_sym_DOT, + ACTIONS(3565), 1, anon_sym_as, - ACTIONS(3543), 1, + ACTIONS(3595), 1, + anon_sym_EQ, + ACTIONS(3703), 1, + anon_sym_DOT_DOT, + ACTIONS(3719), 1, anon_sym_AMP, - ACTIONS(3551), 1, - anon_sym_DOT, - ACTIONS(3559), 1, + ACTIONS(3725), 1, anon_sym_AMP_AMP, - ACTIONS(3561), 1, + ACTIONS(3727), 1, anon_sym_PIPE_PIPE, - ACTIONS(3563), 1, + ACTIONS(3729), 1, anon_sym_PIPE, - ACTIONS(3565), 1, + ACTIONS(3731), 1, anon_sym_CARET, - ACTIONS(3571), 1, - anon_sym_QMARK, - ACTIONS(3573), 1, - anon_sym_EQ, - ACTIONS(3661), 1, - anon_sym_DOT_DOT, - ACTIONS(3677), 1, - anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3535), 2, + ACTIONS(3701), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3713), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3549), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3557), 2, + ACTIONS(3717), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3659), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3537), 3, + ACTIONS(3735), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3699), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3567), 4, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3575), 10, + ACTIONS(3593), 13, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -117513,44 +117873,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30032] = 7, - ACTIONS(3533), 1, + [30273] = 21, + ACTIONS(3547), 1, anon_sym_LBRACK, - ACTIONS(3551), 1, + ACTIONS(3555), 1, anon_sym_DOT, - ACTIONS(3681), 1, + ACTIONS(3563), 1, + anon_sym_QMARK, + ACTIONS(3565), 1, + anon_sym_as, + ACTIONS(3567), 1, + anon_sym_EQ, + ACTIONS(3571), 1, + anon_sym_AMP, + ACTIONS(3573), 1, + anon_sym_AMP_AMP, + ACTIONS(3575), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3577), 1, + anon_sym_PIPE, + ACTIONS(3579), 1, + anon_sym_CARET, + ACTIONS(3675), 1, anon_sym_DOT_DOT, + ACTIONS(3743), 1, + anon_sym_RBRACE, + ACTIONS(3745), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3679), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3597), 13, + ACTIONS(3559), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(3569), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3583), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3673), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3561), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3595), 20, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3581), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3585), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -117561,58 +117935,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30087] = 21, - ACTIONS(3533), 1, + [30356] = 21, + ACTIONS(3547), 1, anon_sym_LBRACK, - ACTIONS(3539), 1, + ACTIONS(3555), 1, + anon_sym_DOT, + ACTIONS(3563), 1, + anon_sym_QMARK, + ACTIONS(3565), 1, anon_sym_as, - ACTIONS(3543), 1, + ACTIONS(3567), 1, + anon_sym_EQ, + ACTIONS(3571), 1, anon_sym_AMP, - ACTIONS(3551), 1, - anon_sym_DOT, - ACTIONS(3559), 1, + ACTIONS(3573), 1, anon_sym_AMP_AMP, - ACTIONS(3561), 1, + ACTIONS(3575), 1, anon_sym_PIPE_PIPE, - ACTIONS(3563), 1, + ACTIONS(3577), 1, anon_sym_PIPE, - ACTIONS(3565), 1, + ACTIONS(3579), 1, anon_sym_CARET, - ACTIONS(3571), 1, - anon_sym_QMARK, - ACTIONS(3573), 1, - anon_sym_EQ, - ACTIONS(3661), 1, + ACTIONS(3675), 1, anon_sym_DOT_DOT, - ACTIONS(3723), 1, + ACTIONS(3747), 1, anon_sym_SEMI, - ACTIONS(3725), 1, + ACTIONS(3749), 1, anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3535), 2, + ACTIONS(3559), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3549), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3557), 2, + ACTIONS(3569), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3659), 2, + ACTIONS(3583), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3673), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3537), 3, + ACTIONS(3561), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3567), 4, + ACTIONS(3581), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3575), 10, + ACTIONS(3585), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -117623,58 +117997,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30170] = 21, - ACTIONS(3533), 1, + [30439] = 21, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(3547), 1, anon_sym_LBRACK, - ACTIONS(3539), 1, - anon_sym_as, - ACTIONS(3551), 1, + ACTIONS(3555), 1, anon_sym_DOT, - ACTIONS(3571), 1, + ACTIONS(3563), 1, anon_sym_QMARK, - ACTIONS(3699), 1, + ACTIONS(3565), 1, + anon_sym_as, + ACTIONS(3715), 1, anon_sym_EQ, - ACTIONS(3703), 1, + ACTIONS(3719), 1, anon_sym_AMP, - ACTIONS(3707), 1, + ACTIONS(3723), 1, anon_sym_DOT_DOT, - ACTIONS(3709), 1, + ACTIONS(3725), 1, anon_sym_AMP_AMP, - ACTIONS(3711), 1, + ACTIONS(3727), 1, anon_sym_PIPE_PIPE, - ACTIONS(3713), 1, + ACTIONS(3729), 1, anon_sym_PIPE, - ACTIONS(3715), 1, + ACTIONS(3731), 1, anon_sym_CARET, - ACTIONS(3727), 1, - anon_sym_LBRACE, - STATE(77), 1, - sym_match_block, + STATE(106), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3695), 2, + ACTIONS(3713), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3701), 2, + ACTIONS(3717), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3705), 2, + ACTIONS(3721), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3719), 2, + ACTIONS(3735), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3697), 3, + ACTIONS(3699), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3717), 4, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3721), 10, + ACTIONS(3737), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -117685,58 +118059,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30253] = 21, - ACTIONS(3533), 1, + [30522] = 21, + ACTIONS(3547), 1, anon_sym_LBRACK, - ACTIONS(3539), 1, - anon_sym_as, - ACTIONS(3551), 1, + ACTIONS(3555), 1, anon_sym_DOT, - ACTIONS(3571), 1, + ACTIONS(3563), 1, anon_sym_QMARK, - ACTIONS(3699), 1, + ACTIONS(3565), 1, + anon_sym_as, + ACTIONS(3567), 1, anon_sym_EQ, - ACTIONS(3703), 1, + ACTIONS(3571), 1, anon_sym_AMP, - ACTIONS(3707), 1, - anon_sym_DOT_DOT, - ACTIONS(3709), 1, + ACTIONS(3573), 1, anon_sym_AMP_AMP, - ACTIONS(3711), 1, + ACTIONS(3575), 1, anon_sym_PIPE_PIPE, - ACTIONS(3713), 1, + ACTIONS(3577), 1, anon_sym_PIPE, - ACTIONS(3715), 1, + ACTIONS(3579), 1, anon_sym_CARET, - ACTIONS(3729), 1, - anon_sym_LBRACE, - STATE(228), 1, - sym_match_block, + ACTIONS(3675), 1, + anon_sym_DOT_DOT, + ACTIONS(3695), 1, + anon_sym_SEMI, + ACTIONS(3751), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3695), 2, + ACTIONS(3559), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3701), 2, + ACTIONS(3569), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3705), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3719), 2, + ACTIONS(3583), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3697), 3, + ACTIONS(3673), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3561), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3717), 4, + ACTIONS(3581), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3721), 10, + ACTIONS(3585), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -117747,46 +118121,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30336] = 9, - ACTIONS(3533), 1, + [30605] = 20, + ACTIONS(3547), 1, anon_sym_LBRACK, - ACTIONS(3539), 1, - anon_sym_as, - ACTIONS(3551), 1, + ACTIONS(3555), 1, anon_sym_DOT, - ACTIONS(3681), 1, + ACTIONS(3563), 1, + anon_sym_QMARK, + ACTIONS(3565), 1, + anon_sym_as, + ACTIONS(3567), 1, + anon_sym_EQ, + ACTIONS(3571), 1, + anon_sym_AMP, + ACTIONS(3573), 1, + anon_sym_AMP_AMP, + ACTIONS(3575), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3577), 1, + anon_sym_PIPE, + ACTIONS(3579), 1, + anon_sym_CARET, + ACTIONS(3675), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3679), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3697), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3541), 10, + ACTIONS(3559), 2, anon_sym_PLUS, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(3569), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3583), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3531), 19, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3673), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3753), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(3561), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3581), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3585), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -117797,58 +118182,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30395] = 21, - ACTIONS(447), 1, - anon_sym_LBRACE, - ACTIONS(3533), 1, + [30686] = 21, + ACTIONS(3547), 1, anon_sym_LBRACK, - ACTIONS(3539), 1, - anon_sym_as, - ACTIONS(3551), 1, + ACTIONS(3555), 1, anon_sym_DOT, - ACTIONS(3571), 1, + ACTIONS(3563), 1, anon_sym_QMARK, - ACTIONS(3699), 1, + ACTIONS(3565), 1, + anon_sym_as, + ACTIONS(3567), 1, anon_sym_EQ, - ACTIONS(3703), 1, + ACTIONS(3571), 1, anon_sym_AMP, - ACTIONS(3707), 1, - anon_sym_DOT_DOT, - ACTIONS(3709), 1, + ACTIONS(3573), 1, anon_sym_AMP_AMP, - ACTIONS(3711), 1, + ACTIONS(3575), 1, anon_sym_PIPE_PIPE, - ACTIONS(3713), 1, + ACTIONS(3577), 1, anon_sym_PIPE, - ACTIONS(3715), 1, + ACTIONS(3579), 1, anon_sym_CARET, - STATE(1184), 1, - sym_block, + ACTIONS(3675), 1, + anon_sym_DOT_DOT, + ACTIONS(3695), 1, + anon_sym_SEMI, + ACTIONS(3755), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3695), 2, + ACTIONS(3559), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3701), 2, + ACTIONS(3569), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3705), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3719), 2, + ACTIONS(3583), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3697), 3, + ACTIONS(3673), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3561), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3717), 4, + ACTIONS(3581), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3721), 10, + ACTIONS(3585), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -117859,58 +118244,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30478] = 21, - ACTIONS(443), 1, - anon_sym_RBRACE, - ACTIONS(3533), 1, + [30769] = 7, + ACTIONS(3547), 1, anon_sym_LBRACK, - ACTIONS(3539), 1, - anon_sym_as, - ACTIONS(3543), 1, - anon_sym_AMP, - ACTIONS(3551), 1, + ACTIONS(3555), 1, anon_sym_DOT, - ACTIONS(3559), 1, - anon_sym_AMP_AMP, - ACTIONS(3561), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3563), 1, - anon_sym_PIPE, - ACTIONS(3565), 1, - anon_sym_CARET, - ACTIONS(3571), 1, - anon_sym_QMARK, - ACTIONS(3573), 1, - anon_sym_EQ, - ACTIONS(3661), 1, + ACTIONS(3703), 1, anon_sym_DOT_DOT, - ACTIONS(3677), 1, - anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3535), 2, + ACTIONS(3701), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3603), 13, anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, anon_sym_DASH, - ACTIONS(3549), 2, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3557), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3659), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3537), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3567), 4, + ACTIONS(3601), 20, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3575), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -117921,55 +118292,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30561] = 18, - ACTIONS(451), 1, - anon_sym_EQ, - ACTIONS(3533), 1, + [30824] = 21, + ACTIONS(272), 1, + anon_sym_RBRACE, + ACTIONS(3547), 1, anon_sym_LBRACK, - ACTIONS(3539), 1, - anon_sym_as, - ACTIONS(3551), 1, + ACTIONS(3555), 1, anon_sym_DOT, - ACTIONS(3681), 1, - anon_sym_DOT_DOT, - ACTIONS(3703), 1, + ACTIONS(3563), 1, + anon_sym_QMARK, + ACTIONS(3565), 1, + anon_sym_as, + ACTIONS(3567), 1, + anon_sym_EQ, + ACTIONS(3571), 1, anon_sym_AMP, - ACTIONS(3709), 1, + ACTIONS(3573), 1, anon_sym_AMP_AMP, - ACTIONS(3711), 1, + ACTIONS(3575), 1, anon_sym_PIPE_PIPE, - ACTIONS(3713), 1, + ACTIONS(3577), 1, anon_sym_PIPE, - ACTIONS(3715), 1, + ACTIONS(3579), 1, anon_sym_CARET, + ACTIONS(3675), 1, + anon_sym_DOT_DOT, + ACTIONS(3695), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3679), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3695), 2, + ACTIONS(3559), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3701), 2, + ACTIONS(3569), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3719), 2, + ACTIONS(3583), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3697), 3, + ACTIONS(3673), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3561), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3717), 4, + ACTIONS(3581), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(445), 13, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, + ACTIONS(3585), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -117980,58 +118354,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30638] = 21, - ACTIONS(439), 1, - anon_sym_RBRACE, - ACTIONS(3533), 1, + [30907] = 21, + ACTIONS(3547), 1, anon_sym_LBRACK, - ACTIONS(3539), 1, + ACTIONS(3555), 1, + anon_sym_DOT, + ACTIONS(3563), 1, + anon_sym_QMARK, + ACTIONS(3565), 1, anon_sym_as, - ACTIONS(3543), 1, + ACTIONS(3567), 1, + anon_sym_EQ, + ACTIONS(3571), 1, anon_sym_AMP, - ACTIONS(3551), 1, - anon_sym_DOT, - ACTIONS(3559), 1, + ACTIONS(3573), 1, anon_sym_AMP_AMP, - ACTIONS(3561), 1, + ACTIONS(3575), 1, anon_sym_PIPE_PIPE, - ACTIONS(3563), 1, + ACTIONS(3577), 1, anon_sym_PIPE, - ACTIONS(3565), 1, + ACTIONS(3579), 1, anon_sym_CARET, - ACTIONS(3571), 1, - anon_sym_QMARK, - ACTIONS(3573), 1, - anon_sym_EQ, - ACTIONS(3661), 1, + ACTIONS(3675), 1, anon_sym_DOT_DOT, - ACTIONS(3677), 1, + ACTIONS(3757), 1, anon_sym_SEMI, + ACTIONS(3759), 1, + anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3535), 2, + ACTIONS(3559), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3549), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3557), 2, + ACTIONS(3569), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3659), 2, + ACTIONS(3583), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3673), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3537), 3, + ACTIONS(3561), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3567), 4, + ACTIONS(3581), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3575), 10, + ACTIONS(3585), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -118042,57 +118416,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30721] = 20, - ACTIONS(3533), 1, + [30990] = 21, + ACTIONS(739), 1, + anon_sym_LBRACE, + ACTIONS(3547), 1, anon_sym_LBRACK, - ACTIONS(3539), 1, + ACTIONS(3555), 1, + anon_sym_DOT, + ACTIONS(3563), 1, + anon_sym_QMARK, + ACTIONS(3565), 1, anon_sym_as, - ACTIONS(3543), 1, + ACTIONS(3715), 1, + anon_sym_EQ, + ACTIONS(3719), 1, anon_sym_AMP, - ACTIONS(3551), 1, - anon_sym_DOT, - ACTIONS(3559), 1, + ACTIONS(3723), 1, + anon_sym_DOT_DOT, + ACTIONS(3725), 1, anon_sym_AMP_AMP, - ACTIONS(3561), 1, + ACTIONS(3727), 1, anon_sym_PIPE_PIPE, - ACTIONS(3563), 1, + ACTIONS(3729), 1, anon_sym_PIPE, - ACTIONS(3565), 1, + ACTIONS(3731), 1, anon_sym_CARET, - ACTIONS(3571), 1, - anon_sym_QMARK, - ACTIONS(3573), 1, - anon_sym_EQ, - ACTIONS(3661), 1, - anon_sym_DOT_DOT, + STATE(251), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3535), 2, + ACTIONS(3713), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3549), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3557), 2, + ACTIONS(3717), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3659), 2, + ACTIONS(3721), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3731), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(3537), 3, + ACTIONS(3735), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3699), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3567), 4, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3575), 10, + ACTIONS(3737), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -118103,57 +118478,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30802] = 20, - ACTIONS(3533), 1, + [31073] = 20, + ACTIONS(3547), 1, anon_sym_LBRACK, - ACTIONS(3539), 1, - anon_sym_as, - ACTIONS(3551), 1, + ACTIONS(3555), 1, anon_sym_DOT, - ACTIONS(3571), 1, + ACTIONS(3563), 1, anon_sym_QMARK, - ACTIONS(3681), 1, - anon_sym_DOT_DOT, - ACTIONS(3699), 1, + ACTIONS(3565), 1, + anon_sym_as, + ACTIONS(3567), 1, anon_sym_EQ, - ACTIONS(3703), 1, + ACTIONS(3571), 1, anon_sym_AMP, - ACTIONS(3709), 1, + ACTIONS(3573), 1, anon_sym_AMP_AMP, - ACTIONS(3711), 1, + ACTIONS(3575), 1, anon_sym_PIPE_PIPE, - ACTIONS(3713), 1, + ACTIONS(3577), 1, anon_sym_PIPE, - ACTIONS(3715), 1, + ACTIONS(3579), 1, anon_sym_CARET, + ACTIONS(3675), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3593), 2, - anon_sym_LPAREN, - anon_sym_LBRACE, - ACTIONS(3679), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3695), 2, + ACTIONS(3559), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3701), 2, + ACTIONS(3569), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3719), 2, + ACTIONS(3583), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3697), 3, + ACTIONS(3673), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3761), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(3561), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3717), 4, + ACTIONS(3581), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3721), 10, + ACTIONS(3585), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -118164,57 +118539,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30883] = 20, - ACTIONS(3533), 1, + [31154] = 21, + ACTIONS(447), 1, + anon_sym_LBRACE, + ACTIONS(3547), 1, anon_sym_LBRACK, - ACTIONS(3539), 1, + ACTIONS(3555), 1, + anon_sym_DOT, + ACTIONS(3563), 1, + anon_sym_QMARK, + ACTIONS(3565), 1, anon_sym_as, - ACTIONS(3543), 1, + ACTIONS(3715), 1, + anon_sym_EQ, + ACTIONS(3719), 1, anon_sym_AMP, - ACTIONS(3551), 1, - anon_sym_DOT, - ACTIONS(3559), 1, + ACTIONS(3723), 1, + anon_sym_DOT_DOT, + ACTIONS(3725), 1, anon_sym_AMP_AMP, - ACTIONS(3561), 1, + ACTIONS(3727), 1, anon_sym_PIPE_PIPE, - ACTIONS(3563), 1, + ACTIONS(3729), 1, anon_sym_PIPE, - ACTIONS(3565), 1, + ACTIONS(3731), 1, anon_sym_CARET, - ACTIONS(3571), 1, - anon_sym_QMARK, - ACTIONS(3573), 1, - anon_sym_EQ, - ACTIONS(3661), 1, - anon_sym_DOT_DOT, + STATE(1220), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3535), 2, + ACTIONS(3713), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3549), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3557), 2, + ACTIONS(3717), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3659), 2, + ACTIONS(3721), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3733), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(3537), 3, + ACTIONS(3735), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3699), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3567), 4, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3575), 10, + ACTIONS(3737), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -118225,57 +118601,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30964] = 20, - ACTIONS(3533), 1, + [31237] = 20, + ACTIONS(3547), 1, anon_sym_LBRACK, - ACTIONS(3539), 1, - anon_sym_as, - ACTIONS(3551), 1, + ACTIONS(3555), 1, anon_sym_DOT, - ACTIONS(3571), 1, + ACTIONS(3563), 1, anon_sym_QMARK, - ACTIONS(3681), 1, + ACTIONS(3565), 1, + anon_sym_as, + ACTIONS(3703), 1, anon_sym_DOT_DOT, - ACTIONS(3699), 1, + ACTIONS(3715), 1, anon_sym_EQ, - ACTIONS(3703), 1, + ACTIONS(3719), 1, anon_sym_AMP, - ACTIONS(3709), 1, + ACTIONS(3725), 1, anon_sym_AMP_AMP, - ACTIONS(3711), 1, + ACTIONS(3727), 1, anon_sym_PIPE_PIPE, - ACTIONS(3713), 1, + ACTIONS(3729), 1, anon_sym_PIPE, - ACTIONS(3715), 1, + ACTIONS(3731), 1, anon_sym_CARET, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3569), 2, + ACTIONS(3557), 2, anon_sym_LPAREN, anon_sym_LBRACE, - ACTIONS(3679), 2, + ACTIONS(3701), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3695), 2, + ACTIONS(3713), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3701), 2, + ACTIONS(3717), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3719), 2, + ACTIONS(3735), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3697), 3, + ACTIONS(3699), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3717), 4, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3721), 10, + ACTIONS(3737), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -118286,58 +118662,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31045] = 21, - ACTIONS(3533), 1, + [31318] = 20, + ACTIONS(3547), 1, anon_sym_LBRACK, - ACTIONS(3539), 1, + ACTIONS(3555), 1, + anon_sym_DOT, + ACTIONS(3563), 1, + anon_sym_QMARK, + ACTIONS(3565), 1, anon_sym_as, - ACTIONS(3543), 1, + ACTIONS(3567), 1, + anon_sym_EQ, + ACTIONS(3571), 1, anon_sym_AMP, - ACTIONS(3551), 1, - anon_sym_DOT, - ACTIONS(3559), 1, + ACTIONS(3573), 1, anon_sym_AMP_AMP, - ACTIONS(3561), 1, + ACTIONS(3575), 1, anon_sym_PIPE_PIPE, - ACTIONS(3563), 1, + ACTIONS(3577), 1, anon_sym_PIPE, - ACTIONS(3565), 1, + ACTIONS(3579), 1, anon_sym_CARET, - ACTIONS(3571), 1, - anon_sym_QMARK, - ACTIONS(3573), 1, - anon_sym_EQ, - ACTIONS(3661), 1, + ACTIONS(3675), 1, anon_sym_DOT_DOT, - ACTIONS(3735), 1, - anon_sym_SEMI, - ACTIONS(3737), 1, - anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3535), 2, + ACTIONS(3559), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3549), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3557), 2, + ACTIONS(3569), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3659), 2, + ACTIONS(3583), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3673), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3537), 3, + ACTIONS(3763), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(3561), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3567), 4, + ACTIONS(3581), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3575), 10, + ACTIONS(3585), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -118348,58 +118723,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31128] = 21, - ACTIONS(3533), 1, + [31399] = 20, + ACTIONS(3547), 1, anon_sym_LBRACK, - ACTIONS(3539), 1, + ACTIONS(3555), 1, + anon_sym_DOT, + ACTIONS(3563), 1, + anon_sym_QMARK, + ACTIONS(3565), 1, anon_sym_as, - ACTIONS(3543), 1, + ACTIONS(3567), 1, + anon_sym_EQ, + ACTIONS(3571), 1, anon_sym_AMP, - ACTIONS(3551), 1, - anon_sym_DOT, - ACTIONS(3559), 1, + ACTIONS(3573), 1, anon_sym_AMP_AMP, - ACTIONS(3561), 1, + ACTIONS(3575), 1, anon_sym_PIPE_PIPE, - ACTIONS(3563), 1, + ACTIONS(3577), 1, anon_sym_PIPE, - ACTIONS(3565), 1, + ACTIONS(3579), 1, anon_sym_CARET, - ACTIONS(3571), 1, - anon_sym_QMARK, - ACTIONS(3573), 1, - anon_sym_EQ, - ACTIONS(3661), 1, + ACTIONS(3675), 1, anon_sym_DOT_DOT, - ACTIONS(3739), 1, - anon_sym_SEMI, - ACTIONS(3741), 1, - anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3535), 2, + ACTIONS(3559), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3549), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3557), 2, + ACTIONS(3569), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3659), 2, + ACTIONS(3583), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3673), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3537), 3, + ACTIONS(3765), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(3561), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3567), 4, + ACTIONS(3581), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3575), 10, + ACTIONS(3585), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -118410,57 +118784,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31211] = 20, - ACTIONS(3533), 1, + [31480] = 20, + ACTIONS(3547), 1, anon_sym_LBRACK, - ACTIONS(3539), 1, + ACTIONS(3555), 1, + anon_sym_DOT, + ACTIONS(3563), 1, + anon_sym_QMARK, + ACTIONS(3565), 1, anon_sym_as, - ACTIONS(3543), 1, + ACTIONS(3703), 1, + anon_sym_DOT_DOT, + ACTIONS(3715), 1, + anon_sym_EQ, + ACTIONS(3719), 1, anon_sym_AMP, - ACTIONS(3551), 1, - anon_sym_DOT, - ACTIONS(3559), 1, + ACTIONS(3725), 1, anon_sym_AMP_AMP, - ACTIONS(3561), 1, + ACTIONS(3727), 1, anon_sym_PIPE_PIPE, - ACTIONS(3563), 1, + ACTIONS(3729), 1, anon_sym_PIPE, - ACTIONS(3565), 1, + ACTIONS(3731), 1, anon_sym_CARET, - ACTIONS(3571), 1, - anon_sym_QMARK, - ACTIONS(3573), 1, - anon_sym_EQ, - ACTIONS(3661), 1, - anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3535), 2, + ACTIONS(3587), 2, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(3701), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3713), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3549), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3557), 2, + ACTIONS(3717), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3659), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3743), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(3537), 3, + ACTIONS(3735), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3699), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3567), 4, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3575), 10, + ACTIONS(3737), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -118471,58 +118845,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31292] = 21, - ACTIONS(571), 1, + [31561] = 21, + ACTIONS(563), 1, anon_sym_RPAREN, - ACTIONS(3533), 1, + ACTIONS(3547), 1, anon_sym_LBRACK, - ACTIONS(3539), 1, + ACTIONS(3555), 1, + anon_sym_DOT, + ACTIONS(3563), 1, + anon_sym_QMARK, + ACTIONS(3565), 1, anon_sym_as, - ACTIONS(3543), 1, + ACTIONS(3567), 1, + anon_sym_EQ, + ACTIONS(3571), 1, anon_sym_AMP, - ACTIONS(3551), 1, - anon_sym_DOT, - ACTIONS(3559), 1, + ACTIONS(3573), 1, anon_sym_AMP_AMP, - ACTIONS(3561), 1, + ACTIONS(3575), 1, anon_sym_PIPE_PIPE, - ACTIONS(3563), 1, + ACTIONS(3577), 1, anon_sym_PIPE, - ACTIONS(3565), 1, + ACTIONS(3579), 1, anon_sym_CARET, - ACTIONS(3571), 1, - anon_sym_QMARK, - ACTIONS(3573), 1, - anon_sym_EQ, - ACTIONS(3661), 1, + ACTIONS(3675), 1, anon_sym_DOT_DOT, - ACTIONS(3745), 1, + ACTIONS(3767), 1, anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3535), 2, + ACTIONS(3559), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3549), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3557), 2, + ACTIONS(3569), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3659), 2, + ACTIONS(3583), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3673), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3537), 3, + ACTIONS(3561), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3567), 4, + ACTIONS(3581), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3575), 10, + ACTIONS(3585), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -118533,55 +118907,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31375] = 18, - ACTIONS(3533), 1, + [31644] = 21, + ACTIONS(3547), 1, anon_sym_LBRACK, - ACTIONS(3539), 1, - anon_sym_as, - ACTIONS(3551), 1, - anon_sym_DOT, ACTIONS(3555), 1, + anon_sym_DOT, + ACTIONS(3563), 1, + anon_sym_QMARK, + ACTIONS(3565), 1, + anon_sym_as, + ACTIONS(3567), 1, anon_sym_EQ, - ACTIONS(3681), 1, - anon_sym_DOT_DOT, - ACTIONS(3703), 1, + ACTIONS(3571), 1, anon_sym_AMP, - ACTIONS(3709), 1, + ACTIONS(3573), 1, anon_sym_AMP_AMP, - ACTIONS(3711), 1, + ACTIONS(3575), 1, anon_sym_PIPE_PIPE, - ACTIONS(3713), 1, + ACTIONS(3577), 1, anon_sym_PIPE, - ACTIONS(3715), 1, + ACTIONS(3579), 1, anon_sym_CARET, + ACTIONS(3675), 1, + anon_sym_DOT_DOT, + ACTIONS(3769), 1, + anon_sym_SEMI, + ACTIONS(3771), 1, + anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3679), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3695), 2, + ACTIONS(3559), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3701), 2, + ACTIONS(3569), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3719), 2, + ACTIONS(3583), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3697), 3, + ACTIONS(3673), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3561), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3717), 4, + ACTIONS(3581), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3553), 13, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, + ACTIONS(3585), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -118592,57 +118969,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31452] = 20, - ACTIONS(3533), 1, + [31727] = 20, + ACTIONS(3547), 1, anon_sym_LBRACK, - ACTIONS(3539), 1, + ACTIONS(3555), 1, + anon_sym_DOT, + ACTIONS(3563), 1, + anon_sym_QMARK, + ACTIONS(3565), 1, anon_sym_as, - ACTIONS(3543), 1, + ACTIONS(3567), 1, + anon_sym_EQ, + ACTIONS(3571), 1, anon_sym_AMP, - ACTIONS(3551), 1, - anon_sym_DOT, - ACTIONS(3559), 1, + ACTIONS(3573), 1, anon_sym_AMP_AMP, - ACTIONS(3561), 1, + ACTIONS(3575), 1, anon_sym_PIPE_PIPE, - ACTIONS(3563), 1, + ACTIONS(3577), 1, anon_sym_PIPE, - ACTIONS(3565), 1, + ACTIONS(3579), 1, anon_sym_CARET, - ACTIONS(3571), 1, - anon_sym_QMARK, - ACTIONS(3573), 1, - anon_sym_EQ, - ACTIONS(3661), 1, + ACTIONS(3675), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3535), 2, + ACTIONS(3559), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3549), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3557), 2, + ACTIONS(3569), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3659), 2, + ACTIONS(3583), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3673), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3747), 2, + ACTIONS(3773), 2, anon_sym_RBRACE, anon_sym_COMMA, - ACTIONS(3537), 3, + ACTIONS(3561), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3567), 4, + ACTIONS(3581), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3575), 10, + ACTIONS(3585), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -118653,44 +119030,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31533] = 7, - ACTIONS(3533), 1, + [31808] = 21, + ACTIONS(443), 1, + anon_sym_RBRACE, + ACTIONS(3547), 1, anon_sym_LBRACK, - ACTIONS(3551), 1, + ACTIONS(3555), 1, anon_sym_DOT, - ACTIONS(3681), 1, + ACTIONS(3563), 1, + anon_sym_QMARK, + ACTIONS(3565), 1, + anon_sym_as, + ACTIONS(3567), 1, + anon_sym_EQ, + ACTIONS(3571), 1, + anon_sym_AMP, + ACTIONS(3573), 1, + anon_sym_AMP_AMP, + ACTIONS(3575), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3577), 1, + anon_sym_PIPE, + ACTIONS(3579), 1, + anon_sym_CARET, + ACTIONS(3675), 1, anon_sym_DOT_DOT, + ACTIONS(3695), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3679), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3583), 13, + ACTIONS(3559), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(3569), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3583), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3673), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3561), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3581), 20, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3581), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3585), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -118701,58 +119092,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31588] = 21, - ACTIONS(3533), 1, + [31891] = 21, + ACTIONS(3547), 1, anon_sym_LBRACK, - ACTIONS(3539), 1, - anon_sym_as, - ACTIONS(3543), 1, - anon_sym_AMP, - ACTIONS(3551), 1, + ACTIONS(3555), 1, anon_sym_DOT, - ACTIONS(3559), 1, - anon_sym_AMP_AMP, - ACTIONS(3561), 1, - anon_sym_PIPE_PIPE, ACTIONS(3563), 1, - anon_sym_PIPE, + anon_sym_QMARK, ACTIONS(3565), 1, - anon_sym_CARET, + anon_sym_as, + ACTIONS(3567), 1, + anon_sym_EQ, ACTIONS(3571), 1, - anon_sym_QMARK, + anon_sym_AMP, ACTIONS(3573), 1, - anon_sym_EQ, - ACTIONS(3661), 1, + anon_sym_AMP_AMP, + ACTIONS(3575), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3577), 1, + anon_sym_PIPE, + ACTIONS(3579), 1, + anon_sym_CARET, + ACTIONS(3675), 1, anon_sym_DOT_DOT, - ACTIONS(3677), 1, + ACTIONS(3775), 1, anon_sym_SEMI, - ACTIONS(3749), 1, - anon_sym_RBRACE, + ACTIONS(3777), 1, + anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3535), 2, + ACTIONS(3559), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3549), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3557), 2, + ACTIONS(3569), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3659), 2, + ACTIONS(3583), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3673), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3537), 3, + ACTIONS(3561), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3567), 4, + ACTIONS(3581), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3575), 10, + ACTIONS(3585), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -118763,58 +119154,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31671] = 21, - ACTIONS(784), 1, - anon_sym_LBRACE, - ACTIONS(3533), 1, + [31974] = 21, + ACTIONS(3547), 1, anon_sym_LBRACK, - ACTIONS(3539), 1, - anon_sym_as, - ACTIONS(3551), 1, + ACTIONS(3555), 1, anon_sym_DOT, - ACTIONS(3571), 1, + ACTIONS(3563), 1, anon_sym_QMARK, - ACTIONS(3699), 1, + ACTIONS(3565), 1, + anon_sym_as, + ACTIONS(3567), 1, anon_sym_EQ, - ACTIONS(3703), 1, + ACTIONS(3571), 1, anon_sym_AMP, - ACTIONS(3707), 1, - anon_sym_DOT_DOT, - ACTIONS(3709), 1, + ACTIONS(3573), 1, anon_sym_AMP_AMP, - ACTIONS(3711), 1, + ACTIONS(3575), 1, anon_sym_PIPE_PIPE, - ACTIONS(3713), 1, + ACTIONS(3577), 1, anon_sym_PIPE, - ACTIONS(3715), 1, + ACTIONS(3579), 1, anon_sym_CARET, - STATE(232), 1, - sym_block, + ACTIONS(3675), 1, + anon_sym_DOT_DOT, + ACTIONS(3779), 1, + anon_sym_SEMI, + ACTIONS(3781), 1, + anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3695), 2, + ACTIONS(3559), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3701), 2, + ACTIONS(3569), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3705), 2, + ACTIONS(3583), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3673), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3719), 2, + ACTIONS(3561), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3581), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3585), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [32057] = 21, + ACTIONS(671), 1, + anon_sym_RPAREN, + ACTIONS(3547), 1, + anon_sym_LBRACK, + ACTIONS(3555), 1, + anon_sym_DOT, + ACTIONS(3563), 1, + anon_sym_QMARK, + ACTIONS(3565), 1, + anon_sym_as, + ACTIONS(3567), 1, + anon_sym_EQ, + ACTIONS(3571), 1, + anon_sym_AMP, + ACTIONS(3573), 1, + anon_sym_AMP_AMP, + ACTIONS(3575), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3577), 1, + anon_sym_PIPE, + ACTIONS(3579), 1, + anon_sym_CARET, + ACTIONS(3675), 1, + anon_sym_DOT_DOT, + ACTIONS(3767), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3559), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3569), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3583), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3697), 3, + ACTIONS(3673), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3561), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3717), 4, + ACTIONS(3581), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3721), 10, + ACTIONS(3585), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -118825,20 +119278,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31754] = 7, - ACTIONS(3533), 1, + [32140] = 7, + ACTIONS(3547), 1, anon_sym_LBRACK, - ACTIONS(3551), 1, + ACTIONS(3555), 1, anon_sym_DOT, - ACTIONS(3681), 1, + ACTIONS(3703), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3679), 2, + ACTIONS(3701), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3591), 13, + ACTIONS(3549), 13, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -118852,7 +119305,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3589), 20, + ACTIONS(3545), 20, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_QMARK, @@ -118873,58 +119326,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31809] = 21, - ACTIONS(3533), 1, + [32195] = 18, + ACTIONS(3547), 1, anon_sym_LBRACK, - ACTIONS(3539), 1, + ACTIONS(3555), 1, + anon_sym_DOT, + ACTIONS(3565), 1, anon_sym_as, - ACTIONS(3543), 1, + ACTIONS(3615), 1, + anon_sym_EQ, + ACTIONS(3703), 1, + anon_sym_DOT_DOT, + ACTIONS(3719), 1, anon_sym_AMP, - ACTIONS(3551), 1, - anon_sym_DOT, - ACTIONS(3559), 1, + ACTIONS(3725), 1, anon_sym_AMP_AMP, - ACTIONS(3561), 1, + ACTIONS(3727), 1, anon_sym_PIPE_PIPE, - ACTIONS(3563), 1, + ACTIONS(3729), 1, anon_sym_PIPE, - ACTIONS(3565), 1, + ACTIONS(3731), 1, anon_sym_CARET, - ACTIONS(3571), 1, - anon_sym_QMARK, - ACTIONS(3573), 1, - anon_sym_EQ, - ACTIONS(3661), 1, - anon_sym_DOT_DOT, - ACTIONS(3677), 1, - anon_sym_SEMI, - ACTIONS(3751), 1, - anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3535), 2, + ACTIONS(3701), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3713), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3549), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3557), 2, + ACTIONS(3717), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3659), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3537), 3, + ACTIONS(3735), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3699), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3567), 4, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3575), 10, + ACTIONS(3613), 13, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -118935,58 +119385,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31892] = 21, - ACTIONS(3533), 1, + [32272] = 18, + ACTIONS(3547), 1, anon_sym_LBRACK, - ACTIONS(3539), 1, + ACTIONS(3555), 1, + anon_sym_DOT, + ACTIONS(3565), 1, anon_sym_as, - ACTIONS(3543), 1, + ACTIONS(3599), 1, + anon_sym_EQ, + ACTIONS(3703), 1, + anon_sym_DOT_DOT, + ACTIONS(3719), 1, anon_sym_AMP, - ACTIONS(3551), 1, - anon_sym_DOT, - ACTIONS(3559), 1, + ACTIONS(3725), 1, anon_sym_AMP_AMP, - ACTIONS(3561), 1, + ACTIONS(3727), 1, anon_sym_PIPE_PIPE, - ACTIONS(3563), 1, + ACTIONS(3729), 1, anon_sym_PIPE, - ACTIONS(3565), 1, + ACTIONS(3731), 1, anon_sym_CARET, - ACTIONS(3571), 1, - anon_sym_QMARK, - ACTIONS(3573), 1, - anon_sym_EQ, - ACTIONS(3661), 1, - anon_sym_DOT_DOT, - ACTIONS(3677), 1, - anon_sym_SEMI, - ACTIONS(3753), 1, - anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3535), 2, + ACTIONS(3701), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3713), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3549), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3557), 2, + ACTIONS(3717), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3659), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3537), 3, + ACTIONS(3735), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3699), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3567), 4, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3575), 10, + ACTIONS(3597), 13, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -118997,55 +119444,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31975] = 18, - ACTIONS(3533), 1, + [32349] = 21, + ACTIONS(437), 1, + anon_sym_RBRACE, + ACTIONS(3547), 1, anon_sym_LBRACK, - ACTIONS(3539), 1, - anon_sym_as, - ACTIONS(3551), 1, + ACTIONS(3555), 1, anon_sym_DOT, - ACTIONS(3579), 1, + ACTIONS(3563), 1, + anon_sym_QMARK, + ACTIONS(3565), 1, + anon_sym_as, + ACTIONS(3567), 1, anon_sym_EQ, - ACTIONS(3681), 1, - anon_sym_DOT_DOT, - ACTIONS(3703), 1, + ACTIONS(3571), 1, anon_sym_AMP, - ACTIONS(3709), 1, + ACTIONS(3573), 1, anon_sym_AMP_AMP, - ACTIONS(3711), 1, + ACTIONS(3575), 1, anon_sym_PIPE_PIPE, - ACTIONS(3713), 1, + ACTIONS(3577), 1, anon_sym_PIPE, - ACTIONS(3715), 1, + ACTIONS(3579), 1, anon_sym_CARET, + ACTIONS(3675), 1, + anon_sym_DOT_DOT, + ACTIONS(3695), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3679), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3695), 2, + ACTIONS(3559), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3701), 2, + ACTIONS(3569), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3719), 2, + ACTIONS(3583), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3697), 3, + ACTIONS(3673), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3561), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3717), 4, + ACTIONS(3581), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3577), 13, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, + ACTIONS(3585), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -119056,58 +119506,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32052] = 21, - ACTIONS(784), 1, - anon_sym_LBRACE, - ACTIONS(3533), 1, + [32432] = 21, + ACTIONS(3547), 1, anon_sym_LBRACK, - ACTIONS(3539), 1, - anon_sym_as, - ACTIONS(3551), 1, + ACTIONS(3555), 1, anon_sym_DOT, - ACTIONS(3571), 1, + ACTIONS(3563), 1, anon_sym_QMARK, - ACTIONS(3699), 1, + ACTIONS(3565), 1, + anon_sym_as, + ACTIONS(3567), 1, anon_sym_EQ, - ACTIONS(3703), 1, + ACTIONS(3571), 1, anon_sym_AMP, - ACTIONS(3707), 1, - anon_sym_DOT_DOT, - ACTIONS(3709), 1, + ACTIONS(3573), 1, anon_sym_AMP_AMP, - ACTIONS(3711), 1, + ACTIONS(3575), 1, anon_sym_PIPE_PIPE, - ACTIONS(3713), 1, + ACTIONS(3577), 1, anon_sym_PIPE, - ACTIONS(3715), 1, + ACTIONS(3579), 1, anon_sym_CARET, - STATE(236), 1, - sym_block, + ACTIONS(3675), 1, + anon_sym_DOT_DOT, + ACTIONS(3783), 1, + anon_sym_SEMI, + ACTIONS(3785), 1, + anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3695), 2, + ACTIONS(3559), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3701), 2, + ACTIONS(3569), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3705), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3719), 2, + ACTIONS(3583), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3697), 3, + ACTIONS(3673), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3561), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3717), 4, + ACTIONS(3581), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3721), 10, + ACTIONS(3585), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -119118,41 +119568,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32135] = 10, - ACTIONS(3533), 1, + [32515] = 7, + ACTIONS(3547), 1, anon_sym_LBRACK, - ACTIONS(3539), 1, - anon_sym_as, - ACTIONS(3551), 1, + ACTIONS(3555), 1, anon_sym_DOT, - ACTIONS(3681), 1, + ACTIONS(3703), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3679), 2, + ACTIONS(3701), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3695), 2, + ACTIONS(3619), 13, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3697), 3, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3541), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, + anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3531), 19, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3617), 20, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_QMARK, + anon_sym_as, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -119169,58 +119616,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32196] = 21, - ACTIONS(573), 1, - anon_sym_RPAREN, - ACTIONS(3533), 1, + [32570] = 21, + ACTIONS(3547), 1, anon_sym_LBRACK, - ACTIONS(3539), 1, + ACTIONS(3555), 1, + anon_sym_DOT, + ACTIONS(3563), 1, + anon_sym_QMARK, + ACTIONS(3565), 1, anon_sym_as, - ACTIONS(3543), 1, + ACTIONS(3567), 1, + anon_sym_EQ, + ACTIONS(3571), 1, anon_sym_AMP, - ACTIONS(3551), 1, - anon_sym_DOT, - ACTIONS(3559), 1, + ACTIONS(3573), 1, anon_sym_AMP_AMP, - ACTIONS(3561), 1, + ACTIONS(3575), 1, anon_sym_PIPE_PIPE, - ACTIONS(3563), 1, + ACTIONS(3577), 1, anon_sym_PIPE, - ACTIONS(3565), 1, + ACTIONS(3579), 1, anon_sym_CARET, - ACTIONS(3571), 1, - anon_sym_QMARK, - ACTIONS(3573), 1, - anon_sym_EQ, - ACTIONS(3661), 1, + ACTIONS(3675), 1, anon_sym_DOT_DOT, - ACTIONS(3745), 1, + ACTIONS(3767), 1, anon_sym_COMMA, + ACTIONS(3787), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3535), 2, + ACTIONS(3559), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3549), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3557), 2, + ACTIONS(3569), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3659), 2, + ACTIONS(3583), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3673), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3537), 3, + ACTIONS(3561), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3567), 4, + ACTIONS(3581), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3575), 10, + ACTIONS(3585), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -119231,57 +119678,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32279] = 20, - ACTIONS(3533), 1, + [32653] = 18, + ACTIONS(451), 1, + anon_sym_EQ, + ACTIONS(3547), 1, anon_sym_LBRACK, - ACTIONS(3539), 1, + ACTIONS(3555), 1, + anon_sym_DOT, + ACTIONS(3565), 1, anon_sym_as, - ACTIONS(3543), 1, + ACTIONS(3703), 1, + anon_sym_DOT_DOT, + ACTIONS(3719), 1, anon_sym_AMP, - ACTIONS(3551), 1, - anon_sym_DOT, - ACTIONS(3559), 1, + ACTIONS(3725), 1, anon_sym_AMP_AMP, - ACTIONS(3561), 1, + ACTIONS(3727), 1, anon_sym_PIPE_PIPE, - ACTIONS(3563), 1, + ACTIONS(3729), 1, anon_sym_PIPE, - ACTIONS(3565), 1, + ACTIONS(3731), 1, anon_sym_CARET, - ACTIONS(3571), 1, - anon_sym_QMARK, - ACTIONS(3573), 1, - anon_sym_EQ, - ACTIONS(3661), 1, - anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3535), 2, + ACTIONS(3701), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3713), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3549), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3557), 2, + ACTIONS(3717), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3659), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3755), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(3537), 3, + ACTIONS(3735), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3699), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3567), 4, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3575), 10, + ACTIONS(445), 13, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -119292,58 +119737,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32360] = 21, - ACTIONS(274), 1, - anon_sym_RBRACE, - ACTIONS(3533), 1, + [32730] = 21, + ACTIONS(3547), 1, anon_sym_LBRACK, - ACTIONS(3539), 1, + ACTIONS(3555), 1, + anon_sym_DOT, + ACTIONS(3563), 1, + anon_sym_QMARK, + ACTIONS(3565), 1, anon_sym_as, - ACTIONS(3543), 1, + ACTIONS(3567), 1, + anon_sym_EQ, + ACTIONS(3571), 1, anon_sym_AMP, - ACTIONS(3551), 1, - anon_sym_DOT, - ACTIONS(3559), 1, + ACTIONS(3573), 1, anon_sym_AMP_AMP, - ACTIONS(3561), 1, + ACTIONS(3575), 1, anon_sym_PIPE_PIPE, - ACTIONS(3563), 1, + ACTIONS(3577), 1, anon_sym_PIPE, - ACTIONS(3565), 1, + ACTIONS(3579), 1, anon_sym_CARET, - ACTIONS(3571), 1, - anon_sym_QMARK, - ACTIONS(3573), 1, - anon_sym_EQ, - ACTIONS(3661), 1, + ACTIONS(3675), 1, anon_sym_DOT_DOT, - ACTIONS(3677), 1, - anon_sym_SEMI, + ACTIONS(3789), 1, + anon_sym_RPAREN, + ACTIONS(3791), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3535), 2, + ACTIONS(3559), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3549), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3557), 2, + ACTIONS(3569), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3659), 2, + ACTIONS(3583), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3673), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3537), 3, + ACTIONS(3561), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3567), 4, + ACTIONS(3581), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3575), 10, + ACTIONS(3585), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -119354,110 +119799,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32443] = 12, - ACTIONS(3533), 1, + [32813] = 21, + ACTIONS(268), 1, + anon_sym_RBRACE, + ACTIONS(3547), 1, anon_sym_LBRACK, - ACTIONS(3539), 1, - anon_sym_as, - ACTIONS(3551), 1, + ACTIONS(3555), 1, anon_sym_DOT, - ACTIONS(3681), 1, - anon_sym_DOT_DOT, - ACTIONS(3703), 1, - anon_sym_AMP, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3679), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3695), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3719), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3697), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3541), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(3531), 19, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(3563), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [32508] = 20, - ACTIONS(3533), 1, - anon_sym_LBRACK, - ACTIONS(3539), 1, + ACTIONS(3565), 1, anon_sym_as, - ACTIONS(3543), 1, + ACTIONS(3567), 1, + anon_sym_EQ, + ACTIONS(3571), 1, anon_sym_AMP, - ACTIONS(3551), 1, - anon_sym_DOT, - ACTIONS(3559), 1, + ACTIONS(3573), 1, anon_sym_AMP_AMP, - ACTIONS(3561), 1, + ACTIONS(3575), 1, anon_sym_PIPE_PIPE, - ACTIONS(3563), 1, + ACTIONS(3577), 1, anon_sym_PIPE, - ACTIONS(3565), 1, + ACTIONS(3579), 1, anon_sym_CARET, - ACTIONS(3571), 1, - anon_sym_QMARK, - ACTIONS(3573), 1, - anon_sym_EQ, - ACTIONS(3661), 1, + ACTIONS(3675), 1, anon_sym_DOT_DOT, + ACTIONS(3695), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3535), 2, + ACTIONS(3559), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3549), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3557), 2, + ACTIONS(3569), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3659), 2, + ACTIONS(3583), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3673), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3757), 2, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(3537), 3, + ACTIONS(3561), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3567), 4, + ACTIONS(3581), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3575), 10, + ACTIONS(3585), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -119468,58 +119861,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32589] = 21, - ACTIONS(3533), 1, + [32896] = 21, + ACTIONS(3547), 1, anon_sym_LBRACK, - ACTIONS(3539), 1, + ACTIONS(3555), 1, + anon_sym_DOT, + ACTIONS(3563), 1, + anon_sym_QMARK, + ACTIONS(3565), 1, anon_sym_as, - ACTIONS(3543), 1, + ACTIONS(3567), 1, + anon_sym_EQ, + ACTIONS(3571), 1, anon_sym_AMP, - ACTIONS(3551), 1, - anon_sym_DOT, - ACTIONS(3559), 1, + ACTIONS(3573), 1, anon_sym_AMP_AMP, - ACTIONS(3561), 1, + ACTIONS(3575), 1, anon_sym_PIPE_PIPE, - ACTIONS(3563), 1, + ACTIONS(3577), 1, anon_sym_PIPE, - ACTIONS(3565), 1, + ACTIONS(3579), 1, anon_sym_CARET, - ACTIONS(3571), 1, - anon_sym_QMARK, - ACTIONS(3573), 1, - anon_sym_EQ, - ACTIONS(3661), 1, + ACTIONS(3675), 1, anon_sym_DOT_DOT, - ACTIONS(3759), 1, + ACTIONS(3695), 1, anon_sym_SEMI, - ACTIONS(3761), 1, - anon_sym_else, + ACTIONS(3793), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3535), 2, + ACTIONS(3559), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3549), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3557), 2, + ACTIONS(3569), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3659), 2, + ACTIONS(3583), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3673), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3537), 3, + ACTIONS(3561), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3567), 4, + ACTIONS(3581), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3575), 10, + ACTIONS(3585), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -119530,41 +119923,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32672] = 13, - ACTIONS(3533), 1, + [32979] = 10, + ACTIONS(3547), 1, anon_sym_LBRACK, - ACTIONS(3539), 1, - anon_sym_as, - ACTIONS(3551), 1, + ACTIONS(3555), 1, anon_sym_DOT, - ACTIONS(3681), 1, - anon_sym_DOT_DOT, + ACTIONS(3565), 1, + anon_sym_as, ACTIONS(3703), 1, - anon_sym_AMP, - ACTIONS(3715), 1, - anon_sym_CARET, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3679), 2, + ACTIONS(3701), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3695), 2, + ACTIONS(3713), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3719), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3697), 3, + ACTIONS(3699), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3541), 4, + ACTIONS(3591), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3531), 19, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3589), 19, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_QMARK, @@ -119584,58 +119974,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32739] = 21, - ACTIONS(3533), 1, + [33040] = 14, + ACTIONS(3547), 1, anon_sym_LBRACK, - ACTIONS(3539), 1, + ACTIONS(3555), 1, + anon_sym_DOT, + ACTIONS(3565), 1, anon_sym_as, - ACTIONS(3543), 1, + ACTIONS(3703), 1, + anon_sym_DOT_DOT, + ACTIONS(3719), 1, anon_sym_AMP, - ACTIONS(3551), 1, - anon_sym_DOT, - ACTIONS(3559), 1, - anon_sym_AMP_AMP, - ACTIONS(3561), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3563), 1, + ACTIONS(3729), 1, anon_sym_PIPE, - ACTIONS(3565), 1, + ACTIONS(3731), 1, anon_sym_CARET, - ACTIONS(3571), 1, - anon_sym_QMARK, - ACTIONS(3573), 1, - anon_sym_EQ, - ACTIONS(3661), 1, - anon_sym_DOT_DOT, - ACTIONS(3677), 1, - anon_sym_SEMI, - ACTIONS(3763), 1, - anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3535), 2, + ACTIONS(3701), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3713), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3549), 2, + ACTIONS(3735), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3557), 2, + ACTIONS(3591), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(3659), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3537), 3, + ACTIONS(3699), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3567), 4, + ACTIONS(3589), 19, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3575), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -119646,58 +120029,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32822] = 21, - ACTIONS(3533), 1, + [33109] = 20, + ACTIONS(3547), 1, anon_sym_LBRACK, - ACTIONS(3539), 1, - anon_sym_as, - ACTIONS(3551), 1, + ACTIONS(3555), 1, anon_sym_DOT, - ACTIONS(3571), 1, + ACTIONS(3563), 1, anon_sym_QMARK, - ACTIONS(3699), 1, + ACTIONS(3565), 1, + anon_sym_as, + ACTIONS(3567), 1, anon_sym_EQ, - ACTIONS(3703), 1, + ACTIONS(3571), 1, anon_sym_AMP, - ACTIONS(3707), 1, - anon_sym_DOT_DOT, - ACTIONS(3709), 1, + ACTIONS(3573), 1, anon_sym_AMP_AMP, - ACTIONS(3711), 1, + ACTIONS(3575), 1, anon_sym_PIPE_PIPE, - ACTIONS(3713), 1, + ACTIONS(3577), 1, anon_sym_PIPE, - ACTIONS(3715), 1, + ACTIONS(3579), 1, anon_sym_CARET, - ACTIONS(3765), 1, - anon_sym_LBRACE, - STATE(1214), 1, - sym_match_block, + ACTIONS(3675), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3695), 2, + ACTIONS(3559), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3701), 2, + ACTIONS(3569), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3705), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3719), 2, + ACTIONS(3583), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3697), 3, + ACTIONS(3673), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3795), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(3561), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3717), 4, + ACTIONS(3581), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3721), 10, + ACTIONS(3585), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -119708,58 +120090,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32905] = 21, - ACTIONS(3533), 1, + [33190] = 21, + ACTIONS(3547), 1, anon_sym_LBRACK, - ACTIONS(3539), 1, + ACTIONS(3555), 1, + anon_sym_DOT, + ACTIONS(3563), 1, + anon_sym_QMARK, + ACTIONS(3565), 1, anon_sym_as, - ACTIONS(3543), 1, + ACTIONS(3715), 1, + anon_sym_EQ, + ACTIONS(3719), 1, anon_sym_AMP, - ACTIONS(3551), 1, - anon_sym_DOT, - ACTIONS(3559), 1, + ACTIONS(3723), 1, + anon_sym_DOT_DOT, + ACTIONS(3725), 1, anon_sym_AMP_AMP, - ACTIONS(3561), 1, + ACTIONS(3727), 1, anon_sym_PIPE_PIPE, - ACTIONS(3563), 1, + ACTIONS(3729), 1, anon_sym_PIPE, - ACTIONS(3565), 1, + ACTIONS(3731), 1, anon_sym_CARET, - ACTIONS(3571), 1, - anon_sym_QMARK, - ACTIONS(3573), 1, - anon_sym_EQ, - ACTIONS(3661), 1, - anon_sym_DOT_DOT, - ACTIONS(3677), 1, - anon_sym_SEMI, - ACTIONS(3767), 1, - anon_sym_RBRACE, + ACTIONS(3797), 1, + anon_sym_LBRACE, + STATE(248), 1, + sym_match_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3535), 2, + ACTIONS(3713), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3549), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3557), 2, + ACTIONS(3717), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3659), 2, + ACTIONS(3721), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3537), 3, + ACTIONS(3735), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3699), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3567), 4, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3575), 10, + ACTIONS(3737), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -119770,54 +120152,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32988] = 17, - ACTIONS(3533), 1, + [33273] = 21, + ACTIONS(3547), 1, anon_sym_LBRACK, - ACTIONS(3539), 1, + ACTIONS(3555), 1, + anon_sym_DOT, + ACTIONS(3563), 1, + anon_sym_QMARK, + ACTIONS(3565), 1, anon_sym_as, - ACTIONS(3541), 1, + ACTIONS(3715), 1, anon_sym_EQ, - ACTIONS(3551), 1, - anon_sym_DOT, - ACTIONS(3681), 1, - anon_sym_DOT_DOT, - ACTIONS(3703), 1, + ACTIONS(3719), 1, anon_sym_AMP, - ACTIONS(3709), 1, + ACTIONS(3723), 1, + anon_sym_DOT_DOT, + ACTIONS(3725), 1, anon_sym_AMP_AMP, - ACTIONS(3713), 1, + ACTIONS(3727), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3729), 1, anon_sym_PIPE, - ACTIONS(3715), 1, + ACTIONS(3731), 1, anon_sym_CARET, + ACTIONS(3799), 1, + anon_sym_LBRACE, + STATE(122), 1, + sym_match_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3679), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3695), 2, + ACTIONS(3713), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3701), 2, + ACTIONS(3717), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3719), 2, + ACTIONS(3721), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3735), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3697), 3, + ACTIONS(3699), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3717), 4, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3531), 14, + ACTIONS(3737), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [33356] = 8, + ACTIONS(3547), 1, + anon_sym_LBRACK, + ACTIONS(3555), 1, + anon_sym_DOT, + ACTIONS(3565), 1, + anon_sym_as, + ACTIONS(3703), 1, + anon_sym_DOT_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3701), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3591), 13, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3589), 19, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_QMARK, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -119828,58 +120263,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33063] = 21, - ACTIONS(441), 1, + [33413] = 21, + ACTIONS(429), 1, anon_sym_RBRACE, - ACTIONS(3533), 1, + ACTIONS(3547), 1, anon_sym_LBRACK, - ACTIONS(3539), 1, + ACTIONS(3555), 1, + anon_sym_DOT, + ACTIONS(3563), 1, + anon_sym_QMARK, + ACTIONS(3565), 1, anon_sym_as, - ACTIONS(3543), 1, + ACTIONS(3567), 1, + anon_sym_EQ, + ACTIONS(3571), 1, anon_sym_AMP, - ACTIONS(3551), 1, - anon_sym_DOT, - ACTIONS(3559), 1, + ACTIONS(3573), 1, anon_sym_AMP_AMP, - ACTIONS(3561), 1, + ACTIONS(3575), 1, anon_sym_PIPE_PIPE, - ACTIONS(3563), 1, + ACTIONS(3577), 1, anon_sym_PIPE, - ACTIONS(3565), 1, + ACTIONS(3579), 1, anon_sym_CARET, - ACTIONS(3571), 1, - anon_sym_QMARK, - ACTIONS(3573), 1, - anon_sym_EQ, - ACTIONS(3661), 1, + ACTIONS(3675), 1, anon_sym_DOT_DOT, - ACTIONS(3677), 1, + ACTIONS(3695), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3535), 2, + ACTIONS(3559), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3549), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3557), 2, + ACTIONS(3569), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3659), 2, + ACTIONS(3583), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3673), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3537), 3, + ACTIONS(3561), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3567), 4, + ACTIONS(3581), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3575), 10, + ACTIONS(3585), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -119890,58 +120325,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33146] = 21, - ACTIONS(447), 1, - anon_sym_LBRACE, - ACTIONS(3533), 1, + [33496] = 21, + ACTIONS(3547), 1, anon_sym_LBRACK, - ACTIONS(3539), 1, - anon_sym_as, - ACTIONS(3551), 1, + ACTIONS(3555), 1, anon_sym_DOT, - ACTIONS(3571), 1, + ACTIONS(3563), 1, anon_sym_QMARK, - ACTIONS(3699), 1, + ACTIONS(3565), 1, + anon_sym_as, + ACTIONS(3567), 1, anon_sym_EQ, - ACTIONS(3703), 1, + ACTIONS(3571), 1, anon_sym_AMP, - ACTIONS(3707), 1, - anon_sym_DOT_DOT, - ACTIONS(3709), 1, + ACTIONS(3573), 1, anon_sym_AMP_AMP, - ACTIONS(3711), 1, + ACTIONS(3575), 1, anon_sym_PIPE_PIPE, - ACTIONS(3713), 1, + ACTIONS(3577), 1, anon_sym_PIPE, - ACTIONS(3715), 1, + ACTIONS(3579), 1, anon_sym_CARET, - STATE(1237), 1, - sym_block, + ACTIONS(3675), 1, + anon_sym_DOT_DOT, + ACTIONS(3801), 1, + anon_sym_SEMI, + ACTIONS(3803), 1, + anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3695), 2, + ACTIONS(3559), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3701), 2, + ACTIONS(3569), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3705), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3719), 2, + ACTIONS(3583), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3697), 3, + ACTIONS(3673), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3561), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3717), 4, + ACTIONS(3581), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3721), 10, + ACTIONS(3585), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -119952,53 +120387,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33229] = 16, - ACTIONS(3533), 1, + [33579] = 11, + ACTIONS(3547), 1, anon_sym_LBRACK, - ACTIONS(3539), 1, - anon_sym_as, - ACTIONS(3541), 1, - anon_sym_EQ, - ACTIONS(3551), 1, + ACTIONS(3555), 1, anon_sym_DOT, - ACTIONS(3681), 1, - anon_sym_DOT_DOT, + ACTIONS(3565), 1, + anon_sym_as, ACTIONS(3703), 1, - anon_sym_AMP, - ACTIONS(3713), 1, - anon_sym_PIPE, - ACTIONS(3715), 1, - anon_sym_CARET, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3679), 2, + ACTIONS(3701), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3695), 2, + ACTIONS(3713), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3701), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3719), 2, + ACTIONS(3735), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3697), 3, + ACTIONS(3699), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3717), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3531), 15, + ACTIONS(3591), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(3589), 19, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -120009,58 +120439,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33302] = 21, - ACTIONS(3533), 1, + [33642] = 18, + ACTIONS(3547), 1, anon_sym_LBRACK, - ACTIONS(3539), 1, + ACTIONS(3555), 1, + anon_sym_DOT, + ACTIONS(3565), 1, anon_sym_as, - ACTIONS(3543), 1, + ACTIONS(3607), 1, + anon_sym_EQ, + ACTIONS(3703), 1, + anon_sym_DOT_DOT, + ACTIONS(3719), 1, anon_sym_AMP, - ACTIONS(3551), 1, - anon_sym_DOT, - ACTIONS(3559), 1, + ACTIONS(3725), 1, anon_sym_AMP_AMP, - ACTIONS(3561), 1, + ACTIONS(3727), 1, anon_sym_PIPE_PIPE, - ACTIONS(3563), 1, + ACTIONS(3729), 1, anon_sym_PIPE, - ACTIONS(3565), 1, + ACTIONS(3731), 1, anon_sym_CARET, - ACTIONS(3571), 1, - anon_sym_QMARK, - ACTIONS(3573), 1, - anon_sym_EQ, - ACTIONS(3661), 1, - anon_sym_DOT_DOT, - ACTIONS(3769), 1, - anon_sym_SEMI, - ACTIONS(3771), 1, - anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3535), 2, + ACTIONS(3701), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3713), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3549), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3557), 2, + ACTIONS(3717), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3659), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3537), 3, + ACTIONS(3735), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3699), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3567), 4, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3575), 10, + ACTIONS(3605), 13, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -120071,58 +120498,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33385] = 21, - ACTIONS(3533), 1, + [33719] = 21, + ACTIONS(3547), 1, anon_sym_LBRACK, - ACTIONS(3539), 1, + ACTIONS(3555), 1, + anon_sym_DOT, + ACTIONS(3563), 1, + anon_sym_QMARK, + ACTIONS(3565), 1, anon_sym_as, - ACTIONS(3543), 1, + ACTIONS(3567), 1, + anon_sym_EQ, + ACTIONS(3571), 1, anon_sym_AMP, - ACTIONS(3551), 1, - anon_sym_DOT, - ACTIONS(3559), 1, + ACTIONS(3573), 1, anon_sym_AMP_AMP, - ACTIONS(3561), 1, + ACTIONS(3575), 1, anon_sym_PIPE_PIPE, - ACTIONS(3563), 1, + ACTIONS(3577), 1, anon_sym_PIPE, - ACTIONS(3565), 1, + ACTIONS(3579), 1, anon_sym_CARET, - ACTIONS(3571), 1, - anon_sym_QMARK, - ACTIONS(3573), 1, - anon_sym_EQ, - ACTIONS(3661), 1, + ACTIONS(3675), 1, anon_sym_DOT_DOT, - ACTIONS(3773), 1, + ACTIONS(3695), 1, anon_sym_SEMI, - ACTIONS(3775), 1, - anon_sym_else, + ACTIONS(3805), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3535), 2, + ACTIONS(3559), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3549), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3557), 2, + ACTIONS(3569), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3659), 2, + ACTIONS(3583), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3673), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3537), 3, + ACTIONS(3561), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3567), 4, + ACTIONS(3581), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3575), 10, + ACTIONS(3585), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -120133,39 +120560,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33468] = 11, - ACTIONS(3533), 1, + [33802] = 12, + ACTIONS(3547), 1, anon_sym_LBRACK, - ACTIONS(3539), 1, - anon_sym_as, - ACTIONS(3551), 1, + ACTIONS(3555), 1, anon_sym_DOT, - ACTIONS(3681), 1, + ACTIONS(3565), 1, + anon_sym_as, + ACTIONS(3703), 1, anon_sym_DOT_DOT, + ACTIONS(3719), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3679), 2, + ACTIONS(3701), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3695), 2, + ACTIONS(3713), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3719), 2, + ACTIONS(3735), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3697), 3, + ACTIONS(3699), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3541), 6, + ACTIONS(3591), 5, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, anon_sym_PIPE, anon_sym_CARET, - ACTIONS(3531), 19, + ACTIONS(3589), 19, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_QMARK, @@ -120185,51 +120613,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33531] = 14, - ACTIONS(3533), 1, + [33867] = 21, + ACTIONS(3547), 1, anon_sym_LBRACK, - ACTIONS(3539), 1, - anon_sym_as, - ACTIONS(3551), 1, + ACTIONS(3555), 1, anon_sym_DOT, - ACTIONS(3681), 1, - anon_sym_DOT_DOT, - ACTIONS(3703), 1, + ACTIONS(3563), 1, + anon_sym_QMARK, + ACTIONS(3565), 1, + anon_sym_as, + ACTIONS(3567), 1, + anon_sym_EQ, + ACTIONS(3571), 1, anon_sym_AMP, - ACTIONS(3713), 1, + ACTIONS(3573), 1, + anon_sym_AMP_AMP, + ACTIONS(3575), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3577), 1, anon_sym_PIPE, - ACTIONS(3715), 1, + ACTIONS(3579), 1, anon_sym_CARET, + ACTIONS(3675), 1, + anon_sym_DOT_DOT, + ACTIONS(3807), 1, + anon_sym_RBRACE, + ACTIONS(3809), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3679), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3695), 2, + ACTIONS(3559), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3719), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3541), 3, - anon_sym_EQ, + ACTIONS(3569), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3697), 3, + ACTIONS(3583), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3673), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3561), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3531), 19, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3581), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3585), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -120240,58 +120675,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33600] = 21, - ACTIONS(3533), 1, + [33950] = 20, + ACTIONS(3547), 1, anon_sym_LBRACK, - ACTIONS(3539), 1, + ACTIONS(3555), 1, + anon_sym_DOT, + ACTIONS(3563), 1, + anon_sym_QMARK, + ACTIONS(3565), 1, anon_sym_as, - ACTIONS(3543), 1, + ACTIONS(3567), 1, + anon_sym_EQ, + ACTIONS(3571), 1, anon_sym_AMP, - ACTIONS(3551), 1, - anon_sym_DOT, - ACTIONS(3559), 1, + ACTIONS(3573), 1, anon_sym_AMP_AMP, - ACTIONS(3561), 1, + ACTIONS(3575), 1, anon_sym_PIPE_PIPE, - ACTIONS(3563), 1, + ACTIONS(3577), 1, anon_sym_PIPE, - ACTIONS(3565), 1, + ACTIONS(3579), 1, anon_sym_CARET, - ACTIONS(3571), 1, - anon_sym_QMARK, - ACTIONS(3573), 1, - anon_sym_EQ, - ACTIONS(3661), 1, + ACTIONS(3675), 1, anon_sym_DOT_DOT, - ACTIONS(3777), 1, - anon_sym_RPAREN, - ACTIONS(3779), 1, - anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3535), 2, + ACTIONS(3559), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3549), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3557), 2, + ACTIONS(3569), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3659), 2, + ACTIONS(3583), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3673), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3537), 3, + ACTIONS(3811), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3561), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3567), 4, + ACTIONS(3581), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3575), 10, + ACTIONS(3585), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -120302,55 +120736,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33683] = 18, - ACTIONS(3533), 1, + [34031] = 21, + ACTIONS(441), 1, + anon_sym_RBRACE, + ACTIONS(3547), 1, anon_sym_LBRACK, - ACTIONS(3539), 1, - anon_sym_as, - ACTIONS(3551), 1, + ACTIONS(3555), 1, anon_sym_DOT, - ACTIONS(3587), 1, + ACTIONS(3563), 1, + anon_sym_QMARK, + ACTIONS(3565), 1, + anon_sym_as, + ACTIONS(3567), 1, anon_sym_EQ, - ACTIONS(3681), 1, - anon_sym_DOT_DOT, - ACTIONS(3703), 1, + ACTIONS(3571), 1, anon_sym_AMP, - ACTIONS(3709), 1, + ACTIONS(3573), 1, anon_sym_AMP_AMP, - ACTIONS(3711), 1, + ACTIONS(3575), 1, anon_sym_PIPE_PIPE, - ACTIONS(3713), 1, + ACTIONS(3577), 1, anon_sym_PIPE, - ACTIONS(3715), 1, + ACTIONS(3579), 1, anon_sym_CARET, + ACTIONS(3675), 1, + anon_sym_DOT_DOT, + ACTIONS(3695), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3679), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3695), 2, + ACTIONS(3559), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3701), 2, + ACTIONS(3569), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3719), 2, + ACTIONS(3583), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3697), 3, + ACTIONS(3673), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3561), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3717), 4, + ACTIONS(3581), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3585), 13, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, + ACTIONS(3585), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -120361,55 +120798,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33760] = 18, - ACTIONS(3533), 1, + [34114] = 13, + ACTIONS(3547), 1, anon_sym_LBRACK, - ACTIONS(3539), 1, - anon_sym_as, - ACTIONS(3551), 1, + ACTIONS(3555), 1, anon_sym_DOT, - ACTIONS(3605), 1, - anon_sym_EQ, - ACTIONS(3681), 1, - anon_sym_DOT_DOT, + ACTIONS(3565), 1, + anon_sym_as, ACTIONS(3703), 1, + anon_sym_DOT_DOT, + ACTIONS(3719), 1, anon_sym_AMP, - ACTIONS(3709), 1, - anon_sym_AMP_AMP, - ACTIONS(3711), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3713), 1, - anon_sym_PIPE, - ACTIONS(3715), 1, + ACTIONS(3731), 1, anon_sym_CARET, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3679), 2, + ACTIONS(3701), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3695), 2, + ACTIONS(3713), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3701), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3719), 2, + ACTIONS(3735), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3697), 3, + ACTIONS(3699), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3717), 4, + ACTIONS(3591), 4, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + ACTIONS(3589), 19, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3603), 13, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -120420,58 +120852,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33837] = 21, - ACTIONS(3533), 1, + [34181] = 21, + ACTIONS(3547), 1, anon_sym_LBRACK, - ACTIONS(3539), 1, + ACTIONS(3555), 1, + anon_sym_DOT, + ACTIONS(3563), 1, + anon_sym_QMARK, + ACTIONS(3565), 1, anon_sym_as, - ACTIONS(3543), 1, + ACTIONS(3715), 1, + anon_sym_EQ, + ACTIONS(3719), 1, anon_sym_AMP, - ACTIONS(3551), 1, - anon_sym_DOT, - ACTIONS(3559), 1, + ACTIONS(3723), 1, + anon_sym_DOT_DOT, + ACTIONS(3725), 1, anon_sym_AMP_AMP, - ACTIONS(3561), 1, + ACTIONS(3727), 1, anon_sym_PIPE_PIPE, - ACTIONS(3563), 1, + ACTIONS(3729), 1, anon_sym_PIPE, - ACTIONS(3565), 1, + ACTIONS(3731), 1, anon_sym_CARET, - ACTIONS(3571), 1, - anon_sym_QMARK, - ACTIONS(3573), 1, - anon_sym_EQ, - ACTIONS(3661), 1, - anon_sym_DOT_DOT, - ACTIONS(3745), 1, - anon_sym_COMMA, - ACTIONS(3781), 1, - anon_sym_RPAREN, + ACTIONS(3813), 1, + anon_sym_LBRACE, + STATE(1177), 1, + sym_match_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3535), 2, + ACTIONS(3713), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3549), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3557), 2, + ACTIONS(3717), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3659), 2, + ACTIONS(3721), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3537), 3, + ACTIONS(3735), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3699), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3567), 4, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3575), 10, + ACTIONS(3737), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -120482,58 +120914,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33920] = 21, - ACTIONS(3533), 1, + [34264] = 18, + ACTIONS(3547), 1, anon_sym_LBRACK, - ACTIONS(3539), 1, + ACTIONS(3555), 1, + anon_sym_DOT, + ACTIONS(3565), 1, anon_sym_as, - ACTIONS(3543), 1, + ACTIONS(3611), 1, + anon_sym_EQ, + ACTIONS(3703), 1, + anon_sym_DOT_DOT, + ACTIONS(3719), 1, anon_sym_AMP, - ACTIONS(3551), 1, - anon_sym_DOT, - ACTIONS(3559), 1, + ACTIONS(3725), 1, anon_sym_AMP_AMP, - ACTIONS(3561), 1, + ACTIONS(3727), 1, anon_sym_PIPE_PIPE, - ACTIONS(3563), 1, + ACTIONS(3729), 1, anon_sym_PIPE, - ACTIONS(3565), 1, + ACTIONS(3731), 1, anon_sym_CARET, - ACTIONS(3571), 1, - anon_sym_QMARK, - ACTIONS(3573), 1, - anon_sym_EQ, - ACTIONS(3661), 1, - anon_sym_DOT_DOT, - ACTIONS(3783), 1, - anon_sym_RBRACE, - ACTIONS(3785), 1, - anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3535), 2, + ACTIONS(3701), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3713), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3549), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3557), 2, + ACTIONS(3717), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3659), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3537), 3, + ACTIONS(3735), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3699), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3567), 4, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3575), 10, + ACTIONS(3609), 13, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -120544,57 +120973,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34003] = 20, - ACTIONS(3533), 1, + [34341] = 21, + ACTIONS(739), 1, + anon_sym_LBRACE, + ACTIONS(3547), 1, anon_sym_LBRACK, - ACTIONS(3539), 1, - anon_sym_as, - ACTIONS(3543), 1, - anon_sym_AMP, - ACTIONS(3551), 1, + ACTIONS(3555), 1, anon_sym_DOT, - ACTIONS(3559), 1, - anon_sym_AMP_AMP, - ACTIONS(3561), 1, - anon_sym_PIPE_PIPE, ACTIONS(3563), 1, - anon_sym_PIPE, + anon_sym_QMARK, ACTIONS(3565), 1, - anon_sym_CARET, - ACTIONS(3571), 1, - anon_sym_QMARK, - ACTIONS(3573), 1, + anon_sym_as, + ACTIONS(3715), 1, anon_sym_EQ, - ACTIONS(3661), 1, + ACTIONS(3719), 1, + anon_sym_AMP, + ACTIONS(3723), 1, anon_sym_DOT_DOT, + ACTIONS(3725), 1, + anon_sym_AMP_AMP, + ACTIONS(3727), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3729), 1, + anon_sym_PIPE, + ACTIONS(3731), 1, + anon_sym_CARET, + STATE(241), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3535), 2, + ACTIONS(3713), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3549), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3557), 2, + ACTIONS(3717), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3659), 2, + ACTIONS(3721), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3787), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3537), 3, + ACTIONS(3735), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3699), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3567), 4, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3575), 10, + ACTIONS(3737), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -120605,55 +121035,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34084] = 18, - ACTIONS(3533), 1, + [34424] = 17, + ACTIONS(3547), 1, anon_sym_LBRACK, - ACTIONS(3539), 1, - anon_sym_as, - ACTIONS(3551), 1, + ACTIONS(3555), 1, anon_sym_DOT, - ACTIONS(3601), 1, + ACTIONS(3565), 1, + anon_sym_as, + ACTIONS(3591), 1, anon_sym_EQ, - ACTIONS(3681), 1, - anon_sym_DOT_DOT, ACTIONS(3703), 1, + anon_sym_DOT_DOT, + ACTIONS(3719), 1, anon_sym_AMP, - ACTIONS(3709), 1, + ACTIONS(3725), 1, anon_sym_AMP_AMP, - ACTIONS(3711), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3713), 1, + ACTIONS(3729), 1, anon_sym_PIPE, - ACTIONS(3715), 1, + ACTIONS(3731), 1, anon_sym_CARET, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3679), 2, + ACTIONS(3701), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3695), 2, + ACTIONS(3713), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3701), 2, + ACTIONS(3717), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3719), 2, + ACTIONS(3735), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3697), 3, + ACTIONS(3699), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3717), 4, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3599), 13, + ACTIONS(3589), 14, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_QMARK, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -120664,58 +121093,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34161] = 21, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(3533), 1, + [34499] = 16, + ACTIONS(3547), 1, anon_sym_LBRACK, - ACTIONS(3539), 1, - anon_sym_as, - ACTIONS(3551), 1, + ACTIONS(3555), 1, anon_sym_DOT, - ACTIONS(3571), 1, - anon_sym_QMARK, - ACTIONS(3699), 1, + ACTIONS(3565), 1, + anon_sym_as, + ACTIONS(3591), 1, anon_sym_EQ, ACTIONS(3703), 1, - anon_sym_AMP, - ACTIONS(3707), 1, anon_sym_DOT_DOT, - ACTIONS(3709), 1, - anon_sym_AMP_AMP, - ACTIONS(3711), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3713), 1, + ACTIONS(3719), 1, + anon_sym_AMP, + ACTIONS(3729), 1, anon_sym_PIPE, - ACTIONS(3715), 1, + ACTIONS(3731), 1, anon_sym_CARET, - STATE(179), 1, - sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3695), 2, + ACTIONS(3701), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3713), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3701), 2, + ACTIONS(3717), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3705), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3719), 2, + ACTIONS(3735), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3697), 3, + ACTIONS(3699), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3717), 4, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3721), 10, + ACTIONS(3589), 15, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -120726,58 +121150,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34244] = 21, - ACTIONS(3533), 1, + [34572] = 20, + ACTIONS(3547), 1, anon_sym_LBRACK, - ACTIONS(3539), 1, + ACTIONS(3555), 1, + anon_sym_DOT, + ACTIONS(3563), 1, + anon_sym_QMARK, + ACTIONS(3565), 1, anon_sym_as, - ACTIONS(3543), 1, + ACTIONS(3567), 1, + anon_sym_EQ, + ACTIONS(3571), 1, anon_sym_AMP, - ACTIONS(3551), 1, - anon_sym_DOT, - ACTIONS(3559), 1, - anon_sym_AMP_AMP, - ACTIONS(3561), 1, + ACTIONS(3575), 1, anon_sym_PIPE_PIPE, - ACTIONS(3563), 1, + ACTIONS(3577), 1, anon_sym_PIPE, - ACTIONS(3565), 1, + ACTIONS(3579), 1, anon_sym_CARET, - ACTIONS(3571), 1, - anon_sym_QMARK, - ACTIONS(3573), 1, - anon_sym_EQ, - ACTIONS(3661), 1, + ACTIONS(3675), 1, anon_sym_DOT_DOT, - ACTIONS(3789), 1, - anon_sym_SEMI, - ACTIONS(3791), 1, - anon_sym_else, + ACTIONS(3815), 1, + anon_sym_EQ_GT, + ACTIONS(3817), 1, + anon_sym_AMP_AMP, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3535), 2, + ACTIONS(3559), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3549), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3557), 2, + ACTIONS(3569), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3659), 2, + ACTIONS(3583), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3673), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3537), 3, + ACTIONS(3561), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3567), 4, + ACTIONS(3581), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3575), 10, + ACTIONS(3585), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -120788,58 +121210,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34327] = 21, - ACTIONS(3533), 1, + [34652] = 20, + ACTIONS(3547), 1, anon_sym_LBRACK, - ACTIONS(3539), 1, + ACTIONS(3555), 1, + anon_sym_DOT, + ACTIONS(3563), 1, + anon_sym_QMARK, + ACTIONS(3565), 1, anon_sym_as, - ACTIONS(3543), 1, + ACTIONS(3567), 1, + anon_sym_EQ, + ACTIONS(3571), 1, anon_sym_AMP, - ACTIONS(3551), 1, - anon_sym_DOT, - ACTIONS(3559), 1, + ACTIONS(3573), 1, anon_sym_AMP_AMP, - ACTIONS(3561), 1, + ACTIONS(3575), 1, anon_sym_PIPE_PIPE, - ACTIONS(3563), 1, + ACTIONS(3577), 1, anon_sym_PIPE, - ACTIONS(3565), 1, + ACTIONS(3579), 1, anon_sym_CARET, - ACTIONS(3571), 1, - anon_sym_QMARK, - ACTIONS(3573), 1, - anon_sym_EQ, - ACTIONS(3661), 1, + ACTIONS(3675), 1, anon_sym_DOT_DOT, - ACTIONS(3793), 1, - anon_sym_SEMI, - ACTIONS(3795), 1, - anon_sym_else, + ACTIONS(3819), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3535), 2, + ACTIONS(3559), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3549), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3557), 2, + ACTIONS(3569), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3659), 2, + ACTIONS(3583), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3673), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3537), 3, + ACTIONS(3561), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3567), 4, + ACTIONS(3581), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3575), 10, + ACTIONS(3585), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -120850,55 +121270,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34410] = 19, - ACTIONS(3533), 1, + [34732] = 20, + ACTIONS(3547), 1, anon_sym_LBRACK, - ACTIONS(3539), 1, - anon_sym_as, - ACTIONS(3543), 1, - anon_sym_AMP, - ACTIONS(3551), 1, + ACTIONS(3555), 1, anon_sym_DOT, - ACTIONS(3561), 1, - anon_sym_PIPE_PIPE, ACTIONS(3563), 1, - anon_sym_PIPE, + anon_sym_QMARK, ACTIONS(3565), 1, - anon_sym_CARET, + anon_sym_as, + ACTIONS(3567), 1, + anon_sym_EQ, ACTIONS(3571), 1, - anon_sym_QMARK, + anon_sym_AMP, ACTIONS(3573), 1, - anon_sym_EQ, - ACTIONS(3661), 1, + anon_sym_AMP_AMP, + ACTIONS(3575), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3577), 1, + anon_sym_PIPE, + ACTIONS(3579), 1, + anon_sym_CARET, + ACTIONS(3675), 1, anon_sym_DOT_DOT, + ACTIONS(3821), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3535), 2, + ACTIONS(3559), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3549), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3557), 2, + ACTIONS(3569), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3659), 2, + ACTIONS(3583), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3673), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3797), 2, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - ACTIONS(3537), 3, + ACTIONS(3561), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3567), 4, + ACTIONS(3581), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3575), 10, + ACTIONS(3585), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -120909,56 +121330,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34488] = 20, - ACTIONS(3533), 1, + [34812] = 20, + ACTIONS(3547), 1, anon_sym_LBRACK, - ACTIONS(3539), 1, + ACTIONS(3555), 1, + anon_sym_DOT, + ACTIONS(3563), 1, + anon_sym_QMARK, + ACTIONS(3565), 1, anon_sym_as, - ACTIONS(3543), 1, + ACTIONS(3567), 1, + anon_sym_EQ, + ACTIONS(3571), 1, anon_sym_AMP, - ACTIONS(3551), 1, - anon_sym_DOT, - ACTIONS(3559), 1, + ACTIONS(3573), 1, anon_sym_AMP_AMP, - ACTIONS(3561), 1, + ACTIONS(3575), 1, anon_sym_PIPE_PIPE, - ACTIONS(3563), 1, + ACTIONS(3577), 1, anon_sym_PIPE, - ACTIONS(3565), 1, + ACTIONS(3579), 1, anon_sym_CARET, - ACTIONS(3571), 1, - anon_sym_QMARK, - ACTIONS(3573), 1, - anon_sym_EQ, - ACTIONS(3661), 1, + ACTIONS(3675), 1, anon_sym_DOT_DOT, - ACTIONS(3799), 1, - anon_sym_RBRACK, + ACTIONS(3823), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3535), 2, + ACTIONS(3559), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3549), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3557), 2, + ACTIONS(3569), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3659), 2, + ACTIONS(3583), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3673), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3537), 3, + ACTIONS(3561), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3567), 4, + ACTIONS(3581), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3575), 10, + ACTIONS(3585), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -120969,56 +121390,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34568] = 20, - ACTIONS(3533), 1, + [34892] = 20, + ACTIONS(3547), 1, anon_sym_LBRACK, - ACTIONS(3539), 1, + ACTIONS(3555), 1, + anon_sym_DOT, + ACTIONS(3563), 1, + anon_sym_QMARK, + ACTIONS(3565), 1, anon_sym_as, - ACTIONS(3543), 1, + ACTIONS(3567), 1, + anon_sym_EQ, + ACTIONS(3571), 1, anon_sym_AMP, - ACTIONS(3551), 1, - anon_sym_DOT, - ACTIONS(3559), 1, + ACTIONS(3573), 1, anon_sym_AMP_AMP, - ACTIONS(3561), 1, + ACTIONS(3575), 1, anon_sym_PIPE_PIPE, - ACTIONS(3563), 1, + ACTIONS(3577), 1, anon_sym_PIPE, - ACTIONS(3565), 1, + ACTIONS(3579), 1, anon_sym_CARET, - ACTIONS(3571), 1, - anon_sym_QMARK, - ACTIONS(3573), 1, - anon_sym_EQ, - ACTIONS(3661), 1, + ACTIONS(3675), 1, anon_sym_DOT_DOT, - ACTIONS(3801), 1, + ACTIONS(3825), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3535), 2, + ACTIONS(3559), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3549), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3557), 2, + ACTIONS(3569), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3659), 2, + ACTIONS(3583), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3673), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3537), 3, + ACTIONS(3561), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3567), 4, + ACTIONS(3581), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3575), 10, + ACTIONS(3585), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -121029,56 +121450,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34648] = 20, - ACTIONS(3533), 1, + [34972] = 19, + ACTIONS(3547), 1, anon_sym_LBRACK, - ACTIONS(3539), 1, + ACTIONS(3555), 1, + anon_sym_DOT, + ACTIONS(3563), 1, + anon_sym_QMARK, + ACTIONS(3565), 1, anon_sym_as, - ACTIONS(3543), 1, + ACTIONS(3567), 1, + anon_sym_EQ, + ACTIONS(3571), 1, anon_sym_AMP, - ACTIONS(3551), 1, - anon_sym_DOT, - ACTIONS(3559), 1, - anon_sym_AMP_AMP, - ACTIONS(3561), 1, + ACTIONS(3575), 1, anon_sym_PIPE_PIPE, - ACTIONS(3563), 1, + ACTIONS(3577), 1, anon_sym_PIPE, - ACTIONS(3565), 1, + ACTIONS(3579), 1, anon_sym_CARET, - ACTIONS(3571), 1, - anon_sym_QMARK, - ACTIONS(3573), 1, - anon_sym_EQ, - ACTIONS(3661), 1, + ACTIONS(3675), 1, anon_sym_DOT_DOT, - ACTIONS(3803), 1, - anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3535), 2, + ACTIONS(3559), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3549), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3557), 2, + ACTIONS(3569), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3659), 2, + ACTIONS(3583), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3673), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3537), 3, + ACTIONS(3827), 2, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + ACTIONS(3561), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3567), 4, + ACTIONS(3581), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3575), 10, + ACTIONS(3585), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -121089,55 +121509,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34728] = 19, - ACTIONS(3533), 1, + [35050] = 20, + ACTIONS(3547), 1, anon_sym_LBRACK, - ACTIONS(3539), 1, - anon_sym_as, - ACTIONS(3551), 1, + ACTIONS(3555), 1, anon_sym_DOT, - ACTIONS(3571), 1, + ACTIONS(3563), 1, anon_sym_QMARK, - ACTIONS(3699), 1, + ACTIONS(3565), 1, + anon_sym_as, + ACTIONS(3567), 1, anon_sym_EQ, - ACTIONS(3703), 1, + ACTIONS(3571), 1, anon_sym_AMP, - ACTIONS(3707), 1, - anon_sym_DOT_DOT, - ACTIONS(3711), 1, + ACTIONS(3573), 1, + anon_sym_AMP_AMP, + ACTIONS(3575), 1, anon_sym_PIPE_PIPE, - ACTIONS(3713), 1, + ACTIONS(3577), 1, anon_sym_PIPE, - ACTIONS(3715), 1, + ACTIONS(3579), 1, anon_sym_CARET, + ACTIONS(3675), 1, + anon_sym_DOT_DOT, + ACTIONS(3829), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3695), 2, + ACTIONS(3559), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3701), 2, + ACTIONS(3569), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3705), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3719), 2, + ACTIONS(3583), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3797), 2, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - ACTIONS(3697), 3, + ACTIONS(3673), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3561), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3717), 4, + ACTIONS(3581), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3721), 10, + ACTIONS(3585), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -121148,56 +121569,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34806] = 20, - ACTIONS(3533), 1, + [35130] = 19, + ACTIONS(3547), 1, anon_sym_LBRACK, - ACTIONS(3539), 1, - anon_sym_as, - ACTIONS(3543), 1, - anon_sym_AMP, - ACTIONS(3551), 1, + ACTIONS(3555), 1, anon_sym_DOT, - ACTIONS(3559), 1, - anon_sym_AMP_AMP, - ACTIONS(3561), 1, - anon_sym_PIPE_PIPE, ACTIONS(3563), 1, - anon_sym_PIPE, - ACTIONS(3565), 1, - anon_sym_CARET, - ACTIONS(3571), 1, anon_sym_QMARK, - ACTIONS(3573), 1, + ACTIONS(3565), 1, + anon_sym_as, + ACTIONS(3715), 1, anon_sym_EQ, - ACTIONS(3661), 1, + ACTIONS(3719), 1, + anon_sym_AMP, + ACTIONS(3723), 1, anon_sym_DOT_DOT, - ACTIONS(3805), 1, - anon_sym_SEMI, + ACTIONS(3727), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3729), 1, + anon_sym_PIPE, + ACTIONS(3731), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3535), 2, + ACTIONS(3713), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3549), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3557), 2, + ACTIONS(3717), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3659), 2, + ACTIONS(3721), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3537), 3, + ACTIONS(3735), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3827), 2, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + ACTIONS(3699), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3567), 4, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3575), 10, + ACTIONS(3737), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -121208,56 +121628,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34886] = 20, - ACTIONS(3533), 1, + [35208] = 20, + ACTIONS(3547), 1, anon_sym_LBRACK, - ACTIONS(3539), 1, + ACTIONS(3555), 1, + anon_sym_DOT, + ACTIONS(3563), 1, + anon_sym_QMARK, + ACTIONS(3565), 1, anon_sym_as, - ACTIONS(3543), 1, + ACTIONS(3567), 1, + anon_sym_EQ, + ACTIONS(3571), 1, anon_sym_AMP, - ACTIONS(3551), 1, - anon_sym_DOT, - ACTIONS(3559), 1, + ACTIONS(3573), 1, anon_sym_AMP_AMP, - ACTIONS(3561), 1, + ACTIONS(3575), 1, anon_sym_PIPE_PIPE, - ACTIONS(3563), 1, + ACTIONS(3577), 1, anon_sym_PIPE, - ACTIONS(3565), 1, + ACTIONS(3579), 1, anon_sym_CARET, - ACTIONS(3571), 1, - anon_sym_QMARK, - ACTIONS(3573), 1, - anon_sym_EQ, - ACTIONS(3661), 1, + ACTIONS(3675), 1, anon_sym_DOT_DOT, - ACTIONS(3807), 1, - anon_sym_RBRACK, + ACTIONS(3831), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3535), 2, + ACTIONS(3559), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3549), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3557), 2, + ACTIONS(3569), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3659), 2, + ACTIONS(3583), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3673), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3537), 3, + ACTIONS(3561), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3567), 4, + ACTIONS(3581), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3575), 10, + ACTIONS(3585), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -121268,56 +121688,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34966] = 20, - ACTIONS(3533), 1, + [35288] = 20, + ACTIONS(3547), 1, anon_sym_LBRACK, - ACTIONS(3539), 1, + ACTIONS(3555), 1, + anon_sym_DOT, + ACTIONS(3563), 1, + anon_sym_QMARK, + ACTIONS(3565), 1, anon_sym_as, - ACTIONS(3543), 1, + ACTIONS(3567), 1, + anon_sym_EQ, + ACTIONS(3571), 1, anon_sym_AMP, - ACTIONS(3551), 1, - anon_sym_DOT, - ACTIONS(3559), 1, + ACTIONS(3573), 1, anon_sym_AMP_AMP, - ACTIONS(3561), 1, + ACTIONS(3575), 1, anon_sym_PIPE_PIPE, - ACTIONS(3563), 1, + ACTIONS(3577), 1, anon_sym_PIPE, - ACTIONS(3565), 1, + ACTIONS(3579), 1, anon_sym_CARET, - ACTIONS(3571), 1, - anon_sym_QMARK, - ACTIONS(3573), 1, - anon_sym_EQ, - ACTIONS(3661), 1, + ACTIONS(3675), 1, anon_sym_DOT_DOT, - ACTIONS(3809), 1, + ACTIONS(3833), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3535), 2, + ACTIONS(3559), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3549), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3557), 2, + ACTIONS(3569), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3659), 2, + ACTIONS(3583), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3673), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3537), 3, + ACTIONS(3561), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3567), 4, + ACTIONS(3581), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3575), 10, + ACTIONS(3585), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -121328,56 +121748,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35046] = 20, - ACTIONS(3533), 1, + [35368] = 20, + ACTIONS(3547), 1, anon_sym_LBRACK, - ACTIONS(3539), 1, - anon_sym_as, - ACTIONS(3543), 1, - anon_sym_AMP, - ACTIONS(3551), 1, + ACTIONS(3555), 1, anon_sym_DOT, - ACTIONS(3561), 1, - anon_sym_PIPE_PIPE, ACTIONS(3563), 1, - anon_sym_PIPE, + anon_sym_QMARK, ACTIONS(3565), 1, - anon_sym_CARET, + anon_sym_as, + ACTIONS(3567), 1, + anon_sym_EQ, ACTIONS(3571), 1, - anon_sym_QMARK, + anon_sym_AMP, ACTIONS(3573), 1, - anon_sym_EQ, - ACTIONS(3661), 1, - anon_sym_DOT_DOT, - ACTIONS(3811), 1, - anon_sym_EQ_GT, - ACTIONS(3813), 1, anon_sym_AMP_AMP, + ACTIONS(3575), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3577), 1, + anon_sym_PIPE, + ACTIONS(3579), 1, + anon_sym_CARET, + ACTIONS(3675), 1, + anon_sym_DOT_DOT, + ACTIONS(3835), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3535), 2, + ACTIONS(3559), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3549), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3557), 2, + ACTIONS(3569), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3659), 2, + ACTIONS(3583), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3673), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3537), 3, + ACTIONS(3561), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3567), 4, + ACTIONS(3581), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3575), 10, + ACTIONS(3585), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -121388,56 +121808,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35126] = 20, - ACTIONS(3533), 1, + [35448] = 20, + ACTIONS(3547), 1, anon_sym_LBRACK, - ACTIONS(3539), 1, + ACTIONS(3555), 1, + anon_sym_DOT, + ACTIONS(3563), 1, + anon_sym_QMARK, + ACTIONS(3565), 1, anon_sym_as, - ACTIONS(3543), 1, + ACTIONS(3567), 1, + anon_sym_EQ, + ACTIONS(3571), 1, anon_sym_AMP, - ACTIONS(3551), 1, - anon_sym_DOT, - ACTIONS(3559), 1, + ACTIONS(3573), 1, anon_sym_AMP_AMP, - ACTIONS(3561), 1, + ACTIONS(3575), 1, anon_sym_PIPE_PIPE, - ACTIONS(3563), 1, + ACTIONS(3577), 1, anon_sym_PIPE, - ACTIONS(3565), 1, + ACTIONS(3579), 1, anon_sym_CARET, - ACTIONS(3571), 1, - anon_sym_QMARK, - ACTIONS(3573), 1, - anon_sym_EQ, - ACTIONS(3661), 1, + ACTIONS(3675), 1, anon_sym_DOT_DOT, - ACTIONS(3677), 1, - anon_sym_SEMI, + ACTIONS(3837), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3535), 2, + ACTIONS(3559), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3549), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3557), 2, + ACTIONS(3569), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3659), 2, + ACTIONS(3583), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3673), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3537), 3, + ACTIONS(3561), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3567), 4, + ACTIONS(3581), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3575), 10, + ACTIONS(3585), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -121448,56 +121868,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35206] = 20, - ACTIONS(3533), 1, + [35528] = 20, + ACTIONS(3547), 1, anon_sym_LBRACK, - ACTIONS(3539), 1, + ACTIONS(3555), 1, + anon_sym_DOT, + ACTIONS(3563), 1, + anon_sym_QMARK, + ACTIONS(3565), 1, anon_sym_as, - ACTIONS(3543), 1, + ACTIONS(3567), 1, + anon_sym_EQ, + ACTIONS(3571), 1, anon_sym_AMP, - ACTIONS(3551), 1, - anon_sym_DOT, - ACTIONS(3559), 1, + ACTIONS(3573), 1, anon_sym_AMP_AMP, - ACTIONS(3561), 1, + ACTIONS(3575), 1, anon_sym_PIPE_PIPE, - ACTIONS(3563), 1, + ACTIONS(3577), 1, anon_sym_PIPE, - ACTIONS(3565), 1, + ACTIONS(3579), 1, anon_sym_CARET, - ACTIONS(3571), 1, - anon_sym_QMARK, - ACTIONS(3573), 1, - anon_sym_EQ, - ACTIONS(3661), 1, + ACTIONS(3675), 1, anon_sym_DOT_DOT, - ACTIONS(3815), 1, - anon_sym_COMMA, + ACTIONS(3839), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3535), 2, + ACTIONS(3559), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3549), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3557), 2, + ACTIONS(3569), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3659), 2, + ACTIONS(3583), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3673), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3537), 3, + ACTIONS(3561), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3567), 4, + ACTIONS(3581), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3575), 10, + ACTIONS(3585), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -121508,56 +121928,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35286] = 20, - ACTIONS(3533), 1, + [35608] = 20, + ACTIONS(3547), 1, anon_sym_LBRACK, - ACTIONS(3539), 1, + ACTIONS(3555), 1, + anon_sym_DOT, + ACTIONS(3563), 1, + anon_sym_QMARK, + ACTIONS(3565), 1, anon_sym_as, - ACTIONS(3543), 1, + ACTIONS(3567), 1, + anon_sym_EQ, + ACTIONS(3571), 1, anon_sym_AMP, - ACTIONS(3551), 1, - anon_sym_DOT, - ACTIONS(3559), 1, + ACTIONS(3573), 1, anon_sym_AMP_AMP, - ACTIONS(3561), 1, + ACTIONS(3575), 1, anon_sym_PIPE_PIPE, - ACTIONS(3563), 1, + ACTIONS(3577), 1, anon_sym_PIPE, - ACTIONS(3565), 1, + ACTIONS(3579), 1, anon_sym_CARET, - ACTIONS(3571), 1, - anon_sym_QMARK, - ACTIONS(3573), 1, - anon_sym_EQ, - ACTIONS(3661), 1, + ACTIONS(3675), 1, anon_sym_DOT_DOT, - ACTIONS(3817), 1, + ACTIONS(3841), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3535), 2, + ACTIONS(3559), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3549), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3557), 2, + ACTIONS(3569), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3659), 2, + ACTIONS(3583), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3673), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3537), 3, + ACTIONS(3561), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3567), 4, + ACTIONS(3581), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3575), 10, + ACTIONS(3585), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -121568,116 +121988,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35366] = 20, - ACTIONS(3533), 1, + [35688] = 20, + ACTIONS(3547), 1, anon_sym_LBRACK, - ACTIONS(3539), 1, - anon_sym_as, - ACTIONS(3543), 1, - anon_sym_AMP, - ACTIONS(3551), 1, + ACTIONS(3555), 1, anon_sym_DOT, - ACTIONS(3559), 1, - anon_sym_AMP_AMP, - ACTIONS(3561), 1, - anon_sym_PIPE_PIPE, ACTIONS(3563), 1, - anon_sym_PIPE, - ACTIONS(3565), 1, - anon_sym_CARET, - ACTIONS(3571), 1, anon_sym_QMARK, - ACTIONS(3573), 1, + ACTIONS(3565), 1, + anon_sym_as, + ACTIONS(3715), 1, anon_sym_EQ, - ACTIONS(3661), 1, + ACTIONS(3719), 1, + anon_sym_AMP, + ACTIONS(3723), 1, anon_sym_DOT_DOT, - ACTIONS(3819), 1, - anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3535), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3549), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3557), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3659), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3537), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3567), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3575), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [35446] = 20, - ACTIONS(3533), 1, - anon_sym_LBRACK, - ACTIONS(3539), 1, - anon_sym_as, - ACTIONS(3551), 1, - anon_sym_DOT, - ACTIONS(3571), 1, - anon_sym_QMARK, - ACTIONS(3699), 1, - anon_sym_EQ, - ACTIONS(3703), 1, - anon_sym_AMP, - ACTIONS(3707), 1, - anon_sym_DOT_DOT, - ACTIONS(3711), 1, + ACTIONS(3727), 1, anon_sym_PIPE_PIPE, - ACTIONS(3713), 1, + ACTIONS(3729), 1, anon_sym_PIPE, - ACTIONS(3715), 1, + ACTIONS(3731), 1, anon_sym_CARET, - ACTIONS(3811), 1, + ACTIONS(3815), 1, anon_sym_LBRACE, - ACTIONS(3821), 1, + ACTIONS(3843), 1, anon_sym_AMP_AMP, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3695), 2, + ACTIONS(3713), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3701), 2, + ACTIONS(3717), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3705), 2, + ACTIONS(3721), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3719), 2, + ACTIONS(3735), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3697), 3, + ACTIONS(3699), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3717), 4, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3721), 10, + ACTIONS(3737), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -121688,56 +122048,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35526] = 20, - ACTIONS(3533), 1, + [35768] = 20, + ACTIONS(3547), 1, anon_sym_LBRACK, - ACTIONS(3539), 1, + ACTIONS(3555), 1, + anon_sym_DOT, + ACTIONS(3563), 1, + anon_sym_QMARK, + ACTIONS(3565), 1, anon_sym_as, - ACTIONS(3543), 1, + ACTIONS(3567), 1, + anon_sym_EQ, + ACTIONS(3571), 1, anon_sym_AMP, - ACTIONS(3551), 1, - anon_sym_DOT, - ACTIONS(3559), 1, + ACTIONS(3573), 1, anon_sym_AMP_AMP, - ACTIONS(3561), 1, + ACTIONS(3575), 1, anon_sym_PIPE_PIPE, - ACTIONS(3563), 1, + ACTIONS(3577), 1, anon_sym_PIPE, - ACTIONS(3565), 1, + ACTIONS(3579), 1, anon_sym_CARET, - ACTIONS(3571), 1, - anon_sym_QMARK, - ACTIONS(3573), 1, - anon_sym_EQ, - ACTIONS(3661), 1, + ACTIONS(3675), 1, anon_sym_DOT_DOT, - ACTIONS(3823), 1, - anon_sym_RBRACK, + ACTIONS(3845), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3535), 2, + ACTIONS(3559), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3549), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3557), 2, + ACTIONS(3569), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3659), 2, + ACTIONS(3583), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3673), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3537), 3, + ACTIONS(3561), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3567), 4, + ACTIONS(3581), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3575), 10, + ACTIONS(3585), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -121748,56 +122108,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35606] = 20, - ACTIONS(3533), 1, + [35848] = 20, + ACTIONS(3547), 1, anon_sym_LBRACK, - ACTIONS(3539), 1, + ACTIONS(3555), 1, + anon_sym_DOT, + ACTIONS(3563), 1, + anon_sym_QMARK, + ACTIONS(3565), 1, anon_sym_as, - ACTIONS(3543), 1, + ACTIONS(3567), 1, + anon_sym_EQ, + ACTIONS(3571), 1, anon_sym_AMP, - ACTIONS(3551), 1, - anon_sym_DOT, - ACTIONS(3559), 1, + ACTIONS(3573), 1, anon_sym_AMP_AMP, - ACTIONS(3561), 1, + ACTIONS(3575), 1, anon_sym_PIPE_PIPE, - ACTIONS(3563), 1, + ACTIONS(3577), 1, anon_sym_PIPE, - ACTIONS(3565), 1, + ACTIONS(3579), 1, anon_sym_CARET, - ACTIONS(3571), 1, - anon_sym_QMARK, - ACTIONS(3573), 1, - anon_sym_EQ, - ACTIONS(3661), 1, + ACTIONS(3675), 1, anon_sym_DOT_DOT, - ACTIONS(3825), 1, - anon_sym_COMMA, + ACTIONS(3847), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3535), 2, + ACTIONS(3559), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3549), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3557), 2, + ACTIONS(3569), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3659), 2, + ACTIONS(3583), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3673), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3537), 3, + ACTIONS(3561), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3567), 4, + ACTIONS(3581), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3575), 10, + ACTIONS(3585), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -121808,56 +122168,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35686] = 20, - ACTIONS(3533), 1, + [35928] = 20, + ACTIONS(3547), 1, anon_sym_LBRACK, - ACTIONS(3539), 1, + ACTIONS(3555), 1, + anon_sym_DOT, + ACTIONS(3563), 1, + anon_sym_QMARK, + ACTIONS(3565), 1, anon_sym_as, - ACTIONS(3543), 1, + ACTIONS(3567), 1, + anon_sym_EQ, + ACTIONS(3571), 1, anon_sym_AMP, - ACTIONS(3551), 1, - anon_sym_DOT, - ACTIONS(3559), 1, + ACTIONS(3573), 1, anon_sym_AMP_AMP, - ACTIONS(3561), 1, + ACTIONS(3575), 1, anon_sym_PIPE_PIPE, - ACTIONS(3563), 1, + ACTIONS(3577), 1, anon_sym_PIPE, - ACTIONS(3565), 1, + ACTIONS(3579), 1, anon_sym_CARET, - ACTIONS(3571), 1, - anon_sym_QMARK, - ACTIONS(3573), 1, - anon_sym_EQ, - ACTIONS(3661), 1, + ACTIONS(3675), 1, anon_sym_DOT_DOT, - ACTIONS(3827), 1, + ACTIONS(3849), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3535), 2, + ACTIONS(3559), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3549), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3557), 2, + ACTIONS(3569), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3659), 2, + ACTIONS(3583), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3673), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3537), 3, + ACTIONS(3561), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3567), 4, + ACTIONS(3581), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3575), 10, + ACTIONS(3585), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -121868,56 +122228,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35766] = 20, - ACTIONS(3533), 1, + [36008] = 20, + ACTIONS(3547), 1, anon_sym_LBRACK, - ACTIONS(3539), 1, + ACTIONS(3555), 1, + anon_sym_DOT, + ACTIONS(3563), 1, + anon_sym_QMARK, + ACTIONS(3565), 1, anon_sym_as, - ACTIONS(3543), 1, + ACTIONS(3567), 1, + anon_sym_EQ, + ACTIONS(3571), 1, anon_sym_AMP, - ACTIONS(3551), 1, - anon_sym_DOT, - ACTIONS(3559), 1, + ACTIONS(3573), 1, anon_sym_AMP_AMP, - ACTIONS(3561), 1, + ACTIONS(3575), 1, anon_sym_PIPE_PIPE, - ACTIONS(3563), 1, + ACTIONS(3577), 1, anon_sym_PIPE, - ACTIONS(3565), 1, + ACTIONS(3579), 1, anon_sym_CARET, - ACTIONS(3571), 1, - anon_sym_QMARK, - ACTIONS(3573), 1, - anon_sym_EQ, - ACTIONS(3661), 1, + ACTIONS(3675), 1, anon_sym_DOT_DOT, - ACTIONS(3745), 1, - anon_sym_COMMA, + ACTIONS(3851), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3535), 2, + ACTIONS(3559), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3549), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3557), 2, + ACTIONS(3569), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3659), 2, + ACTIONS(3583), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3673), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3537), 3, + ACTIONS(3561), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3567), 4, + ACTIONS(3581), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3575), 10, + ACTIONS(3585), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -121928,56 +122288,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35846] = 20, - ACTIONS(3533), 1, + [36088] = 20, + ACTIONS(3547), 1, anon_sym_LBRACK, - ACTIONS(3539), 1, + ACTIONS(3555), 1, + anon_sym_DOT, + ACTIONS(3563), 1, + anon_sym_QMARK, + ACTIONS(3565), 1, anon_sym_as, - ACTIONS(3543), 1, + ACTIONS(3567), 1, + anon_sym_EQ, + ACTIONS(3571), 1, anon_sym_AMP, - ACTIONS(3551), 1, - anon_sym_DOT, - ACTIONS(3559), 1, + ACTIONS(3573), 1, anon_sym_AMP_AMP, - ACTIONS(3561), 1, + ACTIONS(3575), 1, anon_sym_PIPE_PIPE, - ACTIONS(3563), 1, + ACTIONS(3577), 1, anon_sym_PIPE, - ACTIONS(3565), 1, + ACTIONS(3579), 1, anon_sym_CARET, - ACTIONS(3571), 1, - anon_sym_QMARK, - ACTIONS(3573), 1, - anon_sym_EQ, - ACTIONS(3661), 1, + ACTIONS(3675), 1, anon_sym_DOT_DOT, - ACTIONS(3829), 1, - anon_sym_RBRACK, + ACTIONS(3853), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3535), 2, + ACTIONS(3559), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3549), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3557), 2, + ACTIONS(3569), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3659), 2, + ACTIONS(3583), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3673), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3537), 3, + ACTIONS(3561), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3567), 4, + ACTIONS(3581), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3575), 10, + ACTIONS(3585), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -121988,56 +122348,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35926] = 20, - ACTIONS(3533), 1, + [36168] = 20, + ACTIONS(3547), 1, anon_sym_LBRACK, - ACTIONS(3539), 1, + ACTIONS(3555), 1, + anon_sym_DOT, + ACTIONS(3563), 1, + anon_sym_QMARK, + ACTIONS(3565), 1, anon_sym_as, - ACTIONS(3543), 1, + ACTIONS(3567), 1, + anon_sym_EQ, + ACTIONS(3571), 1, anon_sym_AMP, - ACTIONS(3551), 1, - anon_sym_DOT, - ACTIONS(3559), 1, + ACTIONS(3573), 1, anon_sym_AMP_AMP, - ACTIONS(3561), 1, + ACTIONS(3575), 1, anon_sym_PIPE_PIPE, - ACTIONS(3563), 1, + ACTIONS(3577), 1, anon_sym_PIPE, - ACTIONS(3565), 1, + ACTIONS(3579), 1, anon_sym_CARET, - ACTIONS(3571), 1, - anon_sym_QMARK, - ACTIONS(3573), 1, - anon_sym_EQ, - ACTIONS(3661), 1, + ACTIONS(3675), 1, anon_sym_DOT_DOT, - ACTIONS(3831), 1, - anon_sym_RBRACK, + ACTIONS(3855), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3535), 2, + ACTIONS(3559), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3549), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3557), 2, + ACTIONS(3569), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3659), 2, + ACTIONS(3583), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3673), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3537), 3, + ACTIONS(3561), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3567), 4, + ACTIONS(3581), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3575), 10, + ACTIONS(3585), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -122048,56 +122408,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36006] = 20, - ACTIONS(3533), 1, + [36248] = 20, + ACTIONS(3547), 1, anon_sym_LBRACK, - ACTIONS(3539), 1, + ACTIONS(3555), 1, + anon_sym_DOT, + ACTIONS(3563), 1, + anon_sym_QMARK, + ACTIONS(3565), 1, anon_sym_as, - ACTIONS(3543), 1, + ACTIONS(3567), 1, + anon_sym_EQ, + ACTIONS(3571), 1, anon_sym_AMP, - ACTIONS(3551), 1, - anon_sym_DOT, - ACTIONS(3559), 1, + ACTIONS(3573), 1, anon_sym_AMP_AMP, - ACTIONS(3561), 1, + ACTIONS(3575), 1, anon_sym_PIPE_PIPE, - ACTIONS(3563), 1, + ACTIONS(3577), 1, anon_sym_PIPE, - ACTIONS(3565), 1, + ACTIONS(3579), 1, anon_sym_CARET, - ACTIONS(3571), 1, - anon_sym_QMARK, - ACTIONS(3573), 1, - anon_sym_EQ, - ACTIONS(3661), 1, + ACTIONS(3675), 1, anon_sym_DOT_DOT, - ACTIONS(3833), 1, - anon_sym_SEMI, + ACTIONS(3857), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3535), 2, + ACTIONS(3559), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3549), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3557), 2, + ACTIONS(3569), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3659), 2, + ACTIONS(3583), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3673), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3537), 3, + ACTIONS(3561), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3567), 4, + ACTIONS(3581), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3575), 10, + ACTIONS(3585), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -122108,56 +122468,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36086] = 20, - ACTIONS(3533), 1, + [36328] = 20, + ACTIONS(3547), 1, anon_sym_LBRACK, - ACTIONS(3539), 1, + ACTIONS(3555), 1, + anon_sym_DOT, + ACTIONS(3563), 1, + anon_sym_QMARK, + ACTIONS(3565), 1, anon_sym_as, - ACTIONS(3543), 1, + ACTIONS(3567), 1, + anon_sym_EQ, + ACTIONS(3571), 1, anon_sym_AMP, - ACTIONS(3551), 1, - anon_sym_DOT, - ACTIONS(3559), 1, + ACTIONS(3573), 1, anon_sym_AMP_AMP, - ACTIONS(3561), 1, + ACTIONS(3575), 1, anon_sym_PIPE_PIPE, - ACTIONS(3563), 1, + ACTIONS(3577), 1, anon_sym_PIPE, - ACTIONS(3565), 1, + ACTIONS(3579), 1, anon_sym_CARET, - ACTIONS(3571), 1, - anon_sym_QMARK, - ACTIONS(3573), 1, - anon_sym_EQ, - ACTIONS(3661), 1, + ACTIONS(3675), 1, anon_sym_DOT_DOT, - ACTIONS(3835), 1, - anon_sym_SEMI, + ACTIONS(3859), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3535), 2, + ACTIONS(3559), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3549), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3557), 2, + ACTIONS(3569), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3659), 2, + ACTIONS(3583), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3673), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3537), 3, + ACTIONS(3561), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3567), 4, + ACTIONS(3581), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3575), 10, + ACTIONS(3585), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -122168,56 +122528,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36166] = 20, - ACTIONS(3533), 1, + [36408] = 20, + ACTIONS(3547), 1, anon_sym_LBRACK, - ACTIONS(3539), 1, + ACTIONS(3555), 1, + anon_sym_DOT, + ACTIONS(3563), 1, + anon_sym_QMARK, + ACTIONS(3565), 1, anon_sym_as, - ACTIONS(3543), 1, + ACTIONS(3567), 1, + anon_sym_EQ, + ACTIONS(3571), 1, anon_sym_AMP, - ACTIONS(3551), 1, - anon_sym_DOT, - ACTIONS(3559), 1, + ACTIONS(3573), 1, anon_sym_AMP_AMP, - ACTIONS(3561), 1, + ACTIONS(3575), 1, anon_sym_PIPE_PIPE, - ACTIONS(3563), 1, + ACTIONS(3577), 1, anon_sym_PIPE, - ACTIONS(3565), 1, + ACTIONS(3579), 1, anon_sym_CARET, - ACTIONS(3571), 1, - anon_sym_QMARK, - ACTIONS(3573), 1, - anon_sym_EQ, - ACTIONS(3661), 1, + ACTIONS(3675), 1, anon_sym_DOT_DOT, - ACTIONS(3837), 1, - anon_sym_SEMI, + ACTIONS(3861), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3535), 2, + ACTIONS(3559), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3549), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3557), 2, + ACTIONS(3569), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3659), 2, + ACTIONS(3583), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3673), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3537), 3, + ACTIONS(3561), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3567), 4, + ACTIONS(3581), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3575), 10, + ACTIONS(3585), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -122228,56 +122588,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36246] = 20, - ACTIONS(3533), 1, + [36488] = 20, + ACTIONS(3547), 1, anon_sym_LBRACK, - ACTIONS(3539), 1, + ACTIONS(3555), 1, + anon_sym_DOT, + ACTIONS(3563), 1, + anon_sym_QMARK, + ACTIONS(3565), 1, anon_sym_as, - ACTIONS(3543), 1, + ACTIONS(3567), 1, + anon_sym_EQ, + ACTIONS(3571), 1, anon_sym_AMP, - ACTIONS(3551), 1, - anon_sym_DOT, - ACTIONS(3559), 1, + ACTIONS(3573), 1, anon_sym_AMP_AMP, - ACTIONS(3561), 1, + ACTIONS(3575), 1, anon_sym_PIPE_PIPE, - ACTIONS(3563), 1, + ACTIONS(3577), 1, anon_sym_PIPE, - ACTIONS(3565), 1, + ACTIONS(3579), 1, anon_sym_CARET, - ACTIONS(3571), 1, - anon_sym_QMARK, - ACTIONS(3573), 1, - anon_sym_EQ, - ACTIONS(3661), 1, + ACTIONS(3675), 1, anon_sym_DOT_DOT, - ACTIONS(3839), 1, - anon_sym_SEMI, + ACTIONS(3767), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3535), 2, + ACTIONS(3559), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3549), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3557), 2, + ACTIONS(3569), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3659), 2, + ACTIONS(3583), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3673), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3537), 3, + ACTIONS(3561), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3567), 4, + ACTIONS(3581), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3575), 10, + ACTIONS(3585), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -122288,56 +122648,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36326] = 20, - ACTIONS(3533), 1, + [36568] = 19, + ACTIONS(3547), 1, anon_sym_LBRACK, - ACTIONS(3539), 1, - anon_sym_as, - ACTIONS(3543), 1, - anon_sym_AMP, - ACTIONS(3551), 1, + ACTIONS(3555), 1, anon_sym_DOT, - ACTIONS(3559), 1, - anon_sym_AMP_AMP, - ACTIONS(3561), 1, - anon_sym_PIPE_PIPE, ACTIONS(3563), 1, - anon_sym_PIPE, - ACTIONS(3565), 1, - anon_sym_CARET, - ACTIONS(3571), 1, anon_sym_QMARK, - ACTIONS(3573), 1, + ACTIONS(3565), 1, + anon_sym_as, + ACTIONS(3715), 1, anon_sym_EQ, - ACTIONS(3661), 1, + ACTIONS(3719), 1, + anon_sym_AMP, + ACTIONS(3723), 1, anon_sym_DOT_DOT, - ACTIONS(3841), 1, - anon_sym_SEMI, + ACTIONS(3727), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3729), 1, + anon_sym_PIPE, + ACTIONS(3731), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3535), 2, + ACTIONS(3713), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3549), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3557), 2, + ACTIONS(3717), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3659), 2, + ACTIONS(3721), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3537), 3, + ACTIONS(3735), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3863), 2, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + ACTIONS(3699), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3567), 4, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3575), 10, + ACTIONS(3737), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -122348,56 +122707,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36406] = 20, - ACTIONS(3533), 1, + [36646] = 20, + ACTIONS(3547), 1, anon_sym_LBRACK, - ACTIONS(3539), 1, + ACTIONS(3555), 1, + anon_sym_DOT, + ACTIONS(3563), 1, + anon_sym_QMARK, + ACTIONS(3565), 1, anon_sym_as, - ACTIONS(3543), 1, + ACTIONS(3567), 1, + anon_sym_EQ, + ACTIONS(3571), 1, anon_sym_AMP, - ACTIONS(3551), 1, - anon_sym_DOT, - ACTIONS(3559), 1, + ACTIONS(3573), 1, anon_sym_AMP_AMP, - ACTIONS(3561), 1, + ACTIONS(3575), 1, anon_sym_PIPE_PIPE, - ACTIONS(3563), 1, + ACTIONS(3577), 1, anon_sym_PIPE, - ACTIONS(3565), 1, + ACTIONS(3579), 1, anon_sym_CARET, - ACTIONS(3571), 1, - anon_sym_QMARK, - ACTIONS(3573), 1, - anon_sym_EQ, - ACTIONS(3661), 1, + ACTIONS(3675), 1, anon_sym_DOT_DOT, - ACTIONS(3843), 1, + ACTIONS(3865), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3535), 2, + ACTIONS(3559), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3549), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3557), 2, + ACTIONS(3569), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3659), 2, + ACTIONS(3583), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3673), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3537), 3, + ACTIONS(3561), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3567), 4, + ACTIONS(3581), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3575), 10, + ACTIONS(3585), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -122408,56 +122767,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36486] = 20, - ACTIONS(3533), 1, + [36726] = 20, + ACTIONS(3547), 1, anon_sym_LBRACK, - ACTIONS(3539), 1, + ACTIONS(3555), 1, + anon_sym_DOT, + ACTIONS(3563), 1, + anon_sym_QMARK, + ACTIONS(3565), 1, anon_sym_as, - ACTIONS(3543), 1, + ACTIONS(3567), 1, + anon_sym_EQ, + ACTIONS(3571), 1, anon_sym_AMP, - ACTIONS(3551), 1, - anon_sym_DOT, - ACTIONS(3559), 1, + ACTIONS(3573), 1, anon_sym_AMP_AMP, - ACTIONS(3561), 1, + ACTIONS(3575), 1, anon_sym_PIPE_PIPE, - ACTIONS(3563), 1, + ACTIONS(3577), 1, anon_sym_PIPE, - ACTIONS(3565), 1, + ACTIONS(3579), 1, anon_sym_CARET, - ACTIONS(3571), 1, - anon_sym_QMARK, - ACTIONS(3573), 1, - anon_sym_EQ, - ACTIONS(3661), 1, + ACTIONS(3675), 1, anon_sym_DOT_DOT, - ACTIONS(3845), 1, - anon_sym_SEMI, + ACTIONS(3867), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3535), 2, + ACTIONS(3559), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3549), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3557), 2, + ACTIONS(3569), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3659), 2, + ACTIONS(3583), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3673), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3537), 3, + ACTIONS(3561), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3567), 4, + ACTIONS(3581), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3575), 10, + ACTIONS(3585), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -122468,55 +122827,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36566] = 19, - ACTIONS(3533), 1, + [36806] = 19, + ACTIONS(3547), 1, anon_sym_LBRACK, - ACTIONS(3539), 1, + ACTIONS(3555), 1, + anon_sym_DOT, + ACTIONS(3563), 1, + anon_sym_QMARK, + ACTIONS(3565), 1, anon_sym_as, - ACTIONS(3543), 1, + ACTIONS(3567), 1, + anon_sym_EQ, + ACTIONS(3571), 1, anon_sym_AMP, - ACTIONS(3551), 1, - anon_sym_DOT, - ACTIONS(3561), 1, + ACTIONS(3575), 1, anon_sym_PIPE_PIPE, - ACTIONS(3563), 1, + ACTIONS(3577), 1, anon_sym_PIPE, - ACTIONS(3565), 1, + ACTIONS(3579), 1, anon_sym_CARET, - ACTIONS(3571), 1, - anon_sym_QMARK, - ACTIONS(3573), 1, - anon_sym_EQ, - ACTIONS(3661), 1, + ACTIONS(3675), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3535), 2, + ACTIONS(3559), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3549), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3557), 2, + ACTIONS(3569), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3659), 2, + ACTIONS(3583), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3673), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3847), 2, + ACTIONS(3863), 2, anon_sym_EQ_GT, anon_sym_AMP_AMP, - ACTIONS(3537), 3, + ACTIONS(3561), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3567), 4, + ACTIONS(3581), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3575), 10, + ACTIONS(3585), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -122527,56 +122886,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36644] = 20, - ACTIONS(3533), 1, + [36884] = 20, + ACTIONS(3547), 1, anon_sym_LBRACK, - ACTIONS(3539), 1, + ACTIONS(3555), 1, + anon_sym_DOT, + ACTIONS(3563), 1, + anon_sym_QMARK, + ACTIONS(3565), 1, anon_sym_as, - ACTIONS(3543), 1, + ACTIONS(3567), 1, + anon_sym_EQ, + ACTIONS(3571), 1, anon_sym_AMP, - ACTIONS(3551), 1, - anon_sym_DOT, - ACTIONS(3559), 1, + ACTIONS(3573), 1, anon_sym_AMP_AMP, - ACTIONS(3561), 1, + ACTIONS(3575), 1, anon_sym_PIPE_PIPE, - ACTIONS(3563), 1, + ACTIONS(3577), 1, anon_sym_PIPE, - ACTIONS(3565), 1, + ACTIONS(3579), 1, anon_sym_CARET, - ACTIONS(3571), 1, - anon_sym_QMARK, - ACTIONS(3573), 1, - anon_sym_EQ, - ACTIONS(3661), 1, + ACTIONS(3675), 1, anon_sym_DOT_DOT, - ACTIONS(3849), 1, + ACTIONS(3869), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3535), 2, + ACTIONS(3559), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3549), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3557), 2, + ACTIONS(3569), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3659), 2, + ACTIONS(3583), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3673), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3537), 3, + ACTIONS(3561), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3567), 4, + ACTIONS(3581), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3575), 10, + ACTIONS(3585), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -122587,56 +122946,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36724] = 20, - ACTIONS(3533), 1, + [36964] = 20, + ACTIONS(3547), 1, anon_sym_LBRACK, - ACTIONS(3539), 1, + ACTIONS(3555), 1, + anon_sym_DOT, + ACTIONS(3563), 1, + anon_sym_QMARK, + ACTIONS(3565), 1, anon_sym_as, - ACTIONS(3543), 1, + ACTIONS(3567), 1, + anon_sym_EQ, + ACTIONS(3571), 1, anon_sym_AMP, - ACTIONS(3551), 1, - anon_sym_DOT, - ACTIONS(3559), 1, + ACTIONS(3573), 1, anon_sym_AMP_AMP, - ACTIONS(3561), 1, + ACTIONS(3575), 1, anon_sym_PIPE_PIPE, - ACTIONS(3563), 1, + ACTIONS(3577), 1, anon_sym_PIPE, - ACTIONS(3565), 1, + ACTIONS(3579), 1, anon_sym_CARET, - ACTIONS(3571), 1, - anon_sym_QMARK, - ACTIONS(3573), 1, - anon_sym_EQ, - ACTIONS(3661), 1, + ACTIONS(3675), 1, anon_sym_DOT_DOT, - ACTIONS(3851), 1, - anon_sym_RBRACK, + ACTIONS(3871), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3535), 2, + ACTIONS(3559), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3549), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3557), 2, + ACTIONS(3569), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3659), 2, + ACTIONS(3583), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3673), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3537), 3, + ACTIONS(3561), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3567), 4, + ACTIONS(3581), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3575), 10, + ACTIONS(3585), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -122647,116 +123006,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36804] = 20, - ACTIONS(3533), 1, + [37044] = 20, + ACTIONS(3547), 1, anon_sym_LBRACK, - ACTIONS(3539), 1, - anon_sym_as, - ACTIONS(3543), 1, - anon_sym_AMP, - ACTIONS(3551), 1, + ACTIONS(3555), 1, anon_sym_DOT, - ACTIONS(3559), 1, - anon_sym_AMP_AMP, - ACTIONS(3561), 1, - anon_sym_PIPE_PIPE, ACTIONS(3563), 1, - anon_sym_PIPE, - ACTIONS(3565), 1, - anon_sym_CARET, - ACTIONS(3571), 1, anon_sym_QMARK, - ACTIONS(3573), 1, - anon_sym_EQ, - ACTIONS(3661), 1, - anon_sym_DOT_DOT, - ACTIONS(3853), 1, - anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3535), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3549), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3557), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3659), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3537), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3567), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3575), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [36884] = 20, - ACTIONS(3533), 1, - anon_sym_LBRACK, - ACTIONS(3539), 1, + ACTIONS(3565), 1, anon_sym_as, - ACTIONS(3543), 1, + ACTIONS(3567), 1, + anon_sym_EQ, + ACTIONS(3571), 1, anon_sym_AMP, - ACTIONS(3551), 1, - anon_sym_DOT, - ACTIONS(3559), 1, + ACTIONS(3573), 1, anon_sym_AMP_AMP, - ACTIONS(3561), 1, + ACTIONS(3575), 1, anon_sym_PIPE_PIPE, - ACTIONS(3563), 1, + ACTIONS(3577), 1, anon_sym_PIPE, - ACTIONS(3565), 1, + ACTIONS(3579), 1, anon_sym_CARET, - ACTIONS(3571), 1, - anon_sym_QMARK, - ACTIONS(3573), 1, - anon_sym_EQ, - ACTIONS(3661), 1, + ACTIONS(3675), 1, anon_sym_DOT_DOT, - ACTIONS(3855), 1, + ACTIONS(3873), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3535), 2, + ACTIONS(3559), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3549), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3557), 2, + ACTIONS(3569), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3659), 2, + ACTIONS(3583), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3673), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3537), 3, + ACTIONS(3561), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3567), 4, + ACTIONS(3581), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3575), 10, + ACTIONS(3585), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -122767,55 +123066,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36964] = 19, - ACTIONS(3533), 1, + [37124] = 20, + ACTIONS(3547), 1, anon_sym_LBRACK, - ACTIONS(3539), 1, - anon_sym_as, - ACTIONS(3551), 1, + ACTIONS(3555), 1, anon_sym_DOT, - ACTIONS(3571), 1, + ACTIONS(3563), 1, anon_sym_QMARK, - ACTIONS(3699), 1, + ACTIONS(3565), 1, + anon_sym_as, + ACTIONS(3567), 1, anon_sym_EQ, - ACTIONS(3703), 1, + ACTIONS(3571), 1, anon_sym_AMP, - ACTIONS(3707), 1, - anon_sym_DOT_DOT, - ACTIONS(3711), 1, + ACTIONS(3573), 1, + anon_sym_AMP_AMP, + ACTIONS(3575), 1, anon_sym_PIPE_PIPE, - ACTIONS(3713), 1, + ACTIONS(3577), 1, anon_sym_PIPE, - ACTIONS(3715), 1, + ACTIONS(3579), 1, anon_sym_CARET, + ACTIONS(3675), 1, + anon_sym_DOT_DOT, + ACTIONS(3695), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3695), 2, + ACTIONS(3559), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3701), 2, + ACTIONS(3569), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3705), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3719), 2, + ACTIONS(3583), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3847), 2, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - ACTIONS(3697), 3, + ACTIONS(3673), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3561), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3717), 4, + ACTIONS(3581), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3721), 10, + ACTIONS(3585), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -122826,56 +123126,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37042] = 20, - ACTIONS(3533), 1, + [37204] = 20, + ACTIONS(3547), 1, anon_sym_LBRACK, - ACTIONS(3539), 1, + ACTIONS(3555), 1, + anon_sym_DOT, + ACTIONS(3563), 1, + anon_sym_QMARK, + ACTIONS(3565), 1, anon_sym_as, - ACTIONS(3543), 1, + ACTIONS(3567), 1, + anon_sym_EQ, + ACTIONS(3571), 1, anon_sym_AMP, - ACTIONS(3551), 1, - anon_sym_DOT, - ACTIONS(3559), 1, + ACTIONS(3573), 1, anon_sym_AMP_AMP, - ACTIONS(3561), 1, + ACTIONS(3575), 1, anon_sym_PIPE_PIPE, - ACTIONS(3563), 1, + ACTIONS(3577), 1, anon_sym_PIPE, - ACTIONS(3565), 1, + ACTIONS(3579), 1, anon_sym_CARET, - ACTIONS(3571), 1, - anon_sym_QMARK, - ACTIONS(3573), 1, - anon_sym_EQ, - ACTIONS(3661), 1, + ACTIONS(3675), 1, anon_sym_DOT_DOT, - ACTIONS(3857), 1, - anon_sym_COMMA, + ACTIONS(3875), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3535), 2, + ACTIONS(3559), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3549), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3557), 2, + ACTIONS(3569), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3659), 2, + ACTIONS(3583), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3673), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3537), 3, + ACTIONS(3561), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3567), 4, + ACTIONS(3581), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3575), 10, + ACTIONS(3585), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -122886,37 +123186,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37122] = 15, + [37284] = 15, ACTIONS(7), 1, sym__primitive_identifier, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(3861), 1, + ACTIONS(3879), 1, anon_sym_COLON_COLON, - ACTIONS(3865), 1, + ACTIONS(3883), 1, sym_metavariable, - STATE(1705), 1, + STATE(1722), 1, + sym_primitive_type, + STATE(1732), 1, sym_scoped_identifier, - STATE(1712), 1, + STATE(1734), 1, sym_identifier, - STATE(1714), 1, - sym_primitive_type, - STATE(2667), 1, + STATE(2647), 1, sym_attribute, - STATE(2693), 1, - sym_bracketed_type, - STATE(2761), 1, + STATE(2648), 1, sym_generic_type_with_turbofish, + STATE(2734), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, ACTIONS(97), 2, sym__raw_identifier, sym_grit_metavariable, - ACTIONS(3859), 2, + ACTIONS(3877), 2, anon_sym_default, anon_sym_union, - ACTIONS(3863), 3, + ACTIONS(3881), 3, sym_self, sym_super, sym_crate, @@ -122938,37 +123238,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [37189] = 15, + [37351] = 15, ACTIONS(7), 1, sym__primitive_identifier, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(3861), 1, + ACTIONS(3879), 1, anon_sym_COLON_COLON, - ACTIONS(3865), 1, + ACTIONS(3883), 1, sym_metavariable, - STATE(1705), 1, + STATE(1722), 1, + sym_primitive_type, + STATE(1732), 1, sym_scoped_identifier, - STATE(1712), 1, + STATE(1734), 1, sym_identifier, - STATE(1714), 1, - sym_primitive_type, - STATE(2693), 1, - sym_bracketed_type, - STATE(2722), 1, - sym_attribute, - STATE(2761), 1, + STATE(2648), 1, sym_generic_type_with_turbofish, + STATE(2678), 1, + sym_attribute, + STATE(2734), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, ACTIONS(97), 2, sym__raw_identifier, sym_grit_metavariable, - ACTIONS(3859), 2, + ACTIONS(3877), 2, anon_sym_default, anon_sym_union, - ACTIONS(3863), 3, + ACTIONS(3881), 3, sym_self, sym_super, sym_crate, @@ -122990,37 +123290,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [37256] = 15, + [37418] = 15, ACTIONS(7), 1, sym__primitive_identifier, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(3861), 1, + ACTIONS(3879), 1, anon_sym_COLON_COLON, - ACTIONS(3865), 1, + ACTIONS(3883), 1, sym_metavariable, - STATE(1705), 1, + STATE(1722), 1, + sym_primitive_type, + STATE(1732), 1, sym_scoped_identifier, - STATE(1712), 1, + STATE(1734), 1, sym_identifier, - STATE(1714), 1, - sym_primitive_type, - STATE(2693), 1, - sym_bracketed_type, - STATE(2715), 1, - sym_attribute, - STATE(2761), 1, + STATE(2648), 1, sym_generic_type_with_turbofish, + STATE(2728), 1, + sym_attribute, + STATE(2734), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, ACTIONS(97), 2, sym__raw_identifier, sym_grit_metavariable, - ACTIONS(3859), 2, + ACTIONS(3877), 2, anon_sym_default, anon_sym_union, - ACTIONS(3863), 3, + ACTIONS(3881), 3, sym_self, sym_super, sym_crate, @@ -123042,37 +123342,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [37323] = 15, + [37485] = 15, ACTIONS(7), 1, sym__primitive_identifier, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(3861), 1, + ACTIONS(3879), 1, anon_sym_COLON_COLON, - ACTIONS(3865), 1, + ACTIONS(3883), 1, sym_metavariable, - STATE(1705), 1, + STATE(1722), 1, + sym_primitive_type, + STATE(1732), 1, sym_scoped_identifier, - STATE(1712), 1, + STATE(1734), 1, sym_identifier, - STATE(1714), 1, - sym_primitive_type, - STATE(2693), 1, - sym_bracketed_type, - STATE(2694), 1, + STATE(2626), 1, sym_attribute, - STATE(2761), 1, + STATE(2648), 1, sym_generic_type_with_turbofish, + STATE(2734), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, ACTIONS(97), 2, sym__raw_identifier, sym_grit_metavariable, - ACTIONS(3859), 2, + ACTIONS(3877), 2, anon_sym_default, anon_sym_union, - ACTIONS(3863), 3, + ACTIONS(3881), 3, sym_self, sym_super, sym_crate, @@ -123094,37 +123394,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [37390] = 15, + [37552] = 15, ACTIONS(7), 1, sym__primitive_identifier, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(3861), 1, + ACTIONS(3879), 1, anon_sym_COLON_COLON, - ACTIONS(3865), 1, + ACTIONS(3883), 1, sym_metavariable, - STATE(1705), 1, + STATE(1722), 1, + sym_primitive_type, + STATE(1732), 1, sym_scoped_identifier, - STATE(1712), 1, + STATE(1734), 1, sym_identifier, - STATE(1714), 1, - sym_primitive_type, - STATE(2625), 1, + STATE(2648), 1, + sym_generic_type_with_turbofish, + STATE(2697), 1, sym_attribute, - STATE(2693), 1, + STATE(2734), 1, sym_bracketed_type, - STATE(2761), 1, - sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, ACTIONS(97), 2, sym__raw_identifier, sym_grit_metavariable, - ACTIONS(3859), 2, + ACTIONS(3877), 2, anon_sym_default, anon_sym_union, - ACTIONS(3863), 3, + ACTIONS(3881), 3, sym_self, sym_super, sym_crate, @@ -123146,37 +123446,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [37457] = 15, + [37619] = 15, ACTIONS(7), 1, sym__primitive_identifier, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(3861), 1, + ACTIONS(3879), 1, anon_sym_COLON_COLON, - ACTIONS(3865), 1, + ACTIONS(3883), 1, sym_metavariable, - STATE(1705), 1, + STATE(1722), 1, + sym_primitive_type, + STATE(1732), 1, sym_scoped_identifier, - STATE(1712), 1, + STATE(1734), 1, sym_identifier, - STATE(1714), 1, - sym_primitive_type, - STATE(2635), 1, + STATE(2633), 1, sym_attribute, - STATE(2693), 1, - sym_bracketed_type, - STATE(2761), 1, + STATE(2648), 1, sym_generic_type_with_turbofish, + STATE(2734), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, ACTIONS(97), 2, sym__raw_identifier, sym_grit_metavariable, - ACTIONS(3859), 2, + ACTIONS(3877), 2, anon_sym_default, anon_sym_union, - ACTIONS(3863), 3, + ACTIONS(3881), 3, sym_self, sym_super, sym_crate, @@ -123198,37 +123498,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [37524] = 15, + [37686] = 15, ACTIONS(7), 1, sym__primitive_identifier, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(3861), 1, + ACTIONS(3879), 1, anon_sym_COLON_COLON, - ACTIONS(3865), 1, + ACTIONS(3883), 1, sym_metavariable, - STATE(1705), 1, + STATE(1722), 1, + sym_primitive_type, + STATE(1732), 1, sym_scoped_identifier, - STATE(1712), 1, + STATE(1734), 1, sym_identifier, - STATE(1714), 1, - sym_primitive_type, - STATE(2680), 1, + STATE(2648), 1, + sym_generic_type_with_turbofish, + STATE(2722), 1, sym_attribute, - STATE(2693), 1, + STATE(2734), 1, sym_bracketed_type, - STATE(2761), 1, - sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, ACTIONS(97), 2, sym__raw_identifier, sym_grit_metavariable, - ACTIONS(3859), 2, + ACTIONS(3877), 2, anon_sym_default, anon_sym_union, - ACTIONS(3863), 3, + ACTIONS(3881), 3, sym_self, sym_super, sym_crate, @@ -123250,17 +123550,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [37591] = 3, + [37753] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3869), 5, + ACTIONS(3887), 5, anon_sym_LT, anon_sym_COLON_COLON, sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(3867), 28, + ACTIONS(3885), 28, anon_sym_async, anon_sym_const, anon_sym_default, @@ -123289,35 +123589,35 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [37633] = 14, + [37795] = 14, ACTIONS(7), 1, sym__primitive_identifier, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(3861), 1, + ACTIONS(3879), 1, anon_sym_COLON_COLON, - ACTIONS(3875), 1, + ACTIONS(3893), 1, sym_metavariable, - STATE(2585), 1, + STATE(2437), 1, sym_primitive_type, - STATE(2596), 1, + STATE(2451), 1, sym_scoped_identifier, - STATE(2599), 1, + STATE(2452), 1, sym_identifier, - STATE(2693), 1, - sym_bracketed_type, - STATE(2761), 1, + STATE(2648), 1, sym_generic_type_with_turbofish, + STATE(2734), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, ACTIONS(97), 2, sym__raw_identifier, sym_grit_metavariable, - ACTIONS(3871), 2, + ACTIONS(3889), 2, anon_sym_default, anon_sym_union, - ACTIONS(3873), 3, + ACTIONS(3891), 3, sym_self, sym_super, sym_crate, @@ -123339,39 +123639,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [37697] = 14, - ACTIONS(7), 1, - sym__primitive_identifier, - ACTIONS(75), 1, - anon_sym_LT, - ACTIONS(3861), 1, - anon_sym_COLON_COLON, - ACTIONS(3881), 1, - sym_metavariable, - STATE(2533), 1, - sym_identifier, - STATE(2534), 1, - sym_scoped_identifier, - STATE(2539), 1, - sym_primitive_type, - STATE(2693), 1, - sym_bracketed_type, - STATE(2761), 1, - sym_generic_type_with_turbofish, + [37859] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(97), 2, + ACTIONS(3897), 5, + anon_sym_LT, + anon_sym_COLON_COLON, sym__raw_identifier, + sym_metavariable, sym_grit_metavariable, - ACTIONS(3877), 2, + ACTIONS(3895), 28, + anon_sym_async, + anon_sym_const, anon_sym_default, + anon_sym_fn, anon_sym_union, - ACTIONS(3879), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(95), 17, + anon_sym_unsafe, + anon_sym_extern, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123389,17 +123674,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [37761] = 3, + sym__primitive_identifier, + sym_self, + sym_super, + sym_crate, + [37901] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3885), 5, + ACTIONS(3901), 5, anon_sym_LT, anon_sym_COLON_COLON, sym__raw_identifier, sym_metavariable, sym_grit_metavariable, - ACTIONS(3883), 28, + ACTIONS(3899), 28, anon_sym_async, anon_sym_const, anon_sym_default, @@ -123428,24 +123717,39 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [37803] = 3, + [37943] = 14, + ACTIONS(7), 1, + sym__primitive_identifier, + ACTIONS(75), 1, + anon_sym_LT, + ACTIONS(3879), 1, + anon_sym_COLON_COLON, + ACTIONS(3907), 1, + sym_metavariable, + STATE(2585), 1, + sym_primitive_type, + STATE(2595), 1, + sym_scoped_identifier, + STATE(2597), 1, + sym_identifier, + STATE(2648), 1, + sym_generic_type_with_turbofish, + STATE(2734), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3889), 5, - anon_sym_LT, - anon_sym_COLON_COLON, + ACTIONS(97), 2, sym__raw_identifier, - sym_metavariable, sym_grit_metavariable, - ACTIONS(3887), 28, - anon_sym_async, - anon_sym_const, + ACTIONS(3903), 2, anon_sym_default, - anon_sym_fn, anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, + ACTIONS(3905), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(95), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123463,18 +123767,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - sym__primitive_identifier, - sym_self, - sym_super, - sym_crate, - [37845] = 3, + [38007] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1038), 2, + ACTIONS(1036), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(1040), 23, + ACTIONS(1038), 23, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -123498,13 +123798,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_PIPE, anon_sym_AT, - [37879] = 3, - ACTIONS(2852), 1, + [38041] = 3, + ACTIONS(2940), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2854), 21, + ACTIONS(2942), 21, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -123526,13 +123826,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [37910] = 3, - ACTIONS(2940), 1, + [38072] = 3, + ACTIONS(2934), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2942), 21, + ACTIONS(2936), 21, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -123554,31 +123854,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [37941] = 11, - ACTIONS(3893), 1, + [38103] = 11, + ACTIONS(3911), 1, anon_sym_LPAREN, - ACTIONS(3895), 1, + ACTIONS(3913), 1, anon_sym_LBRACE, - ACTIONS(3899), 1, + ACTIONS(3917), 1, anon_sym_BANG, - ACTIONS(3901), 1, + ACTIONS(3919), 1, anon_sym_COLON_COLON, - ACTIONS(3905), 1, + ACTIONS(3923), 1, anon_sym_LT2, - ACTIONS(3907), 1, + ACTIONS(3925), 1, anon_sym_AT, - STATE(1465), 1, + STATE(1469), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3897), 2, + ACTIONS(3915), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3903), 2, + ACTIONS(3921), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3891), 10, + ACTIONS(3909), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -123589,14 +123889,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [37987] = 4, + [38149] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3912), 2, + ACTIONS(3930), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(1040), 9, + ACTIONS(1038), 9, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_PLUS, @@ -123606,7 +123906,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT2, anon_sym_DOT_DOT_EQ, anon_sym_AT, - ACTIONS(3909), 10, + ACTIONS(3927), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -123617,14 +123917,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [38019] = 3, + [38181] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2876), 2, + ACTIONS(2930), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(2878), 18, + ACTIONS(2932), 18, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -123643,17 +123943,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [38048] = 4, + [38210] = 4, + ACTIONS(3019), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3055), 2, + ACTIONS(3023), 2, + anon_sym_BANG, + anon_sym_COLON_COLON, + ACTIONS(3017), 16, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_PLUS, + anon_sym_as, + anon_sym_for, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_else, anon_sym_LT2, - ACTIONS(3059), 2, + anon_sym_PIPE, + [38240] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3029), 2, + anon_sym_LBRACE, + anon_sym_LT2, + ACTIONS(3033), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3061), 15, + ACTIONS(3035), 15, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -123669,17 +123995,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [38078] = 4, + [38270] = 8, + ACTIONS(3917), 1, + anon_sym_BANG, + ACTIONS(3923), 1, + anon_sym_LT2, + ACTIONS(3933), 1, + anon_sym_LPAREN, + ACTIONS(3935), 1, + anon_sym_COLON_COLON, + STATE(1469), 1, + sym_type_arguments, + STATE(1504), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2997), 13, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_PLUS, + anon_sym_as, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_else, + anon_sym_PIPE, + [38308] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3015), 2, + ACTIONS(3065), 2, anon_sym_LBRACE, anon_sym_LT2, - ACTIONS(3019), 2, + ACTIONS(3069), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3021), 15, + ACTIONS(3071), 15, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -123695,16 +124051,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [38108] = 4, - ACTIONS(3057), 1, + [38338] = 4, + ACTIONS(3055), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3061), 2, + ACTIONS(3059), 2, anon_sym_BANG, anon_sym_COLON_COLON, - ACTIONS(3055), 16, + ACTIONS(3053), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -123721,17 +124077,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_LT2, anon_sym_PIPE, - [38138] = 4, + [38368] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3063), 2, + ACTIONS(3017), 2, anon_sym_LBRACE, anon_sym_LT2, - ACTIONS(3067), 2, + ACTIONS(3021), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3069), 15, + ACTIONS(3023), 15, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -123747,46 +124103,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [38168] = 8, - ACTIONS(3899), 1, - anon_sym_BANG, - ACTIONS(3905), 1, - anon_sym_LT2, - ACTIONS(3915), 1, - anon_sym_LPAREN, - ACTIONS(3917), 1, - anon_sym_COLON_COLON, - STATE(1465), 1, - sym_type_arguments, - STATE(1488), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2995), 13, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_else, - anon_sym_PIPE, - [38206] = 4, - ACTIONS(3079), 1, + [38398] = 4, + ACTIONS(3067), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3083), 2, + ACTIONS(3071), 2, anon_sym_BANG, anon_sym_COLON_COLON, - ACTIONS(3077), 16, + ACTIONS(3065), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -123803,16 +124129,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_LT2, anon_sym_PIPE, - [38236] = 4, - ACTIONS(3065), 1, + [38428] = 4, + ACTIONS(3031), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3069), 2, + ACTIONS(3035), 2, anon_sym_BANG, anon_sym_COLON_COLON, - ACTIONS(3063), 16, + ACTIONS(3029), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -123829,17 +124155,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_LT2, anon_sym_PIPE, - [38266] = 4, + [38458] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3077), 2, + ACTIONS(3053), 2, anon_sym_LBRACE, anon_sym_LT2, - ACTIONS(3081), 2, + ACTIONS(3057), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3083), 15, + ACTIONS(3059), 15, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -123855,68 +124181,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [38296] = 4, - ACTIONS(3017), 1, - anon_sym_COLON, + [38488] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3021), 2, - anon_sym_BANG, - anon_sym_COLON_COLON, - ACTIONS(3015), 16, + ACTIONS(1038), 18, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, anon_sym_as, - anon_sym_for, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, + anon_sym_LT, anon_sym_GT, anon_sym_else, - anon_sym_LT2, + sym_mutable_specifier, anon_sym_PIPE, - [38326] = 7, - ACTIONS(3905), 1, - anon_sym_LT2, - ACTIONS(3915), 1, + sym_self, + [38513] = 4, + ACTIONS(3937), 1, anon_sym_LPAREN, - ACTIONS(3917), 1, - anon_sym_COLON_COLON, - STATE(1465), 1, - sym_type_arguments, - STATE(1488), 1, - sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3007), 13, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_else, - anon_sym_PIPE, - [38361] = 3, + ACTIONS(3199), 2, + sym__raw_identifier, + sym_grit_metavariable, + ACTIONS(3194), 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__primitive_identifier, + [38542] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3019), 2, + ACTIONS(3069), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3021), 16, + ACTIONS(3071), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -123933,14 +124253,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_in, anon_sym_PIPE, - [38388] = 3, + [38569] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3081), 2, + ACTIONS(3033), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3083), 16, + ACTIONS(3035), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -123957,21 +124277,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_in, anon_sym_PIPE, - [38415] = 7, - ACTIONS(3905), 1, + [38596] = 7, + ACTIONS(3923), 1, anon_sym_LT2, - ACTIONS(3915), 1, + ACTIONS(3933), 1, anon_sym_LPAREN, - ACTIONS(3917), 1, + ACTIONS(3935), 1, anon_sym_COLON_COLON, - STATE(1465), 1, + STATE(1469), 1, sym_type_arguments, - STATE(1488), 1, + STATE(1504), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3011), 13, + ACTIONS(3013), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -123985,85 +124305,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [38450] = 2, + [38631] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1040), 18, + ACTIONS(3057), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(3059), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_as, + anon_sym_if, + anon_sym_BANG, + anon_sym_COMMA, + anon_sym_else, + anon_sym_COLON_COLON, + anon_sym_in, + anon_sym_PIPE, + [38658] = 7, + ACTIONS(3923), 1, + anon_sym_LT2, + ACTIONS(3933), 1, + anon_sym_LPAREN, + ACTIONS(3935), 1, + anon_sym_COLON_COLON, + STATE(1469), 1, + sym_type_arguments, + STATE(1504), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3009), 13, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS, anon_sym_as, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - anon_sym_LT, anon_sym_GT, anon_sym_else, - sym_mutable_specifier, anon_sym_PIPE, - sym_self, - [38475] = 4, - ACTIONS(3919), 1, + [38693] = 6, + ACTIONS(3923), 1, + anon_sym_LT2, + ACTIONS(3933), 1, anon_sym_LPAREN, + STATE(1467), 1, + sym_type_arguments, + STATE(1506), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3201), 2, - sym__raw_identifier, - sym_grit_metavariable, - ACTIONS(3196), 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__primitive_identifier, - [38504] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3059), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3061), 16, + ACTIONS(3025), 13, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_PLUS, anon_sym_as, - anon_sym_if, - anon_sym_BANG, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, + anon_sym_GT, anon_sym_else, - anon_sym_COLON_COLON, - anon_sym_in, anon_sym_PIPE, - [38531] = 3, - ACTIONS(711), 1, + [38725] = 3, + ACTIONS(729), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(709), 16, + ACTIONS(727), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -124080,82 +124406,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [38557] = 17, - ACTIONS(3923), 1, + [38751] = 3, + ACTIONS(713), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(711), 16, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_as, + anon_sym_if, + anon_sym_where, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_else, + anon_sym_in, + anon_sym_PIPE, + [38777] = 17, + ACTIONS(3941), 1, anon_sym_const, - ACTIONS(3925), 1, + ACTIONS(3943), 1, anon_sym_enum, - ACTIONS(3927), 1, + ACTIONS(3945), 1, anon_sym_fn, - ACTIONS(3929), 1, + ACTIONS(3947), 1, anon_sym_mod, - ACTIONS(3931), 1, + ACTIONS(3949), 1, anon_sym_static, - ACTIONS(3933), 1, + ACTIONS(3951), 1, anon_sym_struct, - ACTIONS(3935), 1, + ACTIONS(3953), 1, anon_sym_trait, - ACTIONS(3937), 1, + ACTIONS(3955), 1, anon_sym_type, - ACTIONS(3939), 1, + ACTIONS(3957), 1, anon_sym_union, - ACTIONS(3941), 1, + ACTIONS(3959), 1, anon_sym_unsafe, - ACTIONS(3943), 1, + ACTIONS(3961), 1, anon_sym_use, - ACTIONS(3945), 1, + ACTIONS(3963), 1, anon_sym_extern, - STATE(1658), 1, + STATE(1664), 1, sym_extern_modifier, - STATE(1694), 1, + STATE(1681), 1, aux_sym_function_modifiers_repeat1, - STATE(2751), 1, + STATE(2615), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3921), 2, + ACTIONS(3939), 2, anon_sym_async, anon_sym_default, - [38611] = 6, - ACTIONS(3905), 1, - anon_sym_LT2, - ACTIONS(3915), 1, - anon_sym_LPAREN, - STATE(1462), 1, - sym_type_arguments, - STATE(1497), 1, - sym_parameters, + [38831] = 3, + ACTIONS(782), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 13, + ACTIONS(780), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, anon_sym_as, + anon_sym_if, anon_sym_where, - anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, anon_sym_else, + anon_sym_in, anon_sym_PIPE, - [38643] = 6, - ACTIONS(3905), 1, + [38857] = 6, + ACTIONS(3923), 1, anon_sym_LT2, - ACTIONS(3915), 1, + ACTIONS(3933), 1, anon_sym_LPAREN, - STATE(1462), 1, + STATE(1467), 1, sym_type_arguments, - STATE(1497), 1, + STATE(1506), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3085), 13, + ACTIONS(3077), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -124169,40 +124515,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [38675] = 7, - ACTIONS(3893), 1, - anon_sym_LPAREN, - ACTIONS(3899), 1, - anon_sym_BANG, - ACTIONS(3947), 1, - anon_sym_COLON_COLON, + [38889] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3897), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3903), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3891), 10, + ACTIONS(3631), 2, + sym__raw_identifier, + sym_grit_metavariable, + ACTIONS(3629), 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__primitive_identifier, + [38915] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3659), 2, + sym__raw_identifier, + sym_grit_metavariable, + ACTIONS(3657), 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__primitive_identifier, + [38941] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3017), 17, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_if, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_as, + anon_sym_for, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, + anon_sym_GT, anon_sym_else, - anon_sym_in, + anon_sym_LT2, anon_sym_PIPE, - [38709] = 3, - ACTIONS(832), 1, + [38965] = 3, + ACTIONS(822), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(830), 16, + ACTIONS(820), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -124219,36 +124606,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [38735] = 2, + [38991] = 7, + ACTIONS(3911), 1, + anon_sym_LPAREN, + ACTIONS(3917), 1, + anon_sym_BANG, + ACTIONS(3965), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3063), 17, + ACTIONS(3915), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(3921), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3909), 10, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_for, - anon_sym_where, - anon_sym_EQ, + anon_sym_if, anon_sym_COMMA, - anon_sym_GT, anon_sym_else, - anon_sym_LT2, + anon_sym_in, anon_sym_PIPE, - [38759] = 3, + [39025] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3639), 2, + ACTIONS(3655), 2, sym__raw_identifier, sym_grit_metavariable, - ACTIONS(3637), 15, + ACTIONS(3653), 15, anon_sym_async, anon_sym_const, anon_sym_default, @@ -124264,148 +124656,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_extern, sym__primitive_identifier, - [38785] = 17, - ACTIONS(3949), 1, - anon_sym_const, - ACTIONS(3951), 1, - anon_sym_enum, - ACTIONS(3953), 1, - anon_sym_fn, - ACTIONS(3955), 1, - anon_sym_mod, - ACTIONS(3957), 1, - anon_sym_static, - ACTIONS(3959), 1, - anon_sym_struct, - ACTIONS(3961), 1, - anon_sym_trait, - ACTIONS(3963), 1, - anon_sym_type, - ACTIONS(3965), 1, - anon_sym_union, - ACTIONS(3967), 1, - anon_sym_unsafe, - ACTIONS(3969), 1, - anon_sym_use, - ACTIONS(3971), 1, - anon_sym_extern, - STATE(1657), 1, - sym_extern_modifier, - STATE(1694), 1, - aux_sym_function_modifiers_repeat1, - STATE(2744), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3921), 2, - anon_sym_async, - anon_sym_default, - [38839] = 3, - ACTIONS(808), 1, - anon_sym_EQ, + [39051] = 6, + ACTIONS(3923), 1, + anon_sym_LT2, + ACTIONS(3933), 1, + anon_sym_LPAREN, + STATE(1467), 1, + sym_type_arguments, + STATE(1506), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(806), 16, + ACTIONS(3073), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS, anon_sym_as, - anon_sym_if, anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, anon_sym_else, - anon_sym_in, anon_sym_PIPE, - [38865] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3617), 2, - sym__raw_identifier, - sym_grit_metavariable, - ACTIONS(3615), 15, - anon_sym_async, + [39083] = 17, + ACTIONS(3967), 1, anon_sym_const, - anon_sym_default, + ACTIONS(3969), 1, anon_sym_enum, + ACTIONS(3971), 1, anon_sym_fn, + ACTIONS(3973), 1, anon_sym_mod, + ACTIONS(3975), 1, anon_sym_static, + ACTIONS(3977), 1, anon_sym_struct, + ACTIONS(3979), 1, anon_sym_trait, + ACTIONS(3981), 1, anon_sym_type, + ACTIONS(3983), 1, anon_sym_union, + ACTIONS(3985), 1, anon_sym_unsafe, + ACTIONS(3987), 1, anon_sym_use, + ACTIONS(3989), 1, anon_sym_extern, - sym__primitive_identifier, - [38891] = 3, + STATE(1676), 1, + sym_extern_modifier, + STATE(1681), 1, + aux_sym_function_modifiers_repeat1, + STATE(2755), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3643), 2, - sym__raw_identifier, - sym_grit_metavariable, - ACTIONS(3641), 15, + ACTIONS(3939), 2, 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__primitive_identifier, - [38917] = 3, - ACTIONS(719), 1, - anon_sym_EQ, + [39137] = 3, + ACTIONS(3180), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(717), 16, + ACTIONS(3178), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS, anon_sym_as, - anon_sym_if, + anon_sym_for, anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, anon_sym_else, - anon_sym_in, + anon_sym_COLON_COLON, anon_sym_PIPE, - [38943] = 6, - ACTIONS(3905), 1, - anon_sym_LT2, - ACTIONS(3915), 1, - anon_sym_LPAREN, - STATE(1462), 1, - sym_type_arguments, - STATE(1497), 1, - sym_parameters, + [39162] = 3, + ACTIONS(3279), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3047), 13, + ACTIONS(3277), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -124413,44 +124755,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_PLUS, anon_sym_as, + anon_sym_for, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, anon_sym_else, - anon_sym_PIPE, - [38975] = 6, - ACTIONS(3977), 1, - anon_sym_BANG, - ACTIONS(3979), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3975), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3981), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3973), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, anon_sym_PIPE, - [39006] = 3, - ACTIONS(3130), 1, + [39187] = 3, + ACTIONS(3156), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3128), 15, + ACTIONS(3154), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -124466,13 +124785,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_COLON_COLON, anon_sym_PIPE, - [39031] = 3, - ACTIONS(3275), 1, + [39212] = 3, + ACTIONS(3188), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3273), 15, + ACTIONS(3186), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -124488,13 +124807,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_COLON_COLON, anon_sym_PIPE, - [39056] = 3, - ACTIONS(3209), 1, + [39237] = 3, + ACTIONS(3184), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3207), 15, + ACTIONS(3182), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -124510,33 +124829,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_COLON_COLON, anon_sym_PIPE, - [39081] = 3, - ACTIONS(3134), 1, - anon_sym_COLON, + [39262] = 6, + ACTIONS(3995), 1, + anon_sym_BANG, + ACTIONS(3997), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3132), 15, + ACTIONS(3993), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(3999), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3991), 10, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_PLUS, - anon_sym_as, - anon_sym_for, - anon_sym_where, - anon_sym_EQ, + anon_sym_if, anon_sym_COMMA, - anon_sym_GT, anon_sym_else, - anon_sym_COLON_COLON, + anon_sym_in, anon_sym_PIPE, - [39106] = 2, + [39293] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3515), 16, + ACTIONS(3395), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -124553,33 +124875,83 @@ static const uint16_t ts_small_parse_table[] = { sym_mutable_specifier, anon_sym_PIPE, sym_self, - [39129] = 3, - ACTIONS(3269), 1, + [39316] = 13, + ACTIONS(3909), 1, + anon_sym_PIPE, + ACTIONS(3913), 1, + anon_sym_LBRACE, + ACTIONS(3915), 1, anon_sym_COLON, + ACTIONS(3917), 1, + anon_sym_BANG, + ACTIONS(3923), 1, + anon_sym_LT2, + ACTIONS(3925), 1, + anon_sym_AT, + ACTIONS(4001), 1, + anon_sym_LPAREN, + ACTIONS(4003), 1, + anon_sym_COLON_COLON, + STATE(1469), 1, + sym_type_arguments, + STATE(1504), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3921), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2997), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [39360] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3267), 15, + ACTIONS(3221), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, anon_sym_as, - anon_sym_for, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_GT, + anon_sym_else, + anon_sym_PIPE, + [39382] = 3, + ACTIONS(2812), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2814), 14, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_if, + anon_sym_COMMA, anon_sym_GT, anon_sym_else, - anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_in, + anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [39154] = 2, + [39406] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3259), 15, + ACTIONS(3247), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -124595,61 +124967,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [39176] = 2, + [39428] = 4, + ACTIONS(3027), 1, + anon_sym_COLON, + ACTIONS(3649), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3255), 15, + ACTIONS(3025), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS, anon_sym_as, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [39198] = 4, - ACTIONS(3053), 1, + [39454] = 14, + ACTIONS(2997), 1, + anon_sym_PLUS, + ACTIONS(3909), 1, + anon_sym_PIPE, + ACTIONS(3913), 1, + anon_sym_LBRACE, + ACTIONS(3915), 1, anon_sym_COLON, - ACTIONS(3635), 1, + ACTIONS(3917), 1, + anon_sym_BANG, + ACTIONS(3923), 1, + anon_sym_LT2, + ACTIONS(3925), 1, + anon_sym_AT, + ACTIONS(4001), 1, + anon_sym_LPAREN, + ACTIONS(4008), 1, anon_sym_COLON_COLON, + STATE(1469), 1, + sym_type_arguments, + STATE(1504), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3921), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4005), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [39500] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 13, + ACTIONS(3217), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, anon_sym_as, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [39224] = 5, - ACTIONS(3979), 1, + [39522] = 5, + ACTIONS(3997), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3975), 2, + ACTIONS(3993), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3981), 2, + ACTIONS(3999), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3973), 10, + ACTIONS(3991), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -124660,11 +125064,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [39252] = 2, + [39550] = 13, + ACTIONS(3913), 1, + anon_sym_LBRACE, + ACTIONS(3917), 1, + anon_sym_BANG, + ACTIONS(3923), 1, + anon_sym_LT2, + ACTIONS(3925), 1, + anon_sym_AT, + ACTIONS(4005), 1, + anon_sym_RBRACK, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, + anon_sym_COLON_COLON, + STATE(1469), 1, + sym_type_arguments, + STATE(1504), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2997), 2, + anon_sym_SEMI, + anon_sym_PLUS, + ACTIONS(3909), 2, + anon_sym_COMMA, + anon_sym_PIPE, + ACTIONS(3921), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [39594] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3251), 15, + ACTIONS(3273), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -124680,11 +125115,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [39274] = 2, + [39616] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3231), 15, + ACTIONS(3166), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -124700,54 +125135,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [39296] = 2, + [39638] = 4, + ACTIONS(3027), 1, + anon_sym_COLON, + ACTIONS(4014), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3263), 15, + ACTIONS(3025), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS, anon_sym_as, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [39318] = 3, - ACTIONS(3983), 1, - anon_sym_COLON_COLON, + [39664] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3201), 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, - [39342] = 3, - ACTIONS(3513), 1, + ACTIONS(3170), 15, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_as, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_GT, + anon_sym_else, + anon_sym_PIPE, + [39686] = 3, + ACTIONS(4016), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3201), 14, + ACTIONS(3199), 14, anon_sym_async, anon_sym_const, anon_sym_default, @@ -124762,11 +125198,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, - [39366] = 2, + [39710] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3203), 15, + ACTIONS(3174), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -124782,11 +125218,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [39388] = 2, + [39732] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3235), 15, + ACTIONS(3251), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -124802,15 +125238,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [39410] = 4, - ACTIONS(3053), 1, + [39754] = 3, + ACTIONS(3463), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3199), 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, + [39778] = 7, + ACTIONS(3927), 1, + anon_sym_PIPE, + ACTIONS(3930), 1, anon_sym_COLON, - ACTIONS(3985), 1, + ACTIONS(4018), 1, + anon_sym_RPAREN, + ACTIONS(4020), 1, + anon_sym_COMMA, + STATE(2187), 1, + aux_sym_parameters_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1038), 9, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_BANG, anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_LT2, + anon_sym_DOT_DOT_EQ, + anon_sym_AT, + [39809] = 3, + ACTIONS(4022), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 13, + ACTIONS(3142), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -124824,11 +125303,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [39436] = 2, + [39832] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3281), 15, + ACTIONS(3513), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -124840,49 +125319,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [39458] = 14, - ACTIONS(2995), 1, - anon_sym_PLUS, - ACTIONS(3891), 1, - anon_sym_PIPE, - ACTIONS(3895), 1, - anon_sym_LBRACE, - ACTIONS(3897), 1, - anon_sym_COLON, - ACTIONS(3899), 1, - anon_sym_BANG, - ACTIONS(3905), 1, - anon_sym_LT2, - ACTIONS(3907), 1, - anon_sym_AT, - ACTIONS(3987), 1, - anon_sym_LPAREN, - ACTIONS(3992), 1, - anon_sym_COLON_COLON, - STATE(1465), 1, - sym_type_arguments, - STATE(1488), 1, - sym_parameters, + [39853] = 4, + ACTIONS(3915), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3903), 2, + ACTIONS(3921), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3989), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [39504] = 3, - ACTIONS(2936), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2938), 14, + ACTIONS(3909), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -124891,86 +125340,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_if, anon_sym_COMMA, - anon_sym_GT, anon_sym_else, - anon_sym_DOT_DOT_DOT, anon_sym_in, - anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [39528] = 13, - ACTIONS(3895), 1, - anon_sym_LBRACE, - ACTIONS(3899), 1, - anon_sym_BANG, - ACTIONS(3905), 1, - anon_sym_LT2, - ACTIONS(3907), 1, - anon_sym_AT, - ACTIONS(3989), 1, - anon_sym_RBRACK, - ACTIONS(3994), 1, - anon_sym_LPAREN, - ACTIONS(3996), 1, - anon_sym_COLON_COLON, - STATE(1465), 1, - sym_type_arguments, - STATE(1488), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2995), 2, - anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(3891), 2, - anon_sym_COMMA, - anon_sym_PIPE, - ACTIONS(3903), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [39572] = 13, - ACTIONS(3891), 1, - anon_sym_PIPE, - ACTIONS(3895), 1, - anon_sym_LBRACE, - ACTIONS(3897), 1, - anon_sym_COLON, - ACTIONS(3899), 1, - anon_sym_BANG, - ACTIONS(3905), 1, - anon_sym_LT2, - ACTIONS(3907), 1, - anon_sym_AT, - ACTIONS(3987), 1, - anon_sym_LPAREN, - ACTIONS(3998), 1, - anon_sym_COLON_COLON, - STATE(1465), 1, - sym_type_arguments, - STATE(1488), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3903), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2995), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [39616] = 3, - ACTIONS(4000), 1, - anon_sym_DASH_GT, + [39878] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3144), 13, + ACTIONS(3513), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, anon_sym_as, anon_sym_where, @@ -124979,18 +125362,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [39639] = 3, - ACTIONS(4002), 1, - anon_sym_DASH_GT, + [39899] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3285), 13, + ACTIONS(3363), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, anon_sym_as, anon_sym_where, @@ -124999,11 +125381,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [39662] = 2, + [39920] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3473), 14, + ACTIONS(3411), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -125018,31 +125400,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [39683] = 3, - ACTIONS(4004), 1, - anon_sym_DASH_GT, + [39941] = 7, + ACTIONS(3927), 1, + anon_sym_PIPE, + ACTIONS(3930), 1, + anon_sym_COLON, + ACTIONS(4024), 1, + anon_sym_RPAREN, + ACTIONS(4026), 1, + anon_sym_COMMA, + STATE(2292), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3166), 13, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(1038), 9, + anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_else, - anon_sym_PIPE, - [39706] = 2, + anon_sym_BANG, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_LT2, + anon_sym_DOT_DOT_EQ, + anon_sym_AT, + [39972] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3449), 14, + ACTIONS(3387), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -125057,11 +125443,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [39727] = 2, + [39993] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3453), 14, + ACTIONS(3415), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -125076,17 +125462,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [39748] = 2, + [40014] = 3, + ACTIONS(4028), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3481), 14, + ACTIONS(3201), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS, anon_sym_as, anon_sym_where, @@ -125095,17 +125482,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [39769] = 2, + [40037] = 3, + ACTIONS(4030), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3409), 14, + ACTIONS(3127), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS, anon_sym_as, anon_sym_where, @@ -125114,11 +125502,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [39790] = 2, + [40060] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3469), 14, + ACTIONS(3399), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -125133,11 +125521,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [39811] = 2, + [40081] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3297), 14, + ACTIONS(3423), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -125152,11 +125540,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [39832] = 2, + [40102] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3311), 14, + ACTIONS(3499), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -125171,34 +125559,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [39853] = 4, - ACTIONS(3897), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3903), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3891), 11, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - anon_sym_PIPE, - [39878] = 3, - ACTIONS(4006), 1, + [40123] = 3, + ACTIONS(4032), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3160), 13, + ACTIONS(3261), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -125212,11 +125579,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [39901] = 2, + [40146] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3319), 14, + ACTIONS(3367), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -125231,38 +125598,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [39922] = 4, - ACTIONS(4010), 1, - anon_sym_pat, - STATE(646), 1, - sym_fragment_specifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4008), 12, - anon_sym_block, - anon_sym_expr, - anon_sym_ident, - anon_sym_item, - anon_sym_lifetime, - anon_sym_literal, - anon_sym_meta, - anon_sym_path, - anon_sym_stmt, - anon_sym_tt, - anon_sym_ty, - anon_sym_vis, - [39947] = 2, + [40167] = 3, + ACTIONS(4034), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3369), 14, + ACTIONS(3255), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS, anon_sym_as, anon_sym_where, @@ -125271,17 +125618,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [39968] = 2, + [40190] = 3, + ACTIONS(4036), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3373), 14, + ACTIONS(3227), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS, anon_sym_as, anon_sym_where, @@ -125290,11 +125638,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [39989] = 2, + [40213] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3377), 14, + ACTIONS(3443), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -125309,81 +125657,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [40010] = 3, - ACTIONS(4012), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3051), 13, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_else, - anon_sym_PIPE, - [40033] = 7, - ACTIONS(3975), 1, + [40234] = 7, + ACTIONS(3993), 1, anon_sym_COLON, - ACTIONS(3977), 1, + ACTIONS(3995), 1, anon_sym_BANG, - ACTIONS(4014), 1, + ACTIONS(4038), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3981), 2, + ACTIONS(3999), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3973), 3, + ACTIONS(3991), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_PIPE, - ACTIONS(3101), 6, + ACTIONS(3099), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [40064] = 2, + [40265] = 3, + ACTIONS(4042), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3327), 14, + ACTIONS(4040), 13, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_RBRACK, anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, + anon_sym_if, anon_sym_COMMA, - anon_sym_GT, anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_in, + anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [40085] = 3, - ACTIONS(4012), 1, - anon_sym_COLON_COLON, + [40288] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3085), 13, + ACTIONS(3447), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, anon_sym_as, anon_sym_where, @@ -125392,11 +125720,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [40108] = 2, + [40309] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3085), 14, + ACTIONS(3073), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -125411,17 +125739,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [40129] = 2, + [40330] = 3, + ACTIONS(4044), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3301), 14, + ACTIONS(3073), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS, anon_sym_as, anon_sym_where, @@ -125430,11 +125759,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [40150] = 2, + [40353] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3485), 14, + ACTIONS(3025), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -125449,42 +125778,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [40171] = 14, - ACTIONS(3899), 1, - anon_sym_BANG, - ACTIONS(3905), 1, - anon_sym_LT2, - ACTIONS(3915), 1, - anon_sym_LPAREN, - ACTIONS(3917), 1, - anon_sym_COLON_COLON, - ACTIONS(4016), 1, + [40374] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3021), 2, anon_sym_COLON, - ACTIONS(4018), 1, anon_sym_EQ, - ACTIONS(4020), 1, + ACTIONS(3023), 12, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_if, + anon_sym_BANG, anon_sym_COMMA, - ACTIONS(4022), 1, - anon_sym_GT, - STATE(1465), 1, - sym_type_arguments, - STATE(1488), 1, - sym_parameters, - STATE(2255), 1, - sym_trait_bounds, - STATE(2257), 1, - aux_sym_type_parameters_repeat1, + anon_sym_else, + anon_sym_COLON_COLON, + anon_sym_in, + anon_sym_PIPE, + [40397] = 4, + ACTIONS(4048), 1, + anon_sym_pat, + STATE(643), 1, + sym_fragment_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2995), 2, + ACTIONS(4046), 12, + anon_sym_block, + anon_sym_expr, + anon_sym_ident, + anon_sym_item, + anon_sym_lifetime, + anon_sym_literal, + anon_sym_meta, + anon_sym_path, + anon_sym_stmt, + anon_sym_tt, + anon_sym_ty, + anon_sym_vis, + [40422] = 3, + ACTIONS(4050), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3148), 13, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_PLUS, anon_sym_as, - [40216] = 2, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_else, + anon_sym_PIPE, + [40445] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3381), 14, + ACTIONS(3359), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -125499,21 +125858,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [40237] = 7, - ACTIONS(3909), 1, + [40466] = 7, + ACTIONS(3927), 1, anon_sym_PIPE, - ACTIONS(3912), 1, + ACTIONS(3930), 1, anon_sym_COLON, - ACTIONS(4024), 1, + ACTIONS(4052), 1, anon_sym_RPAREN, - ACTIONS(4026), 1, + ACTIONS(4054), 1, anon_sym_COMMA, - STATE(2274), 1, + STATE(2291), 1, aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1040), 9, + ACTIONS(1038), 9, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_PLUS, @@ -125523,13 +125882,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT2, anon_sym_DOT_DOT_EQ, anon_sym_AT, - [40268] = 3, - ACTIONS(4030), 1, + [40497] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3479), 14, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_as, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_else, + anon_sym_PIPE, + [40518] = 3, + ACTIONS(4058), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4028), 13, + ACTIONS(4056), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -125543,18 +125921,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [40291] = 3, - ACTIONS(4032), 1, - anon_sym_DASH_GT, + [40541] = 7, + ACTIONS(3927), 1, + anon_sym_PIPE, + ACTIONS(3930), 1, + anon_sym_COLON, + ACTIONS(4060), 1, + anon_sym_RPAREN, + ACTIONS(4062), 1, + anon_sym_COMMA, + STATE(2356), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3211), 13, + ACTIONS(1038), 9, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_BANG, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_LT2, + anon_sym_DOT_DOT_EQ, + anon_sym_AT, + [40572] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3347), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, anon_sym_as, anon_sym_where, @@ -125563,18 +125964,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [40314] = 3, - ACTIONS(4012), 1, - anon_sym_COLON_COLON, + [40593] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3047), 13, + ACTIONS(3487), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, anon_sym_as, anon_sym_where, @@ -125583,11 +125983,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [40337] = 2, + [40614] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3047), 14, + ACTIONS(3495), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -125602,11 +126002,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [40358] = 2, + [40635] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 14, + ACTIONS(3537), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -125621,17 +126021,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [40379] = 2, + [40656] = 3, + ACTIONS(4044), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3341), 14, + ACTIONS(3077), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS, anon_sym_as, anon_sym_where, @@ -125640,17 +126041,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [40400] = 2, + [40679] = 3, + ACTIONS(4044), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3527), 14, + ACTIONS(3025), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS, anon_sym_as, anon_sym_where, @@ -125659,11 +126061,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [40421] = 2, + [40702] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3349), 14, + ACTIONS(3077), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -125678,103 +126080,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [40442] = 7, - ACTIONS(3909), 1, - anon_sym_PIPE, - ACTIONS(3912), 1, - anon_sym_COLON, - ACTIONS(4034), 1, - anon_sym_RPAREN, - ACTIONS(4036), 1, - anon_sym_COMMA, - STATE(2288), 1, - aux_sym_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1040), 9, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_BANG, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_LT2, - anon_sym_DOT_DOT_EQ, - anon_sym_AT, - [40473] = 7, - ACTIONS(3909), 1, - anon_sym_PIPE, - ACTIONS(3912), 1, - anon_sym_COLON, - ACTIONS(4038), 1, - anon_sym_RPAREN, - ACTIONS(4040), 1, - anon_sym_COMMA, - STATE(2352), 1, - aux_sym_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1040), 9, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_BANG, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_LT2, - anon_sym_DOT_DOT_EQ, - anon_sym_AT, - [40504] = 7, - ACTIONS(3909), 1, - anon_sym_PIPE, - ACTIONS(3912), 1, - anon_sym_COLON, - ACTIONS(4042), 1, - anon_sym_RPAREN, - ACTIONS(4044), 1, - anon_sym_COMMA, - STATE(2318), 1, - aux_sym_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1040), 9, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_BANG, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_LT2, - anon_sym_DOT_DOT_EQ, - anon_sym_AT, - [40535] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3067), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3069), 12, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_if, - anon_sym_BANG, - anon_sym_COMMA, - anon_sym_else, - anon_sym_COLON_COLON, - anon_sym_in, - anon_sym_PIPE, - [40558] = 2, + [40723] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3301), 14, + ACTIONS(3351), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -125789,18 +126099,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [40579] = 3, - ACTIONS(4046), 1, - anon_sym_DASH_GT, + [40744] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3219), 13, + ACTIONS(3391), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, anon_sym_as, anon_sym_where, @@ -125809,226 +126118,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [40602] = 3, - ACTIONS(4048), 1, - anon_sym_DASH_GT, + [40765] = 14, + ACTIONS(3917), 1, + anon_sym_BANG, + ACTIONS(3923), 1, + anon_sym_LT2, + ACTIONS(3933), 1, + anon_sym_LPAREN, + ACTIONS(3935), 1, + anon_sym_COLON_COLON, + ACTIONS(4064), 1, + anon_sym_COLON, + ACTIONS(4066), 1, + anon_sym_EQ, + ACTIONS(4068), 1, + anon_sym_COMMA, + ACTIONS(4070), 1, + anon_sym_GT, + STATE(1469), 1, + sym_type_arguments, + STATE(1504), 1, + sym_parameters, + STATE(2371), 1, + aux_sym_type_parameters_repeat1, + STATE(2376), 1, + sym_trait_bounds, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2997), 2, + anon_sym_PLUS, + anon_sym_as, + [40810] = 4, + ACTIONS(4076), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3225), 13, + ACTIONS(4074), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(4072), 10, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, + anon_sym_if, anon_sym_COMMA, - anon_sym_GT, anon_sym_else, + anon_sym_in, anon_sym_PIPE, - [40625] = 3, - ACTIONS(4052), 1, - anon_sym_EQ, + [40834] = 4, + ACTIONS(4078), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4050), 13, + ACTIONS(4074), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(4072), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_if, anon_sym_COMMA, anon_sym_else, - anon_sym_DOT_DOT_DOT, anon_sym_in, - anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [40648] = 5, - ACTIONS(3909), 1, + [40858] = 4, + ACTIONS(3927), 1, anon_sym_PIPE, - ACTIONS(3912), 1, + ACTIONS(3930), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4054), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(1040), 9, + ACTIONS(1038), 11, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_BANG, + anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_LT2, anon_sym_DOT_DOT_EQ, anon_sym_AT, - [40674] = 3, - ACTIONS(687), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(685), 12, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_if, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_else, - anon_sym_in, - anon_sym_PIPE, - [40696] = 13, - ACTIONS(7), 1, - sym__primitive_identifier, - ACTIONS(51), 1, - anon_sym_pub, - ACTIONS(97), 1, - sym__raw_identifier, - ACTIONS(2742), 1, + [40882] = 10, + ACTIONS(2744), 1, anon_sym_POUND, - ACTIONS(4057), 1, - anon_sym_RBRACE, - ACTIONS(4059), 1, - anon_sym_COMMA, - ACTIONS(4061), 1, - sym_crate, - ACTIONS(4063), 1, - sym_grit_metavariable, - STATE(1723), 1, - sym_identifier, - STATE(1957), 1, - sym_visibility_modifier, - STATE(2205), 1, - sym_enum_variant, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1625), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [40738] = 13, - ACTIONS(7), 1, + ACTIONS(3503), 1, sym__primitive_identifier, - ACTIONS(51), 1, - anon_sym_pub, - ACTIONS(97), 1, - sym__raw_identifier, - ACTIONS(2742), 1, - anon_sym_POUND, - ACTIONS(4061), 1, - sym_crate, - ACTIONS(4063), 1, - sym_grit_metavariable, - ACTIONS(4065), 1, + ACTIONS(4080), 1, anon_sym_RBRACE, - ACTIONS(4067), 1, + ACTIONS(4082), 1, anon_sym_COMMA, - STATE(1723), 1, + ACTIONS(4084), 1, + anon_sym_DOT_DOT, + STATE(2325), 1, sym_identifier, - STATE(1957), 1, - sym_visibility_modifier, - STATE(2346), 1, - sym_enum_variant, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1641), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [40780] = 13, - ACTIONS(51), 1, - anon_sym_pub, - ACTIONS(2742), 1, - anon_sym_POUND, - ACTIONS(3523), 1, - sym__primitive_identifier, - ACTIONS(3525), 1, + ACTIONS(3505), 2, sym__raw_identifier, - ACTIONS(4061), 1, - sym_crate, - ACTIONS(4069), 1, - anon_sym_RBRACE, - ACTIONS(4071), 1, - anon_sym_COMMA, - ACTIONS(4073), 1, sym_grit_metavariable, - STATE(1966), 1, - sym_visibility_modifier, - STATE(2245), 1, - sym_field_declaration, - STATE(2765), 1, - sym_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1623), 2, + STATE(1721), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [40822] = 6, - ACTIONS(3977), 1, - anon_sym_BANG, - ACTIONS(4075), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3981), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3973), 3, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_PIPE, - ACTIONS(3101), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [40850] = 5, - ACTIONS(3909), 1, - anon_sym_PIPE, - ACTIONS(3912), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4077), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(1040), 9, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_BANG, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_LT2, - anon_sym_DOT_DOT_EQ, - anon_sym_AT, - [40876] = 4, - ACTIONS(4084), 1, + STATE(2324), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [40918] = 4, + ACTIONS(4090), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4082), 2, + ACTIONS(4088), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(4080), 10, + ACTIONS(4086), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -126039,36 +126255,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [40900] = 4, - ACTIONS(3983), 1, - anon_sym_COLON_COLON, + [40942] = 3, + ACTIONS(697), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4088), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(4086), 10, + ACTIONS(695), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_if, anon_sym_COMMA, + anon_sym_GT, anon_sym_else, anon_sym_in, anon_sym_PIPE, - [40924] = 4, - ACTIONS(4090), 1, + [40964] = 4, + ACTIONS(4016), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4088), 2, + ACTIONS(4094), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(4086), 10, + ACTIONS(4092), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -126079,36 +126294,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [40948] = 4, - ACTIONS(4092), 1, - anon_sym_COLON_COLON, + [40988] = 13, + ACTIONS(7), 1, + sym__primitive_identifier, + ACTIONS(51), 1, + anon_sym_pub, + ACTIONS(97), 1, + sym__raw_identifier, + ACTIONS(2744), 1, + anon_sym_POUND, + ACTIONS(4096), 1, + anon_sym_RBRACE, + ACTIONS(4098), 1, + anon_sym_COMMA, + ACTIONS(4100), 1, + sym_crate, + ACTIONS(4102), 1, + sym_grit_metavariable, + STATE(1715), 1, + sym_identifier, + STATE(2044), 1, + sym_visibility_modifier, + STATE(2209), 1, + sym_enum_variant, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4088), 2, - anon_sym_COLON, + STATE(1629), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [41030] = 3, + ACTIONS(691), 1, anon_sym_EQ, - ACTIONS(4086), 10, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(689), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_if, anon_sym_COMMA, + anon_sym_GT, anon_sym_else, anon_sym_in, anon_sym_PIPE, - [40972] = 4, - ACTIONS(4084), 1, + [41052] = 4, + ACTIONS(4076), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4096), 2, + ACTIONS(4094), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(4094), 10, + ACTIONS(4092), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -126119,16 +126362,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [40996] = 4, - ACTIONS(4090), 1, + [41076] = 4, + ACTIONS(4016), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4100), 2, + ACTIONS(4074), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(4098), 10, + ACTIONS(4072), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -126139,91 +126382,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [41020] = 4, - ACTIONS(4092), 1, - anon_sym_COLON_COLON, + [41100] = 5, + ACTIONS(3927), 1, + anon_sym_PIPE, + ACTIONS(3930), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4100), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(4098), 10, - anon_sym_SEMI, + ACTIONS(4104), 2, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_if, anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - anon_sym_PIPE, - [41044] = 10, - ACTIONS(2742), 1, + ACTIONS(1038), 9, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_BANG, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_LT2, + anon_sym_DOT_DOT_EQ, + anon_sym_AT, + [41126] = 13, + ACTIONS(51), 1, + anon_sym_pub, + ACTIONS(2744), 1, anon_sym_POUND, - ACTIONS(3523), 1, + ACTIONS(3503), 1, sym__primitive_identifier, - ACTIONS(4102), 1, + ACTIONS(3505), 1, + sym__raw_identifier, + ACTIONS(4100), 1, + sym_crate, + ACTIONS(4107), 1, anon_sym_RBRACE, - ACTIONS(4104), 1, + ACTIONS(4109), 1, anon_sym_COMMA, - ACTIONS(4106), 1, - anon_sym_DOT_DOT, - STATE(2376), 1, + ACTIONS(4111), 1, + sym_grit_metavariable, + STATE(2093), 1, + sym_visibility_modifier, + STATE(2249), 1, + sym_field_declaration, + STATE(2655), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3525), 2, - sym__raw_identifier, - sym_grit_metavariable, - STATE(1742), 2, + STATE(1635), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - STATE(2353), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [41080] = 13, + [41168] = 13, + ACTIONS(7), 1, + sym__primitive_identifier, ACTIONS(51), 1, anon_sym_pub, - ACTIONS(2742), 1, - anon_sym_POUND, - ACTIONS(3523), 1, - sym__primitive_identifier, - ACTIONS(3525), 1, + ACTIONS(97), 1, sym__raw_identifier, - ACTIONS(4061), 1, + ACTIONS(2744), 1, + anon_sym_POUND, + ACTIONS(4100), 1, sym_crate, - ACTIONS(4108), 1, + ACTIONS(4102), 1, + sym_grit_metavariable, + ACTIONS(4113), 1, anon_sym_RBRACE, - ACTIONS(4110), 1, + ACTIONS(4115), 1, anon_sym_COMMA, - ACTIONS(4112), 1, - sym_grit_metavariable, - STATE(1966), 1, - sym_visibility_modifier, - STATE(2300), 1, - sym_field_declaration, - STATE(2765), 1, + STATE(1715), 1, sym_identifier, + STATE(2044), 1, + sym_visibility_modifier, + STATE(2337), 1, + sym_enum_variant, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1620), 2, + STATE(1627), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [41122] = 4, - ACTIONS(3983), 1, + [41210] = 4, + ACTIONS(4078), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4100), 2, + ACTIONS(4094), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(4098), 10, + ACTIONS(4092), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -126234,52 +126481,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [41146] = 4, - ACTIONS(3909), 1, - anon_sym_PIPE, - ACTIONS(3912), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1040), 11, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_BANG, - anon_sym_COMMA, + [41234] = 4, + ACTIONS(4090), 1, anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_LT2, - anon_sym_DOT_DOT_EQ, - anon_sym_AT, - [41170] = 3, - ACTIONS(701), 1, - anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(699), 12, + ACTIONS(4119), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(4117), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_if, anon_sym_COMMA, - anon_sym_GT, anon_sym_else, anon_sym_in, anon_sym_PIPE, - [41192] = 3, - ACTIONS(695), 1, + [41258] = 3, + ACTIONS(707), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(693), 12, + ACTIONS(705), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -126292,187 +126520,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [41214] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3909), 3, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_PIPE, - ACTIONS(1040), 10, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_BANG, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_LT2, - anon_sym_DOT_DOT_EQ, - anon_sym_AT, - [41236] = 12, - ACTIONS(7), 1, - sym__primitive_identifier, - ACTIONS(51), 1, - anon_sym_pub, - ACTIONS(97), 1, - sym__raw_identifier, - ACTIONS(2742), 1, - anon_sym_POUND, - ACTIONS(4061), 1, - sym_crate, - ACTIONS(4063), 1, - sym_grit_metavariable, - ACTIONS(4114), 1, - anon_sym_RBRACE, - STATE(1723), 1, - sym_identifier, - STATE(1957), 1, - sym_visibility_modifier, - STATE(2443), 1, - sym_enum_variant, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1619), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [41275] = 7, - ACTIONS(3973), 1, - anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_COLON, - ACTIONS(3977), 1, + [41280] = 6, + ACTIONS(3995), 1, anon_sym_BANG, - ACTIONS(4116), 1, + ACTIONS(4121), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3981), 2, + ACTIONS(3999), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3101), 6, + ACTIONS(3991), 3, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_PIPE, + ACTIONS(3099), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [41304] = 5, - ACTIONS(3067), 1, - anon_sym_COLON, - ACTIONS(4118), 1, - anon_sym_LPAREN, + [41308] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3063), 5, - anon_sym_RPAREN, + ACTIONS(3927), 3, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_PIPE, + ACTIONS(1038), 10, + anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_LT2, - ACTIONS(3069), 5, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, + anon_sym_LT2, anon_sym_DOT_DOT_EQ, + anon_sym_AT, + [41330] = 5, + ACTIONS(3927), 1, anon_sym_PIPE, - [41329] = 5, - ACTIONS(3081), 1, + ACTIONS(3930), 1, anon_sym_COLON, - ACTIONS(4121), 1, - anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3077), 5, + ACTIONS(4123), 2, anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1038), 9, + anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_LT2, - ACTIONS(3083), 5, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, + anon_sym_LT2, anon_sym_DOT_DOT_EQ, - anon_sym_PIPE, - [41354] = 4, - ACTIONS(4124), 1, + anon_sym_AT, + [41356] = 13, + ACTIONS(51), 1, + anon_sym_pub, + ACTIONS(2744), 1, + anon_sym_POUND, + ACTIONS(3503), 1, + sym__primitive_identifier, + ACTIONS(3505), 1, + sym__raw_identifier, + ACTIONS(4100), 1, + sym_crate, + ACTIONS(4126), 1, anon_sym_RBRACE, + ACTIONS(4128), 1, + anon_sym_COMMA, + ACTIONS(4130), 1, + sym_grit_metavariable, + STATE(2093), 1, + sym_visibility_modifier, + STATE(2311), 1, + sym_field_declaration, + STATE(2655), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3909), 3, - anon_sym_EQ_GT, - anon_sym_if, - anon_sym_PIPE, - ACTIONS(1040), 8, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_LT2, - anon_sym_DOT_DOT_EQ, - anon_sym_AT, - [41377] = 5, - ACTIONS(3059), 1, + STATE(1623), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [41398] = 5, + ACTIONS(3021), 1, anon_sym_COLON, - ACTIONS(4126), 1, + ACTIONS(4132), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3055), 5, + ACTIONS(3017), 5, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_COMMA, anon_sym_LT2, - ACTIONS(3061), 5, + ACTIONS(3023), 5, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [41402] = 12, - ACTIONS(7), 1, - sym__primitive_identifier, - ACTIONS(51), 1, - anon_sym_pub, - ACTIONS(97), 1, - sym__raw_identifier, - ACTIONS(2742), 1, - anon_sym_POUND, - ACTIONS(4061), 1, - sym_crate, - ACTIONS(4063), 1, - sym_grit_metavariable, - ACTIONS(4129), 1, - anon_sym_RBRACE, - STATE(1723), 1, - sym_identifier, - STATE(1957), 1, - sym_visibility_modifier, - STATE(2443), 1, - sym_enum_variant, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1619), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [41441] = 3, - ACTIONS(4133), 1, + [41423] = 3, + ACTIONS(4137), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4131), 11, + ACTIONS(4135), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -126484,110 +126649,228 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [41462] = 11, - ACTIONS(2738), 1, + [41444] = 11, + ACTIONS(2740), 1, anon_sym_SQUOTE, - ACTIONS(3523), 1, + ACTIONS(3503), 1, sym__primitive_identifier, - ACTIONS(4135), 1, + ACTIONS(4139), 1, anon_sym_const, - ACTIONS(4137), 1, + ACTIONS(4141), 1, anon_sym_GT, - ACTIONS(4139), 1, + ACTIONS(4143), 1, sym_metavariable, - STATE(1942), 1, + STATE(1914), 1, sym_identifier, - STATE(1975), 1, + STATE(2092), 1, sym_lifetime, - STATE(2389), 1, + STATE(2310), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3525), 2, + ACTIONS(3505), 2, sym__raw_identifier, sym_grit_metavariable, - STATE(2577), 2, + STATE(2398), 2, sym_const_parameter, sym_optional_type_parameter, - [41499] = 11, - ACTIONS(2738), 1, - anon_sym_SQUOTE, - ACTIONS(3523), 1, - sym__primitive_identifier, - ACTIONS(4135), 1, - anon_sym_const, - ACTIONS(4139), 1, - sym_metavariable, - ACTIONS(4141), 1, - anon_sym_GT, - STATE(1942), 1, - sym_identifier, - STATE(1975), 1, - sym_lifetime, - STATE(2389), 1, - sym_constrained_type_parameter, + [41481] = 3, + ACTIONS(4147), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3525), 2, - sym__raw_identifier, - sym_grit_metavariable, - STATE(2577), 2, + ACTIONS(4145), 11, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_if, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + anon_sym_PIPE, + [41502] = 11, + ACTIONS(2740), 1, + anon_sym_SQUOTE, + ACTIONS(3503), 1, + sym__primitive_identifier, + ACTIONS(4139), 1, + anon_sym_const, + ACTIONS(4143), 1, + sym_metavariable, + ACTIONS(4149), 1, + anon_sym_GT, + STATE(1914), 1, + sym_identifier, + STATE(2092), 1, + sym_lifetime, + STATE(2310), 1, + sym_constrained_type_parameter, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3505), 2, + sym__raw_identifier, + sym_grit_metavariable, + STATE(2398), 2, sym_const_parameter, sym_optional_type_parameter, - [41536] = 12, + [41539] = 12, ACTIONS(51), 1, anon_sym_pub, - ACTIONS(2742), 1, + ACTIONS(2744), 1, anon_sym_POUND, - ACTIONS(3523), 1, + ACTIONS(3503), 1, sym__primitive_identifier, - ACTIONS(3525), 1, + ACTIONS(3505), 1, sym__raw_identifier, - ACTIONS(4061), 1, + ACTIONS(4100), 1, sym_crate, - ACTIONS(4063), 1, + ACTIONS(4102), 1, sym_grit_metavariable, - ACTIONS(4143), 1, + ACTIONS(4151), 1, anon_sym_RBRACE, - STATE(1966), 1, + STATE(2093), 1, sym_visibility_modifier, - STATE(2595), 1, + STATE(2607), 1, sym_field_declaration, - STATE(2765), 1, + STATE(2655), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1621), 2, + STATE(1624), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [41575] = 3, - ACTIONS(4147), 1, - anon_sym_EQ, + [41578] = 12, + ACTIONS(7), 1, + sym__primitive_identifier, + ACTIONS(51), 1, + anon_sym_pub, + ACTIONS(97), 1, + sym__raw_identifier, + ACTIONS(2744), 1, + anon_sym_POUND, + ACTIONS(4100), 1, + sym_crate, + ACTIONS(4102), 1, + sym_grit_metavariable, + ACTIONS(4153), 1, + anon_sym_RBRACE, + STATE(1715), 1, + sym_identifier, + STATE(2044), 1, + sym_visibility_modifier, + STATE(2515), 1, + sym_enum_variant, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4145), 11, - anon_sym_SEMI, + STATE(1631), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [41617] = 5, + ACTIONS(3057), 1, + anon_sym_COLON, + ACTIONS(4155), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3053), 5, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_LT2, + ACTIONS(3059), 5, + anon_sym_BANG, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_PIPE, + [41642] = 9, + ACTIONS(2744), 1, + anon_sym_POUND, + ACTIONS(3503), 1, + sym__primitive_identifier, + ACTIONS(4084), 1, + anon_sym_DOT_DOT, + ACTIONS(4158), 1, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, + STATE(2325), 1, + sym_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3505), 2, + sym__raw_identifier, + sym_grit_metavariable, + STATE(1721), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(2493), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [41675] = 5, + ACTIONS(3033), 1, anon_sym_COLON, - anon_sym_if, + ACTIONS(4160), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3029), 5, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_COMMA, - anon_sym_else, - anon_sym_in, + anon_sym_LT2, + ACTIONS(3035), 5, + anon_sym_BANG, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [41596] = 3, - ACTIONS(751), 1, + [41700] = 12, + ACTIONS(51), 1, + anon_sym_pub, + ACTIONS(2744), 1, + anon_sym_POUND, + ACTIONS(3503), 1, + sym__primitive_identifier, + ACTIONS(3505), 1, + sym__raw_identifier, + ACTIONS(4100), 1, + sym_crate, + ACTIONS(4102), 1, + sym_grit_metavariable, + ACTIONS(4163), 1, + anon_sym_RBRACE, + STATE(2093), 1, + sym_visibility_modifier, + STATE(2607), 1, + sym_field_declaration, + STATE(2655), 1, + sym_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1624), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [41739] = 3, + ACTIONS(4167), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(749), 11, + ACTIONS(4165), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -126599,13 +126882,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [41617] = 3, - ACTIONS(4151), 1, + [41760] = 5, + ACTIONS(3069), 1, + anon_sym_COLON, + ACTIONS(4169), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3065), 5, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_LT2, + ACTIONS(3071), 5, + anon_sym_BANG, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_PIPE, + [41785] = 3, + ACTIONS(4174), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4149), 11, + ACTIONS(4172), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -126617,13 +126920,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [41638] = 3, - ACTIONS(4155), 1, + [41806] = 3, + ACTIONS(4178), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4153), 11, + ACTIONS(4176), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -126635,40 +126938,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [41659] = 12, + [41827] = 12, ACTIONS(7), 1, sym__primitive_identifier, ACTIONS(51), 1, anon_sym_pub, ACTIONS(97), 1, sym__raw_identifier, - ACTIONS(2742), 1, + ACTIONS(2744), 1, anon_sym_POUND, - ACTIONS(4061), 1, + ACTIONS(4100), 1, sym_crate, - ACTIONS(4063), 1, + ACTIONS(4102), 1, sym_grit_metavariable, - ACTIONS(4157), 1, + ACTIONS(4180), 1, anon_sym_RBRACE, - STATE(1723), 1, + STATE(1715), 1, sym_identifier, - STATE(1957), 1, + STATE(2044), 1, sym_visibility_modifier, - STATE(2443), 1, + STATE(2515), 1, sym_enum_variant, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1619), 2, + STATE(1631), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [41698] = 3, - ACTIONS(4161), 1, + [41866] = 3, + ACTIONS(4184), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4159), 11, + ACTIONS(4182), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -126680,40 +126983,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [41719] = 12, - ACTIONS(51), 1, - anon_sym_pub, - ACTIONS(2742), 1, - anon_sym_POUND, - ACTIONS(3523), 1, - sym__primitive_identifier, - ACTIONS(3525), 1, - sym__raw_identifier, - ACTIONS(4061), 1, - sym_crate, - ACTIONS(4063), 1, - sym_grit_metavariable, - ACTIONS(4163), 1, + [41887] = 4, + ACTIONS(4186), 1, anon_sym_RBRACE, - STATE(1966), 1, - sym_visibility_modifier, - STATE(2595), 1, - sym_field_declaration, - STATE(2765), 1, - sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1621), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [41758] = 3, - ACTIONS(4167), 1, + ACTIONS(3927), 3, + anon_sym_EQ_GT, + anon_sym_if, + anon_sym_PIPE, + ACTIONS(1038), 8, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_LT2, + anon_sym_DOT_DOT_EQ, + anon_sym_AT, + [41910] = 3, + ACTIONS(4190), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4165), 11, + ACTIONS(4188), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -126725,279 +127020,198 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [41779] = 11, - ACTIONS(2738), 1, - anon_sym_SQUOTE, - ACTIONS(3523), 1, + [41931] = 3, + ACTIONS(4194), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4192), 11, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_if, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + anon_sym_PIPE, + [41952] = 4, + ACTIONS(4196), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3927), 3, + anon_sym_EQ_GT, + anon_sym_if, + anon_sym_PIPE, + ACTIONS(1038), 8, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_LT2, + anon_sym_DOT_DOT_EQ, + anon_sym_AT, + [41975] = 7, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(3503), 1, sym__primitive_identifier, - ACTIONS(4135), 1, - anon_sym_const, - ACTIONS(4139), 1, - sym_metavariable, - ACTIONS(4169), 1, - anon_sym_GT, - STATE(1942), 1, + STATE(97), 1, + sym_block, + STATE(2706), 1, sym_identifier, - STATE(1975), 1, - sym_lifetime, - STATE(2389), 1, - sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3525), 2, + ACTIONS(3505), 2, sym__raw_identifier, sym_grit_metavariable, - STATE(2577), 2, - sym_const_parameter, - sym_optional_type_parameter, - [41816] = 12, + ACTIONS(4198), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [42004] = 12, ACTIONS(7), 1, sym__primitive_identifier, ACTIONS(51), 1, anon_sym_pub, ACTIONS(97), 1, sym__raw_identifier, - ACTIONS(2742), 1, + ACTIONS(2744), 1, anon_sym_POUND, - ACTIONS(4061), 1, + ACTIONS(4100), 1, sym_crate, - ACTIONS(4063), 1, + ACTIONS(4102), 1, sym_grit_metavariable, - ACTIONS(4171), 1, + ACTIONS(4200), 1, anon_sym_RBRACE, - STATE(1723), 1, + STATE(1715), 1, sym_identifier, - STATE(1957), 1, + STATE(2044), 1, sym_visibility_modifier, - STATE(2443), 1, + STATE(2515), 1, sym_enum_variant, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1619), 2, + STATE(1631), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [41855] = 12, - ACTIONS(51), 1, - anon_sym_pub, - ACTIONS(2742), 1, - anon_sym_POUND, - ACTIONS(3523), 1, - sym__primitive_identifier, - ACTIONS(3525), 1, - sym__raw_identifier, - ACTIONS(4061), 1, - sym_crate, - ACTIONS(4063), 1, - sym_grit_metavariable, - ACTIONS(4173), 1, - anon_sym_RBRACE, - STATE(1966), 1, - sym_visibility_modifier, - STATE(2595), 1, - sym_field_declaration, - STATE(2765), 1, - sym_identifier, + [42043] = 5, + ACTIONS(3057), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1621), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [41894] = 11, - ACTIONS(2738), 1, + ACTIONS(3053), 3, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(4155), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3059), 5, + anon_sym_BANG, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_PIPE, + [42068] = 11, + ACTIONS(2740), 1, anon_sym_SQUOTE, - ACTIONS(3523), 1, + ACTIONS(3503), 1, sym__primitive_identifier, - ACTIONS(4135), 1, - anon_sym_const, ACTIONS(4139), 1, + anon_sym_const, + ACTIONS(4143), 1, sym_metavariable, - ACTIONS(4175), 1, + ACTIONS(4202), 1, anon_sym_GT, - STATE(1942), 1, + STATE(1914), 1, sym_identifier, - STATE(1975), 1, + STATE(2092), 1, sym_lifetime, - STATE(2389), 1, + STATE(2310), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3525), 2, + ACTIONS(3505), 2, sym__raw_identifier, sym_grit_metavariable, - STATE(2577), 2, + STATE(2398), 2, sym_const_parameter, sym_optional_type_parameter, - [41931] = 12, - ACTIONS(51), 1, - anon_sym_pub, - ACTIONS(2742), 1, - anon_sym_POUND, - ACTIONS(3523), 1, - sym__primitive_identifier, - ACTIONS(3525), 1, - sym__raw_identifier, - ACTIONS(4061), 1, - sym_crate, - ACTIONS(4063), 1, - sym_grit_metavariable, - ACTIONS(4177), 1, - anon_sym_RBRACE, - STATE(1966), 1, - sym_visibility_modifier, - STATE(2595), 1, - sym_field_declaration, - STATE(2765), 1, - sym_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1621), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [41970] = 4, - ACTIONS(4179), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3909), 3, - anon_sym_EQ_GT, - anon_sym_if, - anon_sym_PIPE, - ACTIONS(1040), 8, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_LT2, - anon_sym_DOT_DOT_EQ, - anon_sym_AT, - [41993] = 9, - ACTIONS(2742), 1, - anon_sym_POUND, - ACTIONS(3523), 1, - sym__primitive_identifier, - ACTIONS(4106), 1, - anon_sym_DOT_DOT, - ACTIONS(4181), 1, - anon_sym_RBRACE, - STATE(2376), 1, - sym_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3525), 2, - sym__raw_identifier, - sym_grit_metavariable, - STATE(1742), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(2503), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [42026] = 12, + [42105] = 12, ACTIONS(7), 1, sym__primitive_identifier, ACTIONS(51), 1, anon_sym_pub, ACTIONS(97), 1, sym__raw_identifier, - ACTIONS(2742), 1, + ACTIONS(2744), 1, anon_sym_POUND, - ACTIONS(4061), 1, + ACTIONS(4100), 1, sym_crate, - ACTIONS(4063), 1, + ACTIONS(4102), 1, sym_grit_metavariable, - ACTIONS(4183), 1, + ACTIONS(4204), 1, anon_sym_RBRACE, - STATE(1723), 1, + STATE(1715), 1, sym_identifier, - STATE(1957), 1, + STATE(2044), 1, sym_visibility_modifier, - STATE(2443), 1, + STATE(2515), 1, sym_enum_variant, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1619), 2, + STATE(1631), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [42065] = 3, - ACTIONS(4187), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4185), 11, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - anon_sym_PIPE, - [42086] = 4, - ACTIONS(4189), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3909), 3, - anon_sym_EQ_GT, - anon_sym_if, - anon_sym_PIPE, - ACTIONS(1040), 8, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_LT2, - anon_sym_DOT_DOT_EQ, - anon_sym_AT, - [42109] = 11, - ACTIONS(2738), 1, + [42144] = 11, + ACTIONS(2740), 1, anon_sym_SQUOTE, - ACTIONS(3523), 1, + ACTIONS(3503), 1, sym__primitive_identifier, - ACTIONS(4135), 1, - anon_sym_const, ACTIONS(4139), 1, + anon_sym_const, + ACTIONS(4143), 1, sym_metavariable, - ACTIONS(4191), 1, + ACTIONS(4206), 1, anon_sym_GT, - STATE(1942), 1, + STATE(1914), 1, sym_identifier, - STATE(1975), 1, + STATE(2092), 1, sym_lifetime, - STATE(2389), 1, + STATE(2310), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3525), 2, + ACTIONS(3505), 2, sym__raw_identifier, sym_grit_metavariable, - STATE(2577), 2, + STATE(2398), 2, sym_const_parameter, sym_optional_type_parameter, - [42146] = 3, - ACTIONS(4195), 1, + [42181] = 3, + ACTIONS(4210), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4193), 11, + ACTIONS(4208), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -127009,49 +127223,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [42167] = 3, - ACTIONS(4199), 1, - anon_sym_EQ, + [42202] = 12, + ACTIONS(51), 1, + anon_sym_pub, + ACTIONS(2744), 1, + anon_sym_POUND, + ACTIONS(3503), 1, + sym__primitive_identifier, + ACTIONS(3505), 1, + sym__raw_identifier, + ACTIONS(4100), 1, + sym_crate, + ACTIONS(4102), 1, + sym_grit_metavariable, + ACTIONS(4212), 1, + anon_sym_RBRACE, + STATE(2093), 1, + sym_visibility_modifier, + STATE(2607), 1, + sym_field_declaration, + STATE(2655), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4197), 11, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, + STATE(1624), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [42241] = 5, + ACTIONS(3033), 1, anon_sym_COLON, - anon_sym_if, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3029), 3, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(4160), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_else, - anon_sym_in, + ACTIONS(3035), 5, + anon_sym_BANG, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [42188] = 3, - ACTIONS(4203), 1, - anon_sym_EQ, + [42266] = 5, + ACTIONS(3021), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4201), 11, - anon_sym_SEMI, + ACTIONS(3017), 3, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(4132), 3, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(3023), 5, + anon_sym_BANG, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_PIPE, + [42291] = 5, + ACTIONS(3069), 1, anon_sym_COLON, - anon_sym_if, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3065), 3, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(4169), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_else, - anon_sym_in, + ACTIONS(3071), 5, + anon_sym_BANG, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [42209] = 3, - ACTIONS(4207), 1, + [42316] = 3, + ACTIONS(4216), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4205), 11, + ACTIONS(4214), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -127063,13 +127328,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [42230] = 3, - ACTIONS(4211), 1, + [42337] = 12, + ACTIONS(51), 1, + anon_sym_pub, + ACTIONS(2744), 1, + anon_sym_POUND, + ACTIONS(3503), 1, + sym__primitive_identifier, + ACTIONS(3505), 1, + sym__raw_identifier, + ACTIONS(4100), 1, + sym_crate, + ACTIONS(4102), 1, + sym_grit_metavariable, + ACTIONS(4218), 1, + anon_sym_RBRACE, + STATE(2093), 1, + sym_visibility_modifier, + STATE(2607), 1, + sym_field_declaration, + STATE(2655), 1, + sym_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1624), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [42376] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4155), 2, + anon_sym_LPAREN, + anon_sym_RBRACK, + ACTIONS(3053), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(3059), 6, + anon_sym_BANG, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_PIPE, + [42399] = 7, + ACTIONS(3991), 1, + anon_sym_PIPE, + ACTIONS(3993), 1, + anon_sym_COLON, + ACTIONS(3995), 1, + anon_sym_BANG, + ACTIONS(4220), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3999), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3099), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [42428] = 3, + ACTIONS(4224), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4209), 11, + ACTIONS(4222), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -127081,192 +127414,175 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [42251] = 5, - ACTIONS(3019), 1, - anon_sym_COLON, - ACTIONS(4213), 1, - anon_sym_LPAREN, + [42449] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3015), 5, - anon_sym_RPAREN, + ACTIONS(4160), 2, + anon_sym_LPAREN, + anon_sym_RBRACK, + ACTIONS(3029), 4, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_COMMA, anon_sym_LT2, - ACTIONS(3021), 5, + ACTIONS(3035), 6, anon_sym_BANG, + anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [42276] = 11, - ACTIONS(2738), 1, + [42472] = 11, + ACTIONS(2740), 1, anon_sym_SQUOTE, - ACTIONS(3523), 1, + ACTIONS(3503), 1, sym__primitive_identifier, - ACTIONS(4135), 1, - anon_sym_const, ACTIONS(4139), 1, - sym_metavariable, - ACTIONS(4216), 1, - anon_sym_GT, - STATE(1942), 1, - sym_identifier, - STATE(1975), 1, - sym_lifetime, - STATE(2389), 1, - sym_constrained_type_parameter, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3525), 2, - sym__raw_identifier, - sym_grit_metavariable, - STATE(2577), 2, - sym_const_parameter, - sym_optional_type_parameter, - [42313] = 11, - ACTIONS(2738), 1, - anon_sym_SQUOTE, - ACTIONS(3523), 1, - sym__primitive_identifier, - ACTIONS(4135), 1, anon_sym_const, - ACTIONS(4139), 1, + ACTIONS(4143), 1, sym_metavariable, - ACTIONS(4218), 1, + ACTIONS(4226), 1, anon_sym_GT, - STATE(1942), 1, + STATE(1914), 1, sym_identifier, - STATE(1975), 1, + STATE(2092), 1, sym_lifetime, - STATE(2389), 1, + STATE(2310), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3525), 2, + ACTIONS(3505), 2, sym__raw_identifier, sym_grit_metavariable, - STATE(2577), 2, + STATE(2398), 2, sym_const_parameter, sym_optional_type_parameter, - [42350] = 3, - ACTIONS(4222), 1, - anon_sym_EQ, + [42509] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4220), 11, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, + ACTIONS(4132), 2, + anon_sym_LPAREN, anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_if, + ACTIONS(3017), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(3023), 6, + anon_sym_BANG, anon_sym_COMMA, - anon_sym_else, - anon_sym_in, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [42371] = 3, - ACTIONS(4226), 1, - anon_sym_EQ, + [42532] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4224), 11, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, + ACTIONS(4169), 2, + anon_sym_LPAREN, anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_if, + ACTIONS(3065), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(3071), 6, + anon_sym_BANG, anon_sym_COMMA, - anon_sym_else, - anon_sym_in, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [42392] = 3, - ACTIONS(4230), 1, - anon_sym_EQ, + [42555] = 12, + ACTIONS(51), 1, + anon_sym_pub, + ACTIONS(2744), 1, + anon_sym_POUND, + ACTIONS(3503), 1, + sym__primitive_identifier, + ACTIONS(3505), 1, + sym__raw_identifier, + ACTIONS(4100), 1, + sym_crate, + ACTIONS(4102), 1, + sym_grit_metavariable, + ACTIONS(4228), 1, + anon_sym_RBRACE, + STATE(2093), 1, + sym_visibility_modifier, + STATE(2607), 1, + sym_field_declaration, + STATE(2655), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4228), 11, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - anon_sym_PIPE, - [42413] = 11, - ACTIONS(2738), 1, + STATE(1624), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [42594] = 11, + ACTIONS(2740), 1, anon_sym_SQUOTE, - ACTIONS(3523), 1, + ACTIONS(3503), 1, sym__primitive_identifier, - ACTIONS(4135), 1, - anon_sym_const, ACTIONS(4139), 1, + anon_sym_const, + ACTIONS(4143), 1, sym_metavariable, - ACTIONS(4232), 1, + ACTIONS(4230), 1, anon_sym_GT, - STATE(1942), 1, + STATE(1914), 1, sym_identifier, - STATE(1975), 1, + STATE(2092), 1, sym_lifetime, - STATE(2389), 1, + STATE(2310), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3525), 2, + ACTIONS(3505), 2, sym__raw_identifier, sym_grit_metavariable, - STATE(2577), 2, + STATE(2398), 2, sym_const_parameter, sym_optional_type_parameter, - [42450] = 12, - ACTIONS(51), 1, - anon_sym_pub, - ACTIONS(2742), 1, - anon_sym_POUND, - ACTIONS(3523), 1, + [42631] = 11, + ACTIONS(2740), 1, + anon_sym_SQUOTE, + ACTIONS(3503), 1, sym__primitive_identifier, - ACTIONS(3525), 1, - sym__raw_identifier, - ACTIONS(4061), 1, - sym_crate, - ACTIONS(4063), 1, - sym_grit_metavariable, - ACTIONS(4234), 1, - anon_sym_RBRACE, - STATE(1966), 1, - sym_visibility_modifier, - STATE(2595), 1, - sym_field_declaration, - STATE(2765), 1, + ACTIONS(4139), 1, + anon_sym_const, + ACTIONS(4143), 1, + sym_metavariable, + ACTIONS(4232), 1, + anon_sym_GT, + STATE(1914), 1, sym_identifier, + STATE(2092), 1, + sym_lifetime, + STATE(2310), 1, + sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1621), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [42489] = 3, - ACTIONS(4238), 1, + ACTIONS(3505), 2, + sym__raw_identifier, + sym_grit_metavariable, + STATE(2398), 2, + sym_const_parameter, + sym_optional_type_parameter, + [42668] = 3, + ACTIONS(4236), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4236), 11, + ACTIONS(4234), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -127278,13 +127594,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [42510] = 3, - ACTIONS(4242), 1, + [42689] = 3, + ACTIONS(4094), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4240), 11, + ACTIONS(4092), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -127296,33 +127612,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [42531] = 5, - ACTIONS(3059), 1, - anon_sym_COLON, + [42710] = 11, + ACTIONS(2740), 1, + anon_sym_SQUOTE, + ACTIONS(3503), 1, + sym__primitive_identifier, + ACTIONS(4139), 1, + anon_sym_const, + ACTIONS(4143), 1, + sym_metavariable, + ACTIONS(4238), 1, + anon_sym_GT, + STATE(1914), 1, + sym_identifier, + STATE(2092), 1, + sym_lifetime, + STATE(2310), 1, + sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3055), 3, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(4126), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3061), 5, - anon_sym_BANG, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_PIPE, - [42556] = 3, - ACTIONS(4100), 1, + ACTIONS(3505), 2, + sym__raw_identifier, + sym_grit_metavariable, + STATE(2398), 2, + sym_const_parameter, + sym_optional_type_parameter, + [42747] = 3, + ACTIONS(4242), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4098), 11, + ACTIONS(4240), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -127334,53 +127656,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [42577] = 5, - ACTIONS(3081), 1, - anon_sym_COLON, + [42768] = 4, + ACTIONS(4244), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3077), 3, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(4121), 3, + ACTIONS(3927), 3, + anon_sym_EQ_GT, + anon_sym_if, + anon_sym_PIPE, + ACTIONS(1038), 8, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3083), 5, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, + anon_sym_LT2, anon_sym_DOT_DOT_EQ, - anon_sym_PIPE, - [42602] = 5, - ACTIONS(3067), 1, - anon_sym_COLON, + anon_sym_AT, + [42791] = 12, + ACTIONS(7), 1, + sym__primitive_identifier, + ACTIONS(51), 1, + anon_sym_pub, + ACTIONS(97), 1, + sym__raw_identifier, + ACTIONS(2744), 1, + anon_sym_POUND, + ACTIONS(4100), 1, + sym_crate, + ACTIONS(4102), 1, + sym_grit_metavariable, + ACTIONS(4246), 1, + anon_sym_RBRACE, + STATE(1715), 1, + sym_identifier, + STATE(2044), 1, + sym_visibility_modifier, + STATE(2515), 1, + sym_enum_variant, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3063), 3, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(4118), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3069), 5, - anon_sym_BANG, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_PIPE, - [42627] = 3, - ACTIONS(4246), 1, + STATE(1631), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [42830] = 3, + ACTIONS(4250), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4244), 11, + ACTIONS(4248), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -127392,33 +127720,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [42648] = 5, - ACTIONS(3019), 1, - anon_sym_COLON, + [42851] = 12, + ACTIONS(51), 1, + anon_sym_pub, + ACTIONS(2744), 1, + anon_sym_POUND, + ACTIONS(3503), 1, + sym__primitive_identifier, + ACTIONS(3505), 1, + sym__raw_identifier, + ACTIONS(4100), 1, + sym_crate, + ACTIONS(4102), 1, + sym_grit_metavariable, + ACTIONS(4252), 1, + anon_sym_RBRACE, + STATE(2093), 1, + sym_visibility_modifier, + STATE(2607), 1, + sym_field_declaration, + STATE(2655), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3015), 3, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(4213), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3021), 5, - anon_sym_BANG, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_PIPE, - [42673] = 3, - ACTIONS(4088), 1, + STATE(1624), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [42890] = 3, + ACTIONS(4256), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4086), 11, + ACTIONS(4254), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -127430,75 +127765,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [42694] = 9, - ACTIONS(2742), 1, - anon_sym_POUND, - ACTIONS(3523), 1, - sym__primitive_identifier, - ACTIONS(4106), 1, - anon_sym_DOT_DOT, - ACTIONS(4248), 1, - anon_sym_RBRACE, - STATE(2376), 1, - sym_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3525), 2, - sym__raw_identifier, - sym_grit_metavariable, - STATE(1742), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(2503), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [42727] = 4, + [42911] = 3, + ACTIONS(4260), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4126), 2, - anon_sym_LPAREN, - anon_sym_RBRACK, - ACTIONS(3055), 4, + ACTIONS(4258), 11, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(3061), 6, - anon_sym_BANG, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_if, anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_else, + anon_sym_in, anon_sym_PIPE, - [42750] = 4, + [42932] = 3, + ACTIONS(4264), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4121), 2, - anon_sym_LPAREN, - anon_sym_RBRACK, - ACTIONS(3077), 4, + ACTIONS(4262), 11, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(3083), 6, - anon_sym_BANG, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_if, anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_else, + anon_sym_in, anon_sym_PIPE, - [42773] = 3, - ACTIONS(4252), 1, + [42953] = 3, + ACTIONS(4268), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4250), 11, + ACTIONS(4266), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -127510,59 +127819,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [42794] = 12, - ACTIONS(7), 1, - sym__primitive_identifier, - ACTIONS(51), 1, - anon_sym_pub, - ACTIONS(97), 1, - sym__raw_identifier, - ACTIONS(2742), 1, - anon_sym_POUND, - ACTIONS(4061), 1, - sym_crate, - ACTIONS(4063), 1, - sym_grit_metavariable, - ACTIONS(4254), 1, - anon_sym_RBRACE, - STATE(1723), 1, - sym_identifier, - STATE(1957), 1, - sym_visibility_modifier, - STATE(2443), 1, - sym_enum_variant, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1619), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [42833] = 4, + [42974] = 3, + ACTIONS(4272), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4118), 2, - anon_sym_LPAREN, - anon_sym_RBRACK, - ACTIONS(3063), 4, + ACTIONS(4270), 11, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(3069), 6, - anon_sym_BANG, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_if, anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_else, + anon_sym_in, anon_sym_PIPE, - [42856] = 3, - ACTIONS(4258), 1, + [42995] = 3, + ACTIONS(4276), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4256), 11, + ACTIONS(4274), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -127574,107 +127855,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [42877] = 7, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(3523), 1, - sym__primitive_identifier, - STATE(96), 1, - sym_block, - STATE(2649), 1, - sym_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3525), 2, - sym__raw_identifier, - sym_grit_metavariable, - ACTIONS(4260), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [42906] = 4, + [43016] = 3, + ACTIONS(4280), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4213), 2, - anon_sym_LPAREN, - anon_sym_RBRACK, - ACTIONS(3015), 4, + ACTIONS(4278), 11, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(3021), 6, - anon_sym_BANG, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_if, anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_else, + anon_sym_in, anon_sym_PIPE, - [42929] = 11, - ACTIONS(2738), 1, - anon_sym_SQUOTE, - ACTIONS(3523), 1, - sym__primitive_identifier, - ACTIONS(4135), 1, - anon_sym_const, - ACTIONS(4139), 1, - sym_metavariable, - ACTIONS(4262), 1, - anon_sym_GT, - STATE(1942), 1, - sym_identifier, - STATE(2132), 1, - sym_lifetime, - STATE(2389), 1, - sym_constrained_type_parameter, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3525), 2, - sym__raw_identifier, - sym_grit_metavariable, - STATE(2577), 2, - sym_const_parameter, - sym_optional_type_parameter, - [42966] = 12, - ACTIONS(51), 1, - anon_sym_pub, - ACTIONS(2742), 1, - anon_sym_POUND, - ACTIONS(3523), 1, - sym__primitive_identifier, - ACTIONS(3525), 1, - sym__raw_identifier, - ACTIONS(4061), 1, - sym_crate, - ACTIONS(4063), 1, - sym_grit_metavariable, - ACTIONS(4264), 1, - anon_sym_RBRACE, - STATE(1966), 1, - sym_visibility_modifier, - STATE(2595), 1, - sym_field_declaration, - STATE(2765), 1, - sym_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1621), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [43005] = 3, - ACTIONS(4268), 1, + [43037] = 3, + ACTIONS(4284), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4266), 11, + ACTIONS(4282), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -127686,13 +127891,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [43026] = 3, - ACTIONS(4272), 1, + [43058] = 3, + ACTIONS(737), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4270), 11, + ACTIONS(735), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -127704,13 +127909,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [43047] = 3, - ACTIONS(4276), 1, + [43079] = 3, + ACTIONS(3915), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4274), 11, + ACTIONS(3909), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -127722,13 +127927,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [43068] = 3, - ACTIONS(3897), 1, + [43100] = 3, + ACTIONS(4074), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3891), 11, + ACTIONS(4072), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -127740,13 +127945,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [43089] = 3, - ACTIONS(4280), 1, + [43121] = 3, + ACTIONS(4288), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4278), 11, + ACTIONS(4286), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -127758,13 +127963,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [43110] = 3, - ACTIONS(4284), 1, + [43142] = 3, + ACTIONS(4292), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4282), 11, + ACTIONS(4290), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -127776,49 +127981,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [43131] = 11, + [43163] = 12, ACTIONS(7), 1, sym__primitive_identifier, ACTIONS(51), 1, anon_sym_pub, ACTIONS(97), 1, sym__raw_identifier, - ACTIONS(2742), 1, + ACTIONS(2744), 1, anon_sym_POUND, - ACTIONS(4061), 1, + ACTIONS(4100), 1, sym_crate, - ACTIONS(4063), 1, + ACTIONS(4102), 1, sym_grit_metavariable, - STATE(1723), 1, + ACTIONS(4294), 1, + anon_sym_RBRACE, + STATE(1715), 1, sym_identifier, - STATE(1957), 1, + STATE(2044), 1, sym_visibility_modifier, - STATE(2511), 1, + STATE(2515), 1, sym_enum_variant, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1110), 2, + STATE(1631), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [43202] = 3, + ACTIONS(4298), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4296), 11, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_if, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + anon_sym_PIPE, + [43223] = 9, + ACTIONS(2744), 1, + anon_sym_POUND, + ACTIONS(3503), 1, + sym__primitive_identifier, + ACTIONS(4084), 1, + anon_sym_DOT_DOT, + ACTIONS(4300), 1, + anon_sym_RBRACE, + STATE(2325), 1, + sym_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3505), 2, + sym__raw_identifier, + sym_grit_metavariable, + STATE(1721), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [43167] = 11, + STATE(2493), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [43256] = 11, + ACTIONS(2740), 1, + anon_sym_SQUOTE, + ACTIONS(3503), 1, + sym__primitive_identifier, + ACTIONS(4139), 1, + anon_sym_const, + ACTIONS(4143), 1, + sym_metavariable, + ACTIONS(4302), 1, + anon_sym_GT, + STATE(1914), 1, + sym_identifier, + STATE(2105), 1, + sym_lifetime, + STATE(2310), 1, + sym_constrained_type_parameter, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3505), 2, + sym__raw_identifier, + sym_grit_metavariable, + STATE(2398), 2, + sym_const_parameter, + sym_optional_type_parameter, + [43293] = 11, ACTIONS(51), 1, anon_sym_pub, - ACTIONS(2742), 1, + ACTIONS(2744), 1, anon_sym_POUND, - ACTIONS(3523), 1, + ACTIONS(3503), 1, sym__primitive_identifier, - ACTIONS(3525), 1, + ACTIONS(3505), 1, sym__raw_identifier, - ACTIONS(4061), 1, + ACTIONS(4100), 1, sym_crate, - ACTIONS(4063), 1, + ACTIONS(4102), 1, sym_grit_metavariable, - STATE(1966), 1, + STATE(2093), 1, sym_visibility_modifier, - STATE(2337), 1, + STATE(2351), 1, sym_field_declaration, - STATE(2765), 1, + STATE(2655), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, @@ -127826,24 +128101,24 @@ static const uint16_t ts_small_parse_table[] = { STATE(1110), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [43203] = 11, + [43329] = 11, ACTIONS(51), 1, anon_sym_pub, - ACTIONS(2742), 1, + ACTIONS(2744), 1, anon_sym_POUND, - ACTIONS(3523), 1, + ACTIONS(3503), 1, sym__primitive_identifier, - ACTIONS(3525), 1, + ACTIONS(3505), 1, sym__raw_identifier, - ACTIONS(4061), 1, + ACTIONS(4100), 1, sym_crate, - ACTIONS(4063), 1, + ACTIONS(4102), 1, sym_grit_metavariable, - STATE(1966), 1, + STATE(2093), 1, sym_visibility_modifier, - STATE(2485), 1, + STATE(2482), 1, sym_field_declaration, - STATE(2765), 1, + STATE(2655), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, @@ -127851,95 +128126,70 @@ static const uint16_t ts_small_parse_table[] = { STATE(1110), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [43239] = 9, - ACTIONS(3899), 1, + [43365] = 9, + ACTIONS(3917), 1, anon_sym_BANG, - ACTIONS(3905), 1, + ACTIONS(3923), 1, anon_sym_LT2, - ACTIONS(3915), 1, + ACTIONS(3933), 1, anon_sym_LPAREN, - ACTIONS(3917), 1, + ACTIONS(3935), 1, anon_sym_COLON_COLON, - ACTIONS(4286), 1, + ACTIONS(4304), 1, anon_sym_for, - STATE(1465), 1, + STATE(1469), 1, sym_type_arguments, - STATE(1488), 1, + STATE(1504), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2995), 4, + ACTIONS(2997), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [43271] = 11, - ACTIONS(51), 1, - anon_sym_pub, - ACTIONS(2742), 1, - anon_sym_POUND, - ACTIONS(3523), 1, - sym__primitive_identifier, - ACTIONS(3525), 1, - sym__raw_identifier, - ACTIONS(4061), 1, - sym_crate, - ACTIONS(4063), 1, - sym_grit_metavariable, - STATE(1966), 1, - sym_visibility_modifier, - STATE(2313), 1, - sym_field_declaration, - STATE(2765), 1, - sym_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1110), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [43307] = 9, - ACTIONS(3899), 1, + [43397] = 9, + ACTIONS(3917), 1, anon_sym_BANG, - ACTIONS(3905), 1, + ACTIONS(3923), 1, anon_sym_LT2, - ACTIONS(3915), 1, + ACTIONS(3933), 1, anon_sym_LPAREN, - ACTIONS(3917), 1, + ACTIONS(3935), 1, anon_sym_COLON_COLON, - ACTIONS(4288), 1, + ACTIONS(4306), 1, anon_sym_for, - STATE(1465), 1, + STATE(1469), 1, sym_type_arguments, - STATE(1488), 1, + STATE(1504), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2995), 4, + ACTIONS(2997), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [43339] = 11, + [43429] = 11, ACTIONS(7), 1, sym__primitive_identifier, ACTIONS(51), 1, anon_sym_pub, ACTIONS(97), 1, sym__raw_identifier, - ACTIONS(2742), 1, + ACTIONS(2744), 1, anon_sym_POUND, - ACTIONS(4061), 1, + ACTIONS(4100), 1, sym_crate, - ACTIONS(4063), 1, + ACTIONS(4102), 1, sym_grit_metavariable, - STATE(1723), 1, + STATE(1715), 1, sym_identifier, - STATE(1957), 1, + STATE(2044), 1, sym_visibility_modifier, - STATE(2285), 1, + STATE(2175), 1, sym_enum_variant, ACTIONS(3), 2, sym_block_comment, @@ -127947,383 +128197,366 @@ static const uint16_t ts_small_parse_table[] = { STATE(1110), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [43375] = 5, - ACTIONS(896), 1, - aux_sym_string_literal_token1, - ACTIONS(4292), 1, - sym_crate, - STATE(1681), 1, - sym_string_literal, + [43465] = 10, + ACTIONS(2740), 1, + anon_sym_SQUOTE, + ACTIONS(3503), 1, + sym__primitive_identifier, + ACTIONS(4139), 1, + anon_sym_const, + ACTIONS(4143), 1, + sym_metavariable, + STATE(1914), 1, + sym_identifier, + STATE(2092), 1, + sym_lifetime, + STATE(2310), 1, + sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4290), 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, - [43399] = 5, - ACTIONS(896), 1, - aux_sym_string_literal_token1, - ACTIONS(4294), 1, - sym_crate, - STATE(1681), 1, - sym_string_literal, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4290), 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, - [43423] = 5, - ACTIONS(896), 1, - aux_sym_string_literal_token1, - ACTIONS(4296), 1, + ACTIONS(3505), 2, + sym__raw_identifier, + sym_grit_metavariable, + STATE(2398), 2, + sym_const_parameter, + sym_optional_type_parameter, + [43499] = 11, + ACTIONS(7), 1, + sym__primitive_identifier, + ACTIONS(51), 1, + anon_sym_pub, + ACTIONS(97), 1, + sym__raw_identifier, + ACTIONS(2744), 1, + anon_sym_POUND, + ACTIONS(4100), 1, sym_crate, - STATE(1681), 1, - sym_string_literal, + ACTIONS(4102), 1, + sym_grit_metavariable, + STATE(1715), 1, + sym_identifier, + STATE(2044), 1, + sym_visibility_modifier, + STATE(2289), 1, + sym_enum_variant, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4290), 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, - [43447] = 10, - ACTIONS(2738), 1, + STATE(1110), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [43535] = 10, + ACTIONS(2740), 1, anon_sym_SQUOTE, - ACTIONS(3523), 1, + ACTIONS(3503), 1, sym__primitive_identifier, - ACTIONS(4135), 1, - anon_sym_const, ACTIONS(4139), 1, + anon_sym_const, + ACTIONS(4308), 1, sym_metavariable, - STATE(1942), 1, + STATE(1834), 1, sym_identifier, - STATE(1975), 1, + STATE(1932), 1, sym_lifetime, - STATE(2389), 1, + STATE(1990), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3525), 2, + ACTIONS(3505), 2, sym__raw_identifier, sym_grit_metavariable, - STATE(2577), 2, + STATE(2258), 2, sym_const_parameter, sym_optional_type_parameter, - [43481] = 10, - ACTIONS(2738), 1, - anon_sym_SQUOTE, - ACTIONS(3523), 1, + [43569] = 11, + ACTIONS(7), 1, sym__primitive_identifier, - ACTIONS(4135), 1, - anon_sym_const, - ACTIONS(4298), 1, - sym_metavariable, - STATE(1784), 1, - sym_identifier, - STATE(1898), 1, - sym_lifetime, - STATE(1977), 1, - sym_constrained_type_parameter, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3525), 2, + ACTIONS(51), 1, + anon_sym_pub, + ACTIONS(97), 1, sym__raw_identifier, + ACTIONS(2744), 1, + anon_sym_POUND, + ACTIONS(4100), 1, + sym_crate, + ACTIONS(4102), 1, sym_grit_metavariable, - STATE(2153), 2, - sym_const_parameter, - sym_optional_type_parameter, - [43515] = 9, - ACTIONS(3899), 1, - anon_sym_BANG, - ACTIONS(3905), 1, - anon_sym_LT2, - ACTIONS(3915), 1, - anon_sym_LPAREN, - ACTIONS(3917), 1, - anon_sym_COLON_COLON, - ACTIONS(4300), 1, - anon_sym_for, - STATE(1465), 1, - sym_type_arguments, - STATE(1488), 1, - sym_parameters, + STATE(1715), 1, + sym_identifier, + STATE(2044), 1, + sym_visibility_modifier, + STATE(2546), 1, + sym_enum_variant, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2995), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [43547] = 9, - ACTIONS(3899), 1, - anon_sym_BANG, - ACTIONS(3905), 1, - anon_sym_LT2, - ACTIONS(3915), 1, - anon_sym_LPAREN, - ACTIONS(3917), 1, - anon_sym_COLON_COLON, - ACTIONS(4302), 1, - anon_sym_for, - STATE(1465), 1, - sym_type_arguments, - STATE(1488), 1, - sym_parameters, + STATE(1110), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [43605] = 5, + ACTIONS(898), 1, + aux_sym_string_literal_token1, + ACTIONS(4312), 1, + sym_crate, + STATE(1694), 1, + sym_string_literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2995), 4, + ACTIONS(4310), 8, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [43579] = 10, - ACTIONS(2738), 1, - anon_sym_SQUOTE, - ACTIONS(3523), 1, - sym__primitive_identifier, - ACTIONS(4135), 1, + anon_sym_async, anon_sym_const, - ACTIONS(4304), 1, - sym_metavariable, - STATE(1796), 1, - sym_identifier, - STATE(1935), 1, - sym_lifetime, - STATE(2143), 1, - sym_constrained_type_parameter, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3525), 2, - sym__raw_identifier, - sym_grit_metavariable, - STATE(2261), 2, - sym_const_parameter, - sym_optional_type_parameter, - [43613] = 11, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [43629] = 11, ACTIONS(7), 1, sym__primitive_identifier, ACTIONS(51), 1, anon_sym_pub, ACTIONS(97), 1, sym__raw_identifier, - ACTIONS(2742), 1, + ACTIONS(2744), 1, anon_sym_POUND, - ACTIONS(4061), 1, + ACTIONS(4100), 1, sym_crate, - ACTIONS(4063), 1, + ACTIONS(4102), 1, sym_grit_metavariable, - STATE(1723), 1, + STATE(1715), 1, sym_identifier, - STATE(1957), 1, + STATE(2044), 1, sym_visibility_modifier, - STATE(2443), 1, + STATE(2515), 1, sym_enum_variant, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1619), 2, + STATE(1631), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [43649] = 9, - ACTIONS(3899), 1, + [43665] = 9, + ACTIONS(3917), 1, anon_sym_BANG, - ACTIONS(3905), 1, + ACTIONS(3923), 1, anon_sym_LT2, - ACTIONS(3915), 1, + ACTIONS(3933), 1, anon_sym_LPAREN, - ACTIONS(3917), 1, + ACTIONS(3935), 1, anon_sym_COLON_COLON, - ACTIONS(4306), 1, + ACTIONS(4314), 1, anon_sym_for, - STATE(1465), 1, + STATE(1469), 1, sym_type_arguments, - STATE(1488), 1, + STATE(1504), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2995), 4, + ACTIONS(2997), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [43681] = 11, + [43697] = 11, ACTIONS(51), 1, anon_sym_pub, - ACTIONS(2742), 1, + ACTIONS(2744), 1, anon_sym_POUND, - ACTIONS(3523), 1, + ACTIONS(3503), 1, sym__primitive_identifier, - ACTIONS(3525), 1, + ACTIONS(3505), 1, sym__raw_identifier, - ACTIONS(4061), 1, + ACTIONS(4100), 1, sym_crate, - ACTIONS(4063), 1, + ACTIONS(4102), 1, sym_grit_metavariable, - STATE(1966), 1, + STATE(2093), 1, sym_visibility_modifier, - STATE(2595), 1, + STATE(2317), 1, sym_field_declaration, - STATE(2765), 1, + STATE(2655), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1621), 2, + STATE(1110), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [43717] = 9, - ACTIONS(3899), 1, + [43733] = 9, + ACTIONS(3917), 1, anon_sym_BANG, - ACTIONS(3905), 1, + ACTIONS(3923), 1, anon_sym_LT2, - ACTIONS(3915), 1, + ACTIONS(3933), 1, anon_sym_LPAREN, - ACTIONS(3917), 1, + ACTIONS(3935), 1, anon_sym_COLON_COLON, - ACTIONS(4308), 1, + ACTIONS(4316), 1, anon_sym_for, - STATE(1465), 1, + STATE(1469), 1, sym_type_arguments, - STATE(1488), 1, + STATE(1504), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2995), 4, + ACTIONS(2997), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [43749] = 9, - ACTIONS(3899), 1, + [43765] = 5, + ACTIONS(898), 1, + aux_sym_string_literal_token1, + ACTIONS(4318), 1, + sym_crate, + STATE(1694), 1, + sym_string_literal, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4310), 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, + [43789] = 9, + ACTIONS(3917), 1, anon_sym_BANG, - ACTIONS(3905), 1, + ACTIONS(3923), 1, anon_sym_LT2, - ACTIONS(3915), 1, + ACTIONS(3933), 1, anon_sym_LPAREN, - ACTIONS(3917), 1, + ACTIONS(3935), 1, anon_sym_COLON_COLON, - ACTIONS(4310), 1, + ACTIONS(4320), 1, anon_sym_for, - STATE(1465), 1, + STATE(1469), 1, sym_type_arguments, - STATE(1488), 1, + STATE(1504), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2995), 4, + ACTIONS(2997), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [43781] = 10, - ACTIONS(2738), 1, + [43821] = 11, + ACTIONS(51), 1, + anon_sym_pub, + ACTIONS(2744), 1, + anon_sym_POUND, + ACTIONS(3503), 1, + sym__primitive_identifier, + ACTIONS(3505), 1, + sym__raw_identifier, + ACTIONS(4100), 1, + sym_crate, + ACTIONS(4102), 1, + sym_grit_metavariable, + STATE(2093), 1, + sym_visibility_modifier, + STATE(2607), 1, + sym_field_declaration, + STATE(2655), 1, + sym_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1624), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [43857] = 8, + ACTIONS(2744), 1, + anon_sym_POUND, + ACTIONS(3503), 1, + sym__primitive_identifier, + ACTIONS(4084), 1, + anon_sym_DOT_DOT, + STATE(2325), 1, + sym_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3505), 2, + sym__raw_identifier, + sym_grit_metavariable, + STATE(1721), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(2493), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [43887] = 10, + ACTIONS(2740), 1, anon_sym_SQUOTE, - ACTIONS(3523), 1, + ACTIONS(3503), 1, sym__primitive_identifier, - ACTIONS(4135), 1, + ACTIONS(4139), 1, anon_sym_const, - ACTIONS(4304), 1, + ACTIONS(4308), 1, sym_metavariable, - STATE(1762), 1, + STATE(1763), 1, sym_lifetime, - STATE(1796), 1, + STATE(1834), 1, sym_identifier, - STATE(2143), 1, + STATE(1990), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3525), 2, + ACTIONS(3505), 2, sym__raw_identifier, sym_grit_metavariable, - STATE(2261), 2, + STATE(2258), 2, sym_const_parameter, sym_optional_type_parameter, - [43815] = 9, - ACTIONS(3899), 1, + [43921] = 9, + ACTIONS(3917), 1, anon_sym_BANG, - ACTIONS(3905), 1, + ACTIONS(3923), 1, anon_sym_LT2, - ACTIONS(3915), 1, + ACTIONS(3933), 1, anon_sym_LPAREN, - ACTIONS(3917), 1, + ACTIONS(3935), 1, anon_sym_COLON_COLON, - ACTIONS(4312), 1, + ACTIONS(4322), 1, anon_sym_for, - STATE(1465), 1, + STATE(1469), 1, sym_type_arguments, - STATE(1488), 1, + STATE(1504), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2995), 4, + ACTIONS(2997), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [43847] = 11, - ACTIONS(7), 1, - sym__primitive_identifier, - ACTIONS(51), 1, - anon_sym_pub, - ACTIONS(97), 1, - sym__raw_identifier, - ACTIONS(2742), 1, - anon_sym_POUND, - ACTIONS(4061), 1, - sym_crate, - ACTIONS(4063), 1, - sym_grit_metavariable, - STATE(1723), 1, - sym_identifier, - STATE(1957), 1, - sym_visibility_modifier, - STATE(2303), 1, - sym_enum_variant, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1110), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [43883] = 5, - ACTIONS(896), 1, + [43953] = 5, + ACTIONS(898), 1, aux_sym_string_literal_token1, - ACTIONS(4314), 1, + ACTIONS(4324), 1, sym_crate, - STATE(1681), 1, + STATE(1694), 1, sym_string_literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4290), 8, + ACTIONS(4310), 8, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_async, @@ -128332,1316 +128565,1208 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [43907] = 8, - ACTIONS(2742), 1, - anon_sym_POUND, - ACTIONS(3523), 1, - sym__primitive_identifier, - ACTIONS(4106), 1, - anon_sym_DOT_DOT, - STATE(2376), 1, - sym_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3525), 2, - sym__raw_identifier, - sym_grit_metavariable, - STATE(1742), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(2503), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [43937] = 5, - ACTIONS(3523), 1, - sym__primitive_identifier, - STATE(2697), 1, - sym_identifier, + [43977] = 5, + ACTIONS(898), 1, + aux_sym_string_literal_token1, + ACTIONS(4326), 1, + sym_crate, + STATE(1694), 1, + sym_string_literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3525), 2, - sym__raw_identifier, - sym_grit_metavariable, - ACTIONS(4260), 6, + ACTIONS(4310), 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, - [43960] = 5, - ACTIONS(3523), 1, + [44001] = 9, + ACTIONS(3917), 1, + anon_sym_BANG, + ACTIONS(3923), 1, + anon_sym_LT2, + ACTIONS(3933), 1, + anon_sym_LPAREN, + ACTIONS(3935), 1, + anon_sym_COLON_COLON, + ACTIONS(4328), 1, + anon_sym_for, + STATE(1469), 1, + sym_type_arguments, + STATE(1504), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2997), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [44033] = 10, + ACTIONS(2740), 1, + anon_sym_SQUOTE, + ACTIONS(3503), 1, sym__primitive_identifier, - STATE(2609), 1, + ACTIONS(4139), 1, + anon_sym_const, + ACTIONS(4330), 1, + sym_metavariable, + STATE(1785), 1, sym_identifier, + STATE(1899), 1, + sym_lifetime, + STATE(2150), 1, + sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3525), 2, + ACTIONS(3505), 2, sym__raw_identifier, sym_grit_metavariable, - ACTIONS(4260), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [43983] = 7, - ACTIONS(3905), 1, + STATE(2157), 2, + sym_const_parameter, + sym_optional_type_parameter, + [44067] = 9, + ACTIONS(3917), 1, + anon_sym_BANG, + ACTIONS(3923), 1, anon_sym_LT2, - ACTIONS(3915), 1, + ACTIONS(3933), 1, anon_sym_LPAREN, - ACTIONS(4316), 1, - anon_sym_LBRACE, - STATE(1462), 1, + ACTIONS(3935), 1, + anon_sym_COLON_COLON, + ACTIONS(4332), 1, + anon_sym_for, + STATE(1469), 1, sym_type_arguments, - STATE(1497), 1, + STATE(1504), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 5, + ACTIONS(2997), 4, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_COMMA, - [44010] = 5, - ACTIONS(3523), 1, + anon_sym_where, + [44099] = 5, + ACTIONS(3503), 1, sym__primitive_identifier, - STATE(2720), 1, + STATE(2662), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3525), 2, + ACTIONS(3505), 2, sym__raw_identifier, sym_grit_metavariable, - ACTIONS(4260), 6, + ACTIONS(4198), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [44033] = 9, - ACTIONS(3899), 1, + [44122] = 9, + ACTIONS(3917), 1, anon_sym_BANG, - ACTIONS(3905), 1, + ACTIONS(3923), 1, anon_sym_LT2, - ACTIONS(3915), 1, + ACTIONS(3933), 1, anon_sym_LPAREN, - ACTIONS(3917), 1, + ACTIONS(3935), 1, anon_sym_COLON_COLON, - ACTIONS(4318), 1, + ACTIONS(4334), 1, anon_sym_EQ, - STATE(1488), 1, + STATE(1504), 1, sym_parameters, - STATE(1937), 1, + STATE(1904), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2995), 3, + ACTIONS(2997), 3, anon_sym_PLUS, anon_sym_COMMA, anon_sym_GT, - [44064] = 5, - ACTIONS(3523), 1, + [44153] = 6, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(4336), 1, + anon_sym_impl, + ACTIONS(4338), 1, + anon_sym_trait, + STATE(172), 1, + sym_block, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3099), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [44178] = 5, + ACTIONS(3503), 1, sym__primitive_identifier, - STATE(2605), 1, + STATE(2701), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3525), 2, + ACTIONS(3505), 2, sym__raw_identifier, sym_grit_metavariable, - ACTIONS(4260), 6, + ACTIONS(4198), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [44087] = 9, - ACTIONS(982), 1, - anon_sym_DOT_DOT, - ACTIONS(3523), 1, + [44201] = 5, + ACTIONS(3503), 1, sym__primitive_identifier, - ACTIONS(4320), 1, - anon_sym_RBRACE, - ACTIONS(4322), 1, - anon_sym_ref, - ACTIONS(4324), 1, - sym_mutable_specifier, - STATE(2236), 1, + STATE(2623), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3525), 2, + ACTIONS(3505), 2, sym__raw_identifier, sym_grit_metavariable, - STATE(2235), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [44118] = 9, - ACTIONS(982), 1, - anon_sym_DOT_DOT, - ACTIONS(3523), 1, + ACTIONS(4198), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [44224] = 5, + ACTIONS(3503), 1, sym__primitive_identifier, - ACTIONS(4322), 1, - anon_sym_ref, - ACTIONS(4324), 1, - sym_mutable_specifier, - ACTIONS(4326), 1, - anon_sym_RBRACE, - STATE(2236), 1, + STATE(2724), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3525), 2, + ACTIONS(3505), 2, sym__raw_identifier, sym_grit_metavariable, - STATE(2244), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [44149] = 6, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(4328), 1, - anon_sym_impl, - ACTIONS(4330), 1, - anon_sym_trait, - STATE(165), 1, - sym_block, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3101), 6, + ACTIONS(4198), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [44174] = 9, - ACTIONS(7), 1, - sym__primitive_identifier, - ACTIONS(3619), 1, - anon_sym_LBRACE, - ACTIONS(3905), 1, + [44247] = 7, + ACTIONS(3923), 1, anon_sym_LT2, - ACTIONS(4332), 1, - anon_sym_STAR, - STATE(970), 1, - sym_identifier, - STATE(2307), 1, - sym_use_list, - STATE(2630), 1, + ACTIONS(3933), 1, + anon_sym_LPAREN, + ACTIONS(4340), 1, + anon_sym_LBRACE, + STATE(1467), 1, sym_type_arguments, + STATE(1506), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(97), 2, + ACTIONS(3025), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_PLUS, + anon_sym_COMMA, + [44274] = 9, + ACTIONS(984), 1, + anon_sym_DOT_DOT, + ACTIONS(3503), 1, + sym__primitive_identifier, + ACTIONS(4342), 1, + anon_sym_RBRACE, + ACTIONS(4344), 1, + anon_sym_ref, + ACTIONS(4346), 1, + sym_mutable_specifier, + STATE(2392), 1, + sym_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3505), 2, + sym__raw_identifier, + sym_grit_metavariable, + STATE(2394), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [44305] = 9, + ACTIONS(984), 1, + anon_sym_DOT_DOT, + ACTIONS(3503), 1, + sym__primitive_identifier, + ACTIONS(4344), 1, + anon_sym_ref, + ACTIONS(4346), 1, + sym_mutable_specifier, + ACTIONS(4348), 1, + anon_sym_RBRACE, + STATE(2392), 1, + sym_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3505), 2, sym__raw_identifier, sym_grit_metavariable, - [44204] = 7, - ACTIONS(3905), 1, + STATE(2396), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [44336] = 7, + ACTIONS(3923), 1, anon_sym_LT2, - ACTIONS(3915), 1, + ACTIONS(3933), 1, anon_sym_LPAREN, - ACTIONS(4334), 1, + ACTIONS(4350), 1, anon_sym_for, - STATE(1462), 1, + STATE(1467), 1, sym_type_arguments, - STATE(1497), 1, + STATE(1506), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 4, + ACTIONS(3025), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [44230] = 7, - ACTIONS(3905), 1, + [44362] = 7, + ACTIONS(3923), 1, anon_sym_LT2, - ACTIONS(3915), 1, + ACTIONS(3933), 1, anon_sym_LPAREN, - ACTIONS(4336), 1, + ACTIONS(4352), 1, anon_sym_for, - STATE(1462), 1, + STATE(1467), 1, sym_type_arguments, - STATE(1497), 1, + STATE(1506), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 4, + ACTIONS(3025), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [44256] = 5, - ACTIONS(4338), 1, + [44388] = 4, + ACTIONS(3194), 1, + sym__primitive_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3199), 2, + sym__raw_identifier, + sym_grit_metavariable, + ACTIONS(1038), 6, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, + [44408] = 10, + ACTIONS(4354), 1, anon_sym_SEMI, - ACTIONS(4340), 1, + ACTIONS(4356), 1, + anon_sym_LPAREN, + ACTIONS(4358), 1, anon_sym_LBRACE, - STATE(847), 1, - sym_declaration_list, + ACTIONS(4360), 1, + anon_sym_where, + ACTIONS(4362), 1, + anon_sym_LT, + STATE(1053), 1, + sym_field_declaration_list, + STATE(1739), 1, + sym_type_parameters, + STATE(2269), 1, + sym_ordered_field_declaration_list, + STATE(2574), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3101), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [44278] = 5, - ACTIONS(4342), 1, + [44440] = 10, + ACTIONS(4356), 1, + anon_sym_LPAREN, + ACTIONS(4360), 1, + anon_sym_where, + ACTIONS(4362), 1, + anon_sym_LT, + ACTIONS(4364), 1, anon_sym_SEMI, - ACTIONS(4344), 1, + ACTIONS(4366), 1, anon_sym_LBRACE, - STATE(474), 1, - sym_declaration_list, + STATE(450), 1, + sym_field_declaration_list, + STATE(1728), 1, + sym_type_parameters, + STATE(2200), 1, + sym_ordered_field_declaration_list, + STATE(2483), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3101), 6, + [44472] = 5, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(4368), 1, + anon_sym_move, + STATE(95), 1, + sym_block, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3099), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [44300] = 5, - ACTIONS(4340), 1, - anon_sym_LBRACE, - ACTIONS(4346), 1, + [44494] = 5, + ACTIONS(4370), 1, anon_sym_SEMI, - STATE(863), 1, + ACTIONS(4372), 1, + anon_sym_LBRACE, + STATE(340), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3101), 6, + ACTIONS(3099), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [44322] = 7, - ACTIONS(3905), 1, - anon_sym_LT2, - ACTIONS(3915), 1, - anon_sym_LPAREN, - ACTIONS(4348), 1, - anon_sym_for, - STATE(1462), 1, - sym_type_arguments, - STATE(1497), 1, - sym_parameters, + [44516] = 5, + ACTIONS(4372), 1, + anon_sym_LBRACE, + ACTIONS(4374), 1, + anon_sym_SEMI, + STATE(475), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [44348] = 10, - ACTIONS(4350), 1, - anon_sym_SEMI, - ACTIONS(4352), 1, - anon_sym_LPAREN, - ACTIONS(4354), 1, - anon_sym_LBRACE, + ACTIONS(3099), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [44538] = 10, ACTIONS(4356), 1, + anon_sym_LPAREN, + ACTIONS(4360), 1, anon_sym_where, - ACTIONS(4358), 1, + ACTIONS(4362), 1, anon_sym_LT, - STATE(856), 1, + ACTIONS(4366), 1, + anon_sym_LBRACE, + ACTIONS(4376), 1, + anon_sym_SEMI, + STATE(388), 1, sym_field_declaration_list, - STATE(1716), 1, + STATE(1745), 1, sym_type_parameters, - STATE(2167), 1, + STATE(2270), 1, sym_ordered_field_declaration_list, - STATE(2414), 1, + STATE(2565), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [44380] = 7, - ACTIONS(3905), 1, + [44570] = 7, + ACTIONS(3923), 1, anon_sym_LT2, - ACTIONS(3915), 1, + ACTIONS(3933), 1, anon_sym_LPAREN, - ACTIONS(4360), 1, + ACTIONS(4378), 1, anon_sym_for, - STATE(1462), 1, + STATE(1467), 1, sym_type_arguments, - STATE(1497), 1, + STATE(1506), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 4, + ACTIONS(3025), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [44406] = 10, - ACTIONS(4352), 1, - anon_sym_LPAREN, - ACTIONS(4356), 1, - anon_sym_where, - ACTIONS(4358), 1, - anon_sym_LT, - ACTIONS(4362), 1, - anon_sym_SEMI, - ACTIONS(4364), 1, - anon_sym_LBRACE, - STATE(387), 1, - sym_field_declaration_list, - STATE(1735), 1, - sym_type_parameters, - STATE(2252), 1, - sym_ordered_field_declaration_list, - STATE(2589), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [44438] = 9, - ACTIONS(7), 1, - sym__primitive_identifier, - ACTIONS(3619), 1, - anon_sym_LBRACE, - ACTIONS(3905), 1, - anon_sym_LT2, - ACTIONS(4332), 1, - anon_sym_STAR, - STATE(970), 1, - sym_identifier, - STATE(2307), 1, - sym_use_list, - STATE(2606), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(97), 2, - sym__raw_identifier, - sym_grit_metavariable, - [44468] = 5, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(4366), 1, - anon_sym_move, - STATE(94), 1, - sym_block, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3101), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [44490] = 7, - ACTIONS(3905), 1, + [44596] = 7, + ACTIONS(3923), 1, anon_sym_LT2, - ACTIONS(3915), 1, + ACTIONS(3933), 1, anon_sym_LPAREN, - ACTIONS(4368), 1, + ACTIONS(4380), 1, anon_sym_for, - STATE(1462), 1, + STATE(1467), 1, sym_type_arguments, - STATE(1497), 1, + STATE(1506), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 4, + ACTIONS(3025), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [44516] = 5, - ACTIONS(4344), 1, - anon_sym_LBRACE, - ACTIONS(4370), 1, + [44622] = 5, + ACTIONS(4382), 1, anon_sym_SEMI, - STATE(423), 1, + ACTIONS(4384), 1, + anon_sym_LBRACE, + STATE(1093), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3101), 6, + ACTIONS(3099), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [44538] = 10, - ACTIONS(4352), 1, - anon_sym_LPAREN, - ACTIONS(4354), 1, - anon_sym_LBRACE, - ACTIONS(4356), 1, - anon_sym_where, - ACTIONS(4358), 1, - anon_sym_LT, - ACTIONS(4372), 1, - anon_sym_SEMI, - STATE(901), 1, - sym_field_declaration_list, - STATE(1721), 1, - sym_type_parameters, - STATE(2265), 1, - sym_ordered_field_declaration_list, - STATE(2560), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [44570] = 7, - ACTIONS(3905), 1, + [44644] = 7, + ACTIONS(3923), 1, anon_sym_LT2, - ACTIONS(3915), 1, + ACTIONS(3933), 1, anon_sym_LPAREN, - ACTIONS(4374), 1, + ACTIONS(4386), 1, anon_sym_for, - STATE(1462), 1, + STATE(1467), 1, sym_type_arguments, - STATE(1497), 1, + STATE(1506), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 4, + ACTIONS(3025), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [44596] = 7, - ACTIONS(3905), 1, - anon_sym_LT2, - ACTIONS(3915), 1, + [44670] = 7, + ACTIONS(3911), 1, anon_sym_LPAREN, - ACTIONS(4376), 1, - anon_sym_for, - STATE(1462), 1, - sym_type_arguments, - STATE(1497), 1, - sym_parameters, + ACTIONS(3915), 1, + anon_sym_COLON, + ACTIONS(3917), 1, + anon_sym_BANG, + ACTIONS(4388), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [44622] = 7, - ACTIONS(3905), 1, + ACTIONS(3921), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3909), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_PIPE, + [44696] = 7, + ACTIONS(3923), 1, anon_sym_LT2, - ACTIONS(3915), 1, + ACTIONS(3933), 1, anon_sym_LPAREN, - ACTIONS(4378), 1, + ACTIONS(4390), 1, anon_sym_for, - STATE(1462), 1, + STATE(1467), 1, sym_type_arguments, - STATE(1497), 1, + STATE(1506), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 4, + ACTIONS(3025), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [44648] = 8, - ACTIONS(982), 1, + [44722] = 8, + ACTIONS(984), 1, anon_sym_DOT_DOT, - ACTIONS(3523), 1, + ACTIONS(3503), 1, sym__primitive_identifier, - ACTIONS(4322), 1, + ACTIONS(4344), 1, anon_sym_ref, - ACTIONS(4324), 1, + ACTIONS(4346), 1, sym_mutable_specifier, - STATE(2236), 1, + STATE(2392), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3525), 2, + ACTIONS(3505), 2, sym__raw_identifier, sym_grit_metavariable, - STATE(2555), 2, + STATE(2553), 2, sym_field_pattern, sym_remaining_field_pattern, - [44676] = 7, - ACTIONS(3893), 1, - anon_sym_LPAREN, - ACTIONS(3897), 1, - anon_sym_COLON, - ACTIONS(3899), 1, - anon_sym_BANG, - ACTIONS(4380), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3903), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3891), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - [44702] = 10, - ACTIONS(4352), 1, - anon_sym_LPAREN, + [44750] = 10, ACTIONS(4356), 1, - anon_sym_where, + anon_sym_LPAREN, ACTIONS(4358), 1, - anon_sym_LT, - ACTIONS(4364), 1, anon_sym_LBRACE, - ACTIONS(4382), 1, + ACTIONS(4360), 1, + anon_sym_where, + ACTIONS(4362), 1, + anon_sym_LT, + ACTIONS(4392), 1, anon_sym_SEMI, - STATE(525), 1, + STATE(921), 1, sym_field_declaration_list, - STATE(1711), 1, + STATE(1741), 1, sym_type_parameters, STATE(2171), 1, sym_ordered_field_declaration_list, - STATE(2427), 1, + STATE(2420), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [44734] = 4, - ACTIONS(3196), 1, - sym__primitive_identifier, + [44782] = 7, + ACTIONS(3923), 1, + anon_sym_LT2, + ACTIONS(3933), 1, + anon_sym_LPAREN, + ACTIONS(4394), 1, + anon_sym_for, + STATE(1467), 1, + sym_type_arguments, + STATE(1506), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3201), 2, - sym__raw_identifier, - sym_grit_metavariable, - ACTIONS(1040), 6, - anon_sym_LPAREN, + ACTIONS(3025), 4, + anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_COMMA, - [44754] = 3, + anon_sym_PLUS, + anon_sym_where, + [44808] = 7, + ACTIONS(3923), 1, + anon_sym_LT2, + ACTIONS(3933), 1, + anon_sym_LPAREN, + ACTIONS(4396), 1, + anon_sym_for, + STATE(1467), 1, + sym_type_arguments, + STATE(1506), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(775), 2, - anon_sym_COMMA, - anon_sym_GT, - ACTIONS(1040), 6, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_COLON_COLON, - anon_sym_LT2, - [44771] = 9, - ACTIONS(4344), 1, + ACTIONS(3025), 4, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(4356), 1, + anon_sym_PLUS, anon_sym_where, + [44834] = 5, ACTIONS(4384), 1, - anon_sym_COLON, - ACTIONS(4386), 1, - anon_sym_LT, - STATE(392), 1, + anon_sym_LBRACE, + ACTIONS(4398), 1, + anon_sym_SEMI, + STATE(904), 1, sym_declaration_list, - STATE(1778), 1, - sym_type_parameters, - STATE(2099), 1, - sym_trait_bounds, - STATE(2586), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [44800] = 7, - ACTIONS(3051), 1, - anon_sym_PLUS, - ACTIONS(3973), 1, - anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_COLON, - ACTIONS(4014), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3981), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4388), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [44825] = 4, - ACTIONS(896), 1, - aux_sym_string_literal_token1, - STATE(1681), 1, - sym_string_literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4290), 6, + ACTIONS(3099), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [44844] = 6, - ACTIONS(3973), 1, - anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_COLON, - ACTIONS(4116), 1, - anon_sym_COLON_COLON, + [44856] = 9, + ACTIONS(7), 1, + sym__primitive_identifier, + ACTIONS(3633), 1, + anon_sym_LBRACE, + ACTIONS(3923), 1, + anon_sym_LT2, + ACTIONS(4400), 1, + anon_sym_STAR, + STATE(1074), 1, + sym_identifier, + STATE(2259), 1, + sym_use_list, + STATE(2760), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3981), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3051), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [44867] = 9, - ACTIONS(4344), 1, + ACTIONS(97), 2, + sym__raw_identifier, + sym_grit_metavariable, + [44886] = 9, + ACTIONS(7), 1, + sym__primitive_identifier, + ACTIONS(3633), 1, anon_sym_LBRACE, - ACTIONS(4356), 1, - anon_sym_where, - ACTIONS(4384), 1, - anon_sym_COLON, - ACTIONS(4386), 1, - anon_sym_LT, - STATE(429), 1, - sym_declaration_list, - STATE(1866), 1, - sym_type_parameters, - STATE(2079), 1, - sym_trait_bounds, - STATE(2501), 1, - sym_where_clause, + ACTIONS(3923), 1, + anon_sym_LT2, + ACTIONS(4400), 1, + anon_sym_STAR, + STATE(1074), 1, + sym_identifier, + STATE(2259), 1, + sym_use_list, + STATE(2768), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [44896] = 2, + ACTIONS(97), 2, + sym__raw_identifier, + sym_grit_metavariable, + [44916] = 4, + ACTIONS(1050), 1, + anon_sym_LBRACE, + STATE(1614), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4391), 8, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(3099), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [44911] = 6, - ACTIONS(3975), 1, - anon_sym_COLON, - ACTIONS(3977), 1, - anon_sym_BANG, - ACTIONS(4014), 1, - anon_sym_COLON_COLON, + [44935] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3981), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3973), 3, - anon_sym_RPAREN, + ACTIONS(771), 2, anon_sym_COMMA, - anon_sym_PIPE, - [44934] = 6, - ACTIONS(3893), 1, + anon_sym_GT, + ACTIONS(1038), 6, anon_sym_LPAREN, - ACTIONS(3899), 1, + anon_sym_PLUS, anon_sym_BANG, - ACTIONS(4393), 1, + anon_sym_EQ, anon_sym_COLON_COLON, + anon_sym_LT2, + [44952] = 5, + ACTIONS(4404), 1, + anon_sym_fn, + ACTIONS(4406), 1, + anon_sym_extern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3903), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3891), 3, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_PIPE, - [44957] = 4, - ACTIONS(4397), 1, + STATE(1693), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(4402), 4, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_unsafe, + [44973] = 4, + ACTIONS(4410), 1, anon_sym_PLUS, - STATE(1684), 1, + STATE(1683), 1, aux_sym_trait_bounds_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4395), 6, + ACTIONS(4408), 6, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [44976] = 9, - ACTIONS(2995), 1, + [44992] = 4, + ACTIONS(4414), 1, anon_sym_PLUS, - ACTIONS(2999), 1, - anon_sym_COLON, - ACTIONS(3899), 1, - anon_sym_BANG, - ACTIONS(3905), 1, - anon_sym_LT2, - ACTIONS(3915), 1, - anon_sym_LPAREN, - ACTIONS(3917), 1, - anon_sym_COLON_COLON, - STATE(1465), 1, - sym_type_arguments, - STATE(2182), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [45005] = 4, - ACTIONS(1048), 1, - anon_sym_LBRACE, - STATE(1562), 1, - sym_block, + STATE(1683), 1, + aux_sym_trait_bounds_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3101), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [45024] = 9, - ACTIONS(4340), 1, + ACTIONS(4412), 6, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(4356), 1, anon_sym_where, - ACTIONS(4384), 1, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [45011] = 9, + ACTIONS(4360), 1, + anon_sym_where, + ACTIONS(4372), 1, + anon_sym_LBRACE, + ACTIONS(4417), 1, anon_sym_COLON, - ACTIONS(4386), 1, + ACTIONS(4419), 1, anon_sym_LT, - STATE(857), 1, + STATE(322), 1, sym_declaration_list, - STATE(1772), 1, + STATE(1854), 1, sym_type_parameters, - STATE(2109), 1, + STATE(2034), 1, sym_trait_bounds, - STATE(2416), 1, + STATE(2491), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [45053] = 9, - ACTIONS(4344), 1, - anon_sym_LBRACE, - ACTIONS(4356), 1, + [45040] = 9, + ACTIONS(4360), 1, anon_sym_where, ACTIONS(4384), 1, + anon_sym_LBRACE, + ACTIONS(4417), 1, anon_sym_COLON, - ACTIONS(4386), 1, + ACTIONS(4419), 1, anon_sym_LT, - STATE(524), 1, + STATE(1051), 1, sym_declaration_list, - STATE(1779), 1, + STATE(1805), 1, sym_type_parameters, - STATE(2097), 1, + STATE(2102), 1, sym_trait_bounds, - STATE(2434), 1, + STATE(2566), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [45082] = 4, - ACTIONS(3121), 1, + [45069] = 6, + ACTIONS(4121), 1, anon_sym_COLON_COLON, - ACTIONS(4400), 1, - anon_sym_BANG, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3101), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [45101] = 8, - ACTIONS(4402), 1, - anon_sym_LPAREN, - ACTIONS(4407), 1, - anon_sym_LBRACE, - ACTIONS(4410), 1, - anon_sym_LBRACK, - STATE(1690), 1, - aux_sym_macro_definition_repeat1, - STATE(2663), 1, - sym_macro_rule, - STATE(2760), 1, - sym_token_tree_pattern, + ACTIONS(4421), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4405), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - [45128] = 9, - ACTIONS(4340), 1, - anon_sym_LBRACE, - ACTIONS(4356), 1, + ACTIONS(3025), 2, + anon_sym_SEMI, + anon_sym_PLUS, + ACTIONS(3991), 2, + anon_sym_COMMA, + anon_sym_PIPE, + ACTIONS(3999), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [45092] = 9, + ACTIONS(4360), 1, anon_sym_where, - ACTIONS(4384), 1, + ACTIONS(4372), 1, + anon_sym_LBRACE, + ACTIONS(4417), 1, anon_sym_COLON, - ACTIONS(4386), 1, + ACTIONS(4419), 1, anon_sym_LT, - STATE(1044), 1, + STATE(393), 1, sym_declaration_list, - STATE(1827), 1, + STATE(1800), 1, sym_type_parameters, STATE(1993), 1, sym_trait_bounds, - STATE(2436), 1, + STATE(2519), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [45157] = 4, - ACTIONS(3977), 1, + [45121] = 6, + ACTIONS(3911), 1, + anon_sym_LPAREN, + ACTIONS(3917), 1, anon_sym_BANG, - ACTIONS(3985), 1, + ACTIONS(4424), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3101), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [45176] = 4, - ACTIONS(4415), 1, + ACTIONS(3921), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3909), 3, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_PIPE, + [45144] = 9, + ACTIONS(4360), 1, + anon_sym_where, + ACTIONS(4384), 1, + anon_sym_LBRACE, + ACTIONS(4417), 1, + anon_sym_COLON, + ACTIONS(4419), 1, + anon_sym_LT, + STATE(1063), 1, + sym_declaration_list, + STATE(1758), 1, + sym_type_parameters, + STATE(2104), 1, + sym_trait_bounds, + STATE(2582), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [45173] = 4, + ACTIONS(4410), 1, anon_sym_PLUS, - STATE(1684), 1, + STATE(1682), 1, aux_sym_trait_bounds_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4413), 6, + ACTIONS(4426), 6, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [45195] = 5, - ACTIONS(4419), 1, - anon_sym_fn, - ACTIONS(4421), 1, - anon_sym_extern, + [45192] = 6, + ACTIONS(3991), 1, + anon_sym_PIPE, + ACTIONS(3993), 1, + anon_sym_COLON, + ACTIONS(4220), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1697), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(4417), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - [45216] = 4, - ACTIONS(4415), 1, + ACTIONS(3999), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3025), 3, + anon_sym_RPAREN, anon_sym_PLUS, - STATE(1693), 1, - aux_sym_trait_bounds_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4423), 6, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_GT, - [45235] = 9, - ACTIONS(4340), 1, - anon_sym_LBRACE, - ACTIONS(4356), 1, - anon_sym_where, - ACTIONS(4384), 1, + [45215] = 7, + ACTIONS(3025), 1, + anon_sym_PLUS, + ACTIONS(3991), 1, + anon_sym_PIPE, + ACTIONS(3993), 1, anon_sym_COLON, - ACTIONS(4386), 1, - anon_sym_LT, - STATE(902), 1, - sym_declaration_list, - STATE(1801), 1, - sym_type_parameters, - STATE(2032), 1, - sym_trait_bounds, - STATE(2558), 1, - sym_where_clause, + ACTIONS(4038), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [45264] = 5, - ACTIONS(4428), 1, + ACTIONS(3999), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4421), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [45240] = 5, + ACTIONS(4431), 1, anon_sym_fn, - ACTIONS(4430), 1, + ACTIONS(4433), 1, anon_sym_extern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1697), 2, + STATE(1693), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(4425), 4, + ACTIONS(4428), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - [45285] = 9, - ACTIONS(4344), 1, + [45261] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4436), 8, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(4356), 1, - anon_sym_where, - ACTIONS(4384), 1, - anon_sym_COLON, - ACTIONS(4386), 1, - anon_sym_LT, - STATE(531), 1, - sym_declaration_list, - STATE(1802), 1, - sym_type_parameters, - STATE(1976), 1, - sym_trait_bounds, - STATE(2398), 1, - sym_where_clause, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [45276] = 8, + ACTIONS(4438), 1, + anon_sym_LPAREN, + ACTIONS(4443), 1, + anon_sym_LBRACE, + ACTIONS(4446), 1, + anon_sym_LBRACK, + STATE(1695), 1, + aux_sym_macro_definition_repeat1, + STATE(2665), 1, + sym_macro_rule, + STATE(2773), 1, + sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [45314] = 4, - ACTIONS(4433), 1, + ACTIONS(4441), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + [45303] = 4, + ACTIONS(4449), 1, anon_sym_impl, - ACTIONS(4435), 1, + ACTIONS(4451), 1, anon_sym_trait, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3101), 6, + ACTIONS(3099), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [45333] = 4, - ACTIONS(4084), 1, + [45322] = 4, + ACTIONS(4453), 1, + anon_sym_PLUS, + STATE(1682), 1, + aux_sym_trait_bounds_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4426), 6, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [45341] = 4, + ACTIONS(4090), 1, anon_sym_COLON_COLON, - ACTIONS(4437), 1, + ACTIONS(4455), 1, anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3101), 6, + ACTIONS(3099), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [45352] = 6, - ACTIONS(4075), 1, - anon_sym_COLON_COLON, - ACTIONS(4388), 1, - anon_sym_RBRACK, + [45360] = 9, + ACTIONS(4360), 1, + anon_sym_where, + ACTIONS(4384), 1, + anon_sym_LBRACE, + ACTIONS(4417), 1, + anon_sym_COLON, + ACTIONS(4419), 1, + anon_sym_LT, + STATE(951), 1, + sym_declaration_list, + STATE(1882), 1, + sym_type_parameters, + STATE(2081), 1, + sym_trait_bounds, + STATE(2456), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, - anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(3973), 2, - anon_sym_COMMA, - anon_sym_PIPE, - ACTIONS(3981), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [45375] = 9, - ACTIONS(4340), 1, - anon_sym_LBRACE, - ACTIONS(4356), 1, + [45389] = 9, + ACTIONS(4360), 1, anon_sym_where, - ACTIONS(4384), 1, + ACTIONS(4372), 1, + anon_sym_LBRACE, + ACTIONS(4417), 1, anon_sym_COLON, - ACTIONS(4386), 1, + ACTIONS(4419), 1, anon_sym_LT, - STATE(893), 1, + STATE(445), 1, sym_declaration_list, - STATE(1797), 1, + STATE(1825), 1, sym_type_parameters, - STATE(2040), 1, + STATE(2125), 1, sym_trait_bounds, - STATE(2411), 1, + STATE(2477), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [45404] = 4, - ACTIONS(4439), 1, + [45418] = 9, + ACTIONS(2997), 1, anon_sym_PLUS, - STATE(1693), 1, - aux_sym_trait_bounds_repeat1, + ACTIONS(3001), 1, + anon_sym_COLON, + ACTIONS(3917), 1, + anon_sym_BANG, + ACTIONS(3923), 1, + anon_sym_LT2, + ACTIONS(3933), 1, + anon_sym_LPAREN, + ACTIONS(3935), 1, + anon_sym_COLON_COLON, + STATE(1469), 1, + sym_type_arguments, + STATE(2189), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4423), 6, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [45423] = 4, - ACTIONS(4441), 1, + [45447] = 4, + ACTIONS(4457), 1, anon_sym_PLUS, - STATE(1693), 1, + STATE(1682), 1, aux_sym_trait_bounds_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4423), 6, + ACTIONS(4426), 6, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [45442] = 8, - ACTIONS(4443), 1, - anon_sym_LPAREN, - ACTIONS(4445), 1, - anon_sym_LBRACE, - ACTIONS(4447), 1, - anon_sym_LBRACK, - ACTIONS(4449), 1, - anon_sym_RBRACK, - ACTIONS(4451), 1, - anon_sym_EQ, - ACTIONS(4453), 1, - anon_sym_COLON_COLON, - STATE(2657), 1, - sym_delim_token_tree, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [45468] = 8, - ACTIONS(3011), 1, - anon_sym_PLUS, - ACTIONS(3013), 1, + [45466] = 6, + ACTIONS(3993), 1, anon_sym_COLON, - ACTIONS(3905), 1, - anon_sym_LT2, - ACTIONS(3915), 1, - anon_sym_LPAREN, - ACTIONS(3917), 1, - anon_sym_COLON_COLON, - STATE(1465), 1, - sym_type_arguments, - STATE(2182), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [45494] = 5, - ACTIONS(3977), 1, + ACTIONS(3995), 1, anon_sym_BANG, - ACTIONS(4075), 1, + ACTIONS(4038), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3981), 2, + ACTIONS(3999), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3973), 3, - anon_sym_RBRACK, + ACTIONS(3991), 3, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_PIPE, - [45514] = 8, - ACTIONS(4455), 1, - anon_sym_LPAREN, - ACTIONS(4457), 1, - anon_sym_RPAREN, - ACTIONS(4459), 1, - anon_sym_LBRACE, - ACTIONS(4461), 1, - anon_sym_LBRACK, - STATE(1690), 1, - aux_sym_macro_definition_repeat1, - STATE(2557), 1, - sym_macro_rule, - STATE(2760), 1, - sym_token_tree_pattern, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [45540] = 6, - ACTIONS(4352), 1, - anon_sym_LPAREN, - ACTIONS(4354), 1, + [45489] = 9, + ACTIONS(4360), 1, + anon_sym_where, + ACTIONS(4384), 1, anon_sym_LBRACE, - ACTIONS(4465), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4463), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(2292), 2, - sym_field_declaration_list, - sym_ordered_field_declaration_list, - [45562] = 8, - ACTIONS(3007), 1, - anon_sym_PLUS, - ACTIONS(3009), 1, + ACTIONS(4417), 1, anon_sym_COLON, - ACTIONS(3905), 1, - anon_sym_LT2, - ACTIONS(3915), 1, - anon_sym_LPAREN, - ACTIONS(3917), 1, - anon_sym_COLON_COLON, - STATE(1465), 1, - sym_type_arguments, - STATE(2182), 1, - sym_parameters, + ACTIONS(4419), 1, + anon_sym_LT, + STATE(919), 1, + sym_declaration_list, + STATE(1875), 1, + sym_type_parameters, + STATE(2138), 1, + sym_trait_bounds, + STATE(2424), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [45588] = 8, - ACTIONS(4352), 1, - anon_sym_LPAREN, - ACTIONS(4356), 1, + [45518] = 9, + ACTIONS(4360), 1, anon_sym_where, - ACTIONS(4364), 1, + ACTIONS(4372), 1, anon_sym_LBRACE, - ACTIONS(4467), 1, - anon_sym_SEMI, - STATE(435), 1, - sym_field_declaration_list, - STATE(2316), 1, - sym_ordered_field_declaration_list, - STATE(2487), 1, + ACTIONS(4417), 1, + anon_sym_COLON, + ACTIONS(4419), 1, + anon_sym_LT, + STATE(468), 1, + sym_declaration_list, + STATE(1813), 1, + sym_type_parameters, + STATE(2099), 1, + sym_trait_bounds, + STATE(2518), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [45614] = 8, - ACTIONS(4443), 1, - anon_sym_LPAREN, - ACTIONS(4445), 1, - anon_sym_LBRACE, - ACTIONS(4447), 1, - anon_sym_LBRACK, - ACTIONS(4449), 1, - anon_sym_RBRACK, - ACTIONS(4451), 1, - anon_sym_EQ, - ACTIONS(4469), 1, + [45547] = 4, + ACTIONS(3995), 1, + anon_sym_BANG, + ACTIONS(4014), 1, anon_sym_COLON_COLON, - STATE(2657), 1, - sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [45640] = 8, - ACTIONS(4443), 1, - anon_sym_LPAREN, - ACTIONS(4445), 1, - anon_sym_LBRACE, - ACTIONS(4447), 1, - anon_sym_LBRACK, - ACTIONS(4449), 1, - anon_sym_RBRACK, - ACTIONS(4451), 1, - anon_sym_EQ, - ACTIONS(4471), 1, - anon_sym_COLON_COLON, - STATE(2657), 1, - sym_delim_token_tree, + ACTIONS(3099), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [45566] = 4, + ACTIONS(898), 1, + aux_sym_string_literal_token1, + STATE(1694), 1, + sym_string_literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [45666] = 8, - ACTIONS(4443), 1, - anon_sym_LPAREN, - ACTIONS(4445), 1, - anon_sym_LBRACE, - ACTIONS(4447), 1, - anon_sym_LBRACK, - ACTIONS(4473), 1, - anon_sym_RBRACK, - ACTIONS(4475), 1, - anon_sym_EQ, - ACTIONS(4477), 1, + ACTIONS(4310), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [45585] = 4, + ACTIONS(3158), 1, anon_sym_COLON_COLON, - STATE(2661), 1, - sym_delim_token_tree, + ACTIONS(4459), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [45692] = 2, + ACTIONS(3099), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [45604] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4395), 7, + ACTIONS(4412), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, @@ -129649,69 +129774,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [45706] = 8, - ACTIONS(4352), 1, + [45618] = 8, + ACTIONS(4461), 1, anon_sym_LPAREN, - ACTIONS(4354), 1, + ACTIONS(4463), 1, + anon_sym_RPAREN, + ACTIONS(4465), 1, anon_sym_LBRACE, - ACTIONS(4356), 1, - anon_sym_where, - ACTIONS(4479), 1, - anon_sym_SEMI, - STATE(881), 1, - sym_field_declaration_list, - STATE(2247), 1, - sym_ordered_field_declaration_list, - STATE(2603), 1, - sym_where_clause, + ACTIONS(4467), 1, + anon_sym_LBRACK, + STATE(1717), 1, + aux_sym_macro_definition_repeat1, + STATE(2481), 1, + sym_macro_rule, + STATE(2773), 1, + sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [45732] = 7, - ACTIONS(7), 1, - sym__primitive_identifier, - ACTIONS(3619), 1, + [45644] = 8, + ACTIONS(4461), 1, + anon_sym_LPAREN, + ACTIONS(4465), 1, anon_sym_LBRACE, - ACTIONS(4332), 1, - anon_sym_STAR, - STATE(970), 1, - sym_identifier, - STATE(2307), 1, - sym_use_list, + ACTIONS(4467), 1, + anon_sym_LBRACK, + ACTIONS(4469), 1, + anon_sym_RPAREN, + STATE(1695), 1, + aux_sym_macro_definition_repeat1, + STATE(2578), 1, + sym_macro_rule, + STATE(2773), 1, + sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(97), 2, - sym__raw_identifier, - sym_grit_metavariable, - [45756] = 8, - ACTIONS(4455), 1, + [45670] = 6, + ACTIONS(4356), 1, anon_sym_LPAREN, - ACTIONS(4459), 1, + ACTIONS(4358), 1, anon_sym_LBRACE, + ACTIONS(4473), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4471), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(2318), 2, + sym_field_declaration_list, + sym_ordered_field_declaration_list, + [45692] = 8, ACTIONS(4461), 1, + anon_sym_LPAREN, + ACTIONS(4465), 1, + anon_sym_LBRACE, + ACTIONS(4467), 1, anon_sym_LBRACK, - ACTIONS(4481), 1, + ACTIONS(4475), 1, anon_sym_RBRACE, - STATE(1690), 1, + STATE(1740), 1, aux_sym_macro_definition_repeat1, - STATE(2536), 1, + STATE(2489), 1, sym_macro_rule, - STATE(2760), 1, + STATE(2773), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [45782] = 7, + [45718] = 7, ACTIONS(7), 1, sym__primitive_identifier, - ACTIONS(3619), 1, + ACTIONS(3633), 1, anon_sym_LBRACE, - ACTIONS(4483), 1, + ACTIONS(4400), 1, anon_sym_STAR, - STATE(1442), 1, + STATE(1074), 1, sym_identifier, - STATE(2345), 1, + STATE(2259), 1, sym_use_list, ACTIONS(3), 2, sym_block_comment, @@ -129719,46 +129861,63 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(97), 2, sym__raw_identifier, sym_grit_metavariable, - [45806] = 7, - ACTIONS(3891), 1, - anon_sym_PIPE, - ACTIONS(3893), 1, + [45742] = 6, + ACTIONS(4356), 1, anon_sym_LPAREN, - ACTIONS(3897), 1, - anon_sym_COLON, - ACTIONS(3899), 1, - anon_sym_BANG, - ACTIONS(4485), 1, - anon_sym_COLON_COLON, + ACTIONS(4358), 1, + anon_sym_LBRACE, + ACTIONS(4479), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3903), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [45830] = 8, - ACTIONS(4352), 1, - anon_sym_LPAREN, - ACTIONS(4354), 1, - anon_sym_LBRACE, - ACTIONS(4356), 1, - anon_sym_where, - ACTIONS(4487), 1, - anon_sym_SEMI, - STATE(1030), 1, + ACTIONS(4477), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(2168), 2, sym_field_declaration_list, - STATE(2332), 1, sym_ordered_field_declaration_list, - STATE(2464), 1, - sym_where_clause, + [45764] = 8, + ACTIONS(4461), 1, + anon_sym_LPAREN, + ACTIONS(4465), 1, + anon_sym_LBRACE, + ACTIONS(4467), 1, + anon_sym_LBRACK, + ACTIONS(4481), 1, + anon_sym_RBRACE, + STATE(1738), 1, + aux_sym_macro_definition_repeat1, + STATE(2484), 1, + sym_macro_rule, + STATE(2773), 1, + sym_token_tree_pattern, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [45790] = 8, + ACTIONS(4461), 1, + anon_sym_LPAREN, + ACTIONS(4465), 1, + anon_sym_LBRACE, + ACTIONS(4467), 1, + anon_sym_LBRACK, + ACTIONS(4483), 1, + anon_sym_RPAREN, + STATE(1695), 1, + aux_sym_macro_definition_repeat1, + STATE(2408), 1, + sym_macro_rule, + STATE(2773), 1, + sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [45856] = 2, + [45816] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4489), 7, + ACTIONS(4412), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, @@ -129766,294 +129925,497 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [45870] = 6, - ACTIONS(4352), 1, - anon_sym_LPAREN, - ACTIONS(4354), 1, + [45830] = 7, + ACTIONS(7), 1, + sym__primitive_identifier, + ACTIONS(3633), 1, anon_sym_LBRACE, - ACTIONS(4493), 1, - anon_sym_EQ, + ACTIONS(4485), 1, + anon_sym_STAR, + STATE(1447), 1, + sym_identifier, + STATE(2268), 1, + sym_use_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4491), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(2302), 2, - sym_field_declaration_list, - sym_ordered_field_declaration_list, - [45892] = 2, + ACTIONS(97), 2, + sym__raw_identifier, + sym_grit_metavariable, + [45854] = 3, + ACTIONS(4487), 1, + anon_sym_trait, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4495), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [45906] = 8, - ACTIONS(4455), 1, + ACTIONS(3099), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [45870] = 6, + ACTIONS(2744), 1, + anon_sym_POUND, + ACTIONS(3503), 1, + sym__primitive_identifier, + STATE(2185), 1, + sym_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3505), 2, + sym__raw_identifier, + sym_grit_metavariable, + STATE(1110), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [45892] = 8, + ACTIONS(4489), 1, anon_sym_LPAREN, - ACTIONS(4459), 1, + ACTIONS(4491), 1, anon_sym_LBRACE, - ACTIONS(4461), 1, + ACTIONS(4493), 1, anon_sym_LBRACK, + ACTIONS(4495), 1, + anon_sym_RBRACK, ACTIONS(4497), 1, - anon_sym_RBRACE, - STATE(1690), 1, - aux_sym_macro_definition_repeat1, - STATE(2528), 1, - sym_macro_rule, - STATE(2760), 1, - sym_token_tree_pattern, + anon_sym_EQ, + ACTIONS(4499), 1, + anon_sym_COLON_COLON, + STATE(2624), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [45932] = 3, - ACTIONS(3985), 1, + [45918] = 3, + ACTIONS(4014), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3101), 6, + ACTIONS(3099), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [45948] = 8, - ACTIONS(4455), 1, + [45934] = 8, + ACTIONS(4461), 1, anon_sym_LPAREN, - ACTIONS(4459), 1, + ACTIONS(4465), 1, anon_sym_LBRACE, - ACTIONS(4461), 1, + ACTIONS(4467), 1, anon_sym_LBRACK, - ACTIONS(4499), 1, - anon_sym_RPAREN, - STATE(1708), 1, + ACTIONS(4501), 1, + anon_sym_RBRACE, + STATE(1695), 1, aux_sym_macro_definition_repeat1, - STATE(2495), 1, + STATE(2403), 1, sym_macro_rule, - STATE(2760), 1, + STATE(2773), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [45974] = 8, - ACTIONS(4455), 1, + [45960] = 8, + ACTIONS(4461), 1, anon_sym_LPAREN, - ACTIONS(4459), 1, + ACTIONS(4465), 1, anon_sym_LBRACE, - ACTIONS(4461), 1, + ACTIONS(4467), 1, anon_sym_LBRACK, - ACTIONS(4501), 1, - anon_sym_RPAREN, - STATE(1737), 1, + ACTIONS(4503), 1, + anon_sym_RBRACE, + STATE(1747), 1, aux_sym_macro_definition_repeat1, - STATE(2590), 1, + STATE(2480), 1, sym_macro_rule, - STATE(2760), 1, + STATE(2773), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [46000] = 8, - ACTIONS(4455), 1, + [45986] = 7, + ACTIONS(3909), 1, + anon_sym_PIPE, + ACTIONS(3911), 1, anon_sym_LPAREN, - ACTIONS(4459), 1, - anon_sym_LBRACE, - ACTIONS(4461), 1, - anon_sym_LBRACK, - ACTIONS(4503), 1, - anon_sym_RPAREN, - STATE(1738), 1, + ACTIONS(3915), 1, + anon_sym_COLON, + ACTIONS(3917), 1, + anon_sym_BANG, + ACTIONS(4505), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3921), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [46010] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4507), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [46024] = 8, + ACTIONS(4356), 1, + anon_sym_LPAREN, + ACTIONS(4360), 1, + anon_sym_where, + ACTIONS(4366), 1, + anon_sym_LBRACE, + ACTIONS(4509), 1, + anon_sym_SEMI, + STATE(334), 1, + sym_field_declaration_list, + STATE(2338), 1, + sym_ordered_field_declaration_list, + STATE(2469), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [46050] = 8, + ACTIONS(4489), 1, + anon_sym_LPAREN, + ACTIONS(4491), 1, + anon_sym_LBRACE, + ACTIONS(4493), 1, + anon_sym_LBRACK, + ACTIONS(4511), 1, + anon_sym_RBRACK, + ACTIONS(4513), 1, + anon_sym_EQ, + ACTIONS(4515), 1, + anon_sym_COLON_COLON, + STATE(2625), 1, + sym_delim_token_tree, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [46076] = 8, + ACTIONS(4461), 1, + anon_sym_LPAREN, + ACTIONS(4465), 1, + anon_sym_LBRACE, + ACTIONS(4467), 1, + anon_sym_LBRACK, + ACTIONS(4517), 1, + anon_sym_RPAREN, + STATE(1695), 1, aux_sym_macro_definition_repeat1, - STATE(2592), 1, + STATE(2577), 1, sym_macro_rule, - STATE(2760), 1, + STATE(2773), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [46026] = 8, - ACTIONS(4455), 1, + [46102] = 8, + ACTIONS(4461), 1, anon_sym_LPAREN, - ACTIONS(4459), 1, + ACTIONS(4465), 1, anon_sym_LBRACE, - ACTIONS(4461), 1, + ACTIONS(4467), 1, anon_sym_LBRACK, - ACTIONS(4505), 1, + ACTIONS(4519), 1, anon_sym_RBRACE, - STATE(1690), 1, + STATE(1724), 1, aux_sym_macro_definition_repeat1, - STATE(2553), 1, + STATE(2404), 1, sym_macro_rule, - STATE(2760), 1, + STATE(2773), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [46052] = 3, - ACTIONS(3121), 1, + [46128] = 8, + ACTIONS(4489), 1, + anon_sym_LPAREN, + ACTIONS(4491), 1, + anon_sym_LBRACE, + ACTIONS(4493), 1, + anon_sym_LBRACK, + ACTIONS(4511), 1, + anon_sym_RBRACK, + ACTIONS(4513), 1, + anon_sym_EQ, + ACTIONS(4521), 1, anon_sym_COLON_COLON, + STATE(2625), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3101), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [46068] = 8, - ACTIONS(4455), 1, + [46154] = 8, + ACTIONS(4461), 1, anon_sym_LPAREN, - ACTIONS(4459), 1, + ACTIONS(4465), 1, anon_sym_LBRACE, - ACTIONS(4461), 1, + ACTIONS(4467), 1, anon_sym_LBRACK, - ACTIONS(4507), 1, + ACTIONS(4523), 1, anon_sym_RPAREN, - STATE(1690), 1, + STATE(1742), 1, aux_sym_macro_definition_repeat1, - STATE(2572), 1, + STATE(2485), 1, sym_macro_rule, - STATE(2760), 1, + STATE(2773), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [46094] = 8, - ACTIONS(4455), 1, + [46180] = 8, + ACTIONS(4489), 1, anon_sym_LPAREN, - ACTIONS(4459), 1, + ACTIONS(4491), 1, anon_sym_LBRACE, - ACTIONS(4461), 1, + ACTIONS(4493), 1, anon_sym_LBRACK, - ACTIONS(4509), 1, - anon_sym_RBRACE, - STATE(1725), 1, - aux_sym_macro_definition_repeat1, - STATE(2492), 1, - sym_macro_rule, - STATE(2760), 1, - sym_token_tree_pattern, + ACTIONS(4511), 1, + anon_sym_RBRACK, + ACTIONS(4513), 1, + anon_sym_EQ, + ACTIONS(4525), 1, + anon_sym_COLON_COLON, + STATE(2625), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [46120] = 3, - ACTIONS(4511), 1, - anon_sym_trait, + [46206] = 3, + ACTIONS(3158), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3101), 6, + ACTIONS(3099), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [46136] = 8, - ACTIONS(4352), 1, + [46222] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4412), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [46236] = 8, + ACTIONS(3013), 1, + anon_sym_PLUS, + ACTIONS(3015), 1, + anon_sym_COLON, + ACTIONS(3923), 1, + anon_sym_LT2, + ACTIONS(3933), 1, + anon_sym_LPAREN, + ACTIONS(3935), 1, + anon_sym_COLON_COLON, + STATE(1469), 1, + sym_type_arguments, + STATE(2189), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [46262] = 8, + ACTIONS(4461), 1, anon_sym_LPAREN, + ACTIONS(4465), 1, + anon_sym_LBRACE, + ACTIONS(4467), 1, + anon_sym_LBRACK, + ACTIONS(4527), 1, + anon_sym_RBRACE, + STATE(1695), 1, + aux_sym_macro_definition_repeat1, + STATE(2555), 1, + sym_macro_rule, + STATE(2773), 1, + sym_token_tree_pattern, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [46288] = 8, ACTIONS(4356), 1, - anon_sym_where, - ACTIONS(4364), 1, + anon_sym_LPAREN, + ACTIONS(4358), 1, anon_sym_LBRACE, - ACTIONS(4513), 1, + ACTIONS(4360), 1, + anon_sym_where, + ACTIONS(4529), 1, anon_sym_SEMI, - STATE(508), 1, + STATE(957), 1, sym_field_declaration_list, - STATE(2319), 1, + STATE(2336), 1, sym_ordered_field_declaration_list, - STATE(2480), 1, + STATE(2471), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [46162] = 8, - ACTIONS(4455), 1, + [46314] = 8, + ACTIONS(4461), 1, anon_sym_LPAREN, - ACTIONS(4459), 1, + ACTIONS(4465), 1, anon_sym_LBRACE, - ACTIONS(4461), 1, + ACTIONS(4467), 1, anon_sym_LBRACK, - ACTIONS(4515), 1, + ACTIONS(4531), 1, anon_sym_RBRACE, - STATE(1718), 1, + STATE(1695), 1, aux_sym_macro_definition_repeat1, - STATE(2482), 1, + STATE(2552), 1, sym_macro_rule, - STATE(2760), 1, + STATE(2773), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [46188] = 8, - ACTIONS(4455), 1, + [46340] = 8, + ACTIONS(4356), 1, anon_sym_LPAREN, - ACTIONS(4459), 1, + ACTIONS(4358), 1, anon_sym_LBRACE, + ACTIONS(4360), 1, + anon_sym_where, + ACTIONS(4533), 1, + anon_sym_SEMI, + STATE(1075), 1, + sym_field_declaration_list, + STATE(2251), 1, + sym_ordered_field_declaration_list, + STATE(2601), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [46366] = 8, ACTIONS(4461), 1, + anon_sym_LPAREN, + ACTIONS(4465), 1, + anon_sym_LBRACE, + ACTIONS(4467), 1, anon_sym_LBRACK, - ACTIONS(4517), 1, + ACTIONS(4535), 1, anon_sym_RPAREN, - STATE(1690), 1, + STATE(1695), 1, aux_sym_macro_definition_repeat1, - STATE(2576), 1, + STATE(2406), 1, sym_macro_rule, - STATE(2760), 1, + STATE(2773), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [46214] = 8, - ACTIONS(4455), 1, + [46392] = 8, + ACTIONS(3009), 1, + anon_sym_PLUS, + ACTIONS(3011), 1, + anon_sym_COLON, + ACTIONS(3923), 1, + anon_sym_LT2, + ACTIONS(3933), 1, anon_sym_LPAREN, - ACTIONS(4459), 1, + ACTIONS(3935), 1, + anon_sym_COLON_COLON, + STATE(1469), 1, + sym_type_arguments, + STATE(2189), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [46418] = 3, + ACTIONS(4537), 1, + anon_sym_trait, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3099), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [46434] = 8, + ACTIONS(4356), 1, + anon_sym_LPAREN, + ACTIONS(4360), 1, + anon_sym_where, + ACTIONS(4366), 1, anon_sym_LBRACE, + ACTIONS(4539), 1, + anon_sym_SEMI, + STATE(486), 1, + sym_field_declaration_list, + STATE(2304), 1, + sym_ordered_field_declaration_list, + STATE(2527), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [46460] = 8, ACTIONS(4461), 1, + anon_sym_LPAREN, + ACTIONS(4465), 1, + anon_sym_LBRACE, + ACTIONS(4467), 1, anon_sym_LBRACK, - ACTIONS(4519), 1, + ACTIONS(4541), 1, anon_sym_RPAREN, - STATE(1690), 1, + STATE(1730), 1, aux_sym_macro_definition_repeat1, - STATE(2574), 1, + STATE(2596), 1, sym_macro_rule, - STATE(2760), 1, + STATE(2773), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [46240] = 8, - ACTIONS(4455), 1, + [46486] = 8, + ACTIONS(4461), 1, anon_sym_LPAREN, - ACTIONS(4459), 1, + ACTIONS(4465), 1, anon_sym_LBRACE, - ACTIONS(4461), 1, + ACTIONS(4467), 1, anon_sym_LBRACK, - ACTIONS(4521), 1, + ACTIONS(4543), 1, anon_sym_RBRACE, - STATE(1730), 1, + STATE(1695), 1, aux_sym_macro_definition_repeat1, - STATE(2413), 1, + STATE(2411), 1, sym_macro_rule, - STATE(2760), 1, + STATE(2773), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [46266] = 2, + [46512] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4395), 7, + ACTIONS(4412), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, @@ -130061,11 +130423,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [46280] = 2, + [46526] = 8, + ACTIONS(4461), 1, + anon_sym_LPAREN, + ACTIONS(4465), 1, + anon_sym_LBRACE, + ACTIONS(4467), 1, + anon_sym_LBRACK, + ACTIONS(4545), 1, + anon_sym_RPAREN, + STATE(1711), 1, + aux_sym_macro_definition_repeat1, + STATE(2594), 1, + sym_macro_rule, + STATE(2773), 1, + sym_token_tree_pattern, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [46552] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4395), 7, + ACTIONS(4547), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, @@ -130073,27 +130453,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [46294] = 6, - ACTIONS(2742), 1, - anon_sym_POUND, - ACTIONS(3523), 1, - sym__primitive_identifier, - STATE(2221), 1, - sym_identifier, + [46566] = 5, + ACTIONS(3995), 1, + anon_sym_BANG, + ACTIONS(4121), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3525), 2, - sym__raw_identifier, - sym_grit_metavariable, - STATE(1110), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [46316] = 2, + ACTIONS(3999), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3991), 3, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_PIPE, + [46586] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4395), 7, + ACTIONS(4412), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, @@ -130101,227 +130480,240 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [46330] = 2, + [46600] = 4, + ACTIONS(4044), 1, + anon_sym_COLON_COLON, + ACTIONS(4350), 1, + anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4395), 7, + ACTIONS(3025), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [46344] = 8, - ACTIONS(4455), 1, - anon_sym_LPAREN, - ACTIONS(4459), 1, + [46617] = 7, + ACTIONS(4360), 1, + anon_sym_where, + ACTIONS(4372), 1, anon_sym_LBRACE, - ACTIONS(4461), 1, - anon_sym_LBRACK, - ACTIONS(4523), 1, - anon_sym_RBRACE, - STATE(1690), 1, - aux_sym_macro_definition_repeat1, - STATE(2565), 1, - sym_macro_rule, - STATE(2760), 1, - sym_token_tree_pattern, + ACTIONS(4549), 1, + anon_sym_SEMI, + ACTIONS(4551), 1, + anon_sym_PLUS, + STATE(471), 1, + sym_declaration_list, + STATE(2287), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [46370] = 3, - ACTIONS(4525), 1, - anon_sym_trait, + [46640] = 7, + ACTIONS(4360), 1, + anon_sym_where, + ACTIONS(4372), 1, + anon_sym_LBRACE, + ACTIONS(4551), 1, + anon_sym_PLUS, + ACTIONS(4553), 1, + anon_sym_SEMI, + STATE(500), 1, + sym_declaration_list, + STATE(2370), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3101), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [46386] = 8, - ACTIONS(4455), 1, - anon_sym_LPAREN, - ACTIONS(4459), 1, + [46663] = 4, + ACTIONS(4044), 1, + anon_sym_COLON_COLON, + ACTIONS(4352), 1, + anon_sym_for, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3025), 4, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(4461), 1, - anon_sym_LBRACK, - ACTIONS(4527), 1, - anon_sym_RBRACE, - STATE(1745), 1, - aux_sym_macro_definition_repeat1, - STATE(2545), 1, - sym_macro_rule, - STATE(2760), 1, - sym_token_tree_pattern, + anon_sym_PLUS, + anon_sym_where, + [46680] = 4, + ACTIONS(4044), 1, + anon_sym_COLON_COLON, + ACTIONS(4394), 1, + anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [46412] = 8, - ACTIONS(4455), 1, - anon_sym_LPAREN, - ACTIONS(4459), 1, + ACTIONS(3025), 4, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(4461), 1, - anon_sym_LBRACK, - ACTIONS(4529), 1, - anon_sym_RPAREN, - STATE(1732), 1, - aux_sym_macro_definition_repeat1, - STATE(2394), 1, - sym_macro_rule, - STATE(2760), 1, - sym_token_tree_pattern, + anon_sym_PLUS, + anon_sym_where, + [46697] = 7, + ACTIONS(4360), 1, + anon_sym_where, + ACTIONS(4384), 1, + anon_sym_LBRACE, + ACTIONS(4417), 1, + anon_sym_COLON, + STATE(972), 1, + sym_declaration_list, + STATE(2088), 1, + sym_trait_bounds, + STATE(2495), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [46438] = 4, - ACTIONS(4531), 1, + [46720] = 4, + ACTIONS(4555), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3903), 2, + ACTIONS(3921), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3051), 3, - anon_sym_RPAREN, + ACTIONS(3025), 3, + anon_sym_SEMI, + anon_sym_RBRACK, anon_sym_PLUS, - anon_sym_COMMA, - [46455] = 6, - ACTIONS(3635), 1, - anon_sym_COLON_COLON, - ACTIONS(4533), 1, - anon_sym_COMMA, - ACTIONS(4535), 1, - anon_sym_GT, - STATE(2251), 1, - aux_sym_type_parameters_repeat1, + [46737] = 7, + ACTIONS(4360), 1, + anon_sym_where, + ACTIONS(4384), 1, + anon_sym_LBRACE, + ACTIONS(4551), 1, + anon_sym_PLUS, + ACTIONS(4557), 1, + anon_sym_SEMI, + STATE(980), 1, + sym_declaration_list, + STATE(2321), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, - anon_sym_PLUS, - anon_sym_as, - [46476] = 6, - ACTIONS(842), 1, - sym__primitive_identifier, - ACTIONS(3905), 1, - anon_sym_LT2, - STATE(1437), 1, - sym_identifier, - STATE(2606), 1, - sym_type_arguments, + [46760] = 7, + ACTIONS(4360), 1, + anon_sym_where, + ACTIONS(4559), 1, + anon_sym_SEMI, + ACTIONS(4561), 1, + anon_sym_LBRACE, + ACTIONS(4563), 1, + anon_sym_DASH_GT, + STATE(920), 1, + sym_block, + STATE(2388), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(902), 2, - sym__raw_identifier, - sym_grit_metavariable, - [46497] = 6, - ACTIONS(842), 1, + [46783] = 6, + ACTIONS(7), 1, sym__primitive_identifier, - ACTIONS(3905), 1, - anon_sym_LT2, - STATE(1437), 1, + ACTIONS(3633), 1, + anon_sym_LBRACE, + STATE(1449), 1, sym_identifier, - STATE(2630), 1, - sym_type_arguments, + STATE(2294), 1, + sym_use_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(902), 2, + ACTIONS(97), 2, sym__raw_identifier, sym_grit_metavariable, - [46518] = 7, - ACTIONS(4384), 1, + [46804] = 7, + ACTIONS(4417), 1, anon_sym_COLON, - ACTIONS(4386), 1, - anon_sym_LT, - ACTIONS(4537), 1, - anon_sym_SEMI, - ACTIONS(4539), 1, - anon_sym_EQ, - STATE(2091), 1, - sym_type_parameters, - STATE(2616), 1, + ACTIONS(4565), 1, + anon_sym_COMMA, + ACTIONS(4567), 1, + anon_sym_GT, + STATE(2296), 1, + aux_sym_for_lifetimes_repeat1, + STATE(2378), 1, sym_trait_bounds, + STATE(2387), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [46541] = 7, - ACTIONS(4356), 1, + [46827] = 7, + ACTIONS(4360), 1, anon_sym_where, - ACTIONS(4541), 1, - anon_sym_SEMI, - ACTIONS(4543), 1, + ACTIONS(4372), 1, anon_sym_LBRACE, - ACTIONS(4545), 1, - anon_sym_DASH_GT, - STATE(872), 1, - sym_block, - STATE(2216), 1, + ACTIONS(4551), 1, + anon_sym_PLUS, + ACTIONS(4569), 1, + anon_sym_SEMI, + STATE(394), 1, + sym_declaration_list, + STATE(2386), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [46564] = 7, - ACTIONS(4356), 1, + [46850] = 7, + ACTIONS(4360), 1, anon_sym_where, - ACTIONS(4547), 1, + ACTIONS(4384), 1, + anon_sym_LBRACE, + ACTIONS(4551), 1, + anon_sym_PLUS, + ACTIONS(4571), 1, anon_sym_SEMI, - ACTIONS(4549), 1, + STATE(1003), 1, + sym_declaration_list, + STATE(2309), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [46873] = 7, + ACTIONS(4360), 1, + anon_sym_where, + ACTIONS(4384), 1, anon_sym_LBRACE, ACTIONS(4551), 1, - anon_sym_DASH_GT, - STATE(439), 1, - sym_block, - STATE(2324), 1, + anon_sym_PLUS, + ACTIONS(4573), 1, + anon_sym_SEMI, + STATE(1006), 1, + sym_declaration_list, + STATE(2308), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [46587] = 6, - ACTIONS(7), 1, + [46896] = 6, + ACTIONS(844), 1, sym__primitive_identifier, - ACTIONS(3905), 1, + ACTIONS(3923), 1, anon_sym_LT2, - STATE(970), 1, + STATE(1593), 1, sym_identifier, - STATE(2630), 1, + STATE(2760), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(97), 2, + ACTIONS(904), 2, sym__raw_identifier, sym_grit_metavariable, - [46608] = 4, - ACTIONS(4012), 1, - anon_sym_COLON_COLON, - ACTIONS(4336), 1, - anon_sym_for, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3051), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [46625] = 6, + [46917] = 6, ACTIONS(7), 1, sym__primitive_identifier, - ACTIONS(3005), 1, + ACTIONS(3923), 1, anon_sym_LT2, - STATE(1300), 1, + STATE(1074), 1, sym_identifier, - STATE(1313), 1, + STATE(2760), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, @@ -130329,14 +130721,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(97), 2, sym__raw_identifier, sym_grit_metavariable, - [46646] = 6, + [46938] = 6, ACTIONS(7), 1, sym__primitive_identifier, - ACTIONS(3005), 1, + ACTIONS(3923), 1, anon_sym_LT2, - STATE(1300), 1, + STATE(1074), 1, sym_identifier, - STATE(1308), 1, + STATE(2768), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, @@ -130344,2776 +130736,2775 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(97), 2, sym__raw_identifier, sym_grit_metavariable, - [46667] = 7, - ACTIONS(4356), 1, - anon_sym_where, - ACTIONS(4549), 1, - anon_sym_LBRACE, - ACTIONS(4553), 1, - anon_sym_SEMI, - ACTIONS(4555), 1, - anon_sym_PLUS, - STATE(412), 1, - sym_block, - STATE(2165), 1, - sym_where_clause, + [46959] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [46690] = 7, - ACTIONS(4356), 1, + ACTIONS(4274), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(3174), 4, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH_GT, + [46974] = 7, + ACTIONS(4360), 1, anon_sym_where, - ACTIONS(4549), 1, + ACTIONS(4551), 1, + anon_sym_PLUS, + ACTIONS(4561), 1, anon_sym_LBRACE, - ACTIONS(4557), 1, + ACTIONS(4575), 1, anon_sym_SEMI, - ACTIONS(4559), 1, - anon_sym_DASH_GT, - STATE(444), 1, + STATE(840), 1, sym_block, - STATE(2328), 1, + STATE(2395), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [46713] = 7, - ACTIONS(4384), 1, - anon_sym_COLON, - ACTIONS(4561), 1, - anon_sym_COMMA, - ACTIONS(4563), 1, - anon_sym_GT, - STATE(2251), 1, - aux_sym_type_parameters_repeat1, - STATE(2253), 1, - sym_trait_bounds, - STATE(2383), 1, - aux_sym_for_lifetimes_repeat1, + [46997] = 6, + ACTIONS(844), 1, + sym__primitive_identifier, + ACTIONS(3923), 1, + anon_sym_LT2, + STATE(1593), 1, + sym_identifier, + STATE(2768), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [46736] = 7, - ACTIONS(4340), 1, - anon_sym_LBRACE, - ACTIONS(4356), 1, + ACTIONS(904), 2, + sym__raw_identifier, + sym_grit_metavariable, + [47018] = 7, + ACTIONS(4360), 1, anon_sym_where, - ACTIONS(4555), 1, + ACTIONS(4551), 1, anon_sym_PLUS, - ACTIONS(4565), 1, - anon_sym_SEMI, - STATE(874), 1, - sym_declaration_list, - STATE(2229), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [46759] = 7, - ACTIONS(4354), 1, + ACTIONS(4561), 1, anon_sym_LBRACE, - ACTIONS(4356), 1, - anon_sym_where, - ACTIONS(4358), 1, - anon_sym_LT, - STATE(859), 1, - sym_field_declaration_list, - STATE(2102), 1, - sym_type_parameters, - STATE(2428), 1, + ACTIONS(4577), 1, + anon_sym_SEMI, + STATE(1023), 1, + sym_block, + STATE(2364), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [46782] = 6, - ACTIONS(3523), 1, + [47041] = 6, + ACTIONS(7), 1, sym__primitive_identifier, - ACTIONS(4567), 1, - anon_sym_ref, - ACTIONS(4569), 1, - sym_mutable_specifier, - STATE(2704), 1, + ACTIONS(3007), 1, + anon_sym_LT2, + STATE(942), 1, sym_identifier, + STATE(1153), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3525), 2, + ACTIONS(97), 2, sym__raw_identifier, sym_grit_metavariable, - [46803] = 4, - ACTIONS(4571), 1, - anon_sym_COLON_COLON, + [47062] = 7, + ACTIONS(4360), 1, + anon_sym_where, + ACTIONS(4362), 1, + anon_sym_LT, + ACTIONS(4366), 1, + anon_sym_LBRACE, + STATE(401), 1, + sym_field_declaration_list, + STATE(2003), 1, + sym_type_parameters, + STATE(2551), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3903), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3051), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [46820] = 5, - ACTIONS(4571), 1, - anon_sym_COLON_COLON, - ACTIONS(4575), 1, - anon_sym_COLON, + [47085] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3903), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4573), 2, + ACTIONS(4270), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(3170), 4, anon_sym_RPAREN, + anon_sym_PLUS, anon_sym_COMMA, - [46839] = 7, - ACTIONS(4384), 1, - anon_sym_COLON, - ACTIONS(4386), 1, - anon_sym_LT, - ACTIONS(4577), 1, - anon_sym_SEMI, + anon_sym_DASH_GT, + [47100] = 7, + ACTIONS(7), 1, + sym__primitive_identifier, + ACTIONS(97), 1, + sym__raw_identifier, ACTIONS(4579), 1, - anon_sym_EQ, - STATE(2104), 1, - sym_type_parameters, - STATE(2729), 1, - sym_trait_bounds, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [46862] = 4, - ACTIONS(4012), 1, - anon_sym_COLON_COLON, - ACTIONS(4374), 1, - anon_sym_for, + anon_sym_await, + ACTIONS(4581), 1, + sym_integer_literal, + ACTIONS(4583), 1, + sym_grit_metavariable, + STATE(1131), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [46879] = 7, - ACTIONS(4356), 1, + [47123] = 7, + ACTIONS(4360), 1, anon_sym_where, - ACTIONS(4549), 1, + ACTIONS(4561), 1, anon_sym_LBRACE, - ACTIONS(4555), 1, - anon_sym_PLUS, - ACTIONS(4581), 1, + ACTIONS(4585), 1, anon_sym_SEMI, - STATE(403), 1, + ACTIONS(4587), 1, + anon_sym_DASH_GT, + STATE(1026), 1, sym_block, - STATE(2168), 1, + STATE(2298), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [46902] = 7, - ACTIONS(4340), 1, - anon_sym_LBRACE, - ACTIONS(4356), 1, + [47146] = 7, + ACTIONS(4360), 1, anon_sym_where, - ACTIONS(4555), 1, + ACTIONS(4551), 1, anon_sym_PLUS, - ACTIONS(4583), 1, + ACTIONS(4589), 1, anon_sym_SEMI, - STATE(850), 1, - sym_declaration_list, - STATE(2160), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [46925] = 7, - ACTIONS(4340), 1, + ACTIONS(4591), 1, anon_sym_LBRACE, - ACTIONS(4356), 1, - anon_sym_where, - ACTIONS(4384), 1, - anon_sym_COLON, - STATE(885), 1, - sym_declaration_list, - STATE(2043), 1, - sym_trait_bounds, - STATE(2601), 1, + STATE(310), 1, + sym_block, + STATE(2158), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [46948] = 7, - ACTIONS(4356), 1, + [47169] = 7, + ACTIONS(4360), 1, anon_sym_where, - ACTIONS(4549), 1, + ACTIONS(4591), 1, anon_sym_LBRACE, - ACTIONS(4585), 1, + ACTIONS(4593), 1, anon_sym_SEMI, - ACTIONS(4587), 1, + ACTIONS(4595), 1, anon_sym_DASH_GT, - STATE(280), 1, + STATE(507), 1, sym_block, - STATE(2210), 1, + STATE(2358), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [46971] = 7, - ACTIONS(4340), 1, - anon_sym_LBRACE, - ACTIONS(4356), 1, + [47192] = 7, + ACTIONS(4360), 1, anon_sym_where, - ACTIONS(4555), 1, - anon_sym_PLUS, - ACTIONS(4589), 1, - anon_sym_SEMI, - STATE(892), 1, - sym_declaration_list, - STATE(2256), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [46994] = 4, - ACTIONS(4012), 1, - anon_sym_COLON_COLON, - ACTIONS(4368), 1, - anon_sym_for, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3051), 4, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(4551), 1, anon_sym_PLUS, - anon_sym_where, - [47011] = 7, - ACTIONS(4356), 1, - anon_sym_where, - ACTIONS(4358), 1, - anon_sym_LT, ACTIONS(4591), 1, anon_sym_LBRACE, - STATE(897), 1, - sym_enum_variant_list, - STATE(2035), 1, - sym_type_parameters, - STATE(2571), 1, + ACTIONS(4597), 1, + anon_sym_SEMI, + STATE(426), 1, + sym_block, + STATE(2211), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [47034] = 7, - ACTIONS(4356), 1, + [47215] = 7, + ACTIONS(4360), 1, anon_sym_where, - ACTIONS(4358), 1, + ACTIONS(4362), 1, anon_sym_LT, - ACTIONS(4591), 1, + ACTIONS(4599), 1, anon_sym_LBRACE, - STATE(848), 1, + STATE(454), 1, sym_enum_variant_list, - STATE(2137), 1, + STATE(2123), 1, sym_type_parameters, - STATE(2400), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [47057] = 7, - ACTIONS(4344), 1, - anon_sym_LBRACE, - ACTIONS(4356), 1, - anon_sym_where, - ACTIONS(4384), 1, - anon_sym_COLON, - STATE(512), 1, - sym_declaration_list, - STATE(2065), 1, - sym_trait_bounds, - STATE(2457), 1, + STATE(2524), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [47080] = 7, - ACTIONS(4344), 1, - anon_sym_LBRACE, - ACTIONS(4356), 1, - anon_sym_where, - ACTIONS(4384), 1, + [47238] = 7, + ACTIONS(4417), 1, anon_sym_COLON, - STATE(432), 1, - sym_declaration_list, - STATE(2014), 1, - sym_trait_bounds, - STATE(2489), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [47103] = 5, - ACTIONS(7), 1, - sym__primitive_identifier, - STATE(2525), 1, - sym_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(97), 2, - sym__raw_identifier, - sym_grit_metavariable, - ACTIONS(4593), 2, - anon_sym_default, - anon_sym_union, - [47122] = 7, - ACTIONS(4354), 1, - anon_sym_LBRACE, - ACTIONS(4356), 1, - anon_sym_where, - ACTIONS(4358), 1, + ACTIONS(4419), 1, anon_sym_LT, - STATE(903), 1, - sym_field_declaration_list, - STATE(2030), 1, - sym_type_parameters, - STATE(2554), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [47145] = 7, - ACTIONS(4344), 1, - anon_sym_LBRACE, - ACTIONS(4356), 1, - anon_sym_where, - ACTIONS(4555), 1, - anon_sym_PLUS, - ACTIONS(4595), 1, + ACTIONS(4601), 1, anon_sym_SEMI, - STATE(295), 1, - sym_declaration_list, - STATE(2194), 1, - sym_where_clause, + ACTIONS(4603), 1, + anon_sym_EQ, + STATE(2000), 1, + sym_type_parameters, + STATE(2635), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [47168] = 7, - ACTIONS(4344), 1, - anon_sym_LBRACE, - ACTIONS(4356), 1, - anon_sym_where, - ACTIONS(4555), 1, - anon_sym_PLUS, - ACTIONS(4597), 1, - anon_sym_SEMI, - STATE(481), 1, - sym_declaration_list, - STATE(2378), 1, - sym_where_clause, + [47261] = 5, + ACTIONS(4607), 1, + anon_sym_COLON, + ACTIONS(4609), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [47191] = 7, - ACTIONS(4018), 1, + ACTIONS(3921), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4605), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [47280] = 7, + ACTIONS(4066), 1, anon_sym_EQ, - ACTIONS(4384), 1, + ACTIONS(4417), 1, anon_sym_COLON, - ACTIONS(4599), 1, + ACTIONS(4611), 1, anon_sym_COMMA, - ACTIONS(4601), 1, + ACTIONS(4613), 1, anon_sym_GT, - STATE(2227), 1, + STATE(2231), 1, aux_sym_type_parameters_repeat1, - STATE(2255), 1, + STATE(2376), 1, sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [47214] = 7, - ACTIONS(4344), 1, - anon_sym_LBRACE, - ACTIONS(4356), 1, + [47303] = 7, + ACTIONS(4360), 1, anon_sym_where, - ACTIONS(4555), 1, + ACTIONS(4384), 1, + anon_sym_LBRACE, + ACTIONS(4551), 1, anon_sym_PLUS, - ACTIONS(4603), 1, + ACTIONS(4615), 1, anon_sym_SEMI, - STATE(293), 1, + STATE(916), 1, sym_declaration_list, - STATE(2192), 1, + STATE(2361), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [47237] = 7, - ACTIONS(4344), 1, - anon_sym_LBRACE, - ACTIONS(4356), 1, + [47326] = 7, + ACTIONS(4360), 1, anon_sym_where, - ACTIONS(4555), 1, + ACTIONS(4384), 1, + anon_sym_LBRACE, + ACTIONS(4551), 1, anon_sym_PLUS, - ACTIONS(4605), 1, + ACTIONS(4617), 1, anon_sym_SEMI, - STATE(479), 1, + STATE(912), 1, sym_declaration_list, - STATE(2370), 1, + STATE(2362), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [47260] = 7, - ACTIONS(4356), 1, + [47349] = 7, + ACTIONS(4360), 1, anon_sym_where, - ACTIONS(4358), 1, - anon_sym_LT, - ACTIONS(4607), 1, + ACTIONS(4591), 1, anon_sym_LBRACE, - STATE(287), 1, - sym_enum_variant_list, - STATE(2114), 1, - sym_type_parameters, - STATE(2467), 1, + ACTIONS(4619), 1, + anon_sym_SEMI, + ACTIONS(4621), 1, + anon_sym_DASH_GT, + STATE(347), 1, + sym_block, + STATE(2343), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [47283] = 5, - ACTIONS(7), 1, + [47372] = 6, + ACTIONS(844), 1, sym__primitive_identifier, - STATE(2444), 1, + ACTIONS(3923), 1, + anon_sym_LT2, + STATE(1584), 1, sym_identifier, + STATE(2760), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(97), 2, + ACTIONS(904), 2, sym__raw_identifier, sym_grit_metavariable, - ACTIONS(4609), 2, - anon_sym_default, - anon_sym_union, - [47302] = 7, - ACTIONS(4356), 1, + [47393] = 4, + ACTIONS(4044), 1, + anon_sym_COLON_COLON, + ACTIONS(4378), 1, + anon_sym_for, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3025), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_where, - ACTIONS(4543), 1, + [47410] = 4, + ACTIONS(4044), 1, + anon_sym_COLON_COLON, + ACTIONS(4390), 1, + anon_sym_for, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3025), 4, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(4611), 1, + anon_sym_PLUS, + anon_sym_where, + [47427] = 7, + ACTIONS(4360), 1, + anon_sym_where, + ACTIONS(4372), 1, + anon_sym_LBRACE, + ACTIONS(4551), 1, + anon_sym_PLUS, + ACTIONS(4623), 1, anon_sym_SEMI, - ACTIONS(4613), 1, + STATE(315), 1, + sym_declaration_list, + STATE(2242), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [47450] = 7, + ACTIONS(4360), 1, + anon_sym_where, + ACTIONS(4561), 1, + anon_sym_LBRACE, + ACTIONS(4625), 1, + anon_sym_SEMI, + ACTIONS(4627), 1, anon_sym_DASH_GT, - STATE(922), 1, + STATE(969), 1, sym_block, - STATE(2294), 1, + STATE(2329), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [47325] = 6, + [47473] = 6, ACTIONS(7), 1, sym__primitive_identifier, - ACTIONS(3619), 1, - anon_sym_LBRACE, - STATE(1446), 1, + ACTIONS(3007), 1, + anon_sym_LT2, + STATE(942), 1, sym_identifier, - STATE(2147), 1, - sym_use_list, + STATE(1111), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, ACTIONS(97), 2, sym__raw_identifier, sym_grit_metavariable, - [47346] = 7, - ACTIONS(4340), 1, - anon_sym_LBRACE, - ACTIONS(4356), 1, + [47494] = 7, + ACTIONS(4360), 1, anon_sym_where, - ACTIONS(4555), 1, - anon_sym_PLUS, - ACTIONS(4615), 1, + ACTIONS(4561), 1, + anon_sym_LBRACE, + ACTIONS(4629), 1, anon_sym_SEMI, - STATE(931), 1, - sym_declaration_list, - STATE(2304), 1, + ACTIONS(4631), 1, + anon_sym_DASH_GT, + STATE(924), 1, + sym_block, + STATE(2380), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [47369] = 7, - ACTIONS(4340), 1, - anon_sym_LBRACE, - ACTIONS(4356), 1, + [47517] = 7, + ACTIONS(4360), 1, anon_sym_where, - ACTIONS(4555), 1, - anon_sym_PLUS, - ACTIONS(4617), 1, + ACTIONS(4591), 1, + anon_sym_LBRACE, + ACTIONS(4633), 1, anon_sym_SEMI, - STATE(934), 1, - sym_declaration_list, - STATE(2305), 1, + ACTIONS(4635), 1, + anon_sym_DASH_GT, + STATE(410), 1, + sym_block, + STATE(2218), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [47392] = 7, - ACTIONS(4344), 1, - anon_sym_LBRACE, - ACTIONS(4356), 1, + [47540] = 7, + ACTIONS(4360), 1, anon_sym_where, - ACTIONS(4555), 1, + ACTIONS(4551), 1, anon_sym_PLUS, - ACTIONS(4619), 1, + ACTIONS(4561), 1, + anon_sym_LBRACE, + ACTIONS(4637), 1, anon_sym_SEMI, - STATE(519), 1, - sym_declaration_list, - STATE(2392), 1, + STATE(1034), 1, + sym_block, + STATE(2374), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [47415] = 6, - ACTIONS(7), 1, - sym__primitive_identifier, - ACTIONS(3905), 1, - anon_sym_LT2, - STATE(970), 1, - sym_identifier, - STATE(2606), 1, - sym_type_arguments, + [47563] = 7, + ACTIONS(4358), 1, + anon_sym_LBRACE, + ACTIONS(4360), 1, + anon_sym_where, + ACTIONS(4362), 1, + anon_sym_LT, + STATE(1050), 1, + sym_field_declaration_list, + STATE(2101), 1, + sym_type_parameters, + STATE(2563), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(97), 2, - sym__raw_identifier, - sym_grit_metavariable, - [47436] = 7, - ACTIONS(4340), 1, - anon_sym_LBRACE, - ACTIONS(4356), 1, + [47586] = 7, + ACTIONS(4360), 1, anon_sym_where, - ACTIONS(4555), 1, + ACTIONS(4551), 1, anon_sym_PLUS, - ACTIONS(4621), 1, + ACTIONS(4561), 1, + anon_sym_LBRACE, + ACTIONS(4639), 1, anon_sym_SEMI, - STATE(977), 1, - sym_declaration_list, - STATE(2317), 1, + STATE(1076), 1, + sym_block, + STATE(2368), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [47459] = 7, - ACTIONS(4018), 1, - anon_sym_EQ, - ACTIONS(4020), 1, - anon_sym_COMMA, - ACTIONS(4022), 1, - anon_sym_GT, - ACTIONS(4384), 1, - anon_sym_COLON, - STATE(2255), 1, - sym_trait_bounds, - STATE(2257), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [47482] = 7, - ACTIONS(4340), 1, - anon_sym_LBRACE, - ACTIONS(4356), 1, + [47609] = 7, + ACTIONS(4360), 1, anon_sym_where, - ACTIONS(4384), 1, + ACTIONS(4372), 1, + anon_sym_LBRACE, + ACTIONS(4417), 1, anon_sym_COLON, - STATE(986), 1, + STATE(482), 1, sym_declaration_list, - STATE(2001), 1, + STATE(2094), 1, sym_trait_bounds, - STATE(2476), 1, + STATE(2540), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [47505] = 4, - ACTIONS(4623), 1, - anon_sym_COLON_COLON, + [47632] = 6, + ACTIONS(3503), 1, + sym__primitive_identifier, + ACTIONS(4641), 1, + anon_sym_ref, + ACTIONS(4643), 1, + sym_mutable_specifier, + STATE(2708), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3903), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3051), 3, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS, - [47522] = 7, - ACTIONS(4356), 1, + ACTIONS(3505), 2, + sym__raw_identifier, + sym_grit_metavariable, + [47653] = 7, + ACTIONS(4360), 1, anon_sym_where, - ACTIONS(4543), 1, + ACTIONS(4591), 1, anon_sym_LBRACE, - ACTIONS(4625), 1, + ACTIONS(4645), 1, anon_sym_SEMI, - ACTIONS(4627), 1, + ACTIONS(4647), 1, anon_sym_DASH_GT, - STATE(1001), 1, + STATE(504), 1, sym_block, - STATE(2325), 1, + STATE(2172), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [47545] = 7, - ACTIONS(4356), 1, + [47676] = 7, + ACTIONS(4360), 1, anon_sym_where, - ACTIONS(4543), 1, + ACTIONS(4561), 1, anon_sym_LBRACE, - ACTIONS(4629), 1, + ACTIONS(4649), 1, anon_sym_SEMI, - ACTIONS(4631), 1, + ACTIONS(4651), 1, anon_sym_DASH_GT, - STATE(1017), 1, + STATE(962), 1, sym_block, - STATE(2329), 1, + STATE(2333), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [47568] = 7, - ACTIONS(4340), 1, - anon_sym_LBRACE, - ACTIONS(4356), 1, + [47699] = 7, + ACTIONS(4360), 1, anon_sym_where, - ACTIONS(4384), 1, - anon_sym_COLON, - STATE(1035), 1, - sym_declaration_list, - STATE(1997), 1, - sym_trait_bounds, - STATE(2442), 1, + ACTIONS(4591), 1, + anon_sym_LBRACE, + ACTIONS(4653), 1, + anon_sym_SEMI, + ACTIONS(4655), 1, + anon_sym_DASH_GT, + STATE(326), 1, + sym_block, + STATE(2239), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [47591] = 7, - ACTIONS(4344), 1, - anon_sym_LBRACE, - ACTIONS(4356), 1, + [47722] = 7, + ACTIONS(4360), 1, anon_sym_where, ACTIONS(4384), 1, + anon_sym_LBRACE, + ACTIONS(4417), 1, anon_sym_COLON, - STATE(448), 1, + STATE(954), 1, sym_declaration_list, - STATE(2084), 1, + STATE(2083), 1, sym_trait_bounds, - STATE(2463), 1, + STATE(2468), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [47614] = 6, - ACTIONS(3905), 1, - anon_sym_LT2, - ACTIONS(3915), 1, - anon_sym_LPAREN, - STATE(1462), 1, - sym_type_arguments, - STATE(2183), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3085), 2, - anon_sym_COLON, - anon_sym_PLUS, - [47635] = 7, - ACTIONS(4356), 1, + [47745] = 7, + ACTIONS(4360), 1, anon_sym_where, - ACTIONS(4543), 1, - anon_sym_LBRACE, - ACTIONS(4555), 1, + ACTIONS(4551), 1, anon_sym_PLUS, - ACTIONS(4633), 1, + ACTIONS(4561), 1, + anon_sym_LBRACE, + ACTIONS(4657), 1, anon_sym_SEMI, - STATE(1059), 1, + STATE(1106), 1, sym_block, - STATE(2355), 1, + STATE(2367), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [47658] = 4, - ACTIONS(4012), 1, - anon_sym_COLON_COLON, - ACTIONS(4348), 1, - anon_sym_for, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3051), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [47675] = 7, - ACTIONS(4356), 1, + [47768] = 7, + ACTIONS(4360), 1, anon_sym_where, - ACTIONS(4549), 1, + ACTIONS(4372), 1, anon_sym_LBRACE, - ACTIONS(4555), 1, + ACTIONS(4551), 1, anon_sym_PLUS, - ACTIONS(4635), 1, + ACTIONS(4659), 1, anon_sym_SEMI, - STATE(466), 1, - sym_block, - STATE(2149), 1, + STATE(287), 1, + sym_declaration_list, + STATE(2256), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [47698] = 7, - ACTIONS(4340), 1, - anon_sym_LBRACE, - ACTIONS(4356), 1, + [47791] = 7, + ACTIONS(4360), 1, anon_sym_where, - ACTIONS(4555), 1, + ACTIONS(4372), 1, + anon_sym_LBRACE, + ACTIONS(4551), 1, anon_sym_PLUS, - ACTIONS(4637), 1, + ACTIONS(4661), 1, anon_sym_SEMI, - STATE(1069), 1, + STATE(284), 1, sym_declaration_list, - STATE(2357), 1, + STATE(2261), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [47721] = 7, - ACTIONS(4340), 1, - anon_sym_LBRACE, - ACTIONS(4356), 1, + [47814] = 7, + ACTIONS(4360), 1, anon_sym_where, - ACTIONS(4555), 1, - anon_sym_PLUS, - ACTIONS(4639), 1, + ACTIONS(4591), 1, + anon_sym_LBRACE, + ACTIONS(4663), 1, anon_sym_SEMI, - STATE(1077), 1, - sym_declaration_list, - STATE(2358), 1, + ACTIONS(4665), 1, + anon_sym_DASH_GT, + STATE(341), 1, + sym_block, + STATE(2340), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [47744] = 6, - ACTIONS(3905), 1, - anon_sym_LT2, - ACTIONS(3915), 1, - anon_sym_LPAREN, - STATE(1462), 1, - sym_type_arguments, - STATE(2183), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3047), 2, - anon_sym_COLON, - anon_sym_PLUS, - [47765] = 7, - ACTIONS(4356), 1, + [47837] = 7, + ACTIONS(4360), 1, anon_sym_where, - ACTIONS(4549), 1, - anon_sym_LBRACE, - ACTIONS(4555), 1, + ACTIONS(4551), 1, anon_sym_PLUS, - ACTIONS(4641), 1, + ACTIONS(4561), 1, + anon_sym_LBRACE, + ACTIONS(4667), 1, anon_sym_SEMI, - STATE(313), 1, + STATE(887), 1, sym_block, - STATE(2204), 1, + STATE(2397), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [47788] = 6, - ACTIONS(842), 1, - sym__primitive_identifier, - ACTIONS(3905), 1, - anon_sym_LT2, - STATE(1434), 1, - sym_identifier, - STATE(2630), 1, - sym_type_arguments, + [47860] = 7, + ACTIONS(2882), 1, + anon_sym_PLUS, + ACTIONS(4417), 1, + anon_sym_COLON, + ACTIONS(4669), 1, + anon_sym_COMMA, + ACTIONS(4671), 1, + anon_sym_GT, + STATE(2378), 1, + sym_trait_bounds, + STATE(2387), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(902), 2, - sym__raw_identifier, - sym_grit_metavariable, - [47809] = 7, - ACTIONS(4340), 1, - anon_sym_LBRACE, - ACTIONS(4356), 1, + [47883] = 7, + ACTIONS(4360), 1, anon_sym_where, - ACTIONS(4555), 1, - anon_sym_PLUS, - ACTIONS(4643), 1, + ACTIONS(4591), 1, + anon_sym_LBRACE, + ACTIONS(4673), 1, anon_sym_SEMI, - STATE(1096), 1, - sym_declaration_list, - STATE(2368), 1, + ACTIONS(4675), 1, + anon_sym_DASH_GT, + STATE(374), 1, + sym_block, + STATE(2238), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [47832] = 7, - ACTIONS(4340), 1, - anon_sym_LBRACE, - ACTIONS(4356), 1, + [47906] = 7, + ACTIONS(4360), 1, anon_sym_where, - ACTIONS(4555), 1, - anon_sym_PLUS, - ACTIONS(4645), 1, - anon_sym_SEMI, - STATE(1094), 1, + ACTIONS(4372), 1, + anon_sym_LBRACE, + ACTIONS(4417), 1, + anon_sym_COLON, + STATE(351), 1, sym_declaration_list, - STATE(2369), 1, + STATE(2055), 1, + sym_trait_bounds, + STATE(2447), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [47855] = 3, + [47929] = 6, + ACTIONS(3649), 1, + anon_sym_COLON_COLON, + ACTIONS(4669), 1, + anon_sym_COMMA, + ACTIONS(4671), 1, + anon_sym_GT, + STATE(2387), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4240), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(3203), 4, - anon_sym_RPAREN, + ACTIONS(3025), 2, anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH_GT, - [47870] = 7, - ACTIONS(4356), 1, + anon_sym_as, + [47950] = 7, + ACTIONS(4360), 1, anon_sym_where, - ACTIONS(4543), 1, + ACTIONS(4551), 1, + anon_sym_PLUS, + ACTIONS(4591), 1, anon_sym_LBRACE, - ACTIONS(4647), 1, + ACTIONS(4677), 1, anon_sym_SEMI, - ACTIONS(4649), 1, - anon_sym_DASH_GT, - STATE(1086), 1, + STATE(469), 1, sym_block, - STATE(2371), 1, + STATE(2214), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [47893] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4240), 2, - anon_sym_COMMA, - anon_sym_PIPE, - ACTIONS(3203), 4, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS, - anon_sym_DASH_GT, - [47908] = 7, - ACTIONS(4356), 1, + [47973] = 7, + ACTIONS(4360), 1, anon_sym_where, - ACTIONS(4543), 1, + ACTIONS(4551), 1, + anon_sym_PLUS, + ACTIONS(4561), 1, anon_sym_LBRACE, - ACTIONS(4651), 1, + ACTIONS(4679), 1, anon_sym_SEMI, - ACTIONS(4653), 1, - anon_sym_DASH_GT, - STATE(1078), 1, + STATE(871), 1, sym_block, - STATE(2373), 1, + STATE(2390), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [47931] = 7, - ACTIONS(4356), 1, + [47996] = 7, + ACTIONS(4360), 1, anon_sym_where, - ACTIONS(4549), 1, + ACTIONS(4384), 1, anon_sym_LBRACE, - ACTIONS(4555), 1, + ACTIONS(4551), 1, anon_sym_PLUS, - ACTIONS(4655), 1, + ACTIONS(4681), 1, anon_sym_SEMI, - STATE(404), 1, - sym_block, - STATE(2272), 1, + STATE(889), 1, + sym_declaration_list, + STATE(2372), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [47954] = 7, - ACTIONS(4344), 1, - anon_sym_LBRACE, - ACTIONS(4356), 1, + [48019] = 7, + ACTIONS(4360), 1, anon_sym_where, - ACTIONS(4555), 1, + ACTIONS(4372), 1, + anon_sym_LBRACE, + ACTIONS(4551), 1, anon_sym_PLUS, - ACTIONS(4657), 1, + ACTIONS(4683), 1, anon_sym_SEMI, - STATE(360), 1, + STATE(313), 1, sym_declaration_list, - STATE(2228), 1, + STATE(2243), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [47977] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4153), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(3255), 4, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH_GT, - [47992] = 6, - ACTIONS(3523), 1, + [48042] = 5, + ACTIONS(7), 1, sym__primitive_identifier, - ACTIONS(4659), 1, - anon_sym_ref, - ACTIONS(4661), 1, - sym_mutable_specifier, - STATE(2721), 1, + STATE(2453), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3525), 2, + ACTIONS(97), 2, sym__raw_identifier, sym_grit_metavariable, - [48013] = 7, - ACTIONS(4356), 1, - anon_sym_where, - ACTIONS(4549), 1, - anon_sym_LBRACE, - ACTIONS(4663), 1, - anon_sym_SEMI, - ACTIONS(4665), 1, - anon_sym_DASH_GT, - STATE(491), 1, - sym_block, - STATE(2336), 1, - sym_where_clause, + ACTIONS(4685), 2, + anon_sym_default, + anon_sym_union, + [48061] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [48036] = 7, - ACTIONS(4356), 1, + ACTIONS(4274), 2, + anon_sym_COMMA, + anon_sym_PIPE, + ACTIONS(3174), 4, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS, + anon_sym_DASH_GT, + [48076] = 7, + ACTIONS(4360), 1, anon_sym_where, - ACTIONS(4549), 1, - anon_sym_LBRACE, - ACTIONS(4555), 1, + ACTIONS(4551), 1, anon_sym_PLUS, - ACTIONS(4667), 1, + ACTIONS(4591), 1, + anon_sym_LBRACE, + ACTIONS(4687), 1, anon_sym_SEMI, - STATE(278), 1, + STATE(532), 1, sym_block, - STATE(2190), 1, + STATE(2162), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [48059] = 6, - ACTIONS(842), 1, - sym__primitive_identifier, - ACTIONS(3905), 1, + [48099] = 6, + ACTIONS(3923), 1, anon_sym_LT2, - STATE(1434), 1, - sym_identifier, - STATE(2606), 1, + ACTIONS(3933), 1, + anon_sym_LPAREN, + STATE(1467), 1, sym_type_arguments, + STATE(2191), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(902), 2, - sym__raw_identifier, - sym_grit_metavariable, - [48080] = 4, - ACTIONS(4012), 1, + ACTIONS(3025), 2, + anon_sym_COLON, + anon_sym_PLUS, + [48120] = 7, + ACTIONS(4360), 1, + anon_sym_where, + ACTIONS(4362), 1, + anon_sym_LT, + ACTIONS(4689), 1, + anon_sym_LBRACE, + STATE(1085), 1, + sym_enum_variant_list, + STATE(2143), 1, + sym_type_parameters, + STATE(2413), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [48143] = 4, + ACTIONS(4044), 1, anon_sym_COLON_COLON, - ACTIONS(4376), 1, + ACTIONS(4380), 1, anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 4, + ACTIONS(3025), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [48097] = 6, - ACTIONS(3973), 1, - anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_COLON, - ACTIONS(3977), 1, - anon_sym_BANG, - ACTIONS(4116), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3981), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [48118] = 7, - ACTIONS(4340), 1, - anon_sym_LBRACE, - ACTIONS(4356), 1, + [48160] = 7, + ACTIONS(4360), 1, anon_sym_where, - ACTIONS(4384), 1, + ACTIONS(4372), 1, + anon_sym_LBRACE, + ACTIONS(4417), 1, anon_sym_COLON, - STATE(1060), 1, + STATE(329), 1, sym_declaration_list, - STATE(1978), 1, + STATE(2038), 1, sym_trait_bounds, - STATE(2403), 1, + STATE(2475), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [48141] = 7, - ACTIONS(4356), 1, - anon_sym_where, - ACTIONS(4543), 1, - anon_sym_LBRACE, - ACTIONS(4669), 1, - anon_sym_SEMI, - ACTIONS(4671), 1, - anon_sym_DASH_GT, - STATE(1055), 1, - sym_block, - STATE(2384), 1, - sym_where_clause, + [48183] = 6, + ACTIONS(3503), 1, + sym__primitive_identifier, + ACTIONS(4090), 1, + anon_sym_COLON_COLON, + ACTIONS(4455), 1, + anon_sym_BANG, + STATE(1842), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [48164] = 6, - ACTIONS(3523), 1, + ACTIONS(3505), 2, + sym__raw_identifier, + sym_grit_metavariable, + [48204] = 6, + ACTIONS(2832), 1, sym__primitive_identifier, - ACTIONS(4673), 1, - anon_sym_ref, - ACTIONS(4675), 1, - sym_mutable_specifier, - STATE(2718), 1, + ACTIONS(3923), 1, + anon_sym_LT2, + STATE(826), 1, sym_identifier, + STATE(2760), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3525), 2, + ACTIONS(2860), 2, sym__raw_identifier, sym_grit_metavariable, - [48185] = 7, - ACTIONS(4356), 1, + [48225] = 7, + ACTIONS(4360), 1, anon_sym_where, - ACTIONS(4543), 1, + ACTIONS(4384), 1, anon_sym_LBRACE, - ACTIONS(4555), 1, + ACTIONS(4551), 1, anon_sym_PLUS, - ACTIONS(4677), 1, + ACTIONS(4691), 1, anon_sym_SEMI, - STATE(1039), 1, - sym_block, - STATE(2391), 1, + STATE(886), 1, + sym_declaration_list, + STATE(2373), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [48208] = 7, - ACTIONS(4340), 1, - anon_sym_LBRACE, - ACTIONS(4356), 1, + [48248] = 7, + ACTIONS(4360), 1, anon_sym_where, - ACTIONS(4555), 1, + ACTIONS(4551), 1, anon_sym_PLUS, - ACTIONS(4679), 1, + ACTIONS(4591), 1, + anon_sym_LBRACE, + ACTIONS(4693), 1, anon_sym_SEMI, - STATE(1018), 1, - sym_declaration_list, - STATE(2388), 1, + STATE(525), 1, + sym_block, + STATE(2163), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [48231] = 7, - ACTIONS(4340), 1, - anon_sym_LBRACE, - ACTIONS(4356), 1, - anon_sym_where, - ACTIONS(4555), 1, - anon_sym_PLUS, - ACTIONS(4681), 1, - anon_sym_SEMI, - STATE(1014), 1, - sym_declaration_list, - STATE(2387), 1, - sym_where_clause, + [48271] = 6, + ACTIONS(2832), 1, + sym__primitive_identifier, + ACTIONS(3923), 1, + anon_sym_LT2, + STATE(826), 1, + sym_identifier, + STATE(2768), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [48254] = 6, - ACTIONS(3905), 1, + ACTIONS(2860), 2, + sym__raw_identifier, + sym_grit_metavariable, + [48292] = 6, + ACTIONS(844), 1, + sym__primitive_identifier, + ACTIONS(3923), 1, anon_sym_LT2, - ACTIONS(3915), 1, - anon_sym_LPAREN, - STATE(1462), 1, + STATE(1515), 1, + sym_identifier, + STATE(2768), 1, sym_type_arguments, - STATE(2183), 1, - sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, - anon_sym_COLON, - anon_sym_PLUS, - [48275] = 7, - ACTIONS(4356), 1, - anon_sym_where, - ACTIONS(4543), 1, - anon_sym_LBRACE, - ACTIONS(4555), 1, - anon_sym_PLUS, - ACTIONS(4683), 1, - anon_sym_SEMI, - STATE(1005), 1, - sym_block, - STATE(2385), 1, - sym_where_clause, + ACTIONS(904), 2, + sym__raw_identifier, + sym_grit_metavariable, + [48313] = 6, + ACTIONS(844), 1, + sym__primitive_identifier, + ACTIONS(3923), 1, + anon_sym_LT2, + STATE(1515), 1, + sym_identifier, + STATE(2760), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [48298] = 7, - ACTIONS(4356), 1, + ACTIONS(904), 2, + sym__raw_identifier, + sym_grit_metavariable, + [48334] = 7, + ACTIONS(4360), 1, anon_sym_where, - ACTIONS(4543), 1, + ACTIONS(4384), 1, anon_sym_LBRACE, - ACTIONS(4555), 1, + ACTIONS(4551), 1, anon_sym_PLUS, - ACTIONS(4685), 1, + ACTIONS(4695), 1, anon_sym_SEMI, - STATE(998), 1, - sym_block, - STATE(2380), 1, + STATE(939), 1, + sym_declaration_list, + STATE(2164), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [48321] = 4, - ACTIONS(4012), 1, - anon_sym_COLON_COLON, - ACTIONS(4360), 1, - anon_sym_for, + [48357] = 7, + ACTIONS(4066), 1, + anon_sym_EQ, + ACTIONS(4068), 1, + anon_sym_COMMA, + ACTIONS(4070), 1, + anon_sym_GT, + ACTIONS(4417), 1, + anon_sym_COLON, + STATE(2371), 1, + aux_sym_type_parameters_repeat1, + STATE(2376), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [48338] = 7, - ACTIONS(4356), 1, + [48380] = 5, + ACTIONS(7), 1, + sym__primitive_identifier, + STATE(2529), 1, + sym_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(97), 2, + sym__raw_identifier, + sym_grit_metavariable, + ACTIONS(4697), 2, + anon_sym_default, + anon_sym_union, + [48399] = 7, + ACTIONS(4360), 1, anon_sym_where, - ACTIONS(4543), 1, + ACTIONS(4561), 1, anon_sym_LBRACE, - ACTIONS(4687), 1, + ACTIONS(4699), 1, anon_sym_SEMI, - ACTIONS(4689), 1, + ACTIONS(4701), 1, anon_sym_DASH_GT, - STATE(985), 1, + STATE(880), 1, sym_block, - STATE(2377), 1, + STATE(2375), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [48361] = 7, - ACTIONS(4344), 1, - anon_sym_LBRACE, - ACTIONS(4356), 1, + [48422] = 7, + ACTIONS(4360), 1, anon_sym_where, - ACTIONS(4555), 1, - anon_sym_PLUS, - ACTIONS(4691), 1, - anon_sym_SEMI, - STATE(324), 1, - sym_declaration_list, - STATE(2258), 1, + ACTIONS(4362), 1, + anon_sym_LT, + ACTIONS(4366), 1, + anon_sym_LBRACE, + STATE(443), 1, + sym_field_declaration_list, + STATE(2126), 1, + sym_type_parameters, + STATE(2454), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [48384] = 7, - ACTIONS(4356), 1, + [48445] = 7, + ACTIONS(4360), 1, anon_sym_where, - ACTIONS(4543), 1, + ACTIONS(4362), 1, + anon_sym_LT, + ACTIONS(4599), 1, anon_sym_LBRACE, - ACTIONS(4555), 1, - anon_sym_PLUS, - ACTIONS(4693), 1, - anon_sym_SEMI, - STATE(959), 1, - sym_block, - STATE(2361), 1, + STATE(288), 1, + sym_enum_variant_list, + STATE(1977), 1, + sym_type_parameters, + STATE(2606), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [48407] = 7, - ACTIONS(4344), 1, - anon_sym_LBRACE, - ACTIONS(4356), 1, + [48468] = 7, + ACTIONS(4360), 1, anon_sym_where, - ACTIONS(4555), 1, + ACTIONS(4384), 1, + anon_sym_LBRACE, + ACTIONS(4551), 1, anon_sym_PLUS, - ACTIONS(4695), 1, + ACTIONS(4703), 1, anon_sym_SEMI, - STATE(401), 1, + STATE(849), 1, sym_declaration_list, - STATE(2259), 1, + STATE(2384), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [48430] = 7, - ACTIONS(4344), 1, - anon_sym_LBRACE, - ACTIONS(4356), 1, + [48491] = 7, + ACTIONS(4360), 1, anon_sym_where, - ACTIONS(4555), 1, + ACTIONS(4551), 1, anon_sym_PLUS, - ACTIONS(4697), 1, + ACTIONS(4591), 1, + anon_sym_LBRACE, + ACTIONS(4705), 1, anon_sym_SEMI, - STATE(398), 1, - sym_declaration_list, - STATE(2254), 1, + STATE(279), 1, + sym_block, + STATE(2285), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [48453] = 7, - ACTIONS(4356), 1, - anon_sym_where, - ACTIONS(4543), 1, - anon_sym_LBRACE, - ACTIONS(4555), 1, - anon_sym_PLUS, - ACTIONS(4699), 1, + [48514] = 7, + ACTIONS(4417), 1, + anon_sym_COLON, + ACTIONS(4419), 1, + anon_sym_LT, + ACTIONS(4707), 1, anon_sym_SEMI, - STATE(948), 1, - sym_block, - STATE(2360), 1, + ACTIONS(4709), 1, + anon_sym_EQ, + STATE(2137), 1, + sym_type_parameters, + STATE(2733), 1, + sym_trait_bounds, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [48537] = 7, + ACTIONS(4358), 1, + anon_sym_LBRACE, + ACTIONS(4360), 1, + anon_sym_where, + ACTIONS(4362), 1, + anon_sym_LT, + STATE(860), 1, + sym_field_declaration_list, + STATE(2136), 1, + sym_type_parameters, + STATE(2438), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [48476] = 7, - ACTIONS(4356), 1, + [48560] = 7, + ACTIONS(4360), 1, anon_sym_where, - ACTIONS(4543), 1, + ACTIONS(4384), 1, anon_sym_LBRACE, - ACTIONS(4555), 1, + ACTIONS(4551), 1, anon_sym_PLUS, - ACTIONS(4701), 1, + ACTIONS(4711), 1, anon_sym_SEMI, - STATE(935), 1, - sym_block, - STATE(2351), 1, + STATE(846), 1, + sym_declaration_list, + STATE(2383), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [48499] = 4, - ACTIONS(4012), 1, + [48583] = 4, + ACTIONS(4044), 1, anon_sym_COLON_COLON, - ACTIONS(4378), 1, + ACTIONS(4396), 1, anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 4, + ACTIONS(3025), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [48516] = 7, - ACTIONS(4356), 1, + [48600] = 7, + ACTIONS(4360), 1, anon_sym_where, - ACTIONS(4543), 1, - anon_sym_LBRACE, - ACTIONS(4555), 1, - anon_sym_PLUS, - ACTIONS(4703), 1, - anon_sym_SEMI, - STATE(912), 1, - sym_block, - STATE(2347), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [48539] = 7, - ACTIONS(4344), 1, + ACTIONS(4372), 1, anon_sym_LBRACE, - ACTIONS(4356), 1, - anon_sym_where, - ACTIONS(4555), 1, + ACTIONS(4551), 1, anon_sym_PLUS, - ACTIONS(4705), 1, + ACTIONS(4713), 1, anon_sym_SEMI, - STATE(453), 1, + STATE(356), 1, sym_declaration_list, - STATE(2334), 1, + STATE(2348), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [48562] = 5, - ACTIONS(4709), 1, + [48623] = 5, + ACTIONS(4717), 1, anon_sym_COLON, - ACTIONS(4711), 1, + ACTIONS(4719), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3903), 2, + ACTIONS(3921), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4707), 2, + ACTIONS(4715), 2, anon_sym_RPAREN, anon_sym_COMMA, - [48581] = 7, - ACTIONS(4356), 1, + [48642] = 6, + ACTIONS(844), 1, + sym__primitive_identifier, + ACTIONS(3923), 1, + anon_sym_LT2, + STATE(1554), 1, + sym_identifier, + STATE(2760), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(904), 2, + sym__raw_identifier, + sym_grit_metavariable, + [48663] = 6, + ACTIONS(7), 1, + sym__primitive_identifier, + ACTIONS(3007), 1, + anon_sym_LT2, + STATE(1303), 1, + sym_identifier, + STATE(1314), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(97), 2, + sym__raw_identifier, + sym_grit_metavariable, + [48684] = 7, + ACTIONS(4360), 1, anon_sym_where, - ACTIONS(4358), 1, - anon_sym_LT, - ACTIONS(4364), 1, + ACTIONS(4551), 1, + anon_sym_PLUS, + ACTIONS(4591), 1, anon_sym_LBRACE, - STATE(523), 1, - sym_field_declaration_list, - STATE(2074), 1, - sym_type_parameters, - STATE(2497), 1, + ACTIONS(4721), 1, + anon_sym_SEMI, + STATE(481), 1, + sym_block, + STATE(2183), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [48604] = 7, - ACTIONS(4356), 1, + [48707] = 7, + ACTIONS(4360), 1, anon_sym_where, - ACTIONS(4358), 1, - anon_sym_LT, - ACTIONS(4364), 1, + ACTIONS(4372), 1, anon_sym_LBRACE, - STATE(400), 1, - sym_field_declaration_list, - STATE(2090), 1, - sym_type_parameters, - STATE(2578), 1, + ACTIONS(4551), 1, + anon_sym_PLUS, + ACTIONS(4723), 1, + anon_sym_SEMI, + STATE(361), 1, + sym_declaration_list, + STATE(2263), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [48627] = 6, - ACTIONS(842), 1, + [48730] = 4, + ACTIONS(4044), 1, + anon_sym_COLON_COLON, + ACTIONS(4386), 1, + anon_sym_for, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3025), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [48747] = 6, + ACTIONS(7), 1, sym__primitive_identifier, - ACTIONS(3905), 1, + ACTIONS(3007), 1, anon_sym_LT2, - STATE(1524), 1, + STATE(1303), 1, sym_identifier, - STATE(2606), 1, + STATE(1317), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(902), 2, + ACTIONS(97), 2, sym__raw_identifier, sym_grit_metavariable, - [48648] = 6, - ACTIONS(7), 1, + [48768] = 6, + ACTIONS(844), 1, sym__primitive_identifier, - ACTIONS(3005), 1, + ACTIONS(3923), 1, anon_sym_LT2, - STATE(1042), 1, + STATE(1584), 1, sym_identifier, - STATE(1123), 1, + STATE(2768), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(97), 2, + ACTIONS(904), 2, sym__raw_identifier, sym_grit_metavariable, - [48669] = 6, - ACTIONS(842), 1, + [48789] = 7, + ACTIONS(4360), 1, + anon_sym_where, + ACTIONS(4372), 1, + anon_sym_LBRACE, + ACTIONS(4417), 1, + anon_sym_COLON, + STATE(363), 1, + sym_declaration_list, + STATE(1965), 1, + sym_trait_bounds, + STATE(2570), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [48812] = 6, + ACTIONS(844), 1, sym__primitive_identifier, - ACTIONS(3905), 1, + ACTIONS(3923), 1, anon_sym_LT2, - STATE(1524), 1, + STATE(1440), 1, sym_identifier, - STATE(2630), 1, + STATE(2768), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(902), 2, + ACTIONS(904), 2, sym__raw_identifier, sym_grit_metavariable, - [48690] = 4, - ACTIONS(4012), 1, - anon_sym_COLON_COLON, - ACTIONS(4334), 1, - anon_sym_for, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3051), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [48707] = 7, - ACTIONS(4356), 1, + [48833] = 7, + ACTIONS(4360), 1, anon_sym_where, - ACTIONS(4549), 1, + ACTIONS(4591), 1, anon_sym_LBRACE, - ACTIONS(4555), 1, - anon_sym_PLUS, - ACTIONS(4713), 1, + ACTIONS(4725), 1, anon_sym_SEMI, - STATE(314), 1, + ACTIONS(4727), 1, + anon_sym_DASH_GT, + STATE(414), 1, sym_block, - STATE(2188), 1, + STATE(2230), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [48730] = 6, - ACTIONS(2880), 1, + [48856] = 6, + ACTIONS(844), 1, sym__primitive_identifier, - ACTIONS(3905), 1, + ACTIONS(3923), 1, anon_sym_LT2, - STATE(832), 1, + STATE(1554), 1, sym_identifier, - STATE(2630), 1, + STATE(2768), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2908), 2, + ACTIONS(904), 2, sym__raw_identifier, sym_grit_metavariable, - [48751] = 6, - ACTIONS(842), 1, + [48877] = 7, + ACTIONS(4360), 1, + anon_sym_where, + ACTIONS(4551), 1, + anon_sym_PLUS, + ACTIONS(4591), 1, + anon_sym_LBRACE, + ACTIONS(4729), 1, + anon_sym_SEMI, + STATE(375), 1, + sym_block, + STATE(2160), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [48900] = 6, + ACTIONS(3503), 1, sym__primitive_identifier, - ACTIONS(3905), 1, - anon_sym_LT2, - STATE(1607), 1, + ACTIONS(4731), 1, + anon_sym_ref, + ACTIONS(4733), 1, + sym_mutable_specifier, + STATE(2725), 1, sym_identifier, - STATE(2606), 1, - sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(902), 2, + ACTIONS(3505), 2, sym__raw_identifier, sym_grit_metavariable, - [48772] = 6, - ACTIONS(842), 1, + [48921] = 6, + ACTIONS(3503), 1, sym__primitive_identifier, - ACTIONS(3905), 1, - anon_sym_LT2, - STATE(1607), 1, + ACTIONS(4735), 1, + anon_sym_ref, + ACTIONS(4737), 1, + sym_mutable_specifier, + STATE(2690), 1, sym_identifier, - STATE(2630), 1, - sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(902), 2, + ACTIONS(3505), 2, sym__raw_identifier, sym_grit_metavariable, - [48793] = 7, - ACTIONS(4356), 1, + [48942] = 7, + ACTIONS(4360), 1, anon_sym_where, - ACTIONS(4358), 1, - anon_sym_LT, - ACTIONS(4607), 1, + ACTIONS(4561), 1, anon_sym_LBRACE, - STATE(530), 1, - sym_enum_variant_list, - STATE(2146), 1, - sym_type_parameters, - STATE(2408), 1, + ACTIONS(4739), 1, + anon_sym_SEMI, + ACTIONS(4741), 1, + anon_sym_DASH_GT, + STATE(866), 1, + sym_block, + STATE(2377), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [48816] = 6, - ACTIONS(2880), 1, + [48965] = 6, + ACTIONS(844), 1, sym__primitive_identifier, - ACTIONS(3905), 1, + ACTIONS(3923), 1, anon_sym_LT2, - STATE(832), 1, + STATE(1440), 1, sym_identifier, - STATE(2606), 1, + STATE(2760), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2908), 2, - sym__raw_identifier, - sym_grit_metavariable, - [48837] = 7, - ACTIONS(7), 1, - sym__primitive_identifier, - ACTIONS(97), 1, + ACTIONS(904), 2, sym__raw_identifier, - ACTIONS(4715), 1, - anon_sym_await, - ACTIONS(4717), 1, - sym_integer_literal, - ACTIONS(4719), 1, sym_grit_metavariable, - STATE(1124), 1, - sym_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [48860] = 7, - ACTIONS(4356), 1, + [48986] = 7, + ACTIONS(4360), 1, anon_sym_where, - ACTIONS(4549), 1, - anon_sym_LBRACE, - ACTIONS(4555), 1, + ACTIONS(4551), 1, anon_sym_PLUS, - ACTIONS(4721), 1, + ACTIONS(4561), 1, + anon_sym_LBRACE, + ACTIONS(4743), 1, anon_sym_SEMI, - STATE(493), 1, + STATE(927), 1, sym_block, - STATE(2158), 1, + STATE(2359), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [48883] = 7, - ACTIONS(4356), 1, + [49009] = 7, + ACTIONS(4360), 1, anon_sym_where, - ACTIONS(4549), 1, + ACTIONS(4372), 1, anon_sym_LBRACE, - ACTIONS(4723), 1, + ACTIONS(4551), 1, + anon_sym_PLUS, + ACTIONS(4745), 1, anon_sym_SEMI, - ACTIONS(4725), 1, - anon_sym_DASH_GT, - STATE(318), 1, - sym_block, - STATE(2181), 1, + STATE(449), 1, + sym_declaration_list, + STATE(2194), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [48906] = 7, - ACTIONS(4356), 1, - anon_sym_where, - ACTIONS(4549), 1, - anon_sym_LBRACE, - ACTIONS(4727), 1, - anon_sym_SEMI, - ACTIONS(4729), 1, - anon_sym_DASH_GT, - STATE(333), 1, - sym_block, - STATE(2217), 1, - sym_where_clause, + [49032] = 6, + ACTIONS(3991), 1, + anon_sym_PIPE, + ACTIONS(3993), 1, + anon_sym_COLON, + ACTIONS(3995), 1, + anon_sym_BANG, + ACTIONS(4220), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [48929] = 7, - ACTIONS(4344), 1, - anon_sym_LBRACE, - ACTIONS(4356), 1, + ACTIONS(3999), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [49053] = 7, + ACTIONS(4360), 1, anon_sym_where, - ACTIONS(4555), 1, + ACTIONS(4372), 1, + anon_sym_LBRACE, + ACTIONS(4551), 1, anon_sym_PLUS, - ACTIONS(4731), 1, + ACTIONS(4747), 1, anon_sym_SEMI, - STATE(367), 1, + STATE(446), 1, sym_declaration_list, - STATE(2234), 1, + STATE(2195), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [48952] = 7, - ACTIONS(4344), 1, - anon_sym_LBRACE, - ACTIONS(4356), 1, + [49076] = 7, + ACTIONS(4360), 1, anon_sym_where, - ACTIONS(4555), 1, + ACTIONS(4372), 1, + anon_sym_LBRACE, + ACTIONS(4551), 1, anon_sym_PLUS, - ACTIONS(4733), 1, + ACTIONS(4749), 1, anon_sym_SEMI, - STATE(365), 1, + STATE(396), 1, sym_declaration_list, - STATE(2233), 1, + STATE(2382), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [48975] = 7, - ACTIONS(4344), 1, - anon_sym_LBRACE, - ACTIONS(4356), 1, + [49099] = 7, + ACTIONS(4360), 1, anon_sym_where, - ACTIONS(4384), 1, - anon_sym_COLON, - STATE(335), 1, - sym_declaration_list, - STATE(2081), 1, - sym_trait_bounds, - STATE(2529), 1, + ACTIONS(4561), 1, + anon_sym_LBRACE, + ACTIONS(4751), 1, + anon_sym_SEMI, + ACTIONS(4753), 1, + anon_sym_DASH_GT, + STATE(1046), 1, + sym_block, + STATE(2220), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [48998] = 6, - ACTIONS(3523), 1, + [49122] = 6, + ACTIONS(844), 1, sym__primitive_identifier, - ACTIONS(4084), 1, - anon_sym_COLON_COLON, - ACTIONS(4437), 1, - anon_sym_BANG, - STATE(1764), 1, + ACTIONS(3923), 1, + anon_sym_LT2, + STATE(1435), 1, sym_identifier, + STATE(2760), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3525), 2, + ACTIONS(904), 2, sym__raw_identifier, sym_grit_metavariable, - [49019] = 6, - ACTIONS(3523), 1, + [49143] = 6, + ACTIONS(844), 1, sym__primitive_identifier, - ACTIONS(4735), 1, - anon_sym_ref, - ACTIONS(4737), 1, - sym_mutable_specifier, - STATE(2747), 1, + ACTIONS(3923), 1, + anon_sym_LT2, + STATE(1435), 1, sym_identifier, + STATE(2768), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3525), 2, + ACTIONS(904), 2, sym__raw_identifier, sym_grit_metavariable, - [49040] = 7, - ACTIONS(2834), 1, - anon_sym_PLUS, - ACTIONS(4384), 1, + [49164] = 5, + ACTIONS(4607), 1, anon_sym_COLON, - ACTIONS(4533), 1, - anon_sym_COMMA, - ACTIONS(4535), 1, - anon_sym_GT, - STATE(2251), 1, - aux_sym_type_parameters_repeat1, - STATE(2253), 1, - sym_trait_bounds, + ACTIONS(4755), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [49063] = 7, - ACTIONS(4356), 1, + ACTIONS(3921), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4605), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [49183] = 7, + ACTIONS(4360), 1, anon_sym_where, - ACTIONS(4549), 1, + ACTIONS(4384), 1, anon_sym_LBRACE, - ACTIONS(4739), 1, + ACTIONS(4551), 1, + anon_sym_PLUS, + ACTIONS(4757), 1, anon_sym_SEMI, - ACTIONS(4741), 1, - anon_sym_DASH_GT, - STATE(357), 1, - sym_block, - STATE(2226), 1, + STATE(1096), 1, + sym_declaration_list, + STATE(2233), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [49086] = 6, - ACTIONS(842), 1, - sym__primitive_identifier, - ACTIONS(3905), 1, + [49206] = 6, + ACTIONS(3923), 1, anon_sym_LT2, - STATE(1598), 1, - sym_identifier, - STATE(2606), 1, + ACTIONS(3933), 1, + anon_sym_LPAREN, + STATE(1467), 1, sym_type_arguments, + STATE(2191), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(902), 2, - sym__raw_identifier, - sym_grit_metavariable, - [49107] = 6, - ACTIONS(842), 1, - sym__primitive_identifier, - ACTIONS(3905), 1, + ACTIONS(3073), 2, + anon_sym_COLON, + anon_sym_PLUS, + [49227] = 6, + ACTIONS(3923), 1, anon_sym_LT2, - STATE(1598), 1, - sym_identifier, - STATE(2630), 1, + ACTIONS(3933), 1, + anon_sym_LPAREN, + STATE(1467), 1, sym_type_arguments, + STATE(2191), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(902), 2, - sym__raw_identifier, - sym_grit_metavariable, - [49128] = 5, - ACTIONS(4531), 1, - anon_sym_COLON_COLON, - ACTIONS(4575), 1, + ACTIONS(3077), 2, + anon_sym_COLON, + anon_sym_PLUS, + [49248] = 7, + ACTIONS(4360), 1, + anon_sym_where, + ACTIONS(4384), 1, + anon_sym_LBRACE, + ACTIONS(4417), 1, anon_sym_COLON, + STATE(1071), 1, + sym_declaration_list, + STATE(2106), 1, + sym_trait_bounds, + STATE(2602), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3903), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4573), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [49147] = 3, + [49271] = 7, + ACTIONS(4360), 1, + anon_sym_where, + ACTIONS(4384), 1, + anon_sym_LBRACE, + ACTIONS(4551), 1, + anon_sym_PLUS, + ACTIONS(4759), 1, + anon_sym_SEMI, + STATE(1064), 1, + sym_declaration_list, + STATE(2260), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [49294] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4153), 2, + ACTIONS(4270), 2, anon_sym_COMMA, anon_sym_PIPE, - ACTIONS(3255), 4, + ACTIONS(3170), 4, anon_sym_SEMI, anon_sym_RBRACK, anon_sym_PLUS, anon_sym_DASH_GT, - [49162] = 7, - ACTIONS(4356), 1, - anon_sym_where, - ACTIONS(4549), 1, - anon_sym_LBRACE, - ACTIONS(4743), 1, - anon_sym_SEMI, - ACTIONS(4745), 1, - anon_sym_DASH_GT, - STATE(350), 1, - sym_block, - STATE(2224), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [49185] = 6, - ACTIONS(842), 1, + [49309] = 6, + ACTIONS(3503), 1, sym__primitive_identifier, - ACTIONS(3905), 1, - anon_sym_LT2, - STATE(1552), 1, + ACTIONS(4761), 1, + anon_sym_ref, + ACTIONS(4763), 1, + sym_mutable_specifier, + STATE(2657), 1, sym_identifier, - STATE(2630), 1, - sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(902), 2, + ACTIONS(3505), 2, sym__raw_identifier, sym_grit_metavariable, - [49206] = 6, - ACTIONS(842), 1, - sym__primitive_identifier, - ACTIONS(3905), 1, - anon_sym_LT2, - STATE(1552), 1, - sym_identifier, - STATE(2606), 1, - sym_type_arguments, + [49330] = 4, + ACTIONS(4755), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(902), 2, - sym__raw_identifier, - sym_grit_metavariable, - [49227] = 6, - ACTIONS(7), 1, - sym__primitive_identifier, - ACTIONS(3005), 1, - anon_sym_LT2, - STATE(1042), 1, - sym_identifier, - STATE(1128), 1, - sym_type_arguments, + ACTIONS(3921), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3025), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [49347] = 7, + ACTIONS(4360), 1, + anon_sym_where, + ACTIONS(4362), 1, + anon_sym_LT, + ACTIONS(4689), 1, + anon_sym_LBRACE, + STATE(1057), 1, + sym_enum_variant_list, + STATE(2103), 1, + sym_type_parameters, + STATE(2576), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(97), 2, - sym__raw_identifier, - sym_grit_metavariable, - [49248] = 5, - ACTIONS(3523), 1, - sym__primitive_identifier, - ACTIONS(4747), 1, - sym_metavariable, - STATE(2085), 1, - sym_identifier, + [49370] = 4, + ACTIONS(4609), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3525), 2, - sym__raw_identifier, - sym_grit_metavariable, - [49266] = 2, + ACTIONS(3921), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3025), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [49387] = 7, + ACTIONS(4360), 1, + anon_sym_where, + ACTIONS(4384), 1, + anon_sym_LBRACE, + ACTIONS(4417), 1, + anon_sym_COLON, + STATE(841), 1, + sym_declaration_list, + STATE(2078), 1, + sym_trait_bounds, + STATE(2402), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4749), 5, + [49410] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4765), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [49278] = 5, - ACTIONS(4751), 1, - anon_sym_DQUOTE, - ACTIONS(4753), 1, - sym_escape_sequence, - ACTIONS(4755), 1, - sym__string_content, + [49422] = 4, + ACTIONS(4609), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1887), 2, - sym_string_content, - aux_sym_string_literal_repeat1, - [49296] = 5, - ACTIONS(3523), 1, - sym__primitive_identifier, - ACTIONS(4757), 1, - sym_metavariable, - STATE(2101), 1, - sym_identifier, + ACTIONS(3921), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4767), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [49438] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3525), 2, - sym__raw_identifier, - sym_grit_metavariable, - [49314] = 2, + ACTIONS(3241), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_where, + anon_sym_EQ, + [49450] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4759), 5, + ACTIONS(3192), 5, anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_where, + anon_sym_EQ, + [49462] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3235), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_where, + anon_sym_EQ, + [49474] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3269), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, anon_sym_where, anon_sym_EQ, + [49486] = 4, + ACTIONS(3399), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4222), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(4769), 2, + anon_sym_RPAREN, anon_sym_COMMA, - [49326] = 2, + [49502] = 6, + ACTIONS(2999), 1, + anon_sym_LPAREN, + ACTIONS(3923), 1, + anon_sym_LT2, + ACTIONS(3935), 1, + anon_sym_COLON_COLON, + STATE(1113), 1, + sym_parameters, + STATE(1469), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [49522] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4761), 5, + ACTIONS(3164), 5, anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_COLON, anon_sym_where, anon_sym_EQ, + [49534] = 6, + ACTIONS(4165), 1, + anon_sym_PIPE, + ACTIONS(4772), 1, + anon_sym_SEMI, + ACTIONS(4774), 1, + anon_sym_COLON, + ACTIONS(4776), 1, + anon_sym_EQ, + ACTIONS(4778), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [49554] = 4, + ACTIONS(3025), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3909), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(4780), 2, + anon_sym_RPAREN, anon_sym_COMMA, - [49338] = 5, - ACTIONS(4753), 1, + [49570] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4441), 5, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + [49582] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4222), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(3399), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [49596] = 4, + ACTIONS(4609), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3921), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4715), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [49612] = 5, + ACTIONS(4783), 1, + anon_sym_DQUOTE, + ACTIONS(4785), 1, sym_escape_sequence, - ACTIONS(4755), 1, + ACTIONS(4787), 1, sym__string_content, - ACTIONS(4763), 1, - anon_sym_DQUOTE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1887), 2, + STATE(1958), 2, sym_string_content, aux_sym_string_literal_repeat1, - [49356] = 5, - ACTIONS(3523), 1, + [49630] = 5, + ACTIONS(3503), 1, sym__primitive_identifier, - ACTIONS(4765), 1, + ACTIONS(4789), 1, sym_metavariable, - STATE(2100), 1, + STATE(2063), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3525), 2, + ACTIONS(3505), 2, sym__raw_identifier, sym_grit_metavariable, - [49374] = 5, - ACTIONS(4767), 1, - anon_sym_DQUOTE, - ACTIONS(4769), 1, - sym_escape_sequence, - ACTIONS(4772), 1, - sym__string_content, + [49648] = 6, + ACTIONS(4417), 1, + anon_sym_COLON, + ACTIONS(4791), 1, + anon_sym_COMMA, + ACTIONS(4793), 1, + anon_sym_GT, + STATE(2229), 1, + aux_sym_type_parameters_repeat1, + STATE(2378), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1887), 2, - sym_string_content, - aux_sym_string_literal_repeat1, - [49392] = 6, - ACTIONS(2997), 1, - anon_sym_LPAREN, - ACTIONS(3905), 1, - anon_sym_LT2, - ACTIONS(3917), 1, - anon_sym_COLON_COLON, - STATE(1141), 1, - sym_parameters, - STATE(1465), 1, - sym_type_arguments, + [49668] = 5, + ACTIONS(4024), 1, + anon_sym_RPAREN, + ACTIONS(4026), 1, + anon_sym_COMMA, + STATE(2292), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [49412] = 6, - ACTIONS(4266), 1, - anon_sym_PIPE, - ACTIONS(4775), 1, - anon_sym_SEMI, - ACTIONS(4777), 1, + ACTIONS(3909), 2, anon_sym_COLON, - ACTIONS(4779), 1, - anon_sym_EQ, - ACTIONS(4781), 1, - anon_sym_else, + anon_sym_PIPE, + [49686] = 5, + ACTIONS(4052), 1, + anon_sym_RPAREN, + ACTIONS(4054), 1, + anon_sym_COMMA, + STATE(2291), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [49432] = 2, + ACTIONS(3909), 2, + anon_sym_COLON, + anon_sym_PIPE, + [49704] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4783), 5, + ACTIONS(4795), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [49444] = 6, - ACTIONS(4785), 1, + [49716] = 6, + ACTIONS(4797), 1, anon_sym_SEMI, - ACTIONS(4787), 1, + ACTIONS(4799), 1, anon_sym_COLON, - ACTIONS(4789), 1, + ACTIONS(4801), 1, anon_sym_EQ, - ACTIONS(4791), 1, + ACTIONS(4803), 1, anon_sym_else, - ACTIONS(4793), 1, + ACTIONS(4805), 1, anon_sym_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [49464] = 4, - ACTIONS(3527), 1, - anon_sym_PLUS, + [49736] = 3, + ACTIONS(4807), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4131), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(4795), 2, - anon_sym_RPAREN, + ACTIONS(3182), 4, + anon_sym_PLUS, anon_sym_COMMA, - [49480] = 5, - ACTIONS(3523), 1, + anon_sym_GT, + anon_sym_COLON_COLON, + [49750] = 5, + ACTIONS(3503), 1, sym__primitive_identifier, - ACTIONS(4798), 1, - sym_metavariable, - STATE(1990), 1, + ACTIONS(4809), 1, + sym_mutable_specifier, + STATE(2735), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3525), 2, + ACTIONS(3505), 2, sym__raw_identifier, sym_grit_metavariable, - [49498] = 6, - ACTIONS(4266), 1, - anon_sym_PIPE, - ACTIONS(4800), 1, + [49768] = 5, + ACTIONS(1038), 1, + anon_sym_COLON, + ACTIONS(3194), 1, + sym__primitive_identifier, + ACTIONS(4811), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3199), 2, + sym__raw_identifier, + sym_grit_metavariable, + [49786] = 6, + ACTIONS(3923), 1, + anon_sym_LT2, + ACTIONS(3933), 1, + anon_sym_LPAREN, + ACTIONS(3935), 1, + anon_sym_COLON_COLON, + STATE(1469), 1, + sym_type_arguments, + STATE(2177), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [49806] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3245), 5, anon_sym_SEMI, - ACTIONS(4802), 1, + anon_sym_LBRACE, anon_sym_COLON, - ACTIONS(4804), 1, + anon_sym_where, anon_sym_EQ, - ACTIONS(4806), 1, - anon_sym_else, + [49818] = 5, + ACTIONS(4060), 1, + anon_sym_RPAREN, + ACTIONS(4062), 1, + anon_sym_COMMA, + STATE(2356), 1, + aux_sym_parameters_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3909), 2, + anon_sym_COLON, + anon_sym_PIPE, + [49836] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4813), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + [49848] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [49518] = 5, - ACTIONS(3523), 1, + ACTIONS(4815), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + [49860] = 5, + ACTIONS(1038), 1, + anon_sym_COLON, + ACTIONS(3194), 1, sym__primitive_identifier, - ACTIONS(4808), 1, - sym_mutable_specifier, - STATE(2716), 1, - sym_identifier, + ACTIONS(4817), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3525), 2, + ACTIONS(3199), 2, sym__raw_identifier, sym_grit_metavariable, - [49536] = 2, + [49878] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4810), 5, + ACTIONS(4819), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [49548] = 5, - ACTIONS(4753), 1, - sym_escape_sequence, - ACTIONS(4755), 1, - sym__string_content, - ACTIONS(4812), 1, - anon_sym_DQUOTE, + [49890] = 5, + ACTIONS(4066), 1, + anon_sym_EQ, + ACTIONS(4417), 1, + anon_sym_COLON, + STATE(2376), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1887), 2, - sym_string_content, - aux_sym_string_literal_repeat1, - [49566] = 6, - ACTIONS(4384), 1, - anon_sym_COLON, - ACTIONS(4814), 1, + ACTIONS(4821), 2, anon_sym_COMMA, - ACTIONS(4816), 1, anon_sym_GT, - STATE(2225), 1, - aux_sym_type_parameters_repeat1, - STATE(2253), 1, - sym_trait_bounds, + [49908] = 5, + ACTIONS(4787), 1, + sym__string_content, + ACTIONS(4823), 1, + anon_sym_DQUOTE, + ACTIONS(4825), 1, + sym_escape_sequence, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [49586] = 2, + STATE(1897), 2, + sym_string_content, + aux_sym_string_literal_repeat1, + [49926] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4818), 5, + ACTIONS(4827), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [49598] = 5, - ACTIONS(4755), 1, + [49938] = 5, + ACTIONS(3503), 1, + sym__primitive_identifier, + ACTIONS(4829), 1, + sym_mutable_specifier, + STATE(2225), 1, + sym_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3505), 2, + sym__raw_identifier, + sym_grit_metavariable, + [49956] = 5, + ACTIONS(4787), 1, sym__string_content, - ACTIONS(4820), 1, + ACTIONS(4831), 1, anon_sym_DQUOTE, - ACTIONS(4822), 1, + ACTIONS(4833), 1, sym_escape_sequence, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1885), 2, + STATE(1928), 2, sym_string_content, aux_sym_string_literal_repeat1, - [49616] = 4, - ACTIONS(4571), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3903), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4824), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [49632] = 5, - ACTIONS(4755), 1, + [49974] = 5, + ACTIONS(4787), 1, sym__string_content, - ACTIONS(4826), 1, + ACTIONS(4835), 1, anon_sym_DQUOTE, - ACTIONS(4828), 1, + ACTIONS(4837), 1, sym_escape_sequence, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1897), 2, + STATE(1950), 2, sym_string_content, aux_sym_string_literal_repeat1, - [49650] = 5, - ACTIONS(4042), 1, - anon_sym_RPAREN, - ACTIONS(4044), 1, - anon_sym_COMMA, - STATE(2318), 1, - aux_sym_parameters_repeat1, + [49992] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3891), 2, - anon_sym_COLON, - anon_sym_PIPE, - [49668] = 5, - ACTIONS(4034), 1, - anon_sym_RPAREN, - ACTIONS(4036), 1, + ACTIONS(4839), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - STATE(2288), 1, - aux_sym_parameters_repeat1, + [50004] = 5, + ACTIONS(3503), 1, + sym__primitive_identifier, + ACTIONS(4841), 1, + sym_mutable_specifier, + STATE(2720), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3891), 2, - anon_sym_COLON, - anon_sym_PIPE, - [49686] = 4, - ACTIONS(4571), 1, - anon_sym_COLON_COLON, + ACTIONS(3505), 2, + sym__raw_identifier, + sym_grit_metavariable, + [50022] = 5, + ACTIONS(3503), 1, + sym__primitive_identifier, + ACTIONS(4843), 1, + sym_metavariable, + STATE(1966), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3903), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4707), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [49702] = 4, - ACTIONS(4832), 1, - anon_sym_as, - ACTIONS(4834), 1, - anon_sym_COLON_COLON, + ACTIONS(3505), 2, + sym__raw_identifier, + sym_grit_metavariable, + [50040] = 5, + ACTIONS(3503), 1, + sym__primitive_identifier, + ACTIONS(4845), 1, + sym_metavariable, + STATE(1987), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4830), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [49718] = 6, - ACTIONS(4793), 1, - anon_sym_PIPE, - ACTIONS(4836), 1, - anon_sym_SEMI, - ACTIONS(4838), 1, - anon_sym_COLON, - ACTIONS(4840), 1, - anon_sym_EQ, - ACTIONS(4842), 1, - anon_sym_else, + ACTIONS(3505), 2, + sym__raw_identifier, + sym_grit_metavariable, + [50058] = 5, + ACTIONS(3503), 1, + sym__primitive_identifier, + ACTIONS(4847), 1, + sym_metavariable, + STATE(1988), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [49738] = 4, - ACTIONS(4832), 1, - anon_sym_as, - ACTIONS(4844), 1, - anon_sym_COLON_COLON, + ACTIONS(3505), 2, + sym__raw_identifier, + sym_grit_metavariable, + [50076] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4830), 3, + ACTIONS(4849), 5, anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + [50088] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3909), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(3025), 3, + anon_sym_RPAREN, + anon_sym_PLUS, anon_sym_COMMA, - [49754] = 5, - ACTIONS(3523), 1, + [50102] = 5, + ACTIONS(3503), 1, sym__primitive_identifier, - ACTIONS(4846), 1, - sym_mutable_specifier, - STATE(2731), 1, + ACTIONS(4851), 1, + sym_metavariable, + STATE(2008), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3525), 2, + ACTIONS(3505), 2, sym__raw_identifier, sym_grit_metavariable, - [49772] = 2, + [50120] = 5, + ACTIONS(4785), 1, + sym_escape_sequence, + ACTIONS(4787), 1, + sym__string_content, + ACTIONS(4853), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1958), 2, + sym_string_content, + aux_sym_string_literal_repeat1, + [50138] = 5, + ACTIONS(4018), 1, + anon_sym_RPAREN, + ACTIONS(4020), 1, + anon_sym_COMMA, + STATE(2187), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4848), 5, + ACTIONS(3909), 2, + anon_sym_COLON, + anon_sym_PIPE, + [50156] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4855), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [49784] = 2, + [50168] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4850), 5, + ACTIONS(4857), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [49796] = 2, + [50180] = 6, + ACTIONS(4417), 1, + anon_sym_COLON, + ACTIONS(4669), 1, + anon_sym_COMMA, + ACTIONS(4671), 1, + anon_sym_GT, + STATE(2378), 1, + sym_trait_bounds, + STATE(2387), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [50200] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4852), 5, + ACTIONS(4859), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [49808] = 6, - ACTIONS(3905), 1, + [50212] = 6, + ACTIONS(3923), 1, anon_sym_LT2, - ACTIONS(3915), 1, - anon_sym_LPAREN, - ACTIONS(3917), 1, + ACTIONS(3935), 1, anon_sym_COLON_COLON, - STATE(1465), 1, + ACTIONS(4064), 1, + anon_sym_COLON, + STATE(1469), 1, sym_type_arguments, - STATE(2175), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [49828] = 3, + STATE(2180), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3891), 2, - anon_sym_COLON, + [50232] = 6, + ACTIONS(4805), 1, anon_sym_PIPE, - ACTIONS(3051), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [49842] = 4, - ACTIONS(4832), 1, - anon_sym_as, - ACTIONS(4854), 1, - anon_sym_COLON_COLON, + ACTIONS(4861), 1, + anon_sym_SEMI, + ACTIONS(4863), 1, + anon_sym_COLON, + ACTIONS(4865), 1, + anon_sym_EQ, + ACTIONS(4867), 1, + anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4830), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [49858] = 6, - ACTIONS(3905), 1, - anon_sym_LT2, - ACTIONS(3915), 1, - anon_sym_LPAREN, - ACTIONS(3917), 1, - anon_sym_COLON_COLON, - STATE(1465), 1, - sym_type_arguments, - STATE(1527), 1, - sym_parameters, + [50252] = 5, + ACTIONS(4787), 1, + sym__string_content, + ACTIONS(4869), 1, + anon_sym_DQUOTE, + ACTIONS(4871), 1, + sym_escape_sequence, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [49878] = 5, - ACTIONS(3523), 1, + STATE(1938), 2, + sym_string_content, + aux_sym_string_literal_repeat1, + [50270] = 5, + ACTIONS(3503), 1, sym__primitive_identifier, - ACTIONS(4856), 1, - sym_metavariable, - STATE(2117), 1, + ACTIONS(4873), 1, + sym_mutable_specifier, + STATE(2634), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3525), 2, + ACTIONS(3505), 2, sym__raw_identifier, sym_grit_metavariable, - [49896] = 5, - ACTIONS(3523), 1, + [50288] = 5, + ACTIONS(4785), 1, + sym_escape_sequence, + ACTIONS(4787), 1, + sym__string_content, + ACTIONS(4875), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1958), 2, + sym_string_content, + aux_sym_string_literal_repeat1, + [50306] = 5, + ACTIONS(3503), 1, sym__primitive_identifier, - ACTIONS(4858), 1, - sym_mutable_specifier, - STATE(2755), 1, + ACTIONS(4877), 1, + sym_metavariable, + STATE(2130), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3525), 2, + ACTIONS(3505), 2, sym__raw_identifier, sym_grit_metavariable, - [49914] = 4, - ACTIONS(4862), 1, + [50324] = 4, + ACTIONS(4881), 1, anon_sym_as, - ACTIONS(4864), 1, + ACTIONS(4883), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4860), 3, + ACTIONS(4879), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [49930] = 5, - ACTIONS(1040), 1, - anon_sym_COLON, - ACTIONS(3196), 1, - sym__primitive_identifier, - ACTIONS(4866), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3201), 2, - sym__raw_identifier, - sym_grit_metavariable, - [49948] = 2, + [50340] = 4, + ACTIONS(4887), 1, + anon_sym_as, + ACTIONS(4889), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4405), 5, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + ACTIONS(4885), 3, + anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_LBRACK, - [49960] = 5, - ACTIONS(3523), 1, - sym__primitive_identifier, - ACTIONS(4868), 1, - sym_mutable_specifier, - STATE(2354), 1, - sym_identifier, + anon_sym_COMMA, + [50356] = 4, + ACTIONS(4755), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3525), 2, - sym__raw_identifier, - sym_grit_metavariable, - [49978] = 5, - ACTIONS(4038), 1, + ACTIONS(3921), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4767), 2, anon_sym_RPAREN, - ACTIONS(4040), 1, anon_sym_COMMA, - STATE(2352), 1, - aux_sym_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3891), 2, - anon_sym_COLON, - anon_sym_PIPE, - [49996] = 4, - ACTIONS(4795), 1, + [50372] = 4, + ACTIONS(4769), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3527), 2, + ACTIONS(3399), 2, anon_sym_SEMI, anon_sym_PLUS, - ACTIONS(4131), 2, + ACTIONS(4222), 2, anon_sym_COMMA, anon_sym_PIPE, - [50012] = 4, - ACTIONS(3051), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3891), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(4870), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [50028] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3279), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_where, - anon_sym_EQ, - [50040] = 5, - ACTIONS(3523), 1, - sym__primitive_identifier, - ACTIONS(4873), 1, - sym_metavariable, - STATE(2116), 1, - sym_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3525), 2, - sym__raw_identifier, - sym_grit_metavariable, - [50058] = 2, + [50388] = 4, + ACTIONS(4887), 1, + anon_sym_as, + ACTIONS(4891), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4875), 5, + ACTIONS(4885), 3, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, anon_sym_COMMA, - [50070] = 5, - ACTIONS(3523), 1, + [50404] = 5, + ACTIONS(3503), 1, sym__primitive_identifier, - ACTIONS(4877), 1, + ACTIONS(4893), 1, sym_mutable_specifier, - STATE(2687), 1, + STATE(2681), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3525), 2, + ACTIONS(3505), 2, sym__raw_identifier, sym_grit_metavariable, - [50088] = 4, - ACTIONS(4870), 1, + [50422] = 4, + ACTIONS(4780), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3025), 2, anon_sym_SEMI, anon_sym_PLUS, - ACTIONS(3891), 2, + ACTIONS(3909), 2, anon_sym_COMMA, anon_sym_PIPE, - [50104] = 5, - ACTIONS(4753), 1, - sym_escape_sequence, - ACTIONS(4755), 1, - sym__string_content, - ACTIONS(4879), 1, - anon_sym_DQUOTE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1887), 2, - sym_string_content, - aux_sym_string_literal_repeat1, - [50122] = 2, + [50438] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4881), 5, + ACTIONS(4895), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [50134] = 2, + [50450] = 6, + ACTIONS(3923), 1, + anon_sym_LT2, + ACTIONS(3933), 1, + anon_sym_LPAREN, + ACTIONS(3935), 1, + anon_sym_COLON_COLON, + STATE(1469), 1, + sym_type_arguments, + STATE(1517), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3158), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_where, - anon_sym_EQ, - [50146] = 2, + [50470] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4883), 5, + ACTIONS(4897), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [50158] = 6, - ACTIONS(4384), 1, + [50482] = 5, + ACTIONS(4785), 1, + sym_escape_sequence, + ACTIONS(4787), 1, + sym__string_content, + ACTIONS(4899), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1958), 2, + sym_string_content, + aux_sym_string_literal_repeat1, + [50500] = 6, + ACTIONS(4165), 1, + anon_sym_PIPE, + ACTIONS(4901), 1, + anon_sym_SEMI, + ACTIONS(4903), 1, anon_sym_COLON, - ACTIONS(4533), 1, - anon_sym_COMMA, - ACTIONS(4535), 1, - anon_sym_GT, - STATE(2251), 1, - aux_sym_type_parameters_repeat1, - STATE(2253), 1, - sym_trait_bounds, + ACTIONS(4905), 1, + anon_sym_EQ, + ACTIONS(4907), 1, + anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50178] = 2, + [50520] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4885), 5, + ACTIONS(4909), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [50190] = 3, - ACTIONS(4887), 1, - anon_sym_EQ, + [50532] = 4, + ACTIONS(4755), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3132), 4, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_COLON_COLON, - [50204] = 5, - ACTIONS(4024), 1, + ACTIONS(3921), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4715), 2, anon_sym_RPAREN, - ACTIONS(4026), 1, anon_sym_COMMA, - STATE(2274), 1, - aux_sym_parameters_repeat1, + [50548] = 5, + ACTIONS(3503), 1, + sym__primitive_identifier, + ACTIONS(4911), 1, + sym_metavariable, + STATE(2013), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3891), 2, - anon_sym_COLON, + ACTIONS(3505), 2, + sym__raw_identifier, + sym_grit_metavariable, + [50566] = 6, + ACTIONS(4805), 1, anon_sym_PIPE, - [50222] = 4, - ACTIONS(4531), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3903), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4824), 2, + ACTIONS(4913), 1, anon_sym_RPAREN, + ACTIONS(4915), 1, + anon_sym_COLON, + ACTIONS(4917), 1, anon_sym_COMMA, - [50238] = 5, - ACTIONS(4755), 1, - sym__string_content, - ACTIONS(4889), 1, - anon_sym_DQUOTE, - ACTIONS(4891), 1, - sym_escape_sequence, + STATE(2221), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1931), 2, - sym_string_content, - aux_sym_string_literal_repeat1, - [50256] = 2, + [50586] = 4, + ACTIONS(4887), 1, + anon_sym_as, + ACTIONS(4919), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3154), 5, + ACTIONS(4885), 3, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_where, - anon_sym_EQ, - [50268] = 5, - ACTIONS(4018), 1, - anon_sym_EQ, - ACTIONS(4384), 1, - anon_sym_COLON, - STATE(2255), 1, - sym_trait_bounds, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4893), 2, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_GT, - [50286] = 5, - ACTIONS(3523), 1, + [50602] = 5, + ACTIONS(3503), 1, sym__primitive_identifier, - ACTIONS(4895), 1, + ACTIONS(4921), 1, sym_metavariable, - STATE(2066), 1, + STATE(2018), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3525), 2, + ACTIONS(3505), 2, sym__raw_identifier, sym_grit_metavariable, - [50304] = 2, + [50620] = 5, + ACTIONS(4923), 1, + anon_sym_DQUOTE, + ACTIONS(4925), 1, + sym_escape_sequence, + ACTIONS(4928), 1, + sym__string_content, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3115), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_where, - anon_sym_EQ, - [50316] = 2, + STATE(1958), 2, + sym_string_content, + aux_sym_string_literal_repeat1, + [50638] = 4, + ACTIONS(3503), 1, + sym__primitive_identifier, + STATE(1673), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3119), 5, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(3505), 2, + sym__raw_identifier, + sym_grit_metavariable, + [50653] = 4, + ACTIONS(3503), 1, + sym__primitive_identifier, + STATE(1471), 1, + sym_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3505), 2, + sym__raw_identifier, + sym_grit_metavariable, + [50668] = 4, + ACTIONS(4607), 1, anon_sym_COLON, - anon_sym_where, - anon_sym_EQ, - [50328] = 4, - ACTIONS(4531), 1, + ACTIONS(4719), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3903), 2, + ACTIONS(3921), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4707), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [50344] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4131), 2, + [50683] = 5, + ACTIONS(4915), 1, anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(3527), 3, - anon_sym_RPAREN, - anon_sym_PLUS, + ACTIONS(4931), 1, anon_sym_COMMA, - [50358] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3293), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_where, - anon_sym_EQ, - [50370] = 6, - ACTIONS(4793), 1, + ACTIONS(4933), 1, anon_sym_PIPE, - ACTIONS(4897), 1, - anon_sym_RPAREN, - ACTIONS(4899), 1, - anon_sym_COLON, - ACTIONS(4901), 1, - anon_sym_COMMA, - STATE(2349), 1, - aux_sym_tuple_pattern_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [50390] = 5, - ACTIONS(1040), 1, - anon_sym_COLON, - ACTIONS(3196), 1, - sym__primitive_identifier, - ACTIONS(4903), 1, - anon_sym_RBRACE, + STATE(2303), 1, + aux_sym_closure_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3201), 2, - sym__raw_identifier, - sym_grit_metavariable, - [50408] = 2, - ACTIONS(3), 2, + [50700] = 4, + ACTIONS(3), 1, sym_block_comment, + ACTIONS(1112), 1, sym_line_comment, - ACTIONS(4905), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - [50420] = 5, - ACTIONS(3523), 1, + ACTIONS(4935), 1, + aux_sym_token_repetition_pattern_token1, + ACTIONS(4937), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [50715] = 4, + ACTIONS(7), 1, sym__primitive_identifier, - ACTIONS(4907), 1, - sym_metavariable, - STATE(2056), 1, + STATE(942), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3525), 2, + ACTIONS(97), 2, sym__raw_identifier, sym_grit_metavariable, - [50438] = 5, - ACTIONS(4755), 1, - sym__string_content, - ACTIONS(4909), 1, - anon_sym_DQUOTE, - ACTIONS(4911), 1, - sym_escape_sequence, + [50730] = 5, + ACTIONS(4360), 1, + anon_sym_where, + ACTIONS(4372), 1, + anon_sym_LBRACE, + STATE(496), 1, + sym_declaration_list, + STATE(2423), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1881), 2, - sym_string_content, - aux_sym_string_literal_repeat1, - [50456] = 6, - ACTIONS(3905), 1, - anon_sym_LT2, - ACTIONS(3917), 1, - anon_sym_COLON_COLON, - ACTIONS(4016), 1, - anon_sym_COLON, - STATE(1465), 1, - sym_type_arguments, - STATE(2311), 1, - sym_trait_bounds, + [50747] = 5, + ACTIONS(3933), 1, + anon_sym_LPAREN, + ACTIONS(4362), 1, + anon_sym_LT, + STATE(1761), 1, + sym_parameters, + STATE(2536), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50476] = 4, - ACTIONS(7), 1, + [50764] = 4, + ACTIONS(3503), 1, sym__primitive_identifier, - STATE(2344), 1, + STATE(1782), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(97), 2, + ACTIONS(3505), 2, sym__raw_identifier, sym_grit_metavariable, - [50491] = 4, - ACTIONS(3523), 1, + [50779] = 4, + ACTIONS(7), 1, sym__primitive_identifier, - STATE(1777), 1, + STATE(2313), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3525), 2, + ACTIONS(97), 2, sym__raw_identifier, sym_grit_metavariable, - [50506] = 4, + [50794] = 4, ACTIONS(7), 1, sym__primitive_identifier, - STATE(1709), 1, + STATE(2679), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, @@ -133121,55 +133512,54 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(97), 2, sym__raw_identifier, sym_grit_metavariable, - [50521] = 4, - ACTIONS(2880), 1, + [50809] = 4, + ACTIONS(3503), 1, sym__primitive_identifier, - STATE(831), 1, + STATE(1661), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2908), 2, + ACTIONS(3505), 2, sym__raw_identifier, sym_grit_metavariable, - [50536] = 4, - ACTIONS(3523), 1, + [50824] = 4, + ACTIONS(3503), 1, sym__primitive_identifier, - STATE(1680), 1, + STATE(1700), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3525), 2, + ACTIONS(3505), 2, sym__raw_identifier, sym_grit_metavariable, - [50551] = 5, - ACTIONS(4913), 1, - anon_sym_LPAREN, - ACTIONS(4915), 1, - anon_sym_LBRACE, - ACTIONS(4917), 1, - anon_sym_LBRACK, - STATE(1447), 1, - sym_delim_token_tree, + [50839] = 4, + ACTIONS(3503), 1, + sym__primitive_identifier, + STATE(2320), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50568] = 4, - ACTIONS(7), 1, + ACTIONS(3505), 2, + sym__raw_identifier, + sym_grit_metavariable, + [50854] = 4, + ACTIONS(3503), 1, sym__primitive_identifier, - STATE(1145), 1, + STATE(1837), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(97), 2, + ACTIONS(3505), 2, sym__raw_identifier, sym_grit_metavariable, - [50583] = 4, + [50869] = 4, ACTIONS(7), 1, sym__primitive_identifier, - STATE(2542), 1, + STATE(1074), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, @@ -133177,10 +133567,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(97), 2, sym__raw_identifier, sym_grit_metavariable, - [50598] = 4, + [50884] = 4, ACTIONS(7), 1, sym__primitive_identifier, - STATE(1441), 1, + STATE(1102), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, @@ -133188,201 +133578,252 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(97), 2, sym__raw_identifier, sym_grit_metavariable, - [50613] = 5, - ACTIONS(4793), 1, - anon_sym_PIPE, - ACTIONS(4919), 1, - anon_sym_RPAREN, - ACTIONS(4921), 1, - anon_sym_COMMA, - STATE(2211), 1, - aux_sym_tuple_pattern_repeat1, + [50899] = 5, + ACTIONS(4939), 1, + anon_sym_LPAREN, + ACTIONS(4941), 1, + anon_sym_LBRACE, + ACTIONS(4943), 1, + anon_sym_LBRACK, + STATE(104), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50630] = 4, - ACTIONS(842), 1, - sym__primitive_identifier, - STATE(1595), 1, - sym_identifier, + [50916] = 5, + ACTIONS(4360), 1, + anon_sym_where, + ACTIONS(4599), 1, + anon_sym_LBRACE, + STATE(522), 1, + sym_enum_variant_list, + STATE(2448), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(902), 2, - sym__raw_identifier, - sym_grit_metavariable, - [50645] = 4, - ACTIONS(3523), 1, - sym__primitive_identifier, - STATE(2719), 1, - sym_identifier, + [50933] = 5, + ACTIONS(4551), 1, + anon_sym_PLUS, + ACTIONS(4945), 1, + anon_sym_RPAREN, + ACTIONS(4947), 1, + anon_sym_COMMA, + STATE(2197), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3525), 2, - sym__raw_identifier, - sym_grit_metavariable, - [50660] = 5, - ACTIONS(4555), 1, - anon_sym_PLUS, - ACTIONS(4923), 1, - anon_sym_SEMI, - ACTIONS(4925), 1, - anon_sym_EQ, - ACTIONS(4927), 1, - anon_sym_else, + [50950] = 5, + ACTIONS(4805), 1, + anon_sym_PIPE, + ACTIONS(4949), 1, + anon_sym_RPAREN, + ACTIONS(4951), 1, + anon_sym_COMMA, + STATE(2360), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50677] = 4, - ACTIONS(3), 1, + [50967] = 5, + ACTIONS(4805), 1, + anon_sym_PIPE, + ACTIONS(4953), 1, + anon_sym_RBRACK, + ACTIONS(4955), 1, + anon_sym_COMMA, + STATE(2365), 1, + aux_sym_tuple_pattern_repeat1, + ACTIONS(3), 2, sym_block_comment, - ACTIONS(1172), 1, sym_line_comment, - ACTIONS(4929), 1, - aux_sym_token_repetition_pattern_token1, - ACTIONS(4931), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [50692] = 3, + [50984] = 4, + ACTIONS(844), 1, + sym__primitive_identifier, + STATE(1436), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3891), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(4933), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [50705] = 4, - ACTIONS(7), 1, + ACTIONS(904), 2, + sym__raw_identifier, + sym_grit_metavariable, + [50999] = 4, + ACTIONS(844), 1, sym__primitive_identifier, - STATE(2169), 1, + STATE(1440), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(97), 2, + ACTIONS(904), 2, sym__raw_identifier, sym_grit_metavariable, - [50720] = 4, - ACTIONS(3523), 1, + [51014] = 4, + ACTIONS(844), 1, sym__primitive_identifier, - STATE(2341), 1, + STATE(1459), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3525), 2, + ACTIONS(904), 2, sym__raw_identifier, sym_grit_metavariable, - [50735] = 4, - ACTIONS(3523), 1, + [51029] = 4, + ACTIONS(844), 1, sym__primitive_identifier, - STATE(1660), 1, + STATE(1438), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3525), 2, + ACTIONS(904), 2, sym__raw_identifier, sym_grit_metavariable, - [50750] = 4, - ACTIONS(842), 1, + [51044] = 4, + ACTIONS(7), 1, sym__primitive_identifier, - STATE(1524), 1, + STATE(2560), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(902), 2, + ACTIONS(97), 2, sym__raw_identifier, sym_grit_metavariable, - [50765] = 4, - ACTIONS(3523), 1, + [51059] = 4, + ACTIONS(3503), 1, sym__primitive_identifier, - STATE(1688), 1, + STATE(1699), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3525), 2, + ACTIONS(3505), 2, sym__raw_identifier, sym_grit_metavariable, - [50780] = 4, - ACTIONS(4384), 1, - anon_sym_COLON, - STATE(2253), 1, - sym_trait_bounds, + [51074] = 5, + ACTIONS(3933), 1, + anon_sym_LPAREN, + ACTIONS(4362), 1, + anon_sym_LT, + STATE(1803), 1, + sym_parameters, + STATE(2581), 1, + sym_type_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [51091] = 5, + ACTIONS(3933), 1, + anon_sym_LPAREN, + ACTIONS(4362), 1, + anon_sym_LT, + STATE(1793), 1, + sym_parameters, + STATE(2584), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4935), 2, + [51108] = 5, + ACTIONS(4551), 1, + anon_sym_PLUS, + ACTIONS(4957), 1, + anon_sym_RPAREN, + ACTIONS(4959), 1, anon_sym_COMMA, - anon_sym_GT, - [50795] = 5, - ACTIONS(4344), 1, - anon_sym_LBRACE, - ACTIONS(4356), 1, - anon_sym_where, - STATE(449), 1, - sym_declaration_list, - STATE(2462), 1, - sym_where_clause, + STATE(2391), 1, + aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50812] = 5, - ACTIONS(4814), 1, + [51125] = 5, + ACTIONS(4669), 1, anon_sym_COMMA, - ACTIONS(4816), 1, + ACTIONS(4671), 1, anon_sym_GT, - ACTIONS(4937), 1, + ACTIONS(4961), 1, anon_sym_EQ, - STATE(2225), 1, + STATE(2387), 1, aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50829] = 5, - ACTIONS(4340), 1, - anon_sym_LBRACE, - ACTIONS(4356), 1, + [51142] = 5, + ACTIONS(3923), 1, + anon_sym_LT2, + ACTIONS(3933), 1, + anon_sym_LPAREN, + STATE(1467), 1, + sym_type_arguments, + STATE(1490), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [51159] = 4, + ACTIONS(3503), 1, + sym__primitive_identifier, + STATE(2719), 1, + sym_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3505), 2, + sym__raw_identifier, + sym_grit_metavariable, + [51174] = 5, + ACTIONS(4360), 1, anon_sym_where, - STATE(990), 1, + ACTIONS(4372), 1, + anon_sym_LBRACE, + STATE(483), 1, sym_declaration_list, - STATE(2406), 1, + STATE(2533), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50846] = 4, - ACTIONS(3523), 1, + [51191] = 4, + ACTIONS(3503), 1, sym__primitive_identifier, - STATE(1687), 1, + STATE(1798), 1, + sym_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3505), 2, + sym__raw_identifier, + sym_grit_metavariable, + [51206] = 4, + ACTIONS(3503), 1, + sym__primitive_identifier, + STATE(1685), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3525), 2, + ACTIONS(3505), 2, sym__raw_identifier, sym_grit_metavariable, - [50861] = 4, - ACTIONS(3523), 1, + [51221] = 4, + ACTIONS(3503), 1, sym__primitive_identifier, - STATE(1768), 1, + STATE(1660), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3525), 2, + ACTIONS(3505), 2, sym__raw_identifier, sym_grit_metavariable, - [50876] = 4, + [51236] = 4, ACTIONS(7), 1, sym__primitive_identifier, - STATE(2356), 1, + STATE(2188), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, @@ -133390,66 +133831,88 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(97), 2, sym__raw_identifier, sym_grit_metavariable, - [50891] = 4, - ACTIONS(3523), 1, + [51251] = 4, + ACTIONS(3503), 1, sym__primitive_identifier, - STATE(1673), 1, + STATE(1880), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3525), 2, + ACTIONS(3505), 2, sym__raw_identifier, sym_grit_metavariable, - [50906] = 4, - ACTIONS(3523), 1, + [51266] = 4, + ACTIONS(7), 1, sym__primitive_identifier, - STATE(1698), 1, + STATE(2440), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3525), 2, + ACTIONS(97), 2, sym__raw_identifier, sym_grit_metavariable, - [50921] = 5, - ACTIONS(4555), 1, - anon_sym_PLUS, - ACTIONS(4939), 1, - anon_sym_RPAREN, - ACTIONS(4941), 1, - anon_sym_COMMA, - STATE(2340), 1, - aux_sym_ordered_field_declaration_list_repeat1, + [51281] = 5, + ACTIONS(4417), 1, + anon_sym_COLON, + ACTIONS(4963), 1, + anon_sym_SEMI, + ACTIONS(4965), 1, + anon_sym_EQ, + STATE(2646), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50938] = 4, - ACTIONS(3523), 1, + [51298] = 4, + ACTIONS(3503), 1, sym__primitive_identifier, - STATE(1787), 1, + STATE(1689), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3525), 2, + ACTIONS(3505), 2, sym__raw_identifier, sym_grit_metavariable, - [50953] = 4, - ACTIONS(4945), 1, - anon_sym_COMMA, - STATE(1986), 1, - aux_sym_where_clause_repeat1, + [51313] = 3, + ACTIONS(4967), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4943), 2, - anon_sym_SEMI, + ACTIONS(4969), 3, + sym_self, + sym_super, + sym_crate, + [51326] = 5, + ACTIONS(4360), 1, + anon_sym_where, + ACTIONS(4366), 1, anon_sym_LBRACE, - [50968] = 4, + STATE(473), 1, + sym_field_declaration_list, + STATE(2547), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [51343] = 4, + ACTIONS(7), 1, + sym__primitive_identifier, + STATE(2274), 1, + sym_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(97), 2, + sym__raw_identifier, + sym_grit_metavariable, + [51358] = 4, ACTIONS(7), 1, sym__primitive_identifier, - STATE(2335), 1, + STATE(2265), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, @@ -133457,98 +133920,132 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(97), 2, sym__raw_identifier, sym_grit_metavariable, - [50983] = 4, - ACTIONS(3523), 1, + [51373] = 4, + ACTIONS(7), 1, sym__primitive_identifier, - STATE(2271), 1, + STATE(1446), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3525), 2, + ACTIONS(97), 2, sym__raw_identifier, sym_grit_metavariable, - [50998] = 3, + [51388] = 4, + ACTIONS(7), 1, + sym__primitive_identifier, + STATE(1449), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3891), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(4948), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [51011] = 5, - ACTIONS(3915), 1, + ACTIONS(97), 2, + sym__raw_identifier, + sym_grit_metavariable, + [51403] = 5, + ACTIONS(3933), 1, anon_sym_LPAREN, - ACTIONS(4358), 1, + ACTIONS(4362), 1, anon_sym_LT, - STATE(1754), 1, + STATE(1868), 1, sym_parameters, - STATE(2563), 1, + STATE(2567), 1, sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [51028] = 4, - ACTIONS(4952), 1, - anon_sym_COMMA, - STATE(1991), 1, - aux_sym_tuple_pattern_repeat1, + [51420] = 4, + ACTIONS(4717), 1, + anon_sym_COLON, + ACTIONS(4719), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3921), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [51435] = 3, + ACTIONS(4971), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4950), 2, + ACTIONS(4165), 3, anon_sym_RPAREN, - anon_sym_RBRACK, - [51043] = 3, - ACTIONS(4793), 1, + anon_sym_COMMA, anon_sym_PIPE, + [51448] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4950), 3, + ACTIONS(3909), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(4973), 2, anon_sym_RPAREN, - anon_sym_RBRACK, anon_sym_COMMA, - [51056] = 5, - ACTIONS(4340), 1, + [51461] = 4, + ACTIONS(4977), 1, + anon_sym_COMMA, + STATE(2012), 1, + aux_sym_where_clause_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4975), 2, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(4356), 1, - anon_sym_where, - STATE(1061), 1, - sym_declaration_list, - STATE(2404), 1, - sym_where_clause, + [51476] = 5, + ACTIONS(3933), 1, + anon_sym_LPAREN, + ACTIONS(4362), 1, + anon_sym_LT, + STATE(1788), 1, + sym_parameters, + STATE(2535), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [51073] = 4, - ACTIONS(3523), 1, + [51493] = 4, + ACTIONS(3503), 1, sym__primitive_identifier, - STATE(1662), 1, + STATE(1841), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3525), 2, + ACTIONS(3505), 2, sym__raw_identifier, sym_grit_metavariable, - [51088] = 4, - ACTIONS(3523), 1, + [51508] = 4, + ACTIONS(3503), 1, sym__primitive_identifier, - STATE(2609), 1, + STATE(1704), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3525), 2, + ACTIONS(3505), 2, sym__raw_identifier, sym_grit_metavariable, - [51103] = 4, + [51523] = 5, + ACTIONS(4551), 1, + anon_sym_PLUS, + ACTIONS(4980), 1, + anon_sym_RPAREN, + ACTIONS(4982), 1, + anon_sym_COMMA, + STATE(2227), 1, + aux_sym_tuple_type_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [51540] = 4, ACTIONS(7), 1, sym__primitive_identifier, - STATE(1042), 1, + STATE(2222), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, @@ -133556,146 +134053,120 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(97), 2, sym__raw_identifier, sym_grit_metavariable, - [51118] = 5, - ACTIONS(4340), 1, - anon_sym_LBRACE, - ACTIONS(4356), 1, - anon_sym_where, - STATE(1066), 1, - sym_declaration_list, - STATE(2407), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [51135] = 3, - ACTIONS(4955), 1, - anon_sym_in, + [51555] = 5, + ACTIONS(3933), 1, + anon_sym_LPAREN, + ACTIONS(4362), 1, + anon_sym_LT, + STATE(1809), 1, + sym_parameters, + STATE(2504), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4957), 3, - sym_self, - sym_super, - sym_crate, - [51148] = 4, - ACTIONS(3523), 1, + [51572] = 4, + ACTIONS(3503), 1, sym__primitive_identifier, - STATE(2179), 1, + STATE(1823), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3525), 2, + ACTIONS(3505), 2, sym__raw_identifier, sym_grit_metavariable, - [51163] = 4, - ACTIONS(3523), 1, + [51587] = 4, + ACTIONS(844), 1, sym__primitive_identifier, - STATE(1702), 1, + STATE(1447), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3525), 2, + ACTIONS(904), 2, sym__raw_identifier, sym_grit_metavariable, - [51178] = 5, - ACTIONS(4340), 1, - anon_sym_LBRACE, - ACTIONS(4356), 1, - anon_sym_where, - STATE(1091), 1, - sym_declaration_list, - STATE(2410), 1, - sym_where_clause, + [51602] = 4, + ACTIONS(3503), 1, + sym__primitive_identifier, + STATE(2681), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [51195] = 5, - ACTIONS(4024), 1, - anon_sym_RPAREN, - ACTIONS(4026), 1, - anon_sym_COMMA, - ACTIONS(4555), 1, - anon_sym_PLUS, - STATE(2274), 1, - aux_sym_parameters_repeat1, + ACTIONS(3505), 2, + sym__raw_identifier, + sym_grit_metavariable, + [51617] = 4, + ACTIONS(844), 1, + sym__primitive_identifier, + STATE(1594), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [51212] = 4, - ACTIONS(3523), 1, + ACTIONS(904), 2, + sym__raw_identifier, + sym_grit_metavariable, + [51632] = 4, + ACTIONS(844), 1, sym__primitive_identifier, - STATE(2687), 1, + STATE(1593), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3525), 2, + ACTIONS(904), 2, sym__raw_identifier, sym_grit_metavariable, - [51227] = 4, - ACTIONS(7), 1, + [51647] = 4, + ACTIONS(844), 1, sym__primitive_identifier, - STATE(2438), 1, + STATE(1591), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(97), 2, + ACTIONS(904), 2, sym__raw_identifier, sym_grit_metavariable, - [51242] = 5, - ACTIONS(4959), 1, - anon_sym_LPAREN, - ACTIONS(4961), 1, - anon_sym_LBRACE, - ACTIONS(4963), 1, - anon_sym_LBRACK, - STATE(2299), 1, - sym_token_tree, + [51662] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [51259] = 5, - ACTIONS(4793), 1, + ACTIONS(3909), 2, + anon_sym_COLON, anon_sym_PIPE, - ACTIONS(4897), 1, + ACTIONS(4984), 2, anon_sym_RPAREN, - ACTIONS(4901), 1, anon_sym_COMMA, - STATE(2349), 1, - aux_sym_tuple_pattern_repeat1, + [51675] = 4, + ACTIONS(844), 1, + sym__primitive_identifier, + STATE(1588), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [51276] = 4, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(1172), 1, - sym_line_comment, - ACTIONS(4965), 1, - aux_sym_token_repetition_pattern_token1, - ACTIONS(4967), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [51291] = 4, - ACTIONS(842), 1, + ACTIONS(904), 2, + sym__raw_identifier, + sym_grit_metavariable, + [51690] = 4, + ACTIONS(3503), 1, sym__primitive_identifier, - STATE(1598), 1, + STATE(1684), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(902), 2, + ACTIONS(3505), 2, sym__raw_identifier, sym_grit_metavariable, - [51306] = 4, + [51705] = 4, ACTIONS(7), 1, sym__primitive_identifier, - STATE(2499), 1, + STATE(2446), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, @@ -133703,79 +134174,54 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(97), 2, sym__raw_identifier, sym_grit_metavariable, - [51321] = 5, - ACTIONS(4555), 1, - anon_sym_PLUS, - ACTIONS(4969), 1, - anon_sym_SEMI, - ACTIONS(4971), 1, - anon_sym_EQ, - ACTIONS(4973), 1, - anon_sym_else, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [51338] = 5, - ACTIONS(4555), 1, - anon_sym_PLUS, - ACTIONS(4975), 1, - anon_sym_RPAREN, - ACTIONS(4977), 1, - anon_sym_COMMA, - STATE(2249), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [51355] = 4, - ACTIONS(4979), 1, - anon_sym_COMMA, - STATE(1986), 1, - aux_sym_where_clause_repeat1, + [51720] = 4, + ACTIONS(7), 1, + sym__primitive_identifier, + STATE(2772), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3071), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - [51370] = 4, - ACTIONS(3523), 1, + ACTIONS(97), 2, + sym__raw_identifier, + sym_grit_metavariable, + [51735] = 4, + ACTIONS(844), 1, sym__primitive_identifier, - STATE(1676), 1, + STATE(1585), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3525), 2, + ACTIONS(904), 2, sym__raw_identifier, sym_grit_metavariable, - [51385] = 5, - ACTIONS(4344), 1, - anon_sym_LBRACE, - ACTIONS(4356), 1, - anon_sym_where, - STATE(340), 1, - sym_declaration_list, - STATE(2541), 1, - sym_where_clause, + [51750] = 4, + ACTIONS(844), 1, + sym__primitive_identifier, + STATE(1584), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [51402] = 4, - ACTIONS(7), 1, + ACTIONS(904), 2, + sym__raw_identifier, + sym_grit_metavariable, + [51765] = 4, + ACTIONS(844), 1, sym__primitive_identifier, - STATE(1251), 1, + STATE(1583), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(97), 2, + ACTIONS(904), 2, sym__raw_identifier, sym_grit_metavariable, - [51417] = 4, + [51780] = 4, ACTIONS(7), 1, sym__primitive_identifier, - STATE(1442), 1, + STATE(2632), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, @@ -133783,133 +134229,124 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(97), 2, sym__raw_identifier, sym_grit_metavariable, - [51432] = 5, - ACTIONS(4913), 1, - anon_sym_LPAREN, - ACTIONS(4915), 1, + [51795] = 5, + ACTIONS(4360), 1, + anon_sym_where, + ACTIONS(4372), 1, anon_sym_LBRACE, - ACTIONS(4917), 1, - anon_sym_LBRACK, - STATE(1456), 1, - sym_delim_token_tree, + STATE(407), 1, + sym_declaration_list, + STATE(2572), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [51449] = 4, - ACTIONS(2880), 1, + [51812] = 4, + ACTIONS(844), 1, sym__primitive_identifier, - STATE(835), 1, + STATE(1577), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2908), 2, + ACTIONS(904), 2, sym__raw_identifier, sym_grit_metavariable, - [51464] = 5, - ACTIONS(4038), 1, - anon_sym_RPAREN, - ACTIONS(4040), 1, - anon_sym_COMMA, - ACTIONS(4555), 1, - anon_sym_PLUS, - STATE(2352), 1, - aux_sym_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [51481] = 4, - ACTIONS(842), 1, + [51827] = 4, + ACTIONS(844), 1, sym__primitive_identifier, - STATE(1432), 1, + STATE(1566), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(902), 2, + ACTIONS(904), 2, sym__raw_identifier, sym_grit_metavariable, - [51496] = 4, - ACTIONS(7), 1, + [51842] = 4, + ACTIONS(844), 1, sym__primitive_identifier, - STATE(1446), 1, + STATE(1554), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(97), 2, + ACTIONS(904), 2, sym__raw_identifier, sym_grit_metavariable, - [51511] = 4, - ACTIONS(2880), 1, - sym__primitive_identifier, - STATE(832), 1, - sym_identifier, + [51857] = 5, + ACTIONS(4360), 1, + anon_sym_where, + ACTIONS(4372), 1, + anon_sym_LBRACE, + STATE(403), 1, + sym_declaration_list, + STATE(2579), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2908), 2, - sym__raw_identifier, - sym_grit_metavariable, - [51526] = 4, - ACTIONS(3523), 1, + [51874] = 4, + ACTIONS(844), 1, sym__primitive_identifier, - STATE(1848), 1, + STATE(1563), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3525), 2, + ACTIONS(904), 2, sym__raw_identifier, sym_grit_metavariable, - [51541] = 4, - ACTIONS(842), 1, + [51889] = 5, + ACTIONS(4986), 1, + anon_sym_LPAREN, + ACTIONS(4988), 1, + anon_sym_LBRACE, + ACTIONS(4990), 1, + anon_sym_LBRACK, + STATE(1039), 1, + sym_delim_token_tree, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [51906] = 4, + ACTIONS(3503), 1, sym__primitive_identifier, - STATE(1453), 1, + STATE(1705), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(902), 2, + ACTIONS(3505), 2, sym__raw_identifier, sym_grit_metavariable, - [51556] = 3, - ACTIONS(4981), 1, - anon_sym_in, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4983), 3, - sym_self, - sym_super, - sym_crate, - [51569] = 4, - ACTIONS(3523), 1, + [51921] = 4, + ACTIONS(844), 1, sym__primitive_identifier, - STATE(1466), 1, + STATE(1561), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3525), 2, + ACTIONS(904), 2, sym__raw_identifier, sym_grit_metavariable, - [51584] = 5, - ACTIONS(4985), 1, + [51936] = 5, + ACTIONS(4986), 1, anon_sym_LPAREN, - ACTIONS(4987), 1, + ACTIONS(4988), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, + ACTIONS(4990), 1, anon_sym_LBRACK, - STATE(76), 1, + STATE(1047), 1, sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [51601] = 4, + [51953] = 4, ACTIONS(7), 1, sym__primitive_identifier, - STATE(853), 1, + STATE(1712), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, @@ -133917,67 +134354,108 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(97), 2, sym__raw_identifier, sym_grit_metavariable, - [51616] = 4, - ACTIONS(842), 1, + [51968] = 4, + ACTIONS(3503), 1, sym__primitive_identifier, - STATE(1434), 1, + STATE(2634), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(902), 2, + ACTIONS(3505), 2, sym__raw_identifier, sym_grit_metavariable, - [51631] = 5, - ACTIONS(4354), 1, + [51983] = 4, + ACTIONS(4994), 1, + anon_sym_COMMA, + STATE(2139), 1, + aux_sym_where_clause_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4992), 2, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(4356), 1, - anon_sym_where, - STATE(1043), 1, - sym_field_declaration_list, - STATE(2437), 1, - sym_where_clause, + [51998] = 4, + ACTIONS(739), 1, + anon_sym_LBRACE, + ACTIONS(4996), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(234), 2, + sym_if_expression, + sym_block, + [52013] = 5, + ACTIONS(3923), 1, + anon_sym_LT2, + ACTIONS(4417), 1, + anon_sym_COLON, + STATE(1467), 1, + sym_type_arguments, + STATE(2178), 1, + sym_trait_bounds, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [52030] = 3, + ACTIONS(4998), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5000), 3, + sym_self, + sym_super, + sym_crate, + [52043] = 3, + ACTIONS(4551), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [51648] = 4, - ACTIONS(3523), 1, + ACTIONS(5002), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_PIPE, + [52056] = 4, + ACTIONS(3503), 1, sym__primitive_identifier, - STATE(2716), 1, + STATE(2623), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3525), 2, + ACTIONS(3505), 2, sym__raw_identifier, sym_grit_metavariable, - [51663] = 5, - ACTIONS(4340), 1, - anon_sym_LBRACE, - ACTIONS(4356), 1, - anon_sym_where, - STATE(1033), 1, - sym_declaration_list, - STATE(2459), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [51680] = 4, - ACTIONS(7), 1, + [52071] = 4, + ACTIONS(3503), 1, sym__primitive_identifier, - STATE(955), 1, + STATE(1161), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(97), 2, + ACTIONS(3505), 2, sym__raw_identifier, sym_grit_metavariable, - [51695] = 4, + [52086] = 4, + ACTIONS(5006), 1, + anon_sym_COMMA, + STATE(2053), 1, + aux_sym_tuple_pattern_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5004), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + [52101] = 4, ACTIONS(7), 1, sym__primitive_identifier, - STATE(2184), 1, + STATE(2532), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, @@ -133985,487 +134463,342 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(97), 2, sym__raw_identifier, sym_grit_metavariable, - [51710] = 5, - ACTIONS(4356), 1, + [52116] = 5, + ACTIONS(4360), 1, anon_sym_where, - ACTIONS(4591), 1, + ACTIONS(4372), 1, anon_sym_LBRACE, - STATE(1004), 1, - sym_enum_variant_list, - STATE(2470), 1, + STATE(318), 1, + sym_declaration_list, + STATE(2589), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [51727] = 4, - ACTIONS(3523), 1, - sym__primitive_identifier, - STATE(1667), 1, - sym_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3525), 2, - sym__raw_identifier, - sym_grit_metavariable, - [51742] = 4, - ACTIONS(4991), 1, - sym__primitive_identifier, - STATE(1453), 1, - sym_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4993), 2, - sym__raw_identifier, - sym_grit_metavariable, - [51757] = 4, - ACTIONS(3523), 1, + [52133] = 4, + ACTIONS(2832), 1, sym__primitive_identifier, - STATE(1696), 1, + STATE(834), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3525), 2, + ACTIONS(2860), 2, sym__raw_identifier, sym_grit_metavariable, - [51772] = 4, - ACTIONS(3523), 1, + [52148] = 4, + ACTIONS(5009), 1, sym__primitive_identifier, - STATE(2699), 1, + STATE(1459), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3525), 2, + ACTIONS(5011), 2, sym__raw_identifier, sym_grit_metavariable, - [51787] = 5, - ACTIONS(4340), 1, - anon_sym_LBRACE, - ACTIONS(4356), 1, - anon_sym_where, - STATE(982), 1, - sym_declaration_list, - STATE(2478), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [51804] = 4, - ACTIONS(3523), 1, + [52163] = 4, + ACTIONS(2832), 1, sym__primitive_identifier, - STATE(2755), 1, + STATE(826), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3525), 2, + ACTIONS(2860), 2, sym__raw_identifier, sym_grit_metavariable, - [51819] = 4, - ACTIONS(3523), 1, + [52178] = 4, + ACTIONS(2832), 1, sym__primitive_identifier, - STATE(1781), 1, + STATE(829), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3525), 2, + ACTIONS(2860), 2, sym__raw_identifier, sym_grit_metavariable, - [51834] = 5, - ACTIONS(4340), 1, - anon_sym_LBRACE, - ACTIONS(4356), 1, - anon_sym_where, - STATE(961), 1, - sym_declaration_list, - STATE(2493), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [51851] = 5, - ACTIONS(4899), 1, - anon_sym_COLON, - ACTIONS(4995), 1, + [52193] = 5, + ACTIONS(4018), 1, + anon_sym_RPAREN, + ACTIONS(4020), 1, anon_sym_COMMA, - ACTIONS(4997), 1, - anon_sym_PIPE, - STATE(2321), 1, - aux_sym_closure_parameters_repeat1, + ACTIONS(4551), 1, + anon_sym_PLUS, + STATE(2187), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [51868] = 5, - ACTIONS(4985), 1, + [52210] = 5, + ACTIONS(5013), 1, anon_sym_LPAREN, - ACTIONS(4987), 1, + ACTIONS(5015), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, + ACTIONS(5017), 1, anon_sym_LBRACK, - STATE(120), 1, + STATE(1455), 1, sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [51885] = 4, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(1172), 1, - sym_line_comment, - ACTIONS(4999), 1, - aux_sym_token_repetition_pattern_token1, - ACTIONS(5001), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [51900] = 5, - ACTIONS(3905), 1, - anon_sym_LT2, - ACTIONS(3915), 1, - anon_sym_LPAREN, - STATE(1462), 1, - sym_type_arguments, - STATE(1526), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [51917] = 5, - ACTIONS(4555), 1, - anon_sym_PLUS, - ACTIONS(5003), 1, - anon_sym_SEMI, - ACTIONS(5005), 1, - anon_sym_EQ, - ACTIONS(5007), 1, - anon_sym_else, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [51934] = 4, - ACTIONS(3523), 1, + [52227] = 4, + ACTIONS(844), 1, sym__primitive_identifier, - STATE(1145), 1, + STATE(1443), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3525), 2, + ACTIONS(904), 2, sym__raw_identifier, sym_grit_metavariable, - [51949] = 5, - ACTIONS(4555), 1, - anon_sym_PLUS, - ACTIONS(5009), 1, - anon_sym_RPAREN, - ACTIONS(5011), 1, - anon_sym_COMMA, - STATE(2243), 1, - aux_sym_ordered_field_declaration_list_repeat1, + [52242] = 5, + ACTIONS(3933), 1, + anon_sym_LPAREN, + ACTIONS(4362), 1, + anon_sym_LT, + STATE(1780), 1, + sym_parameters, + STATE(2604), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [51966] = 4, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(1172), 1, - sym_line_comment, - ACTIONS(5013), 1, - aux_sym_token_repetition_pattern_token1, - ACTIONS(5015), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [51981] = 4, - ACTIONS(842), 1, + [52259] = 4, + ACTIONS(2832), 1, sym__primitive_identifier, - STATE(1438), 1, + STATE(832), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(902), 2, + ACTIONS(2860), 2, sym__raw_identifier, sym_grit_metavariable, - [51996] = 4, - ACTIONS(2880), 1, - sym__primitive_identifier, - STATE(826), 1, - sym_identifier, + [52274] = 5, + ACTIONS(5013), 1, + anon_sym_LPAREN, + ACTIONS(5015), 1, + anon_sym_LBRACE, + ACTIONS(5017), 1, + anon_sym_LBRACK, + STATE(1452), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2908), 2, - sym__raw_identifier, - sym_grit_metavariable, - [52011] = 4, - ACTIONS(3523), 1, + [52291] = 4, + ACTIONS(7), 1, sym__primitive_identifier, - STATE(2354), 1, + STATE(925), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3525), 2, + ACTIONS(97), 2, sym__raw_identifier, sym_grit_metavariable, - [52026] = 5, - ACTIONS(4555), 1, + [52306] = 5, + ACTIONS(4551), 1, anon_sym_PLUS, - ACTIONS(5017), 1, - anon_sym_SEMI, ACTIONS(5019), 1, - anon_sym_EQ, + anon_sym_RPAREN, ACTIONS(5021), 1, - anon_sym_else, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [52043] = 5, - ACTIONS(3915), 1, - anon_sym_LPAREN, - ACTIONS(4358), 1, - anon_sym_LT, - STATE(1755), 1, - sym_parameters, - STATE(2397), 1, - sym_type_parameters, + anon_sym_COMMA, + STATE(2254), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52060] = 5, - ACTIONS(3905), 1, - anon_sym_LT2, - ACTIONS(3915), 1, + [52323] = 5, + ACTIONS(4939), 1, anon_sym_LPAREN, - STATE(1462), 1, - sym_type_arguments, - STATE(2176), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [52077] = 4, - ACTIONS(447), 1, + ACTIONS(4941), 1, anon_sym_LBRACE, - ACTIONS(5023), 1, - anon_sym_if, + ACTIONS(4943), 1, + anon_sym_LBRACK, + STATE(93), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1235), 2, - sym_if_expression, - sym_block, - [52092] = 4, - ACTIONS(7), 1, + [52340] = 4, + ACTIONS(3503), 1, sym__primitive_identifier, - STATE(2706), 1, + STATE(2720), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(97), 2, + ACTIONS(3505), 2, sym__raw_identifier, sym_grit_metavariable, - [52107] = 4, - ACTIONS(842), 1, + [52355] = 4, + ACTIONS(7), 1, sym__primitive_identifier, - STATE(1442), 1, + STATE(1161), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(902), 2, + ACTIONS(97), 2, sym__raw_identifier, sym_grit_metavariable, - [52122] = 4, - ACTIONS(3523), 1, - sym__primitive_identifier, - STATE(2727), 1, - sym_identifier, + [52370] = 5, + ACTIONS(4805), 1, + anon_sym_PIPE, + ACTIONS(4913), 1, + anon_sym_RPAREN, + ACTIONS(4917), 1, + anon_sym_COMMA, + STATE(2221), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3525), 2, - sym__raw_identifier, - sym_grit_metavariable, - [52137] = 4, - ACTIONS(842), 1, - sym__primitive_identifier, - STATE(1610), 1, - sym_identifier, - ACTIONS(3), 2, + [52387] = 4, + ACTIONS(3), 1, sym_block_comment, + ACTIONS(1112), 1, sym_line_comment, - ACTIONS(902), 2, - sym__raw_identifier, - sym_grit_metavariable, - [52152] = 4, - ACTIONS(7), 1, + ACTIONS(5023), 1, + aux_sym_token_repetition_pattern_token1, + ACTIONS(5025), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [52402] = 4, + ACTIONS(3503), 1, sym__primitive_identifier, - STATE(2166), 1, + STATE(2225), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(97), 2, + ACTIONS(3505), 2, sym__raw_identifier, sym_grit_metavariable, - [52167] = 5, - ACTIONS(2834), 1, + [52417] = 5, + ACTIONS(4551), 1, anon_sym_PLUS, - ACTIONS(5025), 1, - anon_sym_COMMA, ACTIONS(5027), 1, + anon_sym_COMMA, + ACTIONS(5029), 1, anon_sym_GT, - STATE(2297), 1, + STATE(2240), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52184] = 5, - ACTIONS(4344), 1, - anon_sym_LBRACE, - ACTIONS(4356), 1, - anon_sym_where, - STATE(459), 1, - sym_declaration_list, - STATE(2399), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [52201] = 5, - ACTIONS(3915), 1, - anon_sym_LPAREN, - ACTIONS(4358), 1, - anon_sym_LT, - STATE(1863), 1, - sym_parameters, - STATE(2502), 1, - sym_type_parameters, + [52434] = 5, + ACTIONS(4551), 1, + anon_sym_PLUS, + ACTIONS(5031), 1, + anon_sym_SEMI, + ACTIONS(5033), 1, + anon_sym_EQ, + ACTIONS(5035), 1, + anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52218] = 5, - ACTIONS(4555), 1, + [52451] = 5, + ACTIONS(2882), 1, anon_sym_PLUS, - ACTIONS(5025), 1, - anon_sym_COMMA, ACTIONS(5027), 1, + anon_sym_COMMA, + ACTIONS(5029), 1, anon_sym_GT, - STATE(2297), 1, + STATE(2240), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52235] = 4, - ACTIONS(784), 1, + [52468] = 4, + ACTIONS(15), 1, anon_sym_LBRACE, - ACTIONS(5029), 1, + ACTIONS(5037), 1, anon_sym_if, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(233), 2, + STATE(181), 2, sym_if_expression, sym_block, - [52250] = 4, - ACTIONS(842), 1, - sym__primitive_identifier, - STATE(1607), 1, - sym_identifier, + [52483] = 5, + ACTIONS(4360), 1, + anon_sym_where, + ACTIONS(4384), 1, + anon_sym_LBRACE, + STATE(915), 1, + sym_declaration_list, + STATE(2410), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(902), 2, - sym__raw_identifier, - sym_grit_metavariable, - [52265] = 4, - ACTIONS(842), 1, - sym__primitive_identifier, - STATE(1604), 1, - sym_identifier, + [52500] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(902), 2, - sym__raw_identifier, - sym_grit_metavariable, - [52280] = 4, - ACTIONS(3523), 1, - sym__primitive_identifier, - STATE(2731), 1, - sym_identifier, + ACTIONS(1038), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_LT2, + [52511] = 5, + ACTIONS(4551), 1, + anon_sym_PLUS, + ACTIONS(5039), 1, + anon_sym_SEMI, + ACTIONS(5041), 1, + anon_sym_EQ, + ACTIONS(5043), 1, + anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3525), 2, - sym__raw_identifier, - sym_grit_metavariable, - [52295] = 4, - ACTIONS(3523), 1, - sym__primitive_identifier, - STATE(2735), 1, - sym_identifier, + [52528] = 5, + ACTIONS(4360), 1, + anon_sym_where, + ACTIONS(4384), 1, + anon_sym_LBRACE, + STATE(842), 1, + sym_declaration_list, + STATE(2401), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3525), 2, - sym__raw_identifier, - sym_grit_metavariable, - [52310] = 4, - ACTIONS(7), 1, + [52545] = 4, + ACTIONS(5045), 1, sym__primitive_identifier, - STATE(841), 1, + STATE(206), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(97), 2, + ACTIONS(5047), 2, sym__raw_identifier, sym_grit_metavariable, - [52325] = 5, - ACTIONS(4356), 1, + [52560] = 5, + ACTIONS(4360), 1, anon_sym_where, - ACTIONS(4364), 1, + ACTIONS(4384), 1, anon_sym_LBRACE, - STATE(430), 1, - sym_field_declaration_list, - STATE(2498), 1, + STATE(850), 1, + sym_declaration_list, + STATE(2496), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52342] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1040), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_LT2, - [52353] = 5, - ACTIONS(4034), 1, - anon_sym_RPAREN, - ACTIONS(4036), 1, - anon_sym_COMMA, - ACTIONS(4555), 1, - anon_sym_PLUS, - STATE(2288), 1, - aux_sym_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [52370] = 4, + [52577] = 4, ACTIONS(7), 1, sym__primitive_identifier, - STATE(2650), 1, + STATE(1309), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, @@ -134473,196 +134806,159 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(97), 2, sym__raw_identifier, sym_grit_metavariable, - [52385] = 4, - ACTIONS(5031), 1, + [52592] = 4, + ACTIONS(7), 1, sym__primitive_identifier, - STATE(208), 1, + STATE(1037), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5033), 2, + ACTIONS(97), 2, sym__raw_identifier, sym_grit_metavariable, - [52400] = 5, - ACTIONS(4344), 1, - anon_sym_LBRACE, - ACTIONS(4356), 1, - anon_sym_where, - STATE(336), 1, - sym_declaration_list, - STATE(2530), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [52417] = 4, - ACTIONS(7), 1, + [52607] = 4, + ACTIONS(3503), 1, sym__primitive_identifier, - STATE(1301), 1, + STATE(2184), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(97), 2, + ACTIONS(3505), 2, sym__raw_identifier, sym_grit_metavariable, - [52432] = 5, - ACTIONS(4344), 1, - anon_sym_LBRACE, - ACTIONS(4356), 1, - anon_sym_where, - STATE(289), 1, - sym_declaration_list, - STATE(2452), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [52449] = 4, - ACTIONS(842), 1, + [52622] = 4, + ACTIONS(3503), 1, sym__primitive_identifier, - STATE(1603), 1, + STATE(1783), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(902), 2, + ACTIONS(3505), 2, sym__raw_identifier, sym_grit_metavariable, - [52464] = 5, - ACTIONS(5035), 1, - anon_sym_LPAREN, - ACTIONS(5037), 1, + [52637] = 5, + ACTIONS(4360), 1, + anon_sym_where, + ACTIONS(4384), 1, anon_sym_LBRACE, - ACTIONS(5039), 1, - anon_sym_LBRACK, - STATE(845), 1, - sym_delim_token_tree, + STATE(883), 1, + sym_declaration_list, + STATE(2416), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52481] = 5, - ACTIONS(4344), 1, - anon_sym_LBRACE, - ACTIONS(4356), 1, - anon_sym_where, - STATE(362), 1, - sym_declaration_list, - STATE(2561), 1, - sym_where_clause, + [52654] = 5, + ACTIONS(4551), 1, + anon_sym_PLUS, + ACTIONS(5049), 1, + anon_sym_RPAREN, + ACTIONS(5051), 1, + anon_sym_COMMA, + STATE(2355), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52498] = 5, - ACTIONS(3915), 1, - anon_sym_LPAREN, - ACTIONS(4358), 1, - anon_sym_LT, - STATE(1773), 1, - sym_parameters, - STATE(2472), 1, - sym_type_parameters, + [52671] = 4, + ACTIONS(3503), 1, + sym__primitive_identifier, + STATE(1687), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52515] = 3, - ACTIONS(4555), 1, + ACTIONS(3505), 2, + sym__raw_identifier, + sym_grit_metavariable, + [52686] = 5, + ACTIONS(4551), 1, anon_sym_PLUS, + ACTIONS(5053), 1, + anon_sym_SEMI, + ACTIONS(5055), 1, + anon_sym_EQ, + ACTIONS(5057), 1, + anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5041), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - [52528] = 5, - ACTIONS(4042), 1, - anon_sym_RPAREN, - ACTIONS(4044), 1, - anon_sym_COMMA, - ACTIONS(4555), 1, - anon_sym_PLUS, - STATE(2318), 1, - aux_sym_parameters_repeat1, + [52703] = 4, + ACTIONS(4417), 1, + anon_sym_COLON, + STATE(2378), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52545] = 4, - ACTIONS(842), 1, + ACTIONS(5059), 2, + anon_sym_COMMA, + anon_sym_GT, + [52718] = 4, + ACTIONS(3503), 1, sym__primitive_identifier, - STATE(1555), 1, + STATE(2732), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(902), 2, + ACTIONS(3505), 2, sym__raw_identifier, sym_grit_metavariable, - [52560] = 5, - ACTIONS(4793), 1, - anon_sym_PIPE, - ACTIONS(5043), 1, - anon_sym_RBRACK, - ACTIONS(5045), 1, - anon_sym_COMMA, - STATE(2214), 1, - aux_sym_tuple_pattern_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [52577] = 5, - ACTIONS(4356), 1, + [52733] = 5, + ACTIONS(4360), 1, anon_sym_where, - ACTIONS(4364), 1, + ACTIONS(4372), 1, anon_sym_LBRACE, - STATE(517), 1, - sym_field_declaration_list, - STATE(2424), 1, + STATE(364), 1, + sym_declaration_list, + STATE(2442), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52594] = 5, - ACTIONS(4384), 1, - anon_sym_COLON, - ACTIONS(5047), 1, - anon_sym_SEMI, - ACTIONS(5049), 1, - anon_sym_EQ, - STATE(2723), 1, - sym_trait_bounds, + [52750] = 5, + ACTIONS(4060), 1, + anon_sym_RPAREN, + ACTIONS(4062), 1, + anon_sym_COMMA, + ACTIONS(4551), 1, + anon_sym_PLUS, + STATE(2356), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52611] = 5, - ACTIONS(5035), 1, - anon_sym_LPAREN, - ACTIONS(5037), 1, - anon_sym_LBRACE, - ACTIONS(5039), 1, - anon_sym_LBRACK, - STATE(846), 1, - sym_delim_token_tree, + [52767] = 4, + ACTIONS(3503), 1, + sym__primitive_identifier, + STATE(1665), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52628] = 5, - ACTIONS(4443), 1, + ACTIONS(3505), 2, + sym__raw_identifier, + sym_grit_metavariable, + [52782] = 5, + ACTIONS(4489), 1, anon_sym_LPAREN, - ACTIONS(4445), 1, + ACTIONS(4491), 1, anon_sym_LBRACE, - ACTIONS(4447), 1, + ACTIONS(4493), 1, anon_sym_LBRACK, - STATE(1236), 1, + STATE(1234), 1, sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52645] = 4, + [52799] = 4, ACTIONS(7), 1, sym__primitive_identifier, - STATE(1298), 1, + STATE(1300), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, @@ -134670,273 +134966,341 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(97), 2, sym__raw_identifier, sym_grit_metavariable, - [52660] = 5, - ACTIONS(3905), 1, - anon_sym_LT2, - ACTIONS(4384), 1, - anon_sym_COLON, - STATE(1462), 1, - sym_type_arguments, - STATE(2306), 1, - sym_trait_bounds, + [52814] = 5, + ACTIONS(4360), 1, + anon_sym_where, + ACTIONS(4372), 1, + anon_sym_LBRACE, + STATE(352), 1, + sym_declaration_list, + STATE(2445), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52677] = 4, - ACTIONS(842), 1, + [52831] = 4, + ACTIONS(844), 1, sym__primitive_identifier, - STATE(1433), 1, + STATE(1439), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(902), 2, + ACTIONS(904), 2, sym__raw_identifier, sym_grit_metavariable, - [52692] = 5, - ACTIONS(4344), 1, + [52846] = 5, + ACTIONS(4358), 1, anon_sym_LBRACE, - ACTIONS(4356), 1, + ACTIONS(4360), 1, + anon_sym_where, + STATE(952), 1, + sym_field_declaration_list, + STATE(2457), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [52863] = 5, + ACTIONS(4360), 1, + anon_sym_where, + ACTIONS(4384), 1, + anon_sym_LBRACE, + STATE(955), 1, + sym_declaration_list, + STATE(2470), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [52880] = 5, + ACTIONS(4360), 1, + anon_sym_where, + ACTIONS(4689), 1, + anon_sym_LBRACE, + STATE(965), 1, + sym_enum_variant_list, + STATE(2478), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [52897] = 5, + ACTIONS(4360), 1, anon_sym_where, - STATE(433), 1, + ACTIONS(4384), 1, + anon_sym_LBRACE, + STATE(974), 1, sym_declaration_list, - STATE(2488), 1, + STATE(2498), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52709] = 4, - ACTIONS(5053), 1, - anon_sym_COMMA, - STATE(2012), 1, - aux_sym_where_clause_repeat1, + [52914] = 4, + ACTIONS(4417), 1, + anon_sym_COLON, + STATE(2378), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5051), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - [52724] = 5, - ACTIONS(4344), 1, - anon_sym_LBRACE, - ACTIONS(4356), 1, + ACTIONS(5061), 2, + anon_sym_COMMA, + anon_sym_GT, + [52929] = 5, + ACTIONS(4360), 1, anon_sym_where, - STATE(511), 1, + ACTIONS(4384), 1, + anon_sym_LBRACE, + STATE(986), 1, sym_declaration_list, - STATE(2458), 1, + STATE(2505), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52741] = 5, - ACTIONS(3915), 1, - anon_sym_LPAREN, - ACTIONS(4358), 1, - anon_sym_LT, - STATE(1799), 1, - sym_parameters, - STATE(2584), 1, - sym_type_parameters, + [52946] = 4, + ACTIONS(5064), 1, + sym__primitive_identifier, + STATE(1272), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52758] = 5, - ACTIONS(3915), 1, + ACTIONS(5066), 2, + sym__raw_identifier, + sym_grit_metavariable, + [52961] = 5, + ACTIONS(3923), 1, + anon_sym_LT2, + ACTIONS(3933), 1, anon_sym_LPAREN, - ACTIONS(4358), 1, - anon_sym_LT, - STATE(1800), 1, + STATE(1467), 1, + sym_type_arguments, + STATE(2179), 1, sym_parameters, - STATE(2582), 1, - sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52775] = 5, - ACTIONS(4354), 1, - anon_sym_LBRACE, - ACTIONS(4356), 1, - anon_sym_where, - STATE(890), 1, - sym_field_declaration_list, - STATE(2583), 1, - sym_where_clause, + [52978] = 4, + ACTIONS(7), 1, + sym__primitive_identifier, + STATE(1447), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52792] = 4, - ACTIONS(5055), 1, + ACTIONS(97), 2, + sym__raw_identifier, + sym_grit_metavariable, + [52993] = 4, + ACTIONS(3503), 1, sym__primitive_identifier, - STATE(1275), 1, + STATE(2731), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5057), 2, + ACTIONS(3505), 2, sym__raw_identifier, sym_grit_metavariable, - [52807] = 5, - ACTIONS(4384), 1, - anon_sym_COLON, - ACTIONS(5059), 1, + [53008] = 5, + ACTIONS(4551), 1, + anon_sym_PLUS, + ACTIONS(5068), 1, anon_sym_SEMI, - ACTIONS(5061), 1, + ACTIONS(5070), 1, anon_sym_EQ, - STATE(2617), 1, - sym_trait_bounds, + ACTIONS(5072), 1, + anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52824] = 3, - ACTIONS(4555), 1, + [53025] = 3, + ACTIONS(4551), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5063), 3, + ACTIONS(5074), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_PIPE, - [52837] = 4, - ACTIONS(842), 1, - sym__primitive_identifier, - STATE(1446), 1, - sym_identifier, + [53038] = 4, + ACTIONS(447), 1, + anon_sym_LBRACE, + ACTIONS(5076), 1, + anon_sym_if, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(902), 2, - sym__raw_identifier, - sym_grit_metavariable, - [52852] = 4, - ACTIONS(3523), 1, - sym__primitive_identifier, - STATE(1691), 1, - sym_identifier, + STATE(1217), 2, + sym_if_expression, + sym_block, + [53053] = 4, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(1112), 1, + sym_line_comment, + ACTIONS(5078), 1, + aux_sym_token_repetition_pattern_token1, + ACTIONS(5080), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [53068] = 5, + ACTIONS(2882), 1, + anon_sym_PLUS, + ACTIONS(5082), 1, + anon_sym_COMMA, + ACTIONS(5084), 1, + anon_sym_GT, + STATE(2301), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3525), 2, - sym__raw_identifier, - sym_grit_metavariable, - [52867] = 4, - ACTIONS(7), 1, + [53085] = 5, + ACTIONS(4551), 1, + anon_sym_PLUS, + ACTIONS(5082), 1, + anon_sym_COMMA, + ACTIONS(5084), 1, + anon_sym_GT, + STATE(2301), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [53102] = 4, + ACTIONS(3503), 1, sym__primitive_identifier, - STATE(2549), 1, + STATE(2235), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(97), 2, + ACTIONS(3505), 2, sym__raw_identifier, sym_grit_metavariable, - [52882] = 5, - ACTIONS(4340), 1, - anon_sym_LBRACE, - ACTIONS(4356), 1, - anon_sym_where, - STATE(884), 1, - sym_declaration_list, - STATE(2602), 1, - sym_where_clause, + [53117] = 5, + ACTIONS(4024), 1, + anon_sym_RPAREN, + ACTIONS(4026), 1, + anon_sym_COMMA, + ACTIONS(4551), 1, + anon_sym_PLUS, + STATE(2292), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52899] = 4, - ACTIONS(842), 1, + [53134] = 4, + ACTIONS(3503), 1, sym__primitive_identifier, - STATE(1600), 1, + STATE(2735), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(902), 2, + ACTIONS(3505), 2, sym__raw_identifier, sym_grit_metavariable, - [52914] = 4, - ACTIONS(842), 1, - sym__primitive_identifier, - STATE(1441), 1, - sym_identifier, + [53149] = 3, + ACTIONS(4805), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(902), 2, - sym__raw_identifier, - sym_grit_metavariable, - [52929] = 4, - ACTIONS(3523), 1, + ACTIONS(5004), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + [53162] = 4, + ACTIONS(7), 1, sym__primitive_identifier, - STATE(1858), 1, + STATE(2206), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3525), 2, + ACTIONS(97), 2, sym__raw_identifier, sym_grit_metavariable, - [52944] = 4, - ACTIONS(842), 1, + [53177] = 4, + ACTIONS(3503), 1, sym__primitive_identifier, - STATE(1431), 1, + STATE(2739), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(902), 2, + ACTIONS(3505), 2, sym__raw_identifier, sym_grit_metavariable, - [52959] = 5, - ACTIONS(4356), 1, + [53192] = 5, + ACTIONS(4360), 1, anon_sym_where, - ACTIONS(4607), 1, + ACTIONS(4599), 1, anon_sym_LBRACE, - STATE(415), 1, + STATE(345), 1, sym_enum_variant_list, - STATE(2580), 1, + STATE(2462), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52976] = 4, - ACTIONS(3523), 1, + [53209] = 4, + ACTIONS(3503), 1, sym__primitive_identifier, - STATE(1753), 1, + STATE(2714), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3525), 2, + ACTIONS(3505), 2, sym__raw_identifier, sym_grit_metavariable, - [52991] = 5, - ACTIONS(3915), 1, - anon_sym_LPAREN, - ACTIONS(4358), 1, - anon_sym_LT, - STATE(1828), 1, - sym_parameters, - STATE(2540), 1, - sym_type_parameters, + [53224] = 5, + ACTIONS(4360), 1, + anon_sym_where, + ACTIONS(4372), 1, + anon_sym_LBRACE, + STATE(331), 1, + sym_declaration_list, + STATE(2474), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53008] = 5, - ACTIONS(3915), 1, - anon_sym_LPAREN, - ACTIONS(4358), 1, - anon_sym_LT, - STATE(1761), 1, - sym_parameters, - STATE(2441), 1, - sym_type_parameters, + [53241] = 5, + ACTIONS(4360), 1, + anon_sym_where, + ACTIONS(4366), 1, + anon_sym_LBRACE, + STATE(323), 1, + sym_field_declaration_list, + STATE(2486), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53025] = 4, + [53258] = 4, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(1112), 1, + sym_line_comment, + ACTIONS(5086), 1, + aux_sym_token_repetition_pattern_token1, + ACTIONS(5088), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [53273] = 4, ACTIONS(7), 1, sym__primitive_identifier, - STATE(2764), 1, + STATE(1303), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, @@ -134944,7314 +135308,7253 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(97), 2, sym__raw_identifier, sym_grit_metavariable, - [53040] = 4, - ACTIONS(3523), 1, - sym__primitive_identifier, - STATE(1776), 1, - sym_identifier, + [53288] = 5, + ACTIONS(4052), 1, + anon_sym_RPAREN, + ACTIONS(4054), 1, + anon_sym_COMMA, + ACTIONS(4551), 1, + anon_sym_PLUS, + STATE(2291), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3525), 2, - sym__raw_identifier, - sym_grit_metavariable, - [53055] = 5, - ACTIONS(2997), 1, + [53305] = 5, + ACTIONS(3933), 1, anon_sym_LPAREN, - ACTIONS(3905), 1, - anon_sym_LT2, - STATE(1140), 1, + ACTIONS(4362), 1, + anon_sym_LT, + STATE(1856), 1, sym_parameters, - STATE(1462), 1, - sym_type_arguments, + STATE(2492), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53072] = 4, - ACTIONS(842), 1, + [53322] = 4, + ACTIONS(7), 1, sym__primitive_identifier, - STATE(1597), 1, + STATE(1307), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(902), 2, + ACTIONS(97), 2, sym__raw_identifier, sym_grit_metavariable, - [53087] = 4, - ACTIONS(15), 1, + [53337] = 5, + ACTIONS(4489), 1, + anon_sym_LPAREN, + ACTIONS(4491), 1, anon_sym_LBRACE, - ACTIONS(5065), 1, - anon_sym_if, + ACTIONS(4493), 1, + anon_sym_LBRACK, + STATE(1196), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(182), 2, - sym_if_expression, - sym_block, - [53102] = 4, - ACTIONS(842), 1, + [53354] = 4, + ACTIONS(7), 1, sym__primitive_identifier, - STATE(1553), 1, + STATE(2721), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(902), 2, + ACTIONS(97), 2, sym__raw_identifier, sym_grit_metavariable, - [53117] = 4, - ACTIONS(7), 1, + [53369] = 4, + ACTIONS(3503), 1, sym__primitive_identifier, - STATE(1300), 1, + STATE(1838), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(97), 2, + ACTIONS(3505), 2, sym__raw_identifier, sym_grit_metavariable, - [53132] = 4, - ACTIONS(4709), 1, - anon_sym_COLON, - ACTIONS(4711), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3903), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [53147] = 4, - ACTIONS(842), 1, + [53384] = 4, + ACTIONS(844), 1, sym__primitive_identifier, - STATE(1552), 1, + STATE(1515), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(902), 2, + ACTIONS(904), 2, sym__raw_identifier, sym_grit_metavariable, - [53162] = 4, - ACTIONS(7), 1, - sym__primitive_identifier, - STATE(1297), 1, - sym_identifier, + [53399] = 5, + ACTIONS(4358), 1, + anon_sym_LBRACE, + ACTIONS(4360), 1, + anon_sym_where, + STATE(1067), 1, + sym_field_declaration_list, + STATE(2587), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(97), 2, - sym__raw_identifier, - sym_grit_metavariable, - [53177] = 5, - ACTIONS(4443), 1, - anon_sym_LPAREN, - ACTIONS(4445), 1, + [53416] = 5, + ACTIONS(4417), 1, + anon_sym_COLON, + ACTIONS(5090), 1, + anon_sym_SEMI, + ACTIONS(5092), 1, + anon_sym_EQ, + STATE(2618), 1, + sym_trait_bounds, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [53433] = 5, + ACTIONS(4360), 1, + anon_sym_where, + ACTIONS(4384), 1, anon_sym_LBRACE, - ACTIONS(4447), 1, - anon_sym_LBRACK, - STATE(1185), 1, - sym_delim_token_tree, + STATE(1072), 1, + sym_declaration_list, + STATE(2605), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53194] = 5, - ACTIONS(4555), 1, - anon_sym_PLUS, - ACTIONS(5067), 1, + [53450] = 4, + ACTIONS(5094), 1, anon_sym_COMMA, - ACTIONS(5069), 1, - anon_sym_GT, - STATE(2366), 1, - aux_sym_type_arguments_repeat1, + STATE(2012), 1, + aux_sym_where_clause_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53211] = 4, - ACTIONS(7), 1, + ACTIONS(3051), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + [53465] = 4, + ACTIONS(844), 1, sym__primitive_identifier, - STATE(970), 1, + STATE(1446), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(97), 2, + ACTIONS(904), 2, sym__raw_identifier, sym_grit_metavariable, - [53226] = 4, - ACTIONS(842), 1, + [53480] = 4, + ACTIONS(844), 1, sym__primitive_identifier, - STATE(1585), 1, + STATE(1449), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(902), 2, + ACTIONS(904), 2, sym__raw_identifier, sym_grit_metavariable, - [53241] = 4, - ACTIONS(4384), 1, - anon_sym_COLON, - STATE(2253), 1, - sym_trait_bounds, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(5071), 2, - anon_sym_COMMA, - anon_sym_GT, - [53256] = 5, - ACTIONS(4555), 1, - anon_sym_PLUS, - ACTIONS(5074), 1, - anon_sym_RPAREN, - ACTIONS(5076), 1, - anon_sym_COMMA, - STATE(2196), 1, - aux_sym_ordered_field_declaration_list_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [53273] = 3, - ACTIONS(5078), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4266), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - [53286] = 4, - ACTIONS(3523), 1, + [53495] = 4, + ACTIONS(7), 1, sym__primitive_identifier, - STATE(2648), 1, + STATE(1199), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3525), 2, + ACTIONS(97), 2, sym__raw_identifier, sym_grit_metavariable, - [53301] = 4, - ACTIONS(4575), 1, - anon_sym_COLON, - ACTIONS(4711), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3903), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [53316] = 5, - ACTIONS(4356), 1, + [53510] = 5, + ACTIONS(4360), 1, anon_sym_where, - ACTIONS(4591), 1, + ACTIONS(4689), 1, anon_sym_LBRACE, - STATE(869), 1, + STATE(1029), 1, sym_enum_variant_list, - STATE(2505), 1, + STATE(2525), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53333] = 4, - ACTIONS(7), 1, - sym__primitive_identifier, - STATE(2698), 1, - sym_identifier, + [53527] = 5, + ACTIONS(2999), 1, + anon_sym_LPAREN, + ACTIONS(3923), 1, + anon_sym_LT2, + STATE(1112), 1, + sym_parameters, + STATE(1467), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(97), 2, - sym__raw_identifier, - sym_grit_metavariable, - [53348] = 4, - ACTIONS(842), 1, + [53544] = 5, + ACTIONS(5096), 1, + anon_sym_LPAREN, + ACTIONS(5098), 1, + anon_sym_LBRACE, + ACTIONS(5100), 1, + anon_sym_LBRACK, + STATE(2315), 1, + sym_token_tree, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [53561] = 4, + ACTIONS(844), 1, sym__primitive_identifier, - STATE(1436), 1, + STATE(1442), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(902), 2, + ACTIONS(904), 2, sym__raw_identifier, sym_grit_metavariable, - [53363] = 4, - ACTIONS(842), 1, + [53576] = 4, + ACTIONS(844), 1, sym__primitive_identifier, - STATE(1437), 1, + STATE(1435), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(902), 2, + ACTIONS(904), 2, sym__raw_identifier, sym_grit_metavariable, - [53378] = 4, - ACTIONS(2880), 1, + [53591] = 4, + ACTIONS(2832), 1, sym__primitive_identifier, - STATE(1133), 1, + STATE(1118), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2908), 2, + ACTIONS(2860), 2, sym__raw_identifier, sym_grit_metavariable, - [53393] = 4, - ACTIONS(842), 1, + [53606] = 4, + ACTIONS(844), 1, sym__primitive_identifier, - STATE(1439), 1, + STATE(1441), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(902), 2, + ACTIONS(904), 2, sym__raw_identifier, sym_grit_metavariable, - [53408] = 5, - ACTIONS(4533), 1, + [53621] = 5, + ACTIONS(4791), 1, anon_sym_COMMA, - ACTIONS(4535), 1, + ACTIONS(4793), 1, anon_sym_GT, - ACTIONS(4937), 1, + ACTIONS(4961), 1, anon_sym_EQ, - STATE(2251), 1, + STATE(2229), 1, aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53425] = 5, - ACTIONS(2834), 1, + [53638] = 3, + ACTIONS(4551), 1, anon_sym_PLUS, - ACTIONS(5067), 1, - anon_sym_COMMA, - ACTIONS(5069), 1, - anon_sym_GT, - STATE(2366), 1, - aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53442] = 5, - ACTIONS(4555), 1, - anon_sym_PLUS, - ACTIONS(5080), 1, + ACTIONS(5102), 2, anon_sym_RPAREN, - ACTIONS(5082), 1, anon_sym_COMMA, - STATE(2223), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [53459] = 5, - ACTIONS(4356), 1, - anon_sym_where, - ACTIONS(4607), 1, - anon_sym_LBRACE, - STATE(442), 1, - sym_enum_variant_list, - STATE(2471), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [53476] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(5084), 3, + [53650] = 4, + ACTIONS(4551), 1, + anon_sym_PLUS, + ACTIONS(5104), 1, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [53486] = 4, - ACTIONS(5067), 1, - anon_sym_COMMA, - ACTIONS(5069), 1, - anon_sym_GT, - STATE(2366), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(5106), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53500] = 4, - ACTIONS(4549), 1, - anon_sym_LBRACE, - ACTIONS(5086), 1, - anon_sym_SEMI, - STATE(495), 1, - sym_block, + [53664] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53514] = 4, - ACTIONS(4555), 1, + ACTIONS(5108), 3, anon_sym_PLUS, - ACTIONS(5088), 1, + anon_sym_STAR, + anon_sym_QMARK, + [53674] = 4, + ACTIONS(4551), 1, + anon_sym_PLUS, + ACTIONS(5110), 1, anon_sym_SEMI, - ACTIONS(5090), 1, + ACTIONS(5112), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53528] = 4, - ACTIONS(4042), 1, - anon_sym_RPAREN, - ACTIONS(4044), 1, - anon_sym_COMMA, - STATE(2318), 1, - aux_sym_parameters_repeat1, + [53688] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53542] = 4, - ACTIONS(3047), 1, + ACTIONS(5114), 3, anon_sym_PLUS, - ACTIONS(3049), 1, + anon_sym_STAR, + anon_sym_QMARK, + [53698] = 4, + ACTIONS(3073), 1, + anon_sym_PLUS, + ACTIONS(3075), 1, anon_sym_COLON, - ACTIONS(5092), 1, + ACTIONS(5116), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53556] = 4, - ACTIONS(4814), 1, + [53712] = 4, + ACTIONS(4791), 1, anon_sym_COMMA, - ACTIONS(4816), 1, + ACTIONS(4793), 1, anon_sym_GT, - STATE(2225), 1, + STATE(2229), 1, aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53570] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(5094), 3, - sym__string_content, - anon_sym_DQUOTE, - sym_escape_sequence, - [53580] = 4, - ACTIONS(2834), 1, - anon_sym_PLUS, - ACTIONS(5096), 1, - sym_mutable_specifier, - ACTIONS(5098), 1, - sym_self, + [53726] = 4, + ACTIONS(4591), 1, + anon_sym_LBRACE, + ACTIONS(5118), 1, + anon_sym_SEMI, + STATE(384), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53594] = 2, + [53740] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5100), 3, + ACTIONS(5120), 3, anon_sym_PLUS, anon_sym_STAR, anon_sym_QMARK, - [53604] = 4, - ACTIONS(3085), 1, + [53750] = 4, + ACTIONS(4591), 1, + anon_sym_LBRACE, + ACTIONS(5122), 1, + anon_sym_SEMI, + STATE(324), 1, + sym_block, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [53764] = 4, + ACTIONS(3077), 1, anon_sym_PLUS, - ACTIONS(3087), 1, + ACTIONS(3079), 1, anon_sym_COLON, - ACTIONS(5092), 1, + ACTIONS(5116), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53618] = 4, - ACTIONS(4549), 1, + [53778] = 4, + ACTIONS(4591), 1, anon_sym_LBRACE, - ACTIONS(5102), 1, + ACTIONS(5124), 1, anon_sym_SEMI, - STATE(457), 1, + STATE(278), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53632] = 3, - ACTIONS(4711), 1, - anon_sym_COLON_COLON, + [53792] = 4, + ACTIONS(4591), 1, + anon_sym_LBRACE, + ACTIONS(5126), 1, + anon_sym_SEMI, + STATE(276), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3903), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [53644] = 4, - ACTIONS(4340), 1, + [53806] = 4, + ACTIONS(4384), 1, anon_sym_LBRACE, - ACTIONS(5104), 1, + ACTIONS(5128), 1, anon_sym_SEMI, - STATE(876), 1, + STATE(1088), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53658] = 2, + [53820] = 3, + ACTIONS(4551), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5106), 3, - anon_sym_SEMI, + ACTIONS(5130), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [53832] = 4, + ACTIONS(4294), 1, anon_sym_RBRACE, + ACTIONS(5132), 1, anon_sym_COMMA, - [53668] = 2, + STATE(2312), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5108), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [53678] = 4, - ACTIONS(4555), 1, - anon_sym_PLUS, - ACTIONS(5110), 1, - anon_sym_as, - ACTIONS(5112), 1, - anon_sym_GT, + [53846] = 3, + ACTIONS(4805), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53692] = 4, - ACTIONS(4995), 1, + ACTIONS(5134), 2, + anon_sym_RBRACE, anon_sym_COMMA, - ACTIONS(5114), 1, - anon_sym_PIPE, - STATE(2321), 1, - aux_sym_closure_parameters_repeat1, + [53858] = 3, + ACTIONS(5138), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53706] = 4, - ACTIONS(4549), 1, - anon_sym_LBRACE, - ACTIONS(5116), 1, - anon_sym_SEMI, - STATE(486), 1, - sym_block, + ACTIONS(5136), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [53870] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53720] = 4, - ACTIONS(4344), 1, - anon_sym_LBRACE, - ACTIONS(5118), 1, + ACTIONS(2822), 3, anon_sym_SEMI, - STATE(378), 1, - sym_declaration_list, + anon_sym_RPAREN, + anon_sym_RBRACE, + [53880] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53734] = 4, - ACTIONS(4356), 1, + ACTIONS(5140), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [53890] = 4, + ACTIONS(4360), 1, anon_sym_where, - ACTIONS(5120), 1, + ACTIONS(5142), 1, anon_sym_SEMI, - STATE(2664), 1, + STATE(2611), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53748] = 4, - ACTIONS(4549), 1, + [53904] = 4, + ACTIONS(4591), 1, anon_sym_LBRACE, - ACTIONS(5122), 1, + ACTIONS(5144), 1, anon_sym_SEMI, - STATE(478), 1, + STATE(458), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53762] = 4, - ACTIONS(4340), 1, - anon_sym_LBRACE, - ACTIONS(5124), 1, - anon_sym_SEMI, - STATE(854), 1, - sym_declaration_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [53776] = 3, - ACTIONS(4555), 1, + [53918] = 4, + ACTIONS(4551), 1, anon_sym_PLUS, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(5126), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [53788] = 4, - ACTIONS(4356), 1, - anon_sym_where, - ACTIONS(5128), 1, + ACTIONS(5146), 1, anon_sym_SEMI, - STATE(2691), 1, - sym_where_clause, + ACTIONS(5148), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53802] = 3, - ACTIONS(5130), 1, + [53932] = 3, + ACTIONS(5150), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3285), 2, + ACTIONS(3201), 2, anon_sym_COLON, anon_sym_PLUS, - [53814] = 3, - ACTIONS(4793), 1, - anon_sym_PIPE, + [53944] = 4, + ACTIONS(4294), 1, + anon_sym_RBRACE, + ACTIONS(5132), 1, + anon_sym_COMMA, + STATE(2307), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5132), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [53826] = 2, + [53958] = 4, + ACTIONS(3061), 1, + anon_sym_LBRACE, + ACTIONS(5152), 1, + anon_sym_COLON_COLON, + STATE(1250), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2916), 3, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [53836] = 3, - ACTIONS(5134), 1, + [53972] = 3, + ACTIONS(5154), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3225), 2, + ACTIONS(3148), 2, anon_sym_COLON, anon_sym_PLUS, - [53848] = 3, - ACTIONS(5136), 1, - anon_sym_DASH_GT, + [53984] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3219), 2, - anon_sym_COLON, - anon_sym_PLUS, - [53860] = 3, - ACTIONS(5138), 1, + ACTIONS(5156), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COMMA, + [53994] = 3, + ACTIONS(5158), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3211), 2, + ACTIONS(3142), 2, anon_sym_COLON, anon_sym_PLUS, - [53872] = 4, - ACTIONS(5140), 1, - anon_sym_for, - ACTIONS(5142), 1, - anon_sym_loop, - ACTIONS(5144), 1, - anon_sym_while, + [54006] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53886] = 4, - ACTIONS(4358), 1, - anon_sym_LT, - ACTIONS(5146), 1, - anon_sym_EQ, - STATE(2732), 1, - sym_type_parameters, + ACTIONS(5160), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COMMA, + [54016] = 3, + ACTIONS(5162), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53900] = 2, + ACTIONS(3127), 2, + anon_sym_COLON, + anon_sym_PLUS, + [54028] = 4, + ACTIONS(545), 1, + anon_sym_RPAREN, + ACTIONS(3687), 1, + anon_sym_COMMA, + STATE(2322), 1, + aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5148), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [53910] = 4, - ACTIONS(4549), 1, + [54042] = 4, + ACTIONS(4591), 1, anon_sym_LBRACE, - ACTIONS(5150), 1, + ACTIONS(5164), 1, anon_sym_SEMI, - STATE(440), 1, + STATE(535), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53924] = 3, - ACTIONS(5152), 1, - anon_sym_DASH_GT, + [54056] = 4, + ACTIONS(4362), 1, + anon_sym_LT, + ACTIONS(5166), 1, + anon_sym_EQ, + STATE(2736), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3166), 2, + [54070] = 3, + ACTIONS(5170), 1, anon_sym_COLON, - anon_sym_PLUS, - [53936] = 3, - ACTIONS(5154), 1, - anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3160), 2, - anon_sym_COLON, - anon_sym_PLUS, - [53948] = 4, - ACTIONS(4340), 1, - anon_sym_LBRACE, - ACTIONS(5156), 1, - anon_sym_SEMI, - STATE(899), 1, - sym_declaration_list, + ACTIONS(5168), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [54082] = 4, + ACTIONS(4300), 1, + anon_sym_RBRACE, + ACTIONS(5172), 1, + anon_sym_COMMA, + STATE(2323), 1, + aux_sym_field_initializer_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53962] = 4, - ACTIONS(707), 1, - anon_sym_RBRACK, - ACTIONS(3665), 1, + [54096] = 4, + ACTIONS(4052), 1, + anon_sym_RPAREN, + ACTIONS(4054), 1, anon_sym_COMMA, - STATE(2222), 1, - aux_sym_array_expression_repeat1, + STATE(2300), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53976] = 4, - ACTIONS(4555), 1, - anon_sym_PLUS, - ACTIONS(5158), 1, + [54110] = 4, + ACTIONS(4384), 1, + anon_sym_LBRACE, + ACTIONS(5174), 1, anon_sym_SEMI, - ACTIONS(5160), 1, - anon_sym_EQ, + STATE(1055), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53990] = 3, - ACTIONS(5162), 1, + [54124] = 3, + ACTIONS(5176), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3144), 2, + ACTIONS(3261), 2, anon_sym_COLON, anon_sym_PLUS, - [54002] = 4, - ACTIONS(4549), 1, - anon_sym_LBRACE, - ACTIONS(5164), 1, - anon_sym_SEMI, - STATE(421), 1, - sym_block, + [54136] = 4, + ACTIONS(4052), 1, + anon_sym_RPAREN, + ACTIONS(4054), 1, + anon_sym_COMMA, + STATE(2291), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54016] = 4, - ACTIONS(447), 1, - anon_sym_LBRACE, - ACTIONS(4555), 1, - anon_sym_PLUS, - STATE(1186), 1, - sym_block, + [54150] = 3, + ACTIONS(5178), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54030] = 4, - ACTIONS(4549), 1, + ACTIONS(3255), 2, + anon_sym_COLON, + anon_sym_PLUS, + [54162] = 4, + ACTIONS(447), 1, anon_sym_LBRACE, - ACTIONS(5166), 1, - anon_sym_SEMI, - STATE(409), 1, + ACTIONS(5180), 1, + anon_sym_move, + STATE(1258), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54044] = 4, - ACTIONS(5168), 1, - anon_sym_COMMA, - ACTIONS(5171), 1, - anon_sym_PIPE, - STATE(2191), 1, - aux_sym_closure_parameters_repeat1, + [54176] = 3, + ACTIONS(5182), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54058] = 4, - ACTIONS(4344), 1, + ACTIONS(3227), 2, + anon_sym_COLON, + anon_sym_PLUS, + [54188] = 4, + ACTIONS(4372), 1, anon_sym_LBRACE, - ACTIONS(5173), 1, + ACTIONS(5184), 1, anon_sym_SEMI, - STATE(386), 1, + STATE(520), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54072] = 3, - ACTIONS(4899), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(5171), 2, - anon_sym_COMMA, - anon_sym_PIPE, - [54084] = 4, - ACTIONS(4344), 1, + [54202] = 4, + ACTIONS(4372), 1, anon_sym_LBRACE, - ACTIONS(5175), 1, + ACTIONS(5186), 1, anon_sym_SEMI, - STATE(383), 1, + STATE(518), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54098] = 3, - ACTIONS(4555), 1, + [54216] = 3, + ACTIONS(4551), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5177), 2, + ACTIONS(5188), 2, anon_sym_RBRACE, anon_sym_COMMA, - [54110] = 4, - ACTIONS(5179), 1, + [54228] = 4, + ACTIONS(5190), 1, anon_sym_RPAREN, - ACTIONS(5181), 1, + ACTIONS(5192), 1, anon_sym_COMMA, - STATE(2240), 1, + STATE(2252), 1, aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54124] = 3, - ACTIONS(4623), 1, + [54242] = 3, + ACTIONS(4551), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5194), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [54254] = 3, + ACTIONS(4719), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3903), 2, + ACTIONS(3921), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [54136] = 3, + [54266] = 4, + ACTIONS(4360), 1, + anon_sym_where, + ACTIONS(5196), 1, + anon_sym_SEMI, + STATE(2707), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [54280] = 3, ACTIONS(4555), 1, - anon_sym_PLUS, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5183), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [54148] = 2, + ACTIONS(3921), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [54292] = 4, + ACTIONS(3923), 1, + anon_sym_LT2, + ACTIONS(4340), 1, + anon_sym_LBRACE, + STATE(1467), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5185), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [54158] = 4, - ACTIONS(4555), 1, + [54306] = 4, + ACTIONS(5198), 1, + anon_sym_for, + ACTIONS(5200), 1, + anon_sym_loop, + ACTIONS(5202), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [54320] = 4, + ACTIONS(4551), 1, anon_sym_PLUS, - ACTIONS(5187), 1, + ACTIONS(5204), 1, anon_sym_SEMI, - ACTIONS(5189), 1, + ACTIONS(5206), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54172] = 3, - ACTIONS(4555), 1, - anon_sym_PLUS, + [54334] = 3, + ACTIONS(4755), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5191), 2, - anon_sym_COMMA, - anon_sym_GT, - [54184] = 4, - ACTIONS(5193), 1, - anon_sym_for, - ACTIONS(5195), 1, - anon_sym_loop, - ACTIONS(5197), 1, - anon_sym_while, + ACTIONS(3921), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [54346] = 4, + ACTIONS(4372), 1, + anon_sym_LBRACE, + ACTIONS(5208), 1, + anon_sym_SEMI, + STATE(379), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54198] = 3, - ACTIONS(4793), 1, - anon_sym_PIPE, + [54360] = 3, + ACTIONS(4551), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5199), 2, - anon_sym_RBRACE, + ACTIONS(5210), 2, anon_sym_COMMA, - [54210] = 4, - ACTIONS(4549), 1, - anon_sym_LBRACE, - ACTIONS(5201), 1, - anon_sym_SEMI, - STATE(331), 1, - sym_block, + anon_sym_GT, + [54372] = 3, + ACTIONS(4805), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54224] = 4, - ACTIONS(5203), 1, + ACTIONS(5212), 2, anon_sym_RBRACE, - ACTIONS(5205), 1, anon_sym_COMMA, - STATE(2284), 1, + [54384] = 4, + ACTIONS(5214), 1, + anon_sym_RBRACE, + ACTIONS(5216), 1, + anon_sym_COMMA, + STATE(2288), 1, aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54238] = 4, - ACTIONS(784), 1, - anon_sym_LBRACE, - ACTIONS(5207), 1, - anon_sym_move, - STATE(248), 1, - sym_block, + [54398] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54252] = 3, - ACTIONS(4571), 1, - anon_sym_COLON_COLON, + ACTIONS(5218), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [54408] = 4, + ACTIONS(4591), 1, + anon_sym_LBRACE, + ACTIONS(5220), 1, + anon_sym_SEMI, + STATE(511), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3903), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [54264] = 3, - ACTIONS(3635), 1, + [54422] = 3, + ACTIONS(3649), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5209), 2, + ACTIONS(5222), 2, anon_sym_RPAREN, anon_sym_COMMA, - [54276] = 3, - ACTIONS(4555), 1, + [54434] = 3, + ACTIONS(4551), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4933), 2, + ACTIONS(4984), 2, anon_sym_RPAREN, anon_sym_COMMA, - [54288] = 4, - ACTIONS(4549), 1, + [54446] = 4, + ACTIONS(4591), 1, anon_sym_LBRACE, - ACTIONS(5211), 1, + ACTIONS(5224), 1, anon_sym_SEMI, - STATE(489), 1, + STATE(528), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54302] = 4, - ACTIONS(2778), 1, - anon_sym_RPAREN, - ACTIONS(5213), 1, - anon_sym_COMMA, - STATE(1991), 1, - aux_sym_tuple_pattern_repeat1, + [54460] = 4, + ACTIONS(4551), 1, + anon_sym_PLUS, + ACTIONS(5226), 1, + anon_sym_as, + ACTIONS(5228), 1, + anon_sym_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54316] = 4, - ACTIONS(4555), 1, + [54474] = 4, + ACTIONS(447), 1, + anon_sym_LBRACE, + ACTIONS(4551), 1, anon_sym_PLUS, - ACTIONS(5215), 1, - anon_sym_SEMI, - ACTIONS(5217), 1, - anon_sym_RBRACK, + STATE(1253), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54330] = 4, - ACTIONS(4034), 1, + [54488] = 4, + ACTIONS(4024), 1, anon_sym_RPAREN, - ACTIONS(4036), 1, + ACTIONS(4026), 1, anon_sym_COMMA, - STATE(2288), 1, + STATE(2292), 1, aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54344] = 4, - ACTIONS(2786), 1, - anon_sym_RBRACK, - ACTIONS(5219), 1, - anon_sym_COMMA, - STATE(1991), 1, - aux_sym_tuple_pattern_repeat1, + [54502] = 4, + ACTIONS(4591), 1, + anon_sym_LBRACE, + ACTIONS(5230), 1, + anon_sym_SEMI, + STATE(281), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54358] = 2, + [54516] = 4, + ACTIONS(5232), 1, + anon_sym_COMMA, + ACTIONS(5235), 1, + anon_sym_PIPE, + STATE(2219), 1, + aux_sym_closure_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2858), 3, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [54368] = 4, - ACTIONS(4543), 1, + [54530] = 4, + ACTIONS(4561), 1, anon_sym_LBRACE, - ACTIONS(5221), 1, + ACTIONS(5237), 1, anon_sym_SEMI, - STATE(924), 1, + STATE(1024), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54382] = 4, - ACTIONS(4549), 1, - anon_sym_LBRACE, - ACTIONS(5223), 1, - anon_sym_SEMI, - STATE(323), 1, - sym_block, + [54544] = 4, + ACTIONS(2790), 1, + anon_sym_RPAREN, + ACTIONS(5239), 1, + anon_sym_COMMA, + STATE(2053), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54396] = 4, - ACTIONS(4555), 1, - anon_sym_PLUS, - ACTIONS(5225), 1, + [54558] = 4, + ACTIONS(4384), 1, + anon_sym_LBRACE, + ACTIONS(5241), 1, anon_sym_SEMI, - ACTIONS(5227), 1, - anon_sym_EQ, + STATE(935), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54410] = 4, - ACTIONS(5025), 1, + [54572] = 4, + ACTIONS(5082), 1, anon_sym_COMMA, - ACTIONS(5027), 1, + ACTIONS(5084), 1, anon_sym_GT, - STATE(2297), 1, + STATE(2301), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54424] = 4, - ACTIONS(4248), 1, - anon_sym_RBRACE, - ACTIONS(5229), 1, - anon_sym_COMMA, - STATE(2309), 1, - aux_sym_field_initializer_list_repeat1, + [54586] = 3, + ACTIONS(4915), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54438] = 3, - ACTIONS(5233), 1, + ACTIONS(5235), 2, + anon_sym_COMMA, + anon_sym_PIPE, + [54598] = 3, + ACTIONS(5245), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5231), 2, + ACTIONS(5243), 2, anon_sym_RBRACE, anon_sym_COMMA, - [54450] = 4, - ACTIONS(3757), 1, - anon_sym_RBRACK, - ACTIONS(5235), 1, - anon_sym_COMMA, - STATE(2222), 1, - aux_sym_array_expression_repeat1, + [54610] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54464] = 4, - ACTIONS(2970), 1, + ACTIONS(2916), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [54620] = 4, + ACTIONS(2962), 1, anon_sym_RPAREN, - ACTIONS(5238), 1, + ACTIONS(5247), 1, anon_sym_COMMA, - STATE(2374), 1, + STATE(2281), 1, aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54478] = 4, - ACTIONS(4549), 1, - anon_sym_LBRACE, - ACTIONS(5240), 1, - anon_sym_SEMI, - STATE(275), 1, - sym_block, + [54634] = 4, + ACTIONS(4931), 1, + anon_sym_COMMA, + ACTIONS(5249), 1, + anon_sym_PIPE, + STATE(2303), 1, + aux_sym_closure_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54492] = 4, - ACTIONS(4232), 1, + [54648] = 4, + ACTIONS(4206), 1, anon_sym_GT, - ACTIONS(5242), 1, + ACTIONS(5251), 1, anon_sym_COMMA, - STATE(2390), 1, + STATE(2363), 1, aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54506] = 4, - ACTIONS(4549), 1, + [54662] = 4, + ACTIONS(4591), 1, anon_sym_LBRACE, - ACTIONS(5244), 1, + ACTIONS(5253), 1, anon_sym_SEMI, - STATE(284), 1, + STATE(506), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54520] = 4, - ACTIONS(4191), 1, + [54676] = 4, + ACTIONS(4202), 1, anon_sym_GT, - ACTIONS(5246), 1, + ACTIONS(5255), 1, anon_sym_COMMA, - STATE(2390), 1, + STATE(2363), 1, aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54534] = 4, - ACTIONS(4344), 1, - anon_sym_LBRACE, - ACTIONS(5248), 1, - anon_sym_SEMI, - STATE(328), 1, - sym_declaration_list, + [54690] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54548] = 4, - ACTIONS(4340), 1, + ACTIONS(5257), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [54700] = 4, + ACTIONS(4384), 1, anon_sym_LBRACE, - ACTIONS(5250), 1, + ACTIONS(5259), 1, anon_sym_SEMI, - STATE(928), 1, + STATE(1013), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54562] = 2, + [54714] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5252), 3, - anon_sym_SEMI, + ACTIONS(5261), 3, + sym__string_content, + anon_sym_DQUOTE, + sym_escape_sequence, + [54724] = 3, + ACTIONS(5265), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5263), 2, anon_sym_RBRACE, anon_sym_COMMA, - [54572] = 4, - ACTIONS(3905), 1, - anon_sym_LT2, - ACTIONS(4316), 1, - anon_sym_LBRACE, - STATE(1462), 1, - sym_type_arguments, + [54736] = 4, + ACTIONS(4551), 1, + anon_sym_PLUS, + ACTIONS(5267), 1, + anon_sym_SEMI, + ACTIONS(5269), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54586] = 4, - ACTIONS(555), 1, - anon_sym_RPAREN, - ACTIONS(3675), 1, + [54750] = 4, + ACTIONS(5271), 1, + anon_sym_RBRACE, + ACTIONS(5273), 1, anon_sym_COMMA, - STATE(2308), 1, - aux_sym_arguments_repeat1, + STATE(2284), 1, + aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54600] = 4, - ACTIONS(4344), 1, + [54764] = 4, + ACTIONS(4591), 1, anon_sym_LBRACE, - ACTIONS(5254), 1, + ACTIONS(5275), 1, anon_sym_SEMI, - STATE(288), 1, - sym_declaration_list, + STATE(479), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54614] = 4, - ACTIONS(4344), 1, + [54778] = 4, + ACTIONS(4591), 1, anon_sym_LBRACE, - ACTIONS(5256), 1, + ACTIONS(5277), 1, anon_sym_SEMI, - STATE(291), 1, - sym_declaration_list, + STATE(466), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54628] = 4, - ACTIONS(5258), 1, - anon_sym_RBRACE, - ACTIONS(5260), 1, + [54792] = 4, + ACTIONS(1076), 1, + anon_sym_GT, + ACTIONS(5279), 1, anon_sym_COMMA, - STATE(2364), 1, - aux_sym_struct_pattern_repeat1, + STATE(2276), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54642] = 3, - ACTIONS(5264), 1, - anon_sym_COLON, + [54806] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5262), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [54654] = 4, - ACTIONS(4234), 1, + ACTIONS(5281), 3, + anon_sym_SEMI, anon_sym_RBRACE, - ACTIONS(5266), 1, anon_sym_COMMA, - STATE(2239), 1, - aux_sym_field_declaration_list_repeat1, + [54816] = 4, + ACTIONS(4372), 1, + anon_sym_LBRACE, + ACTIONS(5283), 1, + anon_sym_SEMI, + STATE(463), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54668] = 3, - ACTIONS(4555), 1, - anon_sym_PLUS, + [54830] = 4, + ACTIONS(4372), 1, + anon_sym_LBRACE, + ACTIONS(5285), 1, + anon_sym_SEMI, + STATE(459), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5268), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [54680] = 4, - ACTIONS(5270), 1, + [54844] = 4, + ACTIONS(4228), 1, anon_sym_RBRACE, - ACTIONS(5272), 1, + ACTIONS(5287), 1, anon_sym_COMMA, - STATE(2239), 1, + STATE(2247), 1, aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54694] = 4, - ACTIONS(5275), 1, - anon_sym_RPAREN, - ACTIONS(5277), 1, - anon_sym_COMMA, - STATE(2240), 1, - aux_sym_ordered_field_declaration_list_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [54708] = 3, - ACTIONS(4555), 1, + [54858] = 3, + ACTIONS(4551), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5280), 2, - anon_sym_RPAREN, + ACTIONS(5289), 2, + anon_sym_RBRACE, anon_sym_COMMA, - [54720] = 4, - ACTIONS(4555), 1, + [54870] = 4, + ACTIONS(4551), 1, anon_sym_PLUS, - ACTIONS(5282), 1, + ACTIONS(5291), 1, anon_sym_SEMI, - ACTIONS(5284), 1, + ACTIONS(5293), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54734] = 4, - ACTIONS(5286), 1, - anon_sym_RPAREN, - ACTIONS(5288), 1, + [54884] = 4, + ACTIONS(5295), 1, + anon_sym_RBRACE, + ACTIONS(5297), 1, anon_sym_COMMA, - STATE(2240), 1, - aux_sym_ordered_field_declaration_list_repeat1, + STATE(2247), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54748] = 4, - ACTIONS(5260), 1, + [54898] = 4, + ACTIONS(5273), 1, anon_sym_COMMA, - ACTIONS(5290), 1, + ACTIONS(5300), 1, anon_sym_RBRACE, - STATE(2367), 1, + STATE(2284), 1, aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54762] = 4, - ACTIONS(4866), 1, + [54912] = 4, + ACTIONS(4811), 1, anon_sym_RBRACE, - ACTIONS(5292), 1, + ACTIONS(5302), 1, anon_sym_COMMA, - STATE(2312), 1, + STATE(2316), 1, aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54776] = 2, + [54926] = 4, + ACTIONS(5304), 1, + anon_sym_for, + ACTIONS(5306), 1, + anon_sym_loop, + ACTIONS(5308), 1, + anon_sym_while, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3797), 3, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - [54786] = 4, - ACTIONS(4356), 1, + [54940] = 4, + ACTIONS(4360), 1, anon_sym_where, - ACTIONS(5294), 1, + ACTIONS(5310), 1, anon_sym_SEMI, - STATE(2674), 1, + STATE(2670), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54800] = 4, - ACTIONS(4555), 1, - anon_sym_PLUS, - ACTIONS(5296), 1, - anon_sym_SEMI, - ACTIONS(5298), 1, - anon_sym_EQ, + [54954] = 4, + ACTIONS(5312), 1, + anon_sym_RPAREN, + ACTIONS(5314), 1, + anon_sym_COMMA, + STATE(2252), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54814] = 4, - ACTIONS(2950), 1, - anon_sym_RPAREN, - ACTIONS(5300), 1, - anon_sym_COMMA, - STATE(2374), 1, - aux_sym_tuple_type_repeat1, + [54968] = 3, + ACTIONS(4551), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54828] = 4, - ACTIONS(5302), 1, + ACTIONS(5317), 2, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(5304), 1, - anon_sym_GT, - STATE(2383), 1, - aux_sym_for_lifetimes_repeat1, + [54980] = 4, + ACTIONS(5319), 1, + anon_sym_RPAREN, + ACTIONS(5321), 1, + anon_sym_COMMA, + STATE(2252), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54842] = 4, - ACTIONS(4218), 1, - anon_sym_GT, - ACTIONS(5306), 1, - anon_sym_COMMA, - STATE(2390), 1, - aux_sym_type_parameters_repeat1, + [54994] = 4, + ACTIONS(4551), 1, + anon_sym_PLUS, + ACTIONS(5323), 1, + anon_sym_SEMI, + ACTIONS(5325), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54856] = 4, - ACTIONS(4356), 1, - anon_sym_where, - ACTIONS(5308), 1, + [55008] = 4, + ACTIONS(4372), 1, + anon_sym_LBRACE, + ACTIONS(5327), 1, anon_sym_SEMI, - STATE(2675), 1, - sym_where_clause, + STATE(433), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54870] = 2, + [55022] = 4, + ACTIONS(4551), 1, + anon_sym_PLUS, + ACTIONS(5329), 1, + anon_sym_SEMI, + ACTIONS(5331), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5310), 3, - anon_sym_EQ, + [55036] = 4, + ACTIONS(4669), 1, anon_sym_COMMA, + ACTIONS(4671), 1, anon_sym_GT, - [54880] = 4, - ACTIONS(4344), 1, - anon_sym_LBRACE, - ACTIONS(5312), 1, - anon_sym_SEMI, - STATE(306), 1, - sym_declaration_list, + STATE(2387), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54894] = 2, + [55050] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5314), 3, - anon_sym_EQ, + ACTIONS(5333), 3, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_GT, - [54904] = 4, - ACTIONS(4340), 1, + [55060] = 4, + ACTIONS(4384), 1, anon_sym_LBRACE, - ACTIONS(5316), 1, + ACTIONS(5335), 1, anon_sym_SEMI, - STATE(979), 1, + STATE(976), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54918] = 4, - ACTIONS(4216), 1, - anon_sym_GT, - ACTIONS(5318), 1, - anon_sym_COMMA, - STATE(2390), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [54932] = 4, - ACTIONS(4344), 1, + [55074] = 4, + ACTIONS(4372), 1, anon_sym_LBRACE, - ACTIONS(5320), 1, + ACTIONS(5337), 1, anon_sym_SEMI, - STATE(483), 1, + STATE(430), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54946] = 4, - ACTIONS(4344), 1, + [55088] = 3, + ACTIONS(4551), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5339), 2, + anon_sym_COMMA, + anon_sym_GT, + [55100] = 4, + ACTIONS(4372), 1, anon_sym_LBRACE, - ACTIONS(5322), 1, + ACTIONS(5341), 1, anon_sym_SEMI, - STATE(308), 1, + STATE(498), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54960] = 3, - ACTIONS(4555), 1, + [55114] = 3, + ACTIONS(4551), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5324), 2, + ACTIONS(5343), 2, anon_sym_COMMA, anon_sym_GT, - [54972] = 4, - ACTIONS(4533), 1, + [55126] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5345), 3, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_COMMA, - ACTIONS(4535), 1, + [55136] = 4, + ACTIONS(5347), 1, + anon_sym_COMMA, + ACTIONS(5350), 1, anon_sym_GT, - STATE(2251), 1, - aux_sym_type_parameters_repeat1, + STATE(2266), 1, + aux_sym_for_lifetimes_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54986] = 4, - ACTIONS(2738), 1, + [55150] = 4, + ACTIONS(2740), 1, anon_sym_SQUOTE, - ACTIONS(5326), 1, + ACTIONS(5352), 1, anon_sym_GT, - STATE(2567), 1, + STATE(2569), 1, sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55000] = 3, - ACTIONS(4555), 1, - anon_sym_PLUS, + [55164] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5328), 2, - anon_sym_COMMA, - anon_sym_GT, - [55012] = 4, - ACTIONS(5330), 1, + ACTIONS(5354), 3, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_COMMA, - ACTIONS(5333), 1, - anon_sym_GT, - STATE(2264), 1, - aux_sym_type_arguments_repeat1, + [55174] = 4, + ACTIONS(4360), 1, + anon_sym_where, + ACTIONS(5356), 1, + anon_sym_SEMI, + STATE(2702), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55026] = 4, - ACTIONS(4356), 1, + [55188] = 4, + ACTIONS(4360), 1, anon_sym_where, - ACTIONS(5335), 1, + ACTIONS(5358), 1, anon_sym_SEMI, - STATE(2707), 1, + STATE(2654), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55040] = 3, - ACTIONS(2834), 1, - anon_sym_PLUS, + [55202] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5333), 2, + ACTIONS(5360), 3, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_GT, - [55052] = 3, - ACTIONS(4555), 1, - anon_sym_PLUS, + [55212] = 4, + ACTIONS(687), 1, + anon_sym_RBRACK, + ACTIONS(5362), 1, + anon_sym_COMMA, + STATE(2328), 1, + aux_sym_array_expression_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5333), 2, - anon_sym_COMMA, - anon_sym_GT, - [55064] = 4, - ACTIONS(5337), 1, - anon_sym_for, - ACTIONS(5339), 1, - anon_sym_loop, - ACTIONS(5341), 1, - anon_sym_while, + [55226] = 3, + ACTIONS(4551), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55078] = 3, - ACTIONS(4793), 1, - anon_sym_PIPE, + ACTIONS(5364), 2, + anon_sym_COMMA, + anon_sym_GT, + [55238] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5343), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [55090] = 4, - ACTIONS(5345), 1, + ACTIONS(5366), 3, + anon_sym_SEMI, anon_sym_RBRACE, - ACTIONS(5347), 1, anon_sym_COMMA, - STATE(2270), 1, - aux_sym_struct_pattern_repeat1, + [55248] = 4, + ACTIONS(5368), 1, + anon_sym_for, + ACTIONS(5370), 1, + anon_sym_loop, + ACTIONS(5372), 1, + anon_sym_while, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55104] = 3, - ACTIONS(5352), 1, - anon_sym_COLON, + [55262] = 4, + ACTIONS(5374), 1, + anon_sym_COMMA, + ACTIONS(5377), 1, + anon_sym_GT, + STATE(2276), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5350), 2, + [55276] = 4, + ACTIONS(3665), 1, anon_sym_RBRACE, + ACTIONS(5379), 1, anon_sym_COMMA, - [55116] = 4, - ACTIONS(4549), 1, - anon_sym_LBRACE, - ACTIONS(5354), 1, - anon_sym_SEMI, - STATE(311), 1, - sym_block, + STATE(2346), 1, + aux_sym_use_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55130] = 4, - ACTIONS(3051), 1, + [55290] = 3, + ACTIONS(2882), 1, anon_sym_PLUS, - ACTIONS(3053), 1, - anon_sym_COLON, - ACTIONS(5092), 1, - anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55144] = 4, - ACTIONS(5356), 1, - anon_sym_RPAREN, - ACTIONS(5358), 1, + ACTIONS(5377), 2, anon_sym_COMMA, - STATE(2279), 1, - aux_sym_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [55158] = 3, - ACTIONS(3635), 1, - anon_sym_COLON_COLON, + anon_sym_GT, + [55302] = 3, + ACTIONS(4551), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4824), 2, - anon_sym_RPAREN, + ACTIONS(5377), 2, anon_sym_COMMA, - [55170] = 2, + anon_sym_GT, + [55314] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5360), 3, + ACTIONS(5381), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [55180] = 4, - ACTIONS(447), 1, - anon_sym_LBRACE, - ACTIONS(4555), 1, - anon_sym_PLUS, - STATE(1215), 1, - sym_block, + [55324] = 4, + ACTIONS(5102), 1, + anon_sym_RPAREN, + ACTIONS(5383), 1, + anon_sym_COMMA, + STATE(2281), 1, + aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55194] = 4, - ACTIONS(4793), 1, + [55338] = 3, + ACTIONS(4805), 1, anon_sym_PIPE, - ACTIONS(5362), 1, - anon_sym_EQ_GT, - ACTIONS(5364), 1, - anon_sym_if, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55208] = 4, - ACTIONS(4948), 1, - anon_sym_RPAREN, - ACTIONS(5366), 1, + ACTIONS(5386), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(2279), 1, - aux_sym_parameters_repeat1, + [55350] = 4, + ACTIONS(3025), 1, + anon_sym_PLUS, + ACTIONS(3027), 1, + anon_sym_COLON, + ACTIONS(5116), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55222] = 3, - ACTIONS(4555), 1, - anon_sym_PLUS, + [55364] = 4, + ACTIONS(5388), 1, + anon_sym_RBRACE, + ACTIONS(5390), 1, + anon_sym_COMMA, + STATE(2284), 1, + aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4948), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [55234] = 3, - ACTIONS(4531), 1, - anon_sym_COLON_COLON, + [55378] = 4, + ACTIONS(4591), 1, + anon_sym_LBRACE, + ACTIONS(5393), 1, + anon_sym_SEMI, + STATE(428), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3903), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [55246] = 4, - ACTIONS(5369), 1, - anon_sym_RBRACE, - ACTIONS(5371), 1, - anon_sym_COMMA, - STATE(2359), 1, - aux_sym_use_list_repeat1, + [55392] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55260] = 4, - ACTIONS(4555), 1, - anon_sym_PLUS, - ACTIONS(5373), 1, + ACTIONS(5395), 3, anon_sym_SEMI, - ACTIONS(5375), 1, - anon_sym_EQ, + anon_sym_RBRACE, + anon_sym_COMMA, + [55402] = 4, + ACTIONS(4372), 1, + anon_sym_LBRACE, + ACTIONS(5397), 1, + anon_sym_SEMI, + STATE(354), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55274] = 4, - ACTIONS(4129), 1, + [55416] = 4, + ACTIONS(4153), 1, anon_sym_RBRACE, - ACTIONS(5377), 1, + ACTIONS(5399), 1, anon_sym_COMMA, - STATE(2296), 1, + STATE(2312), 1, aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55288] = 4, - ACTIONS(4129), 1, + [55430] = 4, + ACTIONS(4153), 1, anon_sym_RBRACE, - ACTIONS(5377), 1, + ACTIONS(5399), 1, anon_sym_COMMA, - STATE(2350), 1, + STATE(2354), 1, aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55302] = 4, - ACTIONS(691), 1, - anon_sym_RBRACK, - ACTIONS(5379), 1, + [55444] = 4, + ACTIONS(5401), 1, + anon_sym_RBRACE, + ACTIONS(5403), 1, anon_sym_COMMA, - STATE(2222), 1, - aux_sym_array_expression_repeat1, + STATE(2277), 1, + aux_sym_use_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55316] = 2, + [55458] = 4, + ACTIONS(5405), 1, + anon_sym_RPAREN, + ACTIONS(5407), 1, + anon_sym_COMMA, + STATE(2300), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4943), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COMMA, - [55326] = 4, - ACTIONS(4038), 1, + [55472] = 4, + ACTIONS(4060), 1, anon_sym_RPAREN, - ACTIONS(4040), 1, + ACTIONS(4062), 1, anon_sym_COMMA, - STATE(2279), 1, + STATE(2300), 1, aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55340] = 4, - ACTIONS(3073), 1, - anon_sym_LBRACE, - ACTIONS(5381), 1, - anon_sym_COLON_COLON, - STATE(1243), 1, - sym_field_initializer_list, + [55486] = 4, + ACTIONS(2740), 1, + anon_sym_SQUOTE, + ACTIONS(5409), 1, + anon_sym_GT, + STATE(2569), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55354] = 4, - ACTIONS(4183), 1, - anon_sym_RBRACE, - ACTIONS(5383), 1, - anon_sym_COMMA, - STATE(2296), 1, - aux_sym_enum_variant_list_repeat2, + [55500] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55368] = 4, - ACTIONS(4038), 1, + ACTIONS(5411), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [55510] = 4, + ACTIONS(4060), 1, anon_sym_RPAREN, - ACTIONS(4040), 1, + ACTIONS(4062), 1, anon_sym_COMMA, - STATE(2352), 1, + STATE(2356), 1, aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55382] = 3, - ACTIONS(5387), 1, - anon_sym_EQ, + [55524] = 4, + ACTIONS(5409), 1, + anon_sym_GT, + ACTIONS(5413), 1, + anon_sym_COMMA, + STATE(2266), 1, + aux_sym_for_lifetimes_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5385), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [55394] = 4, - ACTIONS(4555), 1, - anon_sym_PLUS, - ACTIONS(5389), 1, - anon_sym_SEMI, - ACTIONS(5391), 1, - anon_sym_EQ, + [55538] = 3, + ACTIONS(3649), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55408] = 4, - ACTIONS(4543), 1, + ACTIONS(4767), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [55550] = 4, + ACTIONS(4561), 1, anon_sym_LBRACE, - ACTIONS(5393), 1, + ACTIONS(5415), 1, anon_sym_SEMI, - STATE(1057), 1, + STATE(931), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55422] = 4, - ACTIONS(4114), 1, - anon_sym_RBRACE, - ACTIONS(5395), 1, - anon_sym_COMMA, - STATE(2296), 1, - aux_sym_enum_variant_list_repeat2, + [55564] = 3, + ACTIONS(4609), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55436] = 4, - ACTIONS(5397), 1, - anon_sym_RBRACE, - ACTIONS(5399), 1, + ACTIONS(3921), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [55576] = 4, + ACTIONS(4973), 1, + anon_sym_RPAREN, + ACTIONS(5417), 1, anon_sym_COMMA, - STATE(2296), 1, - aux_sym_enum_variant_list_repeat2, + STATE(2300), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55450] = 4, - ACTIONS(1070), 1, + [55590] = 4, + ACTIONS(1058), 1, anon_sym_GT, - ACTIONS(5402), 1, + ACTIONS(5420), 1, anon_sym_COMMA, - STATE(2264), 1, + STATE(2276), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55464] = 4, - ACTIONS(5404), 1, - anon_sym_COMMA, - ACTIONS(5407), 1, - anon_sym_GT, - STATE(2298), 1, - aux_sym_for_lifetimes_repeat1, + [55604] = 3, + ACTIONS(4551), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55478] = 2, + ACTIONS(4973), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [55616] = 4, + ACTIONS(4931), 1, + anon_sym_COMMA, + ACTIONS(5422), 1, + anon_sym_PIPE, + STATE(2219), 1, + aux_sym_closure_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5409), 3, + [55630] = 4, + ACTIONS(4360), 1, + anon_sym_where, + ACTIONS(5424), 1, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [55488] = 4, - ACTIONS(4903), 1, - anon_sym_RBRACE, - ACTIONS(5411), 1, - anon_sym_COMMA, - STATE(2338), 1, - aux_sym_field_declaration_list_repeat1, + STATE(2729), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55502] = 4, - ACTIONS(553), 1, - anon_sym_RPAREN, - ACTIONS(5413), 1, - anon_sym_COMMA, - STATE(2308), 1, - aux_sym_arguments_repeat1, + [55644] = 4, + ACTIONS(3061), 1, + anon_sym_LBRACE, + ACTIONS(5426), 1, + anon_sym_COLON_COLON, + STATE(1250), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55516] = 3, - ACTIONS(5417), 1, - anon_sym_EQ, + [55658] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5415), 2, - anon_sym_RBRACE, + ACTIONS(4975), 3, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_COMMA, - [55528] = 4, - ACTIONS(4114), 1, + [55668] = 4, + ACTIONS(4204), 1, anon_sym_RBRACE, - ACTIONS(5395), 1, + ACTIONS(5428), 1, anon_sym_COMMA, - STATE(2290), 1, + STATE(2312), 1, aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55542] = 4, - ACTIONS(4340), 1, + [55682] = 4, + ACTIONS(4384), 1, anon_sym_LBRACE, - ACTIONS(5419), 1, + ACTIONS(5430), 1, anon_sym_SEMI, - STATE(1085), 1, + STATE(907), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55556] = 4, - ACTIONS(4340), 1, + [55696] = 4, + ACTIONS(4384), 1, anon_sym_LBRACE, - ACTIONS(5421), 1, + ACTIONS(5432), 1, anon_sym_SEMI, - STATE(1088), 1, + STATE(903), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55570] = 2, + [55710] = 3, + ACTIONS(4961), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5423), 3, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(5059), 2, + anon_sym_COMMA, + anon_sym_GT, + [55722] = 4, + ACTIONS(4817), 1, + anon_sym_RBRACE, + ACTIONS(5434), 1, anon_sym_COMMA, - [55580] = 2, + STATE(2352), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5425), 3, - anon_sym_SEMI, + [55736] = 4, + ACTIONS(5436), 1, anon_sym_RBRACE, + ACTIONS(5438), 1, anon_sym_COMMA, - [55590] = 4, - ACTIONS(3787), 1, - anon_sym_RPAREN, - ACTIONS(5427), 1, - anon_sym_COMMA, - STATE(2308), 1, - aux_sym_arguments_repeat1, + STATE(2312), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55604] = 4, - ACTIONS(5430), 1, - anon_sym_RBRACE, - ACTIONS(5432), 1, - anon_sym_COMMA, - STATE(2309), 1, - aux_sym_field_initializer_list_repeat1, + [55750] = 4, + ACTIONS(4372), 1, + anon_sym_LBRACE, + ACTIONS(5441), 1, + anon_sym_SEMI, + STATE(452), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55618] = 4, - ACTIONS(4555), 1, + [55764] = 4, + ACTIONS(4551), 1, anon_sym_PLUS, - ACTIONS(5435), 1, + ACTIONS(5443), 1, anon_sym_SEMI, - ACTIONS(5437), 1, + ACTIONS(5445), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55632] = 2, + [55778] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5439), 3, + ACTIONS(5447), 3, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COMMA, - [55642] = 4, - ACTIONS(4143), 1, + anon_sym_RPAREN, anon_sym_RBRACE, - ACTIONS(5441), 1, + [55788] = 4, + ACTIONS(4252), 1, + anon_sym_RBRACE, + ACTIONS(5449), 1, anon_sym_COMMA, - STATE(2239), 1, + STATE(2247), 1, aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55656] = 4, - ACTIONS(4143), 1, + [55802] = 4, + ACTIONS(4252), 1, anon_sym_RBRACE, - ACTIONS(5441), 1, + ACTIONS(5449), 1, anon_sym_COMMA, - STATE(2365), 1, + STATE(2369), 1, aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55670] = 4, - ACTIONS(3985), 1, - anon_sym_COLON_COLON, - ACTIONS(4016), 1, - anon_sym_COLON, - STATE(2306), 1, - sym_trait_bounds, + [55816] = 3, + ACTIONS(5453), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55684] = 4, - ACTIONS(4016), 1, - anon_sym_COLON, - ACTIONS(5092), 1, - anon_sym_COLON_COLON, - STATE(2306), 1, - sym_trait_bounds, + ACTIONS(5451), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [55828] = 4, + ACTIONS(559), 1, + anon_sym_RPAREN, + ACTIONS(5455), 1, + anon_sym_COMMA, + STATE(2322), 1, + aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55698] = 4, - ACTIONS(4356), 1, - anon_sym_where, - ACTIONS(5443), 1, - anon_sym_SEMI, - STATE(2604), 1, - sym_where_clause, + [55842] = 4, + ACTIONS(4362), 1, + anon_sym_LT, + ACTIONS(5457), 1, + anon_sym_EQ, + STATE(2717), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55712] = 4, - ACTIONS(4340), 1, + [55856] = 4, + ACTIONS(4384), 1, anon_sym_LBRACE, - ACTIONS(5445), 1, + ACTIONS(5459), 1, anon_sym_SEMI, - STATE(1098), 1, + STATE(891), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55726] = 4, - ACTIONS(4024), 1, + [55870] = 4, + ACTIONS(3811), 1, anon_sym_RPAREN, - ACTIONS(4026), 1, + ACTIONS(5461), 1, anon_sym_COMMA, - STATE(2279), 1, - aux_sym_parameters_repeat1, + STATE(2322), 1, + aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55740] = 4, - ACTIONS(4356), 1, - anon_sym_where, - ACTIONS(5447), 1, - anon_sym_SEMI, - STATE(2717), 1, - sym_where_clause, + [55884] = 4, + ACTIONS(5464), 1, + anon_sym_RBRACE, + ACTIONS(5466), 1, + anon_sym_COMMA, + STATE(2323), 1, + aux_sym_field_initializer_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55754] = 4, - ACTIONS(3073), 1, - anon_sym_LBRACE, - ACTIONS(5449), 1, - anon_sym_COLON_COLON, - STATE(1243), 1, - sym_field_initializer_list, + [55898] = 4, + ACTIONS(5469), 1, + anon_sym_RBRACE, + ACTIONS(5471), 1, + anon_sym_COMMA, + STATE(2186), 1, + aux_sym_field_initializer_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55768] = 4, - ACTIONS(4995), 1, - anon_sym_COMMA, - ACTIONS(5451), 1, - anon_sym_PIPE, - STATE(2191), 1, - aux_sym_closure_parameters_repeat1, + [55912] = 3, + ACTIONS(5475), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55782] = 4, - ACTIONS(4024), 1, - anon_sym_RPAREN, - ACTIONS(4026), 1, + ACTIONS(5473), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(2274), 1, - aux_sym_parameters_repeat1, + [55924] = 4, + ACTIONS(739), 1, + anon_sym_LBRACE, + ACTIONS(5477), 1, + anon_sym_move, + STATE(232), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55796] = 4, - ACTIONS(4555), 1, + [55938] = 4, + ACTIONS(447), 1, + anon_sym_LBRACE, + ACTIONS(4551), 1, anon_sym_PLUS, - ACTIONS(5453), 1, - anon_sym_SEMI, - ACTIONS(5455), 1, - anon_sym_EQ, + STATE(1169), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55810] = 4, - ACTIONS(4549), 1, - anon_sym_LBRACE, - ACTIONS(5457), 1, - anon_sym_SEMI, - STATE(348), 1, - sym_block, + [55952] = 4, + ACTIONS(3761), 1, + anon_sym_RBRACK, + ACTIONS(5479), 1, + anon_sym_COMMA, + STATE(2328), 1, + aux_sym_array_expression_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55824] = 4, - ACTIONS(4543), 1, + [55966] = 4, + ACTIONS(4561), 1, anon_sym_LBRACE, - ACTIONS(5459), 1, + ACTIONS(5482), 1, anon_sym_SEMI, - STATE(1083), 1, + STATE(878), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55838] = 4, - ACTIONS(4555), 1, + [55980] = 4, + ACTIONS(4551), 1, anon_sym_PLUS, - ACTIONS(5461), 1, + ACTIONS(5484), 1, anon_sym_SEMI, - ACTIONS(5463), 1, + ACTIONS(5486), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55852] = 4, - ACTIONS(4555), 1, + [55994] = 4, + ACTIONS(693), 1, + anon_sym_RBRACK, + ACTIONS(5488), 1, + anon_sym_COMMA, + STATE(2328), 1, + aux_sym_array_expression_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [56008] = 4, + ACTIONS(4551), 1, anon_sym_PLUS, - ACTIONS(5465), 1, + ACTIONS(5490), 1, anon_sym_SEMI, - ACTIONS(5467), 1, + ACTIONS(5492), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55866] = 4, - ACTIONS(4549), 1, - anon_sym_LBRACE, - ACTIONS(5469), 1, - anon_sym_SEMI, - STATE(355), 1, - sym_block, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [55880] = 4, - ACTIONS(4543), 1, + [56022] = 4, + ACTIONS(4561), 1, anon_sym_LBRACE, - ACTIONS(5471), 1, + ACTIONS(5494), 1, anon_sym_SEMI, - STATE(1075), 1, + STATE(864), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55894] = 4, - ACTIONS(4555), 1, + [56036] = 4, + ACTIONS(4551), 1, anon_sym_PLUS, - ACTIONS(5473), 1, + ACTIONS(5496), 1, anon_sym_SEMI, - ACTIONS(5475), 1, + ACTIONS(5498), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55908] = 4, - ACTIONS(5477), 1, - anon_sym_RBRACE, - ACTIONS(5479), 1, - anon_sym_COMMA, - STATE(2331), 1, - aux_sym_use_list_repeat1, + [56050] = 3, + ACTIONS(3194), 1, + sym__primitive_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55922] = 4, - ACTIONS(4356), 1, + ACTIONS(3199), 2, + sym__raw_identifier, + sym_grit_metavariable, + [56062] = 4, + ACTIONS(4360), 1, anon_sym_where, - ACTIONS(5482), 1, + ACTIONS(5500), 1, anon_sym_SEMI, - STATE(2762), 1, + STATE(2758), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55936] = 2, + [56076] = 4, + ACTIONS(5502), 1, + anon_sym_RBRACE, + ACTIONS(5504), 1, + anon_sym_COMMA, + STATE(2166), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5484), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [55946] = 4, - ACTIONS(4344), 1, - anon_sym_LBRACE, - ACTIONS(5486), 1, + [56090] = 4, + ACTIONS(4360), 1, + anon_sym_where, + ACTIONS(5506), 1, anon_sym_SEMI, - STATE(369), 1, - sym_declaration_list, + STATE(2711), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55960] = 4, - ACTIONS(4344), 1, - anon_sym_LBRACE, - ACTIONS(5488), 1, + [56104] = 4, + ACTIONS(4551), 1, + anon_sym_PLUS, + ACTIONS(5508), 1, anon_sym_SEMI, - STATE(528), 1, - sym_declaration_list, + ACTIONS(5510), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55974] = 4, - ACTIONS(4549), 1, + [56118] = 4, + ACTIONS(4591), 1, anon_sym_LBRACE, - ACTIONS(5490), 1, + ACTIONS(5512), 1, anon_sym_SEMI, - STATE(406), 1, + STATE(377), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55988] = 4, - ACTIONS(4177), 1, - anon_sym_RBRACE, - ACTIONS(5492), 1, - anon_sym_COMMA, - STATE(2237), 1, - aux_sym_field_declaration_list_repeat1, + [56132] = 4, + ACTIONS(4064), 1, + anon_sym_COLON, + ACTIONS(5116), 1, + anon_sym_COLON_COLON, + STATE(2178), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56002] = 4, - ACTIONS(4177), 1, - anon_sym_RBRACE, - ACTIONS(5492), 1, - anon_sym_COMMA, - STATE(2239), 1, - aux_sym_field_declaration_list_repeat1, + [56146] = 4, + ACTIONS(4551), 1, + anon_sym_PLUS, + ACTIONS(5514), 1, + anon_sym_SEMI, + ACTIONS(5516), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56016] = 4, - ACTIONS(447), 1, + [56160] = 4, + ACTIONS(4591), 1, anon_sym_LBRACE, - ACTIONS(5494), 1, - anon_sym_move, - STATE(1177), 1, + ACTIONS(5518), 1, + anon_sym_SEMI, + STATE(337), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56030] = 4, - ACTIONS(5496), 1, - anon_sym_RPAREN, - ACTIONS(5498), 1, - anon_sym_COMMA, - STATE(2240), 1, - aux_sym_ordered_field_declaration_list_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [56044] = 4, - ACTIONS(4358), 1, - anon_sym_LT, - ACTIONS(5500), 1, - anon_sym_EQ, - STATE(2684), 1, - sym_type_parameters, + [56174] = 4, + ACTIONS(4014), 1, + anon_sym_COLON_COLON, + ACTIONS(4064), 1, + anon_sym_COLON, + STATE(2178), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56058] = 4, - ACTIONS(4555), 1, + [56188] = 4, + ACTIONS(4551), 1, anon_sym_PLUS, - ACTIONS(5502), 1, + ACTIONS(5520), 1, anon_sym_SEMI, - ACTIONS(5504), 1, + ACTIONS(5522), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56072] = 2, + [56202] = 4, + ACTIONS(5524), 1, + anon_sym_RBRACE, + ACTIONS(5526), 1, + anon_sym_COMMA, + STATE(2346), 1, + aux_sym_use_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5506), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [56082] = 2, + [56216] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5508), 3, + ACTIONS(5529), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [56092] = 2, + [56226] = 4, + ACTIONS(4372), 1, + anon_sym_LBRACE, + ACTIONS(5531), 1, + anon_sym_SEMI, + STATE(308), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5510), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [56102] = 4, - ACTIONS(5512), 1, - anon_sym_RBRACE, - ACTIONS(5514), 1, + [56240] = 4, + ACTIONS(4018), 1, + anon_sym_RPAREN, + ACTIONS(4020), 1, anon_sym_COMMA, - STATE(2295), 1, - aux_sym_enum_variant_list_repeat2, + STATE(2187), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56116] = 4, - ACTIONS(4543), 1, - anon_sym_LBRACE, - ACTIONS(5516), 1, - anon_sym_SEMI, - STATE(905), 1, - sym_block, + [56254] = 4, + ACTIONS(2882), 1, + anon_sym_PLUS, + ACTIONS(5533), 1, + sym_mutable_specifier, + ACTIONS(5535), 1, + sym_self, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56130] = 2, + [56268] = 4, + ACTIONS(4212), 1, + anon_sym_RBRACE, + ACTIONS(5537), 1, + anon_sym_COMMA, + STATE(2244), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5518), 3, - anon_sym_SEMI, + [56282] = 4, + ACTIONS(4212), 1, anon_sym_RBRACE, + ACTIONS(5537), 1, anon_sym_COMMA, - [56140] = 4, - ACTIONS(2788), 1, - anon_sym_RPAREN, - ACTIONS(5520), 1, - anon_sym_COMMA, - STATE(1991), 1, - aux_sym_tuple_pattern_repeat1, + STATE(2247), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56154] = 4, - ACTIONS(4157), 1, + [56296] = 4, + ACTIONS(4805), 1, + anon_sym_PIPE, + ACTIONS(5539), 1, + anon_sym_EQ_GT, + ACTIONS(5541), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [56310] = 4, + ACTIONS(4246), 1, anon_sym_RBRACE, - ACTIONS(5522), 1, + ACTIONS(5543), 1, anon_sym_COMMA, - STATE(2296), 1, + STATE(2312), 1, aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56168] = 4, - ACTIONS(4543), 1, - anon_sym_LBRACE, - ACTIONS(5524), 1, - anon_sym_SEMI, - STATE(910), 1, - sym_block, + [56324] = 4, + ACTIONS(5545), 1, + anon_sym_RPAREN, + ACTIONS(5547), 1, + anon_sym_COMMA, + STATE(2252), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56182] = 4, - ACTIONS(5526), 1, + [56338] = 4, + ACTIONS(5549), 1, anon_sym_RPAREN, - ACTIONS(5528), 1, + ACTIONS(5551), 1, anon_sym_COMMA, - STATE(2279), 1, + STATE(2300), 1, aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56196] = 4, - ACTIONS(5530), 1, - anon_sym_RBRACE, - ACTIONS(5532), 1, - anon_sym_COMMA, - STATE(2220), 1, - aux_sym_field_initializer_list_repeat1, + [56352] = 4, + ACTIONS(4551), 1, + anon_sym_PLUS, + ACTIONS(5553), 1, + anon_sym_SEMI, + ACTIONS(5555), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56210] = 3, - ACTIONS(5536), 1, - anon_sym_COLON, + [56366] = 4, + ACTIONS(4591), 1, + anon_sym_LBRACE, + ACTIONS(5557), 1, + anon_sym_SEMI, + STATE(408), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5534), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [56222] = 4, - ACTIONS(4543), 1, + [56380] = 4, + ACTIONS(4561), 1, anon_sym_LBRACE, - ACTIONS(5538), 1, + ACTIONS(5559), 1, anon_sym_SEMI, - STATE(1036), 1, + STATE(1058), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56236] = 2, + [56394] = 4, + ACTIONS(2784), 1, + anon_sym_RPAREN, + ACTIONS(5561), 1, + anon_sym_COMMA, + STATE(2053), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5540), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [56246] = 4, - ACTIONS(4340), 1, + [56408] = 4, + ACTIONS(4384), 1, anon_sym_LBRACE, - ACTIONS(5542), 1, + ACTIONS(5563), 1, anon_sym_SEMI, - STATE(1031), 1, + STATE(1012), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56260] = 4, - ACTIONS(4340), 1, + [56422] = 4, + ACTIONS(4384), 1, anon_sym_LBRACE, - ACTIONS(5544), 1, + ACTIONS(5565), 1, anon_sym_SEMI, - STATE(1028), 1, + STATE(993), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56274] = 4, - ACTIONS(3651), 1, - anon_sym_RBRACE, - ACTIONS(5546), 1, + [56436] = 4, + ACTIONS(5059), 1, + anon_sym_GT, + ACTIONS(5567), 1, anon_sym_COMMA, - STATE(2331), 1, - aux_sym_use_list_repeat1, + STATE(2363), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56288] = 4, - ACTIONS(4543), 1, + [56450] = 4, + ACTIONS(4561), 1, anon_sym_LBRACE, - ACTIONS(5548), 1, + ACTIONS(5570), 1, anon_sym_SEMI, - STATE(920), 1, + STATE(946), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56302] = 4, - ACTIONS(4543), 1, - anon_sym_LBRACE, - ACTIONS(5550), 1, - anon_sym_SEMI, - STATE(925), 1, - sym_block, + [56464] = 4, + ACTIONS(2788), 1, + anon_sym_RBRACK, + ACTIONS(5572), 1, + anon_sym_COMMA, + STATE(2053), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56316] = 4, - ACTIONS(4555), 1, + [56478] = 4, + ACTIONS(4551), 1, anon_sym_PLUS, - ACTIONS(5552), 1, + ACTIONS(5574), 1, anon_sym_SEMI, - ACTIONS(5554), 1, + ACTIONS(5576), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56330] = 2, + [56492] = 4, + ACTIONS(4561), 1, + anon_sym_LBRACE, + ACTIONS(5578), 1, + anon_sym_SEMI, + STATE(1009), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5556), 3, + [56506] = 4, + ACTIONS(4561), 1, + anon_sym_LBRACE, + ACTIONS(5580), 1, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [56340] = 4, - ACTIONS(5260), 1, - anon_sym_COMMA, - ACTIONS(5558), 1, - anon_sym_RBRACE, - STATE(2270), 1, - aux_sym_struct_pattern_repeat1, + STATE(1086), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56354] = 4, - ACTIONS(4163), 1, + [56520] = 4, + ACTIONS(4151), 1, anon_sym_RBRACE, - ACTIONS(5560), 1, + ACTIONS(5582), 1, anon_sym_COMMA, - STATE(2239), 1, + STATE(2247), 1, aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56368] = 4, - ACTIONS(1076), 1, - anon_sym_GT, - ACTIONS(5562), 1, - anon_sym_COMMA, - STATE(2264), 1, - aux_sym_type_arguments_repeat1, + [56534] = 4, + ACTIONS(4372), 1, + anon_sym_LBRACE, + ACTIONS(5584), 1, + anon_sym_SEMI, + STATE(399), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56382] = 4, - ACTIONS(5260), 1, + [56548] = 4, + ACTIONS(4141), 1, + anon_sym_GT, + ACTIONS(5586), 1, anon_sym_COMMA, - ACTIONS(5564), 1, - anon_sym_RBRACE, - STATE(2270), 1, - aux_sym_struct_pattern_repeat1, + STATE(2363), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56396] = 4, - ACTIONS(4340), 1, + [56562] = 4, + ACTIONS(4384), 1, anon_sym_LBRACE, - ACTIONS(5566), 1, + ACTIONS(5588), 1, anon_sym_SEMI, - STATE(1012), 1, + STATE(855), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56410] = 4, - ACTIONS(4340), 1, + [56576] = 4, + ACTIONS(4384), 1, anon_sym_LBRACE, - ACTIONS(5568), 1, + ACTIONS(5590), 1, anon_sym_SEMI, - STATE(1010), 1, + STATE(861), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56424] = 4, - ACTIONS(4344), 1, + [56590] = 4, + ACTIONS(4561), 1, anon_sym_LBRACE, - ACTIONS(5570), 1, + ACTIONS(5592), 1, anon_sym_SEMI, - STATE(393), 1, - sym_declaration_list, + STATE(1091), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56438] = 4, - ACTIONS(4543), 1, + [56604] = 4, + ACTIONS(4561), 1, anon_sym_LBRACE, - ACTIONS(5572), 1, + ACTIONS(5594), 1, anon_sym_SEMI, - STATE(1007), 1, + STATE(869), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56452] = 3, - ACTIONS(4555), 1, - anon_sym_PLUS, + [56618] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5574), 2, - anon_sym_RPAREN, + ACTIONS(5596), 3, + anon_sym_EQ, anon_sym_COMMA, - [56464] = 4, - ACTIONS(4543), 1, + anon_sym_GT, + [56628] = 4, + ACTIONS(4561), 1, anon_sym_LBRACE, - ACTIONS(5576), 1, + ACTIONS(5598), 1, anon_sym_SEMI, - STATE(1000), 1, + STATE(874), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56478] = 4, - ACTIONS(5574), 1, - anon_sym_RPAREN, - ACTIONS(5578), 1, - anon_sym_COMMA, - STATE(2374), 1, - aux_sym_tuple_type_repeat1, + [56642] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56492] = 4, - ACTIONS(4555), 1, + ACTIONS(5600), 3, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [56652] = 4, + ACTIONS(4551), 1, anon_sym_PLUS, - ACTIONS(5581), 1, + ACTIONS(5602), 1, anon_sym_SEMI, - ACTIONS(5583), 1, + ACTIONS(5604), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56506] = 3, - ACTIONS(5587), 1, - anon_sym_COLON, + [56666] = 4, + ACTIONS(4561), 1, + anon_sym_LBRACE, + ACTIONS(5606), 1, + anon_sym_SEMI, + STATE(1104), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5585), 2, - anon_sym_RBRACE, + [56680] = 4, + ACTIONS(5027), 1, anon_sym_COMMA, - [56518] = 4, - ACTIONS(4543), 1, - anon_sym_LBRACE, - ACTIONS(5589), 1, - anon_sym_SEMI, - STATE(937), 1, - sym_block, + ACTIONS(5029), 1, + anon_sym_GT, + STATE(2240), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56532] = 4, - ACTIONS(4344), 1, + [56694] = 4, + ACTIONS(4372), 1, anon_sym_LBRACE, - ACTIONS(5591), 1, + ACTIONS(5608), 1, anon_sym_SEMI, - STATE(395), 1, + STATE(290), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56546] = 4, - ACTIONS(4555), 1, - anon_sym_PLUS, - ACTIONS(5593), 1, + [56708] = 4, + ACTIONS(4384), 1, + anon_sym_LBRACE, + ACTIONS(5610), 1, anon_sym_SEMI, - ACTIONS(5595), 1, - anon_sym_EQ, + STATE(1019), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56560] = 4, - ACTIONS(4543), 1, + [56722] = 4, + ACTIONS(4384), 1, anon_sym_LBRACE, - ACTIONS(5597), 1, + ACTIONS(5612), 1, anon_sym_SEMI, - STATE(942), 1, - sym_block, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [56574] = 4, - ACTIONS(2738), 1, - anon_sym_SQUOTE, - ACTIONS(5599), 1, - anon_sym_GT, - STATE(2567), 1, - sym_lifetime, + STATE(1021), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56588] = 3, - ACTIONS(4555), 1, + [56736] = 3, + ACTIONS(4551), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5601), 2, + ACTIONS(5614), 2, anon_sym_COMMA, anon_sym_GT, - [56600] = 4, - ACTIONS(5599), 1, - anon_sym_GT, - ACTIONS(5603), 1, - anon_sym_COMMA, - STATE(2298), 1, - aux_sym_for_lifetimes_repeat1, + [56748] = 4, + ACTIONS(4372), 1, + anon_sym_LBRACE, + ACTIONS(5616), 1, + anon_sym_SEMI, + STATE(292), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56614] = 4, - ACTIONS(4543), 1, - anon_sym_LBRACE, - ACTIONS(5605), 1, - anon_sym_SEMI, - STATE(983), 1, - sym_block, + [56762] = 4, + ACTIONS(4149), 1, + anon_sym_GT, + ACTIONS(5618), 1, + anon_sym_COMMA, + STATE(2363), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56628] = 4, - ACTIONS(4543), 1, + [56776] = 4, + ACTIONS(4561), 1, anon_sym_LBRACE, - ACTIONS(5607), 1, + ACTIONS(5620), 1, anon_sym_SEMI, - STATE(956), 1, + STATE(930), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56642] = 3, - ACTIONS(4555), 1, - anon_sym_PLUS, + [56790] = 4, + ACTIONS(5622), 1, + anon_sym_COMMA, + ACTIONS(5624), 1, + anon_sym_GT, + STATE(2296), 1, + aux_sym_for_lifetimes_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5609), 2, - anon_sym_COMMA, - anon_sym_GT, - [56654] = 4, - ACTIONS(4340), 1, + [56804] = 4, + ACTIONS(4561), 1, anon_sym_LBRACE, - ACTIONS(5611), 1, + ACTIONS(5626), 1, anon_sym_SEMI, - STATE(962), 1, - sym_declaration_list, + STATE(1040), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56668] = 4, - ACTIONS(4340), 1, - anon_sym_LBRACE, - ACTIONS(5613), 1, - anon_sym_SEMI, - STATE(965), 1, - sym_declaration_list, + [56818] = 4, + ACTIONS(2946), 1, + anon_sym_RPAREN, + ACTIONS(5628), 1, + anon_sym_COMMA, + STATE(2281), 1, + aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56682] = 3, - ACTIONS(4937), 1, - anon_sym_EQ, + [56832] = 3, + ACTIONS(5632), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4935), 2, - anon_sym_COMMA, - anon_sym_GT, - [56694] = 4, - ACTIONS(4935), 1, - anon_sym_GT, - ACTIONS(5615), 1, + ACTIONS(5630), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(2390), 1, - aux_sym_type_parameters_repeat1, + [56844] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56708] = 4, - ACTIONS(4543), 1, + ACTIONS(3863), 3, anon_sym_LBRACE, - ACTIONS(5618), 1, - anon_sym_SEMI, - STATE(974), 1, - sym_block, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + [56854] = 4, + ACTIONS(5273), 1, + anon_sym_COMMA, + ACTIONS(5634), 1, + anon_sym_RBRACE, + STATE(2237), 1, + aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56722] = 4, - ACTIONS(4344), 1, + [56868] = 4, + ACTIONS(4561), 1, anon_sym_LBRACE, - ACTIONS(5620), 1, + ACTIONS(5636), 1, anon_sym_SEMI, - STATE(451), 1, - sym_declaration_list, + STATE(958), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56736] = 3, - ACTIONS(3196), 1, - sym__primitive_identifier, + [56882] = 4, + ACTIONS(5273), 1, + anon_sym_COMMA, + ACTIONS(5638), 1, + anon_sym_RBRACE, + STATE(2248), 1, + aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3201), 2, - sym__raw_identifier, - sym_grit_metavariable, - [56748] = 3, - ACTIONS(4507), 1, - anon_sym_RPAREN, - ACTIONS(5622), 1, + [56896] = 4, + ACTIONS(4561), 1, + anon_sym_LBRACE, + ACTIONS(5640), 1, anon_sym_SEMI, + STATE(1081), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56759] = 3, - ACTIONS(3915), 1, - anon_sym_LPAREN, - STATE(2177), 1, - sym_parameters, + [56910] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56770] = 2, + ACTIONS(5059), 2, + anon_sym_COMMA, + anon_sym_GT, + [56919] = 3, + ACTIONS(5642), 1, + anon_sym_LBRACE, + ACTIONS(5644), 1, + anon_sym_AMP_AMP, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5624), 2, - sym_float_literal, - sym_integer_literal, - [56779] = 3, - ACTIONS(3915), 1, - anon_sym_LPAREN, - STATE(1875), 1, - sym_parameters, + [56930] = 3, + ACTIONS(4551), 1, + anon_sym_PLUS, + ACTIONS(5646), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56790] = 3, - ACTIONS(4344), 1, + [56941] = 3, + ACTIONS(4384), 1, anon_sym_LBRACE, - STATE(450), 1, + STATE(911), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56801] = 3, - ACTIONS(4344), 1, + [56952] = 3, + ACTIONS(4384), 1, anon_sym_LBRACE, - STATE(374), 1, + STATE(914), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56812] = 3, - ACTIONS(4591), 1, - anon_sym_LBRACE, - STATE(868), 1, - sym_enum_variant_list, + [56963] = 3, + ACTIONS(5648), 1, + anon_sym_SEMI, + ACTIONS(5650), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56823] = 3, + [56974] = 3, + ACTIONS(4501), 1, + anon_sym_RBRACE, + ACTIONS(5648), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [56985] = 3, ACTIONS(15), 1, anon_sym_LBRACE, - STATE(92), 1, + STATE(158), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56834] = 3, - ACTIONS(3915), 1, + [56996] = 3, + ACTIONS(5648), 1, + anon_sym_SEMI, + ACTIONS(5652), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [57007] = 3, + ACTIONS(3933), 1, + anon_sym_LPAREN, + STATE(2174), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [57018] = 3, + ACTIONS(5648), 1, + anon_sym_SEMI, + ACTIONS(5654), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [57029] = 3, + ACTIONS(2999), 1, anon_sym_LPAREN, - STATE(2172), 1, + STATE(1109), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56845] = 3, - ACTIONS(4340), 1, - anon_sym_LBRACE, - STATE(991), 1, - sym_declaration_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [56856] = 3, - ACTIONS(4340), 1, + [57040] = 3, + ACTIONS(4384), 1, anon_sym_LBRACE, - STATE(992), 1, + STATE(1099), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56867] = 3, - ACTIONS(4555), 1, - anon_sym_PLUS, - ACTIONS(5626), 1, + [57051] = 3, + ACTIONS(5648), 1, anon_sym_SEMI, + ACTIONS(5656), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56878] = 3, - ACTIONS(4340), 1, - anon_sym_LBRACE, - STATE(939), 1, - sym_declaration_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [56889] = 3, - ACTIONS(4340), 1, + [57062] = 3, + ACTIONS(447), 1, anon_sym_LBRACE, - STATE(995), 1, - sym_declaration_list, + STATE(2617), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56900] = 3, - ACTIONS(4607), 1, + [57073] = 3, + ACTIONS(4689), 1, anon_sym_LBRACE, - STATE(443), 1, + STATE(1022), 1, sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56911] = 3, - ACTIONS(2997), 1, + [57084] = 3, + ACTIONS(3933), 1, anon_sym_LPAREN, - STATE(1138), 1, + STATE(2181), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56922] = 3, - ACTIONS(4340), 1, + [57095] = 3, + ACTIONS(447), 1, anon_sym_LBRACE, - STATE(1009), 1, - sym_declaration_list, + STATE(2766), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56933] = 3, - ACTIONS(4340), 1, + [57106] = 3, + ACTIONS(4384), 1, anon_sym_LBRACE, - STATE(981), 1, + STATE(862), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56944] = 3, + [57117] = 3, ACTIONS(447), 1, anon_sym_LBRACE, - STATE(1198), 1, + STATE(2616), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56955] = 3, - ACTIONS(4505), 1, - anon_sym_RBRACE, - ACTIONS(5622), 1, - anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [56966] = 3, - ACTIONS(4354), 1, - anon_sym_LBRACE, - STATE(879), 1, - sym_field_declaration_list, + [57128] = 3, + ACTIONS(5658), 1, + anon_sym_LBRACK, + ACTIONS(5660), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56977] = 3, - ACTIONS(3915), 1, + [57139] = 3, + ACTIONS(3933), 1, anon_sym_LPAREN, - STATE(2187), 1, + STATE(1499), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56988] = 3, - ACTIONS(4340), 1, + [57150] = 3, + ACTIONS(4358), 1, anon_sym_LBRACE, - STATE(882), 1, - sym_declaration_list, + STATE(1079), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56999] = 3, - ACTIONS(4793), 1, - anon_sym_PIPE, - ACTIONS(5628), 1, - anon_sym_in, + [57161] = 3, + ACTIONS(447), 1, + anon_sym_LBRACE, + STATE(2764), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57010] = 3, - ACTIONS(4793), 1, + [57172] = 3, + ACTIONS(83), 1, anon_sym_PIPE, - ACTIONS(5630), 1, - anon_sym_in, + STATE(70), 1, + sym_closure_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57021] = 3, - ACTIONS(447), 1, + [57183] = 3, + ACTIONS(4372), 1, anon_sym_LBRACE, - STATE(1164), 1, - sym_block, + STATE(455), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57032] = 3, - ACTIONS(447), 1, + [57194] = 3, + ACTIONS(4384), 1, anon_sym_LBRACE, - STATE(2615), 1, - sym_block, + STATE(1073), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57043] = 3, - ACTIONS(784), 1, + [57205] = 3, + ACTIONS(739), 1, anon_sym_LBRACE, - STATE(234), 1, + STATE(230), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57054] = 3, - ACTIONS(4793), 1, - anon_sym_PIPE, - ACTIONS(5632), 1, - anon_sym_in, + [57216] = 3, + ACTIONS(3933), 1, + anon_sym_LPAREN, + STATE(2193), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57065] = 3, - ACTIONS(784), 1, + [57227] = 3, + ACTIONS(739), 1, anon_sym_LBRACE, - STATE(238), 1, + STATE(240), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57076] = 3, - ACTIONS(4364), 1, - anon_sym_LBRACE, - STATE(455), 1, - sym_field_declaration_list, + [57238] = 3, + ACTIONS(4805), 1, + anon_sym_PIPE, + ACTIONS(5662), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57087] = 3, - ACTIONS(447), 1, - anon_sym_LBRACE, - STATE(2757), 1, - sym_block, + [57249] = 3, + ACTIONS(4805), 1, + anon_sym_PIPE, + ACTIONS(4915), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57098] = 3, - ACTIONS(784), 1, + [57260] = 3, + ACTIONS(739), 1, anon_sym_LBRACE, - STATE(243), 1, + STATE(244), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57109] = 3, - ACTIONS(4364), 1, - anon_sym_LBRACE, - STATE(437), 1, - sym_field_declaration_list, + [57271] = 3, + ACTIONS(4805), 1, + anon_sym_PIPE, + ACTIONS(5664), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57120] = 3, - ACTIONS(4354), 1, + [57282] = 3, + ACTIONS(15), 1, anon_sym_LBRACE, - STATE(889), 1, - sym_field_declaration_list, + STATE(140), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57131] = 3, - ACTIONS(784), 1, + [57293] = 3, + ACTIONS(739), 1, anon_sym_LBRACE, - STATE(219), 1, + STATE(221), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57142] = 2, + [57304] = 3, + ACTIONS(4805), 1, + anon_sym_PIPE, + ACTIONS(5666), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2934), 2, - anon_sym_COMMA, - anon_sym_GT, - [57151] = 3, - ACTIONS(784), 1, + [57315] = 3, + ACTIONS(739), 1, anon_sym_LBRACE, - STATE(239), 1, + STATE(249), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57162] = 3, - ACTIONS(2997), 1, - anon_sym_LPAREN, - STATE(1115), 1, - sym_parameters, + [57326] = 3, + ACTIONS(3061), 1, + anon_sym_LBRACE, + STATE(1250), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57173] = 2, + [57337] = 3, + ACTIONS(4499), 1, + anon_sym_COLON_COLON, + ACTIONS(5668), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5634), 2, - anon_sym_const, - sym_mutable_specifier, - [57182] = 3, - ACTIONS(4344), 1, + [57348] = 3, + ACTIONS(4358), 1, anon_sym_LBRACE, - STATE(434), 1, - sym_declaration_list, + STATE(1068), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57193] = 3, - ACTIONS(447), 1, - anon_sym_LBRACE, - STATE(1176), 1, - sym_block, + [57359] = 3, + ACTIONS(4805), 1, + anon_sym_PIPE, + ACTIONS(5670), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57204] = 3, - ACTIONS(4340), 1, - anon_sym_LBRACE, - STATE(1062), 1, - sym_declaration_list, + [57370] = 3, + ACTIONS(5672), 1, + anon_sym_SEMI, + ACTIONS(5674), 1, + anon_sym_as, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57215] = 3, - ACTIONS(4354), 1, - anon_sym_LBRACE, - STATE(1063), 1, - sym_field_declaration_list, + [57381] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57226] = 3, - ACTIONS(5636), 1, - anon_sym_SEMI, - ACTIONS(5638), 1, - anon_sym_as, + ACTIONS(5676), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [57390] = 3, + ACTIONS(4372), 1, + anon_sym_LBRACE, + STATE(305), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57237] = 3, - ACTIONS(4555), 1, + [57401] = 3, + ACTIONS(4551), 1, anon_sym_PLUS, - ACTIONS(5640), 1, + ACTIONS(5678), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57248] = 3, - ACTIONS(3005), 1, - anon_sym_LT2, - STATE(1190), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [57259] = 3, - ACTIONS(3915), 1, - anon_sym_LPAREN, - STATE(1870), 1, - sym_parameters, + [57412] = 3, + ACTIONS(4515), 1, + anon_sym_COLON_COLON, + ACTIONS(5680), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57270] = 3, - ACTIONS(4340), 1, + [57423] = 3, + ACTIONS(4372), 1, anon_sym_LBRACE, - STATE(1067), 1, + STATE(316), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57281] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(5397), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [57290] = 3, - ACTIONS(5642), 1, - anon_sym_LPAREN, - ACTIONS(5644), 1, - anon_sym_LBRACE, + [57434] = 3, + ACTIONS(5682), 1, + anon_sym_SEMI, + ACTIONS(5684), 1, + anon_sym_as, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57301] = 3, - ACTIONS(15), 1, + [57445] = 3, + ACTIONS(4372), 1, anon_sym_LBRACE, - STATE(101), 1, - sym_block, + STATE(317), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57312] = 3, - ACTIONS(784), 1, + [57456] = 3, + ACTIONS(4599), 1, anon_sym_LBRACE, - STATE(231), 1, - sym_block, + STATE(417), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57323] = 3, - ACTIONS(5646), 1, + [57467] = 3, + ACTIONS(5686), 1, anon_sym_LPAREN, - ACTIONS(5648), 1, + ACTIONS(5688), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57334] = 3, - ACTIONS(4555), 1, - anon_sym_PLUS, - ACTIONS(5650), 1, - anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [57345] = 3, - ACTIONS(447), 1, + [57478] = 3, + ACTIONS(739), 1, anon_sym_LBRACE, - STATE(1114), 1, + STATE(235), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57356] = 3, - ACTIONS(4555), 1, - anon_sym_PLUS, - ACTIONS(5652), 1, - anon_sym_SEMI, + [57489] = 3, + ACTIONS(4521), 1, + anon_sym_COLON_COLON, + ACTIONS(5680), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57367] = 3, - ACTIONS(4092), 1, + [57500] = 3, + ACTIONS(4525), 1, anon_sym_COLON_COLON, - ACTIONS(5654), 1, - anon_sym_BANG, + ACTIONS(5680), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57378] = 3, - ACTIONS(4344), 1, + [57511] = 3, + ACTIONS(5690), 1, + anon_sym_LPAREN, + ACTIONS(5692), 1, anon_sym_LBRACE, - STATE(274), 1, - sym_declaration_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [57389] = 3, - ACTIONS(4090), 1, - anon_sym_COLON_COLON, - ACTIONS(5654), 1, - anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57400] = 3, - ACTIONS(5656), 1, - anon_sym_EQ_GT, - ACTIONS(5658), 1, - anon_sym_AMP_AMP, + [57522] = 3, + ACTIONS(4366), 1, + anon_sym_LBRACE, + STATE(327), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57411] = 3, - ACTIONS(784), 1, + [57533] = 3, + ACTIONS(447), 1, anon_sym_LBRACE, - STATE(235), 1, + STATE(1226), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57422] = 3, - ACTIONS(3811), 1, - anon_sym_EQ_GT, - ACTIONS(5658), 1, - anon_sym_AMP_AMP, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [57433] = 3, - ACTIONS(4344), 1, + [57544] = 3, + ACTIONS(4384), 1, anon_sym_LBRACE, - STATE(460), 1, + STATE(843), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57444] = 3, - ACTIONS(4344), 1, + [57555] = 3, + ACTIONS(4358), 1, anon_sym_LBRACE, - STATE(461), 1, - sym_declaration_list, + STATE(845), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57455] = 3, - ACTIONS(4340), 1, + [57566] = 3, + ACTIONS(447), 1, anon_sym_LBRACE, - STATE(1068), 1, - sym_declaration_list, + STATE(1257), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57466] = 3, - ACTIONS(4358), 1, - anon_sym_LT, - STATE(763), 1, - sym_type_parameters, + [57577] = 3, + ACTIONS(739), 1, + anon_sym_LBRACE, + STATE(228), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57477] = 3, + [57588] = 3, ACTIONS(447), 1, anon_sym_LBRACE, - STATE(1228), 1, + STATE(1225), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57488] = 3, - ACTIONS(4344), 1, - anon_sym_LBRACE, - STATE(364), 1, - sym_declaration_list, + [57599] = 3, + ACTIONS(4417), 1, + anon_sym_COLON, + STATE(2178), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57499] = 3, - ACTIONS(4344), 1, + [57610] = 3, + ACTIONS(4599), 1, anon_sym_LBRACE, - STATE(363), 1, - sym_declaration_list, + STATE(368), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57510] = 3, - ACTIONS(4354), 1, - anon_sym_LBRACE, - STATE(1070), 1, - sym_field_declaration_list, + [57621] = 3, + ACTIONS(4551), 1, + anon_sym_PLUS, + ACTIONS(5694), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57521] = 2, + [57632] = 3, + ACTIONS(4362), 1, + anon_sym_LT, + STATE(721), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5477), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [57530] = 3, + [57643] = 3, ACTIONS(447), 1, anon_sym_LBRACE, - STATE(1250), 1, + STATE(1255), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57541] = 3, - ACTIONS(4607), 1, - anon_sym_LBRACE, - STATE(416), 1, - sym_enum_variant_list, + [57654] = 3, + ACTIONS(83), 1, + anon_sym_PIPE, + STATE(76), 1, + sym_closure_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57552] = 3, - ACTIONS(3073), 1, + [57665] = 3, + ACTIONS(15), 1, anon_sym_LBRACE, - STATE(1243), 1, - sym_field_initializer_list, + STATE(86), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57563] = 2, + [57676] = 3, + ACTIONS(4384), 1, + anon_sym_LBRACE, + STATE(851), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4707), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [57572] = 3, - ACTIONS(4591), 1, + [57687] = 3, + ACTIONS(4366), 1, anon_sym_LBRACE, - STATE(1080), 1, - sym_enum_variant_list, + STATE(387), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57583] = 3, - ACTIONS(4607), 1, + [57698] = 3, + ACTIONS(4384), 1, anon_sym_LBRACE, - STATE(352), 1, - sym_enum_variant_list, + STATE(853), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57594] = 3, - ACTIONS(3915), 1, - anon_sym_LPAREN, - STATE(1822), 1, - sym_parameters, + [57709] = 3, + ACTIONS(4358), 1, + anon_sym_LBRACE, + STATE(857), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57605] = 2, + [57720] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5660), 2, + ACTIONS(5696), 2, anon_sym_const, sym_mutable_specifier, - [57614] = 3, - ACTIONS(4793), 1, + [57729] = 3, + ACTIONS(4805), 1, anon_sym_PIPE, - ACTIONS(5662), 1, + ACTIONS(5698), 1, anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57625] = 2, + [57740] = 3, + ACTIONS(4372), 1, + anon_sym_LBRACE, + STATE(391), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5171), 2, - anon_sym_COMMA, - anon_sym_PIPE, - [57634] = 3, - ACTIONS(4340), 1, + [57751] = 3, + ACTIONS(4372), 1, anon_sym_LBRACE, - STATE(1092), 1, + STATE(274), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57645] = 3, - ACTIONS(5664), 1, - anon_sym_LT, - STATE(768), 1, - sym_type_parameters, + [57762] = 3, + ACTIONS(4551), 1, + anon_sym_PLUS, + ACTIONS(5700), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57656] = 3, - ACTIONS(4340), 1, + [57773] = 3, + ACTIONS(4372), 1, anon_sym_LBRACE, - STATE(1093), 1, + STATE(332), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57667] = 3, - ACTIONS(5666), 1, + [57784] = 3, + ACTIONS(4689), 1, + anon_sym_LBRACE, + STATE(872), 1, + sym_enum_variant_list, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [57795] = 3, + ACTIONS(5702), 1, anon_sym_LBRACK, - ACTIONS(5668), 1, + ACTIONS(5704), 1, anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57678] = 3, - ACTIONS(4364), 1, - anon_sym_LBRACE, - STATE(462), 1, - sym_field_declaration_list, + [57806] = 3, + ACTIONS(4543), 1, + anon_sym_RBRACE, + ACTIONS(5648), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57689] = 3, - ACTIONS(3485), 1, - anon_sym_COLON, - ACTIONS(5670), 1, - anon_sym_PLUS, + [57817] = 3, + ACTIONS(4483), 1, + anon_sym_RPAREN, + ACTIONS(5648), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57700] = 3, - ACTIONS(4481), 1, + [57828] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5706), 2, anon_sym_RBRACE, - ACTIONS(5622), 1, - anon_sym_SEMI, + anon_sym_COMMA, + [57837] = 3, + ACTIONS(4366), 1, + anon_sym_LBRACE, + STATE(336), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57711] = 3, - ACTIONS(4384), 1, - anon_sym_COLON, - STATE(2306), 1, - sym_trait_bounds, + [57848] = 3, + ACTIONS(4527), 1, + anon_sym_RBRACE, + ACTIONS(5648), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57722] = 3, - ACTIONS(4555), 1, - anon_sym_PLUS, - ACTIONS(5672), 1, + [57859] = 3, + ACTIONS(4535), 1, + anon_sym_RPAREN, + ACTIONS(5648), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57733] = 2, + [57870] = 3, + ACTIONS(4366), 1, + anon_sym_LBRACE, + STATE(275), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5674), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [57742] = 3, - ACTIONS(4793), 1, - anon_sym_PIPE, - ACTIONS(4899), 1, - anon_sym_COLON, + [57881] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57753] = 3, - ACTIONS(4364), 1, + ACTIONS(5708), 2, + sym_float_literal, + sym_integer_literal, + [57890] = 3, + ACTIONS(15), 1, anon_sym_LBRACE, - STATE(343), 1, - sym_field_declaration_list, + STATE(148), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57764] = 3, - ACTIONS(4344), 1, - anon_sym_LBRACE, - STATE(342), 1, - sym_declaration_list, + [57901] = 3, + ACTIONS(4531), 1, + anon_sym_RBRACE, + ACTIONS(5648), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57775] = 3, - ACTIONS(4344), 1, + [57912] = 3, + ACTIONS(4805), 1, + anon_sym_PIPE, + ACTIONS(5710), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [57923] = 3, + ACTIONS(4372), 1, anon_sym_LBRACE, - STATE(341), 1, + STATE(406), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57786] = 3, - ACTIONS(447), 1, - anon_sym_LBRACE, - STATE(2614), 1, - sym_block, + [57934] = 3, + ACTIONS(3933), 1, + anon_sym_LPAREN, + STATE(1802), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57797] = 3, - ACTIONS(4555), 1, - anon_sym_PLUS, - ACTIONS(5676), 1, - anon_sym_SEMI, + [57945] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57808] = 3, - ACTIONS(4497), 1, + ACTIONS(5464), 2, anon_sym_RBRACE, - ACTIONS(5622), 1, - anon_sym_SEMI, + anon_sym_COMMA, + [57954] = 3, + ACTIONS(3815), 1, + anon_sym_LBRACE, + ACTIONS(5644), 1, + anon_sym_AMP_AMP, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57819] = 3, - ACTIONS(4340), 1, + [57965] = 3, + ACTIONS(4384), 1, anon_sym_LBRACE, - STATE(1101), 1, + STATE(884), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57830] = 3, - ACTIONS(447), 1, + [57976] = 3, + ACTIONS(4384), 1, anon_sym_LBRACE, - STATE(2740), 1, - sym_block, + STATE(909), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57841] = 3, - ACTIONS(4457), 1, + [57987] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4715), 2, anon_sym_RPAREN, - ACTIONS(5622), 1, - anon_sym_SEMI, + anon_sym_COMMA, + [57996] = 3, + ACTIONS(4384), 1, + anon_sym_LBRACE, + STATE(885), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57852] = 3, - ACTIONS(2738), 1, - anon_sym_SQUOTE, - STATE(2567), 1, - sym_lifetime, + [58007] = 3, + ACTIONS(3423), 1, + anon_sym_COLON, + ACTIONS(5712), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57863] = 3, - ACTIONS(4364), 1, + [58018] = 3, + ACTIONS(15), 1, anon_sym_LBRACE, - STATE(431), 1, - sym_field_declaration_list, + STATE(61), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57874] = 3, - ACTIONS(4364), 1, + [58029] = 3, + ACTIONS(1050), 1, anon_sym_LBRACE, - STATE(338), 1, - sym_field_declaration_list, + STATE(1614), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57885] = 3, - ACTIONS(5678), 1, + [58040] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5714), 2, + anon_sym_const, + sym_mutable_specifier, + [58049] = 3, + ACTIONS(4551), 1, + anon_sym_PLUS, + ACTIONS(5716), 1, anon_sym_SEMI, - ACTIONS(5680), 1, - anon_sym_as, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57896] = 3, - ACTIONS(784), 1, - anon_sym_LBRACE, - STATE(240), 1, - sym_block, + [58060] = 3, + ACTIONS(3933), 1, + anon_sym_LPAREN, + STATE(1812), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57907] = 3, - ACTIONS(4344), 1, + [58071] = 3, + ACTIONS(4384), 1, anon_sym_LBRACE, - STATE(337), 1, + STATE(894), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57918] = 3, - ACTIONS(3915), 1, + [58082] = 3, + ACTIONS(3933), 1, anon_sym_LPAREN, - STATE(1862), 1, + STATE(1507), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57929] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(5430), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [57938] = 3, - ACTIONS(1048), 1, + [58093] = 3, + ACTIONS(447), 1, anon_sym_LBRACE, - STATE(1562), 1, + STATE(2759), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57949] = 3, - ACTIONS(4591), 1, + [58104] = 3, + ACTIONS(447), 1, anon_sym_LBRACE, - STATE(917), 1, - sym_enum_variant_list, + STATE(2753), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57960] = 3, - ACTIONS(83), 1, - anon_sym_PIPE, - STATE(75), 1, - sym_closure_parameters, + [58115] = 3, + ACTIONS(3917), 1, + anon_sym_BANG, + ACTIONS(5718), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57971] = 3, - ACTIONS(3377), 1, + [58126] = 3, + ACTIONS(3499), 1, anon_sym_COLON, - ACTIONS(5670), 1, + ACTIONS(5712), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57982] = 3, - ACTIONS(3381), 1, + [58137] = 3, + ACTIONS(739), 1, + anon_sym_LBRACE, + STATE(239), 1, + sym_block, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [58148] = 3, + ACTIONS(3495), 1, anon_sym_COLON, - ACTIONS(5670), 1, + ACTIONS(5712), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57993] = 3, + [58159] = 3, ACTIONS(447), 1, anon_sym_LBRACE, - STATE(1165), 1, + STATE(1167), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58004] = 2, + [58170] = 3, + ACTIONS(4076), 1, + anon_sym_COLON_COLON, + ACTIONS(5720), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4933), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [58013] = 2, + [58181] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5682), 2, + ACTIONS(5436), 2, anon_sym_RBRACE, anon_sym_COMMA, - [58022] = 3, - ACTIONS(4793), 1, - anon_sym_PIPE, - ACTIONS(5684), 1, - anon_sym_EQ, + [58190] = 3, + ACTIONS(447), 1, + anon_sym_LBRACE, + STATE(2761), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58033] = 3, - ACTIONS(3977), 1, - anon_sym_BANG, - ACTIONS(3985), 1, - anon_sym_COLON_COLON, + [58201] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58044] = 3, - ACTIONS(447), 1, + ACTIONS(4984), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [58210] = 3, + ACTIONS(4372), 1, anon_sym_LBRACE, - STATE(2741), 1, - sym_block, + STATE(353), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58055] = 3, - ACTIONS(4555), 1, - anon_sym_PLUS, - ACTIONS(5686), 1, - anon_sym_GT, + [58221] = 3, + ACTIONS(4372), 1, + anon_sym_LBRACE, + STATE(484), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58066] = 3, - ACTIONS(83), 1, - anon_sym_PIPE, - STATE(70), 1, - sym_closure_parameters, + [58232] = 3, + ACTIONS(4078), 1, + anon_sym_COLON_COLON, + ACTIONS(5720), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58077] = 3, - ACTIONS(447), 1, - anon_sym_LBRACE, - STATE(2759), 1, - sym_block, + [58243] = 3, + ACTIONS(4507), 1, + anon_sym_COLON, + ACTIONS(5712), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58088] = 3, - ACTIONS(2738), 1, + [58254] = 3, + ACTIONS(2740), 1, anon_sym_SQUOTE, - STATE(2250), 1, + STATE(2569), 1, sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58099] = 3, - ACTIONS(4495), 1, - anon_sym_COLON, - ACTIONS(5670), 1, - anon_sym_PLUS, + [58265] = 3, + ACTIONS(4805), 1, + anon_sym_PIPE, + ACTIONS(5722), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58110] = 3, - ACTIONS(3915), 1, - anon_sym_LPAREN, - STATE(1485), 1, - sym_parameters, + [58276] = 3, + ACTIONS(4599), 1, + anon_sym_LBRACE, + STATE(346), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58121] = 3, - ACTIONS(15), 1, + [58287] = 3, + ACTIONS(4689), 1, anon_sym_LBRACE, - STATE(151), 1, - sym_block, + STATE(1035), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58132] = 3, - ACTIONS(447), 1, - anon_sym_LBRACE, - STATE(2767), 1, - sym_block, + [58298] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58143] = 3, - ACTIONS(3469), 1, - anon_sym_COLON, - ACTIONS(5670), 1, - anon_sym_PLUS, + ACTIONS(4973), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [58307] = 3, + ACTIONS(4366), 1, + anon_sym_LBRACE, + STATE(367), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58154] = 3, - ACTIONS(5688), 1, + [58318] = 3, + ACTIONS(5724), 1, anon_sym_LPAREN, - ACTIONS(5690), 1, + ACTIONS(5726), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58165] = 3, - ACTIONS(5692), 1, + [58329] = 3, + ACTIONS(5728), 1, anon_sym_LPAREN, - ACTIONS(5694), 1, + ACTIONS(5730), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58176] = 3, + [58340] = 3, ACTIONS(447), 1, anon_sym_LBRACE, - STATE(2620), 1, + STATE(2765), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58187] = 2, + [58351] = 3, + ACTIONS(5732), 1, + anon_sym_LT, + STATE(739), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5696), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [58196] = 3, - ACTIONS(5622), 1, + [58362] = 3, + ACTIONS(5734), 1, anon_sym_SEMI, - ACTIONS(5698), 1, - anon_sym_RBRACE, + ACTIONS(5736), 1, + anon_sym_as, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58207] = 3, - ACTIONS(4344), 1, + [58373] = 3, + ACTIONS(4372), 1, anon_sym_LBRACE, - STATE(290), 1, + STATE(366), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58218] = 3, - ACTIONS(4344), 1, + [58384] = 3, + ACTIONS(447), 1, anon_sym_LBRACE, - STATE(299), 1, - sym_declaration_list, + STATE(2767), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58229] = 3, - ACTIONS(4555), 1, - anon_sym_PLUS, - ACTIONS(5700), 1, - anon_sym_SEMI, + [58395] = 3, + ACTIONS(3933), 1, + anon_sym_LPAREN, + STATE(1804), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58240] = 2, + [58406] = 3, + ACTIONS(3933), 1, + anon_sym_LPAREN, + STATE(1795), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4948), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [58249] = 3, - ACTIONS(4469), 1, - anon_sym_COLON_COLON, - ACTIONS(5702), 1, - anon_sym_RPAREN, + [58417] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58260] = 3, - ACTIONS(4453), 1, - anon_sym_COLON_COLON, - ACTIONS(5702), 1, - anon_sym_RPAREN, + ACTIONS(5524), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [58426] = 3, + ACTIONS(3391), 1, + anon_sym_COLON, + ACTIONS(5712), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58271] = 2, + [58437] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5704), 2, + ACTIONS(5738), 2, anon_sym_const, sym_mutable_specifier, - [58280] = 3, - ACTIONS(5622), 1, - anon_sym_SEMI, - ACTIONS(5706), 1, - anon_sym_RBRACE, + [58446] = 3, + ACTIONS(4372), 1, + anon_sym_LBRACE, + STATE(365), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58291] = 3, - ACTIONS(4471), 1, - anon_sym_COLON_COLON, - ACTIONS(5702), 1, - anon_sym_RPAREN, + [58457] = 3, + ACTIONS(447), 1, + anon_sym_LBRACE, + STATE(1240), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58302] = 3, - ACTIONS(3121), 1, + [58468] = 3, + ACTIONS(3158), 1, anon_sym_COLON_COLON, - ACTIONS(4400), 1, + ACTIONS(4459), 1, anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58313] = 3, - ACTIONS(4477), 1, - anon_sym_COLON_COLON, - ACTIONS(5708), 1, - anon_sym_RPAREN, + [58479] = 3, + ACTIONS(4551), 1, + anon_sym_PLUS, + ACTIONS(5740), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58324] = 3, - ACTIONS(3915), 1, - anon_sym_LPAREN, - STATE(1837), 1, - sym_parameters, + [58490] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58335] = 3, - ACTIONS(4344), 1, - anon_sym_LBRACE, - STATE(276), 1, - sym_declaration_list, + ACTIONS(5742), 2, + anon_sym_const, + sym_mutable_specifier, + [58499] = 3, + ACTIONS(3995), 1, + anon_sym_BANG, + ACTIONS(4014), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58346] = 3, - ACTIONS(5710), 1, - anon_sym_SEMI, - ACTIONS(5712), 1, - anon_sym_as, + [58510] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58357] = 2, + ACTIONS(5744), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [58519] = 3, + ACTIONS(4366), 1, + anon_sym_LBRACE, + STATE(358), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5714), 2, - anon_sym_const, - sym_mutable_specifier, - [58366] = 3, - ACTIONS(5716), 1, + [58530] = 3, + ACTIONS(5746), 1, anon_sym_BANG, - ACTIONS(5718), 1, + ACTIONS(5748), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58377] = 3, - ACTIONS(4523), 1, - anon_sym_RBRACE, - ACTIONS(5622), 1, - anon_sym_SEMI, + [58541] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58388] = 3, + ACTIONS(4767), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [58550] = 3, ACTIONS(15), 1, anon_sym_LBRACE, - STATE(88), 1, + STATE(167), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58399] = 3, - ACTIONS(2997), 1, - anon_sym_LPAREN, - STATE(1158), 1, - sym_parameters, + [58561] = 3, + ACTIONS(4366), 1, + anon_sym_LBRACE, + STATE(476), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58410] = 3, - ACTIONS(447), 1, - anon_sym_LBRACE, - STATE(1248), 1, - sym_block, + [58572] = 3, + ACTIONS(5648), 1, + anon_sym_SEMI, + ACTIONS(5750), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58421] = 3, - ACTIONS(5720), 1, - anon_sym_SEMI, - ACTIONS(5722), 1, - anon_sym_as, + [58583] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58432] = 2, + ACTIONS(5388), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [58592] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4824), 2, - anon_sym_RPAREN, + ACTIONS(5235), 2, anon_sym_COMMA, - [58441] = 3, - ACTIONS(15), 1, - anon_sym_LBRACE, - STATE(55), 1, - sym_block, + anon_sym_PIPE, + [58601] = 3, + ACTIONS(5648), 1, + anon_sym_SEMI, + ACTIONS(5752), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58452] = 3, + [58612] = 3, ACTIONS(447), 1, anon_sym_LBRACE, - STATE(2756), 1, + STATE(2752), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58463] = 3, - ACTIONS(5622), 1, - anon_sym_SEMI, - ACTIONS(5724), 1, - anon_sym_RBRACE, + [58623] = 3, + ACTIONS(447), 1, + anon_sym_LBRACE, + STATE(2749), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58474] = 3, - ACTIONS(4354), 1, + [58634] = 3, + ACTIONS(447), 1, anon_sym_LBRACE, - STATE(1040), 1, - sym_field_declaration_list, + STATE(1190), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58485] = 2, + [58645] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5345), 2, - anon_sym_RBRACE, + ACTIONS(5377), 2, anon_sym_COMMA, - [58494] = 3, - ACTIONS(5656), 1, - anon_sym_LBRACE, - ACTIONS(5726), 1, - anon_sym_AMP_AMP, + anon_sym_GT, + [58654] = 3, + ACTIONS(5754), 1, + anon_sym_SEMI, + ACTIONS(5756), 1, + anon_sym_as, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58505] = 3, - ACTIONS(5622), 1, - anon_sym_SEMI, - ACTIONS(5728), 1, - anon_sym_RPAREN, + [58665] = 3, + ACTIONS(4551), 1, + anon_sym_PLUS, + ACTIONS(5758), 1, + anon_sym_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58516] = 3, - ACTIONS(4340), 1, - anon_sym_LBRACE, - STATE(1032), 1, - sym_declaration_list, + [58676] = 3, + ACTIONS(3815), 1, + anon_sym_EQ_GT, + ACTIONS(5760), 1, + anon_sym_AMP_AMP, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58527] = 3, - ACTIONS(447), 1, + [58687] = 3, + ACTIONS(4358), 1, anon_sym_LBRACE, - STATE(2754), 1, - sym_block, + STATE(953), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58538] = 3, - ACTIONS(4354), 1, + [58698] = 3, + ACTIONS(5642), 1, + anon_sym_EQ_GT, + ACTIONS(5760), 1, + anon_sym_AMP_AMP, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [58709] = 3, + ACTIONS(4366), 1, anon_sym_LBRACE, - STATE(1021), 1, + STATE(489), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58549] = 3, - ACTIONS(4344), 1, + [58720] = 3, + ACTIONS(4384), 1, anon_sym_LBRACE, - STATE(286), 1, + STATE(956), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58560] = 2, + [58731] = 3, + ACTIONS(3933), 1, + anon_sym_LPAREN, + STATE(1778), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5333), 2, - anon_sym_COMMA, - anon_sym_GT, - [58569] = 3, - ACTIONS(3915), 1, + [58742] = 3, + ACTIONS(2999), 1, anon_sym_LPAREN, - STATE(1789), 1, + STATE(1128), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58580] = 3, - ACTIONS(3811), 1, - anon_sym_LBRACE, - ACTIONS(5726), 1, - anon_sym_AMP_AMP, + [58753] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58591] = 3, - ACTIONS(5622), 1, - anon_sym_SEMI, - ACTIONS(5730), 1, - anon_sym_RBRACE, + ACTIONS(5350), 2, + anon_sym_COMMA, + anon_sym_GT, + [58762] = 3, + ACTIONS(4372), 1, + anon_sym_LBRACE, + STATE(495), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58602] = 3, + [58773] = 3, ACTIONS(447), 1, anon_sym_LBRACE, - STATE(2746), 1, + STATE(2743), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58613] = 2, + [58784] = 3, + ACTIONS(4372), 1, + anon_sym_LBRACE, + STATE(494), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5407), 2, - anon_sym_COMMA, - anon_sym_GT, - [58622] = 3, - ACTIONS(4793), 1, - anon_sym_PIPE, - ACTIONS(5732), 1, - anon_sym_in, + [58795] = 3, + ACTIONS(4551), 1, + anon_sym_PLUS, + ACTIONS(5762), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58633] = 3, - ACTIONS(15), 1, + [58806] = 3, + ACTIONS(4358), 1, anon_sym_LBRACE, - STATE(93), 1, - sym_block, + STATE(960), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58644] = 3, - ACTIONS(3899), 1, - anon_sym_BANG, - ACTIONS(5734), 1, - anon_sym_COLON_COLON, + [58817] = 3, + ACTIONS(447), 1, + anon_sym_LBRACE, + STATE(1132), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58655] = 3, - ACTIONS(4591), 1, + [58828] = 3, + ACTIONS(4689), 1, anon_sym_LBRACE, - STATE(1003), 1, + STATE(966), 1, sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58666] = 3, - ACTIONS(5622), 1, + [58839] = 3, + ACTIONS(5648), 1, anon_sym_SEMI, - ACTIONS(5736), 1, + ACTIONS(5764), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58677] = 3, - ACTIONS(447), 1, - anon_sym_LBRACE, - STATE(2631), 1, - sym_block, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [58688] = 3, - ACTIONS(5622), 1, + [58850] = 3, + ACTIONS(5648), 1, anon_sym_SEMI, - ACTIONS(5738), 1, + ACTIONS(5766), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58699] = 3, - ACTIONS(3915), 1, - anon_sym_LPAREN, - STATE(1486), 1, - sym_parameters, + [58861] = 3, + ACTIONS(4372), 1, + anon_sym_LBRACE, + STATE(492), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58710] = 3, - ACTIONS(5622), 1, - anon_sym_SEMI, - ACTIONS(5740), 1, - anon_sym_RPAREN, + [58872] = 3, + ACTIONS(3933), 1, + anon_sym_LPAREN, + STATE(1500), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58721] = 2, + [58883] = 3, + ACTIONS(3933), 1, + anon_sym_LPAREN, + STATE(1861), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4935), 2, - anon_sym_COMMA, - anon_sym_GT, - [58730] = 3, - ACTIONS(4364), 1, + [58894] = 3, + ACTIONS(4384), 1, anon_sym_LBRACE, - STATE(516), 1, - sym_field_declaration_list, + STATE(975), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58741] = 3, + [58905] = 3, ACTIONS(447), 1, anon_sym_LBRACE, - STATE(2621), 1, + STATE(2622), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58752] = 3, - ACTIONS(4607), 1, - anon_sym_LBRACE, - STATE(497), 1, - sym_enum_variant_list, + [58916] = 3, + ACTIONS(3933), 1, + anon_sym_LPAREN, + STATE(1836), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58763] = 3, - ACTIONS(4793), 1, - anon_sym_PIPE, - ACTIONS(5742), 1, - anon_sym_in, + [58927] = 3, + ACTIONS(4499), 1, + anon_sym_COLON_COLON, + ACTIONS(5768), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58774] = 3, - ACTIONS(3915), 1, - anon_sym_LPAREN, - STATE(1817), 1, - sym_parameters, + [58938] = 3, + ACTIONS(2740), 1, + anon_sym_SQUOTE, + STATE(2389), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58785] = 3, - ACTIONS(4354), 1, + [58949] = 3, + ACTIONS(4358), 1, anon_sym_LBRACE, - STATE(968), 1, + STATE(982), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58796] = 3, - ACTIONS(3915), 1, - anon_sym_LPAREN, - STATE(1815), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [58807] = 3, - ACTIONS(4477), 1, - anon_sym_COLON_COLON, - ACTIONS(5744), 1, - anon_sym_RPAREN, + [58960] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58818] = 3, - ACTIONS(4344), 1, + ACTIONS(2924), 2, + anon_sym_COMMA, + anon_sym_GT, + [58969] = 3, + ACTIONS(4372), 1, anon_sym_LBRACE, - STATE(510), 1, + STATE(464), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58829] = 3, + [58980] = 3, ACTIONS(447), 1, anon_sym_LBRACE, - STATE(2676), 1, + STATE(2660), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58840] = 3, + [58991] = 3, ACTIONS(447), 1, anon_sym_LBRACE, - STATE(2641), 1, + STATE(2663), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58851] = 3, - ACTIONS(4364), 1, - anon_sym_LBRACE, - STATE(496), 1, - sym_field_declaration_list, + [59002] = 3, + ACTIONS(4515), 1, + anon_sym_COLON_COLON, + ACTIONS(5770), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58862] = 3, - ACTIONS(4517), 1, + [59013] = 3, + ACTIONS(4805), 1, + anon_sym_PIPE, + ACTIONS(5772), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [59024] = 3, + ACTIONS(4469), 1, anon_sym_RPAREN, - ACTIONS(5622), 1, + ACTIONS(5648), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58873] = 3, - ACTIONS(4471), 1, + [59035] = 3, + ACTIONS(4521), 1, anon_sym_COLON_COLON, - ACTIONS(5746), 1, + ACTIONS(5770), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58884] = 3, - ACTIONS(4519), 1, + [59046] = 3, + ACTIONS(4517), 1, anon_sym_RPAREN, - ACTIONS(5622), 1, + ACTIONS(5648), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58895] = 3, - ACTIONS(4793), 1, - anon_sym_PIPE, - ACTIONS(5748), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [58906] = 3, - ACTIONS(4555), 1, - anon_sym_PLUS, - ACTIONS(5750), 1, - anon_sym_SEMI, + [59057] = 3, + ACTIONS(4525), 1, + anon_sym_COLON_COLON, + ACTIONS(5770), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58917] = 2, + [59068] = 3, + ACTIONS(447), 1, + anon_sym_LBRACE, + STATE(2762), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5270), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [58926] = 3, - ACTIONS(4453), 1, - anon_sym_COLON_COLON, - ACTIONS(5746), 1, - anon_sym_RPAREN, + [59079] = 3, + ACTIONS(4551), 1, + anon_sym_PLUS, + ACTIONS(5774), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58937] = 3, - ACTIONS(3915), 1, + [59090] = 3, + ACTIONS(2999), 1, anon_sym_LPAREN, - STATE(1514), 1, + STATE(1136), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58948] = 3, - ACTIONS(5752), 1, - anon_sym_LBRACK, - ACTIONS(5754), 1, - anon_sym_BANG, + [59101] = 3, + ACTIONS(4358), 1, + anon_sym_LBRACE, + STATE(989), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58959] = 3, - ACTIONS(4469), 1, - anon_sym_COLON_COLON, - ACTIONS(5746), 1, - anon_sym_RPAREN, + [59112] = 3, + ACTIONS(4384), 1, + anon_sym_LBRACE, + STATE(987), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58970] = 3, - ACTIONS(447), 1, - anon_sym_LBRACE, - STATE(2666), 1, - sym_block, + [59123] = 3, + ACTIONS(3007), 1, + anon_sym_LT2, + STATE(1235), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58981] = 3, - ACTIONS(4340), 1, - anon_sym_LBRACE, - STATE(957), 1, - sym_declaration_list, + [59134] = 3, + ACTIONS(3933), 1, + anon_sym_LPAREN, + STATE(1796), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58992] = 3, - ACTIONS(4340), 1, + [59145] = 3, + ACTIONS(4384), 1, anon_sym_LBRACE, - STATE(954), 1, + STATE(988), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59003] = 3, - ACTIONS(4354), 1, + [59156] = 3, + ACTIONS(4599), 1, anon_sym_LBRACE, - STATE(953), 1, - sym_field_declaration_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [59014] = 2, - ACTIONS(5756), 1, - anon_sym_SEMI, + STATE(523), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59022] = 2, - ACTIONS(5758), 1, - anon_sym_COLON, + [59167] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59030] = 2, - ACTIONS(3188), 1, + ACTIONS(5295), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [59176] = 2, + ACTIONS(4755), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59038] = 2, - ACTIONS(2832), 1, - anon_sym_EQ_GT, + [59184] = 2, + ACTIONS(5776), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59046] = 2, - ACTIONS(4866), 1, - anon_sym_RBRACE, + [59192] = 2, + ACTIONS(4953), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59054] = 2, - ACTIONS(5760), 1, - anon_sym_COLON, + [59200] = 2, + ACTIONS(5778), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59062] = 2, - ACTIONS(5762), 1, - anon_sym_EQ_GT, + [59208] = 2, + ACTIONS(4811), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59070] = 2, - ACTIONS(2874), 1, + [59216] = 2, + ACTIONS(5780), 1, anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59078] = 2, - ACTIONS(5764), 1, + [59224] = 2, + ACTIONS(5782), 1, anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59086] = 2, - ACTIONS(5766), 1, - anon_sym_LPAREN, + [59232] = 2, + ACTIONS(5784), 1, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59094] = 2, - ACTIONS(5768), 1, + [59240] = 2, + ACTIONS(5786), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59102] = 2, - ACTIONS(5770), 1, + [59248] = 2, + ACTIONS(5788), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59110] = 2, - ACTIONS(5772), 1, + [59256] = 2, + ACTIONS(5790), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59118] = 2, - ACTIONS(5774), 1, - anon_sym_SEMI, + [59264] = 2, + ACTIONS(4014), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59126] = 2, - ACTIONS(4124), 1, + [59272] = 2, + ACTIONS(4196), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59134] = 2, - ACTIONS(5776), 1, - anon_sym_fn, + [59280] = 2, + ACTIONS(5718), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59142] = 2, - ACTIONS(5778), 1, + [59288] = 2, + ACTIONS(5792), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59150] = 2, - ACTIONS(5780), 1, - anon_sym_SEMI, + [59296] = 2, + ACTIONS(5794), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59158] = 2, - ACTIONS(5782), 1, - anon_sym_RPAREN, + [59304] = 2, + ACTIONS(5796), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59166] = 2, - ACTIONS(5730), 1, - anon_sym_SEMI, + [59312] = 2, + ACTIONS(5798), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59174] = 2, - ACTIONS(5784), 1, - anon_sym_fn, + [59320] = 2, + ACTIONS(5800), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59182] = 2, - ACTIONS(5786), 1, - anon_sym_RBRACK, + [59328] = 2, + ACTIONS(5802), 1, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59190] = 2, - ACTIONS(5788), 1, - anon_sym_RPAREN, + [59336] = 2, + ACTIONS(5804), 1, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59198] = 2, - ACTIONS(5718), 1, + [59344] = 2, + ACTIONS(5748), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59206] = 2, - ACTIONS(3121), 1, + [59352] = 2, + ACTIONS(3158), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59214] = 2, - ACTIONS(5790), 1, - anon_sym_fn, + [59360] = 2, + ACTIONS(5806), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59222] = 2, - ACTIONS(3174), 1, - anon_sym_COLON_COLON, + [59368] = 2, + ACTIONS(5808), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59230] = 2, - ACTIONS(5792), 1, - anon_sym_SEMI, + [59376] = 2, + ACTIONS(5810), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59238] = 2, - ACTIONS(5724), 1, + [59384] = 2, + ACTIONS(5812), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [59392] = 2, + ACTIONS(5814), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59246] = 2, - ACTIONS(5794), 1, + [59400] = 2, + ACTIONS(5816), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59254] = 2, - ACTIONS(4189), 1, - anon_sym_RBRACE, + [59408] = 2, + ACTIONS(5752), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59262] = 2, - ACTIONS(5796), 1, - anon_sym_RBRACK, + [59416] = 2, + ACTIONS(2838), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59270] = 2, - ACTIONS(4897), 1, - anon_sym_RPAREN, + [59424] = 2, + ACTIONS(5228), 1, + anon_sym_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59278] = 2, - ACTIONS(5798), 1, - anon_sym_EQ_GT, + [59432] = 2, + ACTIONS(5750), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59286] = 2, - ACTIONS(5800), 1, - anon_sym_COLON_COLON, + [59440] = 2, + ACTIONS(5818), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59294] = 2, - ACTIONS(5706), 1, - anon_sym_SEMI, + [59448] = 2, + ACTIONS(5820), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59302] = 2, - ACTIONS(4571), 1, - anon_sym_COLON_COLON, + [59456] = 2, + ACTIONS(5822), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59310] = 2, - ACTIONS(5802), 1, - anon_sym_SEMI, + [59464] = 2, + ACTIONS(5401), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59318] = 2, - ACTIONS(5804), 1, + [59472] = 2, + ACTIONS(5824), 1, anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59326] = 2, - ACTIONS(5369), 1, - anon_sym_RBRACE, + [59480] = 2, + ACTIONS(5826), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59334] = 2, - ACTIONS(5806), 1, - anon_sym_COLON_COLON, + [59488] = 2, + ACTIONS(5828), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59342] = 2, - ACTIONS(5734), 1, + [59496] = 2, + ACTIONS(5830), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59350] = 2, - ACTIONS(3635), 1, + [59504] = 2, + ACTIONS(5832), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59358] = 2, - ACTIONS(5698), 1, + [59512] = 2, + ACTIONS(5834), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59366] = 2, - ACTIONS(5808), 1, - anon_sym_COLON, + [59520] = 2, + ACTIONS(5836), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59374] = 2, - ACTIONS(5810), 1, - anon_sym_COLON, + [59528] = 2, + ACTIONS(3649), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59382] = 2, - ACTIONS(5812), 1, - anon_sym_SEMI, + [59536] = 2, + ACTIONS(5838), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59390] = 2, - ACTIONS(4505), 1, + [59544] = 2, + ACTIONS(5840), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59398] = 2, - ACTIONS(5814), 1, - anon_sym_RPAREN, + [59552] = 2, + ACTIONS(5842), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59406] = 2, - ACTIONS(3985), 1, + [59560] = 2, + ACTIONS(5844), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59414] = 2, - ACTIONS(3673), 1, - anon_sym_COLON_COLON, + [59568] = 2, + ACTIONS(5846), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59422] = 2, - ACTIONS(4012), 1, - anon_sym_COLON_COLON, + [59576] = 2, + ACTIONS(5214), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59430] = 2, - ACTIONS(5816), 1, - anon_sym_LPAREN, + [59584] = 2, + ACTIONS(3689), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59438] = 2, - ACTIONS(5818), 1, - anon_sym_RBRACK, + [59592] = 2, + ACTIONS(5848), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59446] = 2, - ACTIONS(4711), 1, - anon_sym_COLON_COLON, + [59600] = 2, + ACTIONS(5850), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59454] = 2, - ACTIONS(5820), 1, - anon_sym_LT, + [59608] = 2, + ACTIONS(5852), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59462] = 2, - ACTIONS(5822), 1, - ts_builtin_sym_end, + [59616] = 2, + ACTIONS(5854), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59470] = 2, - ACTIONS(5824), 1, - anon_sym_RBRACK, + [59624] = 2, + ACTIONS(5856), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59478] = 2, - ACTIONS(5826), 1, + [59632] = 2, + ACTIONS(5648), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59486] = 2, - ACTIONS(5622), 1, - anon_sym_SEMI, + [59640] = 2, + ACTIONS(2882), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59494] = 2, - ACTIONS(5828), 1, - anon_sym_SEMI, + [59648] = 2, + ACTIONS(5858), 1, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59502] = 2, - ACTIONS(4523), 1, + [59656] = 2, + ACTIONS(5860), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59510] = 2, - ACTIONS(5830), 1, + [59664] = 2, + ACTIONS(5862), 1, + anon_sym_LT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [59672] = 2, + ACTIONS(5864), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59518] = 2, - ACTIONS(5832), 1, - anon_sym_RBRACK, + [59680] = 2, + ACTIONS(5866), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59526] = 2, - ACTIONS(3983), 1, - anon_sym_COLON_COLON, + [59688] = 2, + ACTIONS(3669), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59534] = 2, - ACTIONS(3123), 1, + [59696] = 2, + ACTIONS(3160), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59542] = 2, - ACTIONS(5834), 1, + [59704] = 2, + ACTIONS(5868), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59550] = 2, - ACTIONS(5203), 1, + [59712] = 2, + ACTIONS(4817), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59558] = 2, - ACTIONS(5836), 1, - anon_sym_RBRACE, + [59720] = 2, + ACTIONS(5870), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59566] = 2, - ACTIONS(4903), 1, + [59728] = 2, + ACTIONS(5469), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59574] = 2, - ACTIONS(5838), 1, - anon_sym_SEMI, + [59736] = 2, + ACTIONS(5872), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59582] = 2, - ACTIONS(5840), 1, + [59744] = 2, + ACTIONS(5874), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59590] = 2, - ACTIONS(5842), 1, - anon_sym_SEMI, + [59752] = 2, + ACTIONS(3691), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59598] = 2, - ACTIONS(5844), 1, - anon_sym_COLON_COLON, + [59760] = 2, + ACTIONS(5876), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59606] = 2, - ACTIONS(3513), 1, + [59768] = 2, + ACTIONS(5878), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59614] = 2, - ACTIONS(5846), 1, - anon_sym_EQ_GT, + [59776] = 2, + ACTIONS(4044), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59622] = 2, - ACTIONS(5848), 1, - anon_sym_RBRACK, + [59784] = 2, + ACTIONS(4719), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59630] = 2, - ACTIONS(4497), 1, - anon_sym_SEMI, + [59792] = 2, + ACTIONS(5880), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59638] = 2, - ACTIONS(4531), 1, + [59800] = 2, + ACTIONS(4609), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59646] = 2, - ACTIONS(5850), 1, + [59808] = 2, + ACTIONS(5882), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59654] = 2, - ACTIONS(5852), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [59662] = 2, - ACTIONS(5854), 1, - anon_sym_RPAREN, + [59816] = 2, + ACTIONS(4531), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59670] = 2, - ACTIONS(5856), 1, + [59824] = 2, + ACTIONS(4501), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59678] = 2, - ACTIONS(5858), 1, + [59832] = 2, + ACTIONS(5884), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59686] = 2, - ACTIONS(5860), 1, + [59840] = 2, + ACTIONS(4949), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59694] = 2, - ACTIONS(4623), 1, - anon_sym_COLON_COLON, + [59848] = 2, + ACTIONS(5886), 1, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59702] = 2, - ACTIONS(5862), 1, + [59856] = 2, + ACTIONS(4555), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59710] = 2, - ACTIONS(5864), 1, - anon_sym_SEMI, + [59864] = 2, + ACTIONS(5888), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59718] = 2, - ACTIONS(5043), 1, - anon_sym_RBRACK, + [59872] = 2, + ACTIONS(4090), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59726] = 2, - ACTIONS(4471), 1, - anon_sym_COLON_COLON, + [59880] = 2, + ACTIONS(4543), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59734] = 2, - ACTIONS(5866), 1, + [59888] = 2, + ACTIONS(5890), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59742] = 2, - ACTIONS(5868), 1, + [59896] = 2, + ACTIONS(4016), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [59904] = 2, + ACTIONS(5892), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59750] = 2, - ACTIONS(5870), 1, + [59912] = 2, + ACTIONS(5894), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59758] = 2, - ACTIONS(5872), 1, + [59920] = 2, + ACTIONS(5896), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59766] = 2, - ACTIONS(5874), 1, + [59928] = 2, + ACTIONS(5898), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59774] = 2, - ACTIONS(5876), 1, - anon_sym_COLON, + [59936] = 2, + ACTIONS(5502), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59782] = 2, - ACTIONS(2838), 1, + [59944] = 2, + ACTIONS(2888), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59790] = 2, - ACTIONS(4919), 1, - anon_sym_RPAREN, + [59952] = 2, + ACTIONS(4527), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59798] = 2, - ACTIONS(4481), 1, - anon_sym_SEMI, + [59960] = 2, + ACTIONS(5900), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59806] = 2, - ACTIONS(5878), 1, - sym_self, + [59968] = 2, + ACTIONS(5902), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59814] = 2, - ACTIONS(5880), 1, + [59976] = 2, + ACTIONS(5904), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59822] = 2, - ACTIONS(5882), 1, + [59984] = 2, + ACTIONS(5906), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59830] = 2, - ACTIONS(5884), 1, - anon_sym_SEMI, + [59992] = 2, + ACTIONS(5908), 1, + sym_self, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59838] = 2, - ACTIONS(5886), 1, + [60000] = 2, + ACTIONS(5910), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59846] = 2, - ACTIONS(5888), 1, - anon_sym_SEMI, + [60008] = 2, + ACTIONS(3683), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59854] = 2, - ACTIONS(707), 1, - anon_sym_RBRACK, + [60016] = 2, + ACTIONS(5912), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59862] = 2, - ACTIONS(5890), 1, + [60024] = 2, + ACTIONS(5914), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59870] = 2, - ACTIONS(5892), 1, + [60032] = 2, + ACTIONS(5916), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59878] = 2, - ACTIONS(4179), 1, + [60040] = 2, + ACTIONS(4186), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59886] = 2, - ACTIONS(4084), 1, - anon_sym_COLON_COLON, + [60048] = 2, + ACTIONS(5918), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59894] = 2, - ACTIONS(5894), 1, - anon_sym_EQ_GT, + [60056] = 2, + ACTIONS(5920), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59902] = 2, - ACTIONS(5896), 1, - anon_sym_RBRACK, + [60064] = 2, + ACTIONS(5922), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59910] = 2, - ACTIONS(5898), 1, + [60072] = 2, + ACTIONS(5924), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59918] = 2, - ACTIONS(5900), 1, + [60080] = 2, + ACTIONS(5926), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59926] = 2, - ACTIONS(5902), 1, - anon_sym_COLON, + [60088] = 2, + ACTIONS(5928), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59934] = 2, - ACTIONS(5904), 1, + [60096] = 2, + ACTIONS(5930), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59942] = 2, - ACTIONS(5906), 1, + [60104] = 2, + ACTIONS(5932), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59950] = 2, - ACTIONS(5908), 1, + [60112] = 2, + ACTIONS(5934), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59958] = 2, - ACTIONS(5910), 1, - anon_sym_RBRACK, + [60120] = 2, + ACTIONS(5936), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59966] = 2, - ACTIONS(5912), 1, + [60128] = 2, + ACTIONS(5938), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59974] = 2, - ACTIONS(5914), 1, - anon_sym_fn, + [60136] = 2, + ACTIONS(5940), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59982] = 2, - ACTIONS(2834), 1, - anon_sym_PLUS, + [60144] = 2, + ACTIONS(5942), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59990] = 2, - ACTIONS(5916), 1, - anon_sym_RBRACE, + [60152] = 2, + ACTIONS(5944), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59998] = 2, - ACTIONS(5918), 1, + [60160] = 2, + ACTIONS(5946), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60006] = 2, - ACTIONS(5920), 1, - anon_sym_COLON_COLON, + [60168] = 2, + ACTIONS(5948), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60014] = 2, - ACTIONS(5922), 1, + [60176] = 2, + ACTIONS(5950), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60022] = 2, - ACTIONS(5924), 1, - anon_sym_SEMI, + [60184] = 2, + ACTIONS(4515), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60030] = 2, - ACTIONS(5926), 1, + [60192] = 2, + ACTIONS(5952), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60038] = 2, - ACTIONS(5928), 1, + [60200] = 2, + ACTIONS(5954), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60046] = 2, - ACTIONS(5930), 1, - anon_sym_SEMI, + [60208] = 2, + ACTIONS(5956), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60054] = 2, - ACTIONS(2886), 1, - anon_sym_PLUS, + [60216] = 2, + ACTIONS(5958), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60062] = 2, - ACTIONS(5932), 1, + [60224] = 2, + ACTIONS(5960), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60070] = 2, - ACTIONS(5934), 1, + [60232] = 2, + ACTIONS(5962), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60078] = 2, - ACTIONS(5936), 1, + [60240] = 2, + ACTIONS(5964), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60086] = 2, - ACTIONS(5938), 1, - anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [60094] = 2, - ACTIONS(5530), 1, + [60248] = 2, + ACTIONS(4244), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60102] = 2, - ACTIONS(5940), 1, + [60256] = 2, + ACTIONS(5966), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60110] = 2, - ACTIONS(5942), 1, - anon_sym_SEMI, + [60264] = 2, + ACTIONS(5968), 1, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60118] = 2, - ACTIONS(5944), 1, - anon_sym_fn, + [60272] = 2, + ACTIONS(5970), 1, + ts_builtin_sym_end, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60126] = 2, - ACTIONS(531), 1, - anon_sym_RBRACK, + [60280] = 2, + ACTIONS(5972), 1, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60134] = 2, - ACTIONS(5946), 1, - anon_sym_fn, + [60288] = 2, + ACTIONS(5974), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60142] = 2, - ACTIONS(5948), 1, - anon_sym_RPAREN, + [60296] = 2, + ACTIONS(5976), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60150] = 2, - ACTIONS(5950), 1, + [60304] = 2, + ACTIONS(5978), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60158] = 2, - ACTIONS(5952), 1, - anon_sym_COLON, + [60312] = 2, + ACTIONS(3463), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60166] = 2, - ACTIONS(5954), 1, - anon_sym_fn, + [60320] = 2, + ACTIONS(2904), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60174] = 2, - ACTIONS(5956), 1, - anon_sym_LBRACK, + [60328] = 2, + ACTIONS(5980), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60182] = 2, - ACTIONS(5958), 1, + [60336] = 2, + ACTIONS(5982), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60190] = 2, - ACTIONS(5960), 1, - anon_sym_fn, + [60344] = 2, + ACTIONS(5984), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60198] = 2, - ACTIONS(5962), 1, - anon_sym_COLON_COLON, + [60352] = 2, + ACTIONS(5986), 1, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60206] = 2, - ACTIONS(5112), 1, - anon_sym_GT, + [60360] = 2, + ACTIONS(4913), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60214] = 2, - ACTIONS(5964), 1, - anon_sym_SEMI, + [60368] = 2, + ACTIONS(5988), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60222] = 2, - ACTIONS(5966), 1, - anon_sym_COLON, + [60376] = 2, + ACTIONS(5990), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60230] = 2, - ACTIONS(5968), 1, + [60384] = 2, + ACTIONS(5992), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60238] = 2, - ACTIONS(5970), 1, - anon_sym_SEMI, + [60392] = 2, + ACTIONS(3287), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60246] = 2, - ACTIONS(5972), 1, + [60400] = 2, + ACTIONS(5994), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60254] = 2, - ACTIONS(5974), 1, + [60408] = 2, + ACTIONS(5996), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60262] = 2, - ACTIONS(5976), 1, - anon_sym_EQ_GT, + [60416] = 2, + ACTIONS(5650), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60270] = 2, - ACTIONS(5978), 1, - anon_sym_COLON_COLON, + [60424] = 2, + ACTIONS(5998), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60278] = 2, - ACTIONS(5980), 1, + [60432] = 2, + ACTIONS(6000), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60286] = 2, - ACTIONS(3669), 1, - anon_sym_RPAREN, + [60440] = 2, + ACTIONS(6002), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60294] = 2, - ACTIONS(5982), 1, + [60448] = 2, + ACTIONS(6004), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60302] = 2, - ACTIONS(5984), 1, - anon_sym_COLON, + [60456] = 2, + ACTIONS(3138), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60310] = 2, - ACTIONS(5512), 1, - anon_sym_RBRACE, + [60464] = 2, + ACTIONS(2928), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60318] = 2, - ACTIONS(5986), 1, + [60472] = 2, + ACTIONS(5656), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60326] = 2, - ACTIONS(5988), 1, - anon_sym_LBRACK, + [60480] = 2, + ACTIONS(6006), 1, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60334] = 2, - ACTIONS(5990), 1, - anon_sym_fn, + [60488] = 2, + ACTIONS(6008), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [60496] = 2, + ACTIONS(6010), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(812)] = 0, - [SMALL_STATE(813)] = 68, - [SMALL_STATE(814)] = 136, - [SMALL_STATE(815)] = 204, - [SMALL_STATE(816)] = 272, - [SMALL_STATE(817)] = 336, - [SMALL_STATE(818)] = 407, - [SMALL_STATE(819)] = 465, - [SMALL_STATE(820)] = 533, - [SMALL_STATE(821)] = 601, - [SMALL_STATE(822)] = 659, - [SMALL_STATE(823)] = 717, - [SMALL_STATE(824)] = 775, - [SMALL_STATE(825)] = 833, - [SMALL_STATE(826)] = 890, - [SMALL_STATE(827)] = 951, - [SMALL_STATE(828)] = 1050, - [SMALL_STATE(829)] = 1113, - [SMALL_STATE(830)] = 1178, - [SMALL_STATE(831)] = 1243, - [SMALL_STATE(832)] = 1304, - [SMALL_STATE(833)] = 1365, - [SMALL_STATE(834)] = 1464, - [SMALL_STATE(835)] = 1529, - [SMALL_STATE(836)] = 1590, - [SMALL_STATE(837)] = 1655, - [SMALL_STATE(838)] = 1711, - [SMALL_STATE(839)] = 1767, - [SMALL_STATE(840)] = 1823, - [SMALL_STATE(841)] = 1879, - [SMALL_STATE(842)] = 1937, - [SMALL_STATE(843)] = 1997, - [SMALL_STATE(844)] = 2059, - [SMALL_STATE(845)] = 2115, - [SMALL_STATE(846)] = 2171, - [SMALL_STATE(847)] = 2227, - [SMALL_STATE(848)] = 2283, - [SMALL_STATE(849)] = 2339, - [SMALL_STATE(850)] = 2395, - [SMALL_STATE(851)] = 2451, - [SMALL_STATE(852)] = 2507, - [SMALL_STATE(853)] = 2563, - [SMALL_STATE(854)] = 2621, - [SMALL_STATE(855)] = 2677, - [SMALL_STATE(856)] = 2733, - [SMALL_STATE(857)] = 2789, - [SMALL_STATE(858)] = 2845, - [SMALL_STATE(859)] = 2901, - [SMALL_STATE(860)] = 2957, - [SMALL_STATE(861)] = 3013, - [SMALL_STATE(862)] = 3069, - [SMALL_STATE(863)] = 3125, - [SMALL_STATE(864)] = 3181, - [SMALL_STATE(865)] = 3237, - [SMALL_STATE(866)] = 3293, - [SMALL_STATE(867)] = 3349, - [SMALL_STATE(868)] = 3405, - [SMALL_STATE(869)] = 3461, - [SMALL_STATE(870)] = 3517, - [SMALL_STATE(871)] = 3573, - [SMALL_STATE(872)] = 3629, - [SMALL_STATE(873)] = 3685, - [SMALL_STATE(874)] = 3741, - [SMALL_STATE(875)] = 3797, - [SMALL_STATE(876)] = 3853, - [SMALL_STATE(877)] = 3909, - [SMALL_STATE(878)] = 3965, - [SMALL_STATE(879)] = 4021, - [SMALL_STATE(880)] = 4077, - [SMALL_STATE(881)] = 4133, - [SMALL_STATE(882)] = 4189, - [SMALL_STATE(883)] = 4245, - [SMALL_STATE(884)] = 4301, - [SMALL_STATE(885)] = 4357, - [SMALL_STATE(886)] = 4413, - [SMALL_STATE(887)] = 4469, - [SMALL_STATE(888)] = 4525, - [SMALL_STATE(889)] = 4581, - [SMALL_STATE(890)] = 4637, - [SMALL_STATE(891)] = 4693, - [SMALL_STATE(892)] = 4749, - [SMALL_STATE(893)] = 4805, - [SMALL_STATE(894)] = 4861, - [SMALL_STATE(895)] = 4917, - [SMALL_STATE(896)] = 4973, - [SMALL_STATE(897)] = 5029, - [SMALL_STATE(898)] = 5085, - [SMALL_STATE(899)] = 5141, - [SMALL_STATE(900)] = 5197, - [SMALL_STATE(901)] = 5253, - [SMALL_STATE(902)] = 5309, - [SMALL_STATE(903)] = 5365, - [SMALL_STATE(904)] = 5421, - [SMALL_STATE(905)] = 5477, - [SMALL_STATE(906)] = 5533, - [SMALL_STATE(907)] = 5589, - [SMALL_STATE(908)] = 5645, - [SMALL_STATE(909)] = 5701, - [SMALL_STATE(910)] = 5757, - [SMALL_STATE(911)] = 5813, - [SMALL_STATE(912)] = 5869, - [SMALL_STATE(913)] = 5925, - [SMALL_STATE(914)] = 5981, - [SMALL_STATE(915)] = 6037, - [SMALL_STATE(916)] = 6093, - [SMALL_STATE(917)] = 6149, - [SMALL_STATE(918)] = 6205, - [SMALL_STATE(919)] = 6261, - [SMALL_STATE(920)] = 6317, - [SMALL_STATE(921)] = 6373, - [SMALL_STATE(922)] = 6429, - [SMALL_STATE(923)] = 6485, - [SMALL_STATE(924)] = 6541, - [SMALL_STATE(925)] = 6597, - [SMALL_STATE(926)] = 6653, - [SMALL_STATE(927)] = 6709, - [SMALL_STATE(928)] = 6765, - [SMALL_STATE(929)] = 6821, - [SMALL_STATE(930)] = 6877, - [SMALL_STATE(931)] = 6933, - [SMALL_STATE(932)] = 6989, - [SMALL_STATE(933)] = 7045, - [SMALL_STATE(934)] = 7101, - [SMALL_STATE(935)] = 7157, - [SMALL_STATE(936)] = 7213, - [SMALL_STATE(937)] = 7269, - [SMALL_STATE(938)] = 7325, - [SMALL_STATE(939)] = 7381, - [SMALL_STATE(940)] = 7437, - [SMALL_STATE(941)] = 7493, - [SMALL_STATE(942)] = 7549, - [SMALL_STATE(943)] = 7605, - [SMALL_STATE(944)] = 7661, - [SMALL_STATE(945)] = 7717, - [SMALL_STATE(946)] = 7773, - [SMALL_STATE(947)] = 7829, - [SMALL_STATE(948)] = 7885, - [SMALL_STATE(949)] = 7941, - [SMALL_STATE(950)] = 7997, - [SMALL_STATE(951)] = 8053, - [SMALL_STATE(952)] = 8109, - [SMALL_STATE(953)] = 8165, - [SMALL_STATE(954)] = 8221, - [SMALL_STATE(955)] = 8277, - [SMALL_STATE(956)] = 8335, - [SMALL_STATE(957)] = 8391, - [SMALL_STATE(958)] = 8447, - [SMALL_STATE(959)] = 8503, - [SMALL_STATE(960)] = 8559, - [SMALL_STATE(961)] = 8615, - [SMALL_STATE(962)] = 8671, - [SMALL_STATE(963)] = 8727, - [SMALL_STATE(964)] = 8783, - [SMALL_STATE(965)] = 8839, - [SMALL_STATE(966)] = 8895, - [SMALL_STATE(967)] = 8951, - [SMALL_STATE(968)] = 9007, - [SMALL_STATE(969)] = 9063, - [SMALL_STATE(970)] = 9119, - [SMALL_STATE(971)] = 9175, - [SMALL_STATE(972)] = 9231, - [SMALL_STATE(973)] = 9287, - [SMALL_STATE(974)] = 9343, - [SMALL_STATE(975)] = 9399, - [SMALL_STATE(976)] = 9455, - [SMALL_STATE(977)] = 9511, - [SMALL_STATE(978)] = 9567, - [SMALL_STATE(979)] = 9623, - [SMALL_STATE(980)] = 9679, - [SMALL_STATE(981)] = 9735, - [SMALL_STATE(982)] = 9791, - [SMALL_STATE(983)] = 9847, - [SMALL_STATE(984)] = 9903, - [SMALL_STATE(985)] = 9959, - [SMALL_STATE(986)] = 10015, - [SMALL_STATE(987)] = 10071, - [SMALL_STATE(988)] = 10127, - [SMALL_STATE(989)] = 10183, - [SMALL_STATE(990)] = 10239, - [SMALL_STATE(991)] = 10295, - [SMALL_STATE(992)] = 10351, - [SMALL_STATE(993)] = 10407, - [SMALL_STATE(994)] = 10463, - [SMALL_STATE(995)] = 10519, - [SMALL_STATE(996)] = 10575, - [SMALL_STATE(997)] = 10631, - [SMALL_STATE(998)] = 10687, - [SMALL_STATE(999)] = 10743, - [SMALL_STATE(1000)] = 10799, - [SMALL_STATE(1001)] = 10855, - [SMALL_STATE(1002)] = 10911, - [SMALL_STATE(1003)] = 10967, - [SMALL_STATE(1004)] = 11023, - [SMALL_STATE(1005)] = 11079, - [SMALL_STATE(1006)] = 11135, - [SMALL_STATE(1007)] = 11191, - [SMALL_STATE(1008)] = 11247, - [SMALL_STATE(1009)] = 11303, - [SMALL_STATE(1010)] = 11359, - [SMALL_STATE(1011)] = 11415, - [SMALL_STATE(1012)] = 11471, - [SMALL_STATE(1013)] = 11527, - [SMALL_STATE(1014)] = 11583, - [SMALL_STATE(1015)] = 11639, - [SMALL_STATE(1016)] = 11695, - [SMALL_STATE(1017)] = 11751, - [SMALL_STATE(1018)] = 11807, - [SMALL_STATE(1019)] = 11863, - [SMALL_STATE(1020)] = 11919, - [SMALL_STATE(1021)] = 11975, - [SMALL_STATE(1022)] = 12031, - [SMALL_STATE(1023)] = 12087, - [SMALL_STATE(1024)] = 12143, - [SMALL_STATE(1025)] = 12199, - [SMALL_STATE(1026)] = 12255, - [SMALL_STATE(1027)] = 12311, - [SMALL_STATE(1028)] = 12367, - [SMALL_STATE(1029)] = 12423, - [SMALL_STATE(1030)] = 12479, - [SMALL_STATE(1031)] = 12535, - [SMALL_STATE(1032)] = 12591, - [SMALL_STATE(1033)] = 12647, - [SMALL_STATE(1034)] = 12703, - [SMALL_STATE(1035)] = 12759, - [SMALL_STATE(1036)] = 12815, - [SMALL_STATE(1037)] = 12871, - [SMALL_STATE(1038)] = 12931, - [SMALL_STATE(1039)] = 12987, - [SMALL_STATE(1040)] = 13043, - [SMALL_STATE(1041)] = 13099, - [SMALL_STATE(1042)] = 13155, - [SMALL_STATE(1043)] = 13213, - [SMALL_STATE(1044)] = 13269, - [SMALL_STATE(1045)] = 13325, - [SMALL_STATE(1046)] = 13381, - [SMALL_STATE(1047)] = 13437, - [SMALL_STATE(1048)] = 13493, - [SMALL_STATE(1049)] = 13549, - [SMALL_STATE(1050)] = 13605, - [SMALL_STATE(1051)] = 13661, - [SMALL_STATE(1052)] = 13717, - [SMALL_STATE(1053)] = 13773, - [SMALL_STATE(1054)] = 13829, - [SMALL_STATE(1055)] = 13885, - [SMALL_STATE(1056)] = 13941, - [SMALL_STATE(1057)] = 13997, - [SMALL_STATE(1058)] = 14053, - [SMALL_STATE(1059)] = 14109, - [SMALL_STATE(1060)] = 14165, - [SMALL_STATE(1061)] = 14221, - [SMALL_STATE(1062)] = 14277, - [SMALL_STATE(1063)] = 14333, - [SMALL_STATE(1064)] = 14389, - [SMALL_STATE(1065)] = 14445, - [SMALL_STATE(1066)] = 14501, - [SMALL_STATE(1067)] = 14557, - [SMALL_STATE(1068)] = 14613, - [SMALL_STATE(1069)] = 14669, - [SMALL_STATE(1070)] = 14725, - [SMALL_STATE(1071)] = 14781, - [SMALL_STATE(1072)] = 14837, - [SMALL_STATE(1073)] = 14893, - [SMALL_STATE(1074)] = 14949, - [SMALL_STATE(1075)] = 15005, - [SMALL_STATE(1076)] = 15061, - [SMALL_STATE(1077)] = 15117, - [SMALL_STATE(1078)] = 15173, - [SMALL_STATE(1079)] = 15229, - [SMALL_STATE(1080)] = 15285, - [SMALL_STATE(1081)] = 15341, - [SMALL_STATE(1082)] = 15397, - [SMALL_STATE(1083)] = 15453, - [SMALL_STATE(1084)] = 15509, - [SMALL_STATE(1085)] = 15565, - [SMALL_STATE(1086)] = 15621, - [SMALL_STATE(1087)] = 15677, - [SMALL_STATE(1088)] = 15733, - [SMALL_STATE(1089)] = 15789, - [SMALL_STATE(1090)] = 15845, - [SMALL_STATE(1091)] = 15901, - [SMALL_STATE(1092)] = 15957, - [SMALL_STATE(1093)] = 16013, - [SMALL_STATE(1094)] = 16069, - [SMALL_STATE(1095)] = 16125, - [SMALL_STATE(1096)] = 16181, - [SMALL_STATE(1097)] = 16237, - [SMALL_STATE(1098)] = 16293, - [SMALL_STATE(1099)] = 16349, - [SMALL_STATE(1100)] = 16405, - [SMALL_STATE(1101)] = 16461, - [SMALL_STATE(1102)] = 16517, - [SMALL_STATE(1103)] = 16573, - [SMALL_STATE(1104)] = 16629, - [SMALL_STATE(1105)] = 16685, - [SMALL_STATE(1106)] = 16741, - [SMALL_STATE(1107)] = 16796, - [SMALL_STATE(1108)] = 16851, - [SMALL_STATE(1109)] = 16908, - [SMALL_STATE(1110)] = 16965, - [SMALL_STATE(1111)] = 17024, - [SMALL_STATE(1112)] = 17079, - [SMALL_STATE(1113)] = 17134, - [SMALL_STATE(1114)] = 17191, - [SMALL_STATE(1115)] = 17250, - [SMALL_STATE(1116)] = 17307, - [SMALL_STATE(1117)] = 17364, - [SMALL_STATE(1118)] = 17419, - [SMALL_STATE(1119)] = 17476, - [SMALL_STATE(1120)] = 17531, - [SMALL_STATE(1121)] = 17588, - [SMALL_STATE(1122)] = 17645, - [SMALL_STATE(1123)] = 17740, - [SMALL_STATE(1124)] = 17797, - [SMALL_STATE(1125)] = 17852, - [SMALL_STATE(1126)] = 17907, - [SMALL_STATE(1127)] = 17962, - [SMALL_STATE(1128)] = 18061, - [SMALL_STATE(1129)] = 18118, - [SMALL_STATE(1130)] = 18175, - [SMALL_STATE(1131)] = 18234, - [SMALL_STATE(1132)] = 18289, - [SMALL_STATE(1133)] = 18346, - [SMALL_STATE(1134)] = 18401, - [SMALL_STATE(1135)] = 18496, - [SMALL_STATE(1136)] = 18551, - [SMALL_STATE(1137)] = 18650, - [SMALL_STATE(1138)] = 18749, - [SMALL_STATE(1139)] = 18806, - [SMALL_STATE(1140)] = 18865, - [SMALL_STATE(1141)] = 18922, - [SMALL_STATE(1142)] = 18979, - [SMALL_STATE(1143)] = 19034, - [SMALL_STATE(1144)] = 19089, - [SMALL_STATE(1145)] = 19188, - [SMALL_STATE(1146)] = 19243, - [SMALL_STATE(1147)] = 19342, - [SMALL_STATE(1148)] = 19441, - [SMALL_STATE(1149)] = 19500, - [SMALL_STATE(1150)] = 19555, - [SMALL_STATE(1151)] = 19610, - [SMALL_STATE(1152)] = 19665, - [SMALL_STATE(1153)] = 19720, - [SMALL_STATE(1154)] = 19775, - [SMALL_STATE(1155)] = 19834, - [SMALL_STATE(1156)] = 19889, - [SMALL_STATE(1157)] = 19944, - [SMALL_STATE(1158)] = 19999, - [SMALL_STATE(1159)] = 20056, - [SMALL_STATE(1160)] = 20111, - [SMALL_STATE(1161)] = 20168, - [SMALL_STATE(1162)] = 20222, - [SMALL_STATE(1163)] = 20276, - [SMALL_STATE(1164)] = 20364, - [SMALL_STATE(1165)] = 20418, - [SMALL_STATE(1166)] = 20472, - [SMALL_STATE(1167)] = 20526, - [SMALL_STATE(1168)] = 20580, - [SMALL_STATE(1169)] = 20634, - [SMALL_STATE(1170)] = 20688, - [SMALL_STATE(1171)] = 20742, - [SMALL_STATE(1172)] = 20796, - [SMALL_STATE(1173)] = 20850, - [SMALL_STATE(1174)] = 20904, - [SMALL_STATE(1175)] = 20958, - [SMALL_STATE(1176)] = 21012, - [SMALL_STATE(1177)] = 21066, - [SMALL_STATE(1178)] = 21120, - [SMALL_STATE(1179)] = 21174, - [SMALL_STATE(1180)] = 21262, - [SMALL_STATE(1181)] = 21316, - [SMALL_STATE(1182)] = 21370, - [SMALL_STATE(1183)] = 21424, - [SMALL_STATE(1184)] = 21478, - [SMALL_STATE(1185)] = 21532, - [SMALL_STATE(1186)] = 21586, - [SMALL_STATE(1187)] = 21640, - [SMALL_STATE(1188)] = 21694, - [SMALL_STATE(1189)] = 21748, - [SMALL_STATE(1190)] = 21802, - [SMALL_STATE(1191)] = 21856, - [SMALL_STATE(1192)] = 21910, - [SMALL_STATE(1193)] = 21964, - [SMALL_STATE(1194)] = 22018, - [SMALL_STATE(1195)] = 22072, - [SMALL_STATE(1196)] = 22126, - [SMALL_STATE(1197)] = 22180, - [SMALL_STATE(1198)] = 22234, - [SMALL_STATE(1199)] = 22288, - [SMALL_STATE(1200)] = 22342, - [SMALL_STATE(1201)] = 22396, - [SMALL_STATE(1202)] = 22450, - [SMALL_STATE(1203)] = 22504, - [SMALL_STATE(1204)] = 22558, - [SMALL_STATE(1205)] = 22612, - [SMALL_STATE(1206)] = 22666, - [SMALL_STATE(1207)] = 22720, - [SMALL_STATE(1208)] = 22774, - [SMALL_STATE(1209)] = 22828, - [SMALL_STATE(1210)] = 22882, - [SMALL_STATE(1211)] = 22936, - [SMALL_STATE(1212)] = 22990, - [SMALL_STATE(1213)] = 23044, - [SMALL_STATE(1214)] = 23098, - [SMALL_STATE(1215)] = 23152, - [SMALL_STATE(1216)] = 23206, - [SMALL_STATE(1217)] = 23260, - [SMALL_STATE(1218)] = 23314, - [SMALL_STATE(1219)] = 23368, - [SMALL_STATE(1220)] = 23422, - [SMALL_STATE(1221)] = 23478, - [SMALL_STATE(1222)] = 23532, - [SMALL_STATE(1223)] = 23586, - [SMALL_STATE(1224)] = 23640, - [SMALL_STATE(1225)] = 23694, - [SMALL_STATE(1226)] = 23748, - [SMALL_STATE(1227)] = 23802, - [SMALL_STATE(1228)] = 23856, - [SMALL_STATE(1229)] = 23910, - [SMALL_STATE(1230)] = 23964, - [SMALL_STATE(1231)] = 24018, - [SMALL_STATE(1232)] = 24072, - [SMALL_STATE(1233)] = 24126, - [SMALL_STATE(1234)] = 24180, - [SMALL_STATE(1235)] = 24234, - [SMALL_STATE(1236)] = 24288, - [SMALL_STATE(1237)] = 24342, - [SMALL_STATE(1238)] = 24396, - [SMALL_STATE(1239)] = 24450, - [SMALL_STATE(1240)] = 24504, - [SMALL_STATE(1241)] = 24558, - [SMALL_STATE(1242)] = 24612, - [SMALL_STATE(1243)] = 24666, - [SMALL_STATE(1244)] = 24720, - [SMALL_STATE(1245)] = 24774, - [SMALL_STATE(1246)] = 24828, - [SMALL_STATE(1247)] = 24882, - [SMALL_STATE(1248)] = 24938, - [SMALL_STATE(1249)] = 24992, - [SMALL_STATE(1250)] = 25046, - [SMALL_STATE(1251)] = 25100, - [SMALL_STATE(1252)] = 25154, - [SMALL_STATE(1253)] = 25208, - [SMALL_STATE(1254)] = 25272, - [SMALL_STATE(1255)] = 25326, - [SMALL_STATE(1256)] = 25397, - [SMALL_STATE(1257)] = 25480, - [SMALL_STATE(1258)] = 25567, - [SMALL_STATE(1259)] = 25650, - [SMALL_STATE(1260)] = 25729, - [SMALL_STATE(1261)] = 25812, - [SMALL_STATE(1262)] = 25873, - [SMALL_STATE(1263)] = 25956, - [SMALL_STATE(1264)] = 26009, - [SMALL_STATE(1265)] = 26070, - [SMALL_STATE(1266)] = 26157, - [SMALL_STATE(1267)] = 26222, - [SMALL_STATE(1268)] = 26295, - [SMALL_STATE(1269)] = 26362, - [SMALL_STATE(1270)] = 26443, - [SMALL_STATE(1271)] = 26504, - [SMALL_STATE(1272)] = 26587, - [SMALL_STATE(1273)] = 26650, - [SMALL_STATE(1274)] = 26703, - [SMALL_STATE(1275)] = 26778, - [SMALL_STATE(1276)] = 26831, - [SMALL_STATE(1277)] = 26914, - [SMALL_STATE(1278)] = 26983, - [SMALL_STATE(1279)] = 27073, - [SMALL_STATE(1280)] = 27133, - [SMALL_STATE(1281)] = 27223, - [SMALL_STATE(1282)] = 27313, - [SMALL_STATE(1283)] = 27364, - [SMALL_STATE(1284)] = 27447, - [SMALL_STATE(1285)] = 27500, - [SMALL_STATE(1286)] = 27551, - [SMALL_STATE(1287)] = 27602, - [SMALL_STATE(1288)] = 27653, - [SMALL_STATE(1289)] = 27706, - [SMALL_STATE(1290)] = 27757, - [SMALL_STATE(1291)] = 27813, - [SMALL_STATE(1292)] = 27893, - [SMALL_STATE(1293)] = 27947, - [SMALL_STATE(1294)] = 28027, - [SMALL_STATE(1295)] = 28080, - [SMALL_STATE(1296)] = 28157, - [SMALL_STATE(1297)] = 28210, - [SMALL_STATE(1298)] = 28259, - [SMALL_STATE(1299)] = 28308, - [SMALL_STATE(1300)] = 28385, - [SMALL_STATE(1301)] = 28434, - [SMALL_STATE(1302)] = 28483, - [SMALL_STATE(1303)] = 28572, - [SMALL_STATE(1304)] = 28649, - [SMALL_STATE(1305)] = 28726, - [SMALL_STATE(1306)] = 28803, - [SMALL_STATE(1307)] = 28892, - [SMALL_STATE(1308)] = 28945, - [SMALL_STATE(1309)] = 28995, - [SMALL_STATE(1310)] = 29081, - [SMALL_STATE(1311)] = 29131, - [SMALL_STATE(1312)] = 29181, - [SMALL_STATE(1313)] = 29267, - [SMALL_STATE(1314)] = 29317, - [SMALL_STATE(1315)] = 29400, - [SMALL_STATE(1316)] = 29457, - [SMALL_STATE(1317)] = 29540, - [SMALL_STATE(1318)] = 29621, - [SMALL_STATE(1319)] = 29702, - [SMALL_STATE(1320)] = 29783, - [SMALL_STATE(1321)] = 29866, - [SMALL_STATE(1322)] = 29949, - [SMALL_STATE(1323)] = 30032, - [SMALL_STATE(1324)] = 30087, - [SMALL_STATE(1325)] = 30170, - [SMALL_STATE(1326)] = 30253, - [SMALL_STATE(1327)] = 30336, - [SMALL_STATE(1328)] = 30395, - [SMALL_STATE(1329)] = 30478, - [SMALL_STATE(1330)] = 30561, - [SMALL_STATE(1331)] = 30638, - [SMALL_STATE(1332)] = 30721, - [SMALL_STATE(1333)] = 30802, - [SMALL_STATE(1334)] = 30883, - [SMALL_STATE(1335)] = 30964, - [SMALL_STATE(1336)] = 31045, - [SMALL_STATE(1337)] = 31128, - [SMALL_STATE(1338)] = 31211, - [SMALL_STATE(1339)] = 31292, - [SMALL_STATE(1340)] = 31375, - [SMALL_STATE(1341)] = 31452, - [SMALL_STATE(1342)] = 31533, - [SMALL_STATE(1343)] = 31588, - [SMALL_STATE(1344)] = 31671, - [SMALL_STATE(1345)] = 31754, - [SMALL_STATE(1346)] = 31809, - [SMALL_STATE(1347)] = 31892, - [SMALL_STATE(1348)] = 31975, - [SMALL_STATE(1349)] = 32052, - [SMALL_STATE(1350)] = 32135, - [SMALL_STATE(1351)] = 32196, - [SMALL_STATE(1352)] = 32279, - [SMALL_STATE(1353)] = 32360, - [SMALL_STATE(1354)] = 32443, - [SMALL_STATE(1355)] = 32508, - [SMALL_STATE(1356)] = 32589, - [SMALL_STATE(1357)] = 32672, - [SMALL_STATE(1358)] = 32739, - [SMALL_STATE(1359)] = 32822, - [SMALL_STATE(1360)] = 32905, - [SMALL_STATE(1361)] = 32988, - [SMALL_STATE(1362)] = 33063, - [SMALL_STATE(1363)] = 33146, - [SMALL_STATE(1364)] = 33229, - [SMALL_STATE(1365)] = 33302, - [SMALL_STATE(1366)] = 33385, - [SMALL_STATE(1367)] = 33468, - [SMALL_STATE(1368)] = 33531, - [SMALL_STATE(1369)] = 33600, - [SMALL_STATE(1370)] = 33683, - [SMALL_STATE(1371)] = 33760, - [SMALL_STATE(1372)] = 33837, - [SMALL_STATE(1373)] = 33920, - [SMALL_STATE(1374)] = 34003, - [SMALL_STATE(1375)] = 34084, - [SMALL_STATE(1376)] = 34161, - [SMALL_STATE(1377)] = 34244, - [SMALL_STATE(1378)] = 34327, - [SMALL_STATE(1379)] = 34410, - [SMALL_STATE(1380)] = 34488, - [SMALL_STATE(1381)] = 34568, - [SMALL_STATE(1382)] = 34648, - [SMALL_STATE(1383)] = 34728, - [SMALL_STATE(1384)] = 34806, - [SMALL_STATE(1385)] = 34886, - [SMALL_STATE(1386)] = 34966, - [SMALL_STATE(1387)] = 35046, - [SMALL_STATE(1388)] = 35126, - [SMALL_STATE(1389)] = 35206, - [SMALL_STATE(1390)] = 35286, - [SMALL_STATE(1391)] = 35366, - [SMALL_STATE(1392)] = 35446, - [SMALL_STATE(1393)] = 35526, - [SMALL_STATE(1394)] = 35606, - [SMALL_STATE(1395)] = 35686, - [SMALL_STATE(1396)] = 35766, - [SMALL_STATE(1397)] = 35846, - [SMALL_STATE(1398)] = 35926, - [SMALL_STATE(1399)] = 36006, - [SMALL_STATE(1400)] = 36086, - [SMALL_STATE(1401)] = 36166, - [SMALL_STATE(1402)] = 36246, - [SMALL_STATE(1403)] = 36326, - [SMALL_STATE(1404)] = 36406, - [SMALL_STATE(1405)] = 36486, - [SMALL_STATE(1406)] = 36566, - [SMALL_STATE(1407)] = 36644, - [SMALL_STATE(1408)] = 36724, - [SMALL_STATE(1409)] = 36804, - [SMALL_STATE(1410)] = 36884, - [SMALL_STATE(1411)] = 36964, - [SMALL_STATE(1412)] = 37042, - [SMALL_STATE(1413)] = 37122, - [SMALL_STATE(1414)] = 37189, - [SMALL_STATE(1415)] = 37256, - [SMALL_STATE(1416)] = 37323, - [SMALL_STATE(1417)] = 37390, - [SMALL_STATE(1418)] = 37457, - [SMALL_STATE(1419)] = 37524, - [SMALL_STATE(1420)] = 37591, - [SMALL_STATE(1421)] = 37633, - [SMALL_STATE(1422)] = 37697, - [SMALL_STATE(1423)] = 37761, - [SMALL_STATE(1424)] = 37803, - [SMALL_STATE(1425)] = 37845, - [SMALL_STATE(1426)] = 37879, - [SMALL_STATE(1427)] = 37910, - [SMALL_STATE(1428)] = 37941, - [SMALL_STATE(1429)] = 37987, - [SMALL_STATE(1430)] = 38019, - [SMALL_STATE(1431)] = 38048, - [SMALL_STATE(1432)] = 38078, - [SMALL_STATE(1433)] = 38108, - [SMALL_STATE(1434)] = 38138, - [SMALL_STATE(1435)] = 38168, - [SMALL_STATE(1436)] = 38206, - [SMALL_STATE(1437)] = 38236, - [SMALL_STATE(1438)] = 38266, - [SMALL_STATE(1439)] = 38296, - [SMALL_STATE(1440)] = 38326, - [SMALL_STATE(1441)] = 38361, - [SMALL_STATE(1442)] = 38388, - [SMALL_STATE(1443)] = 38415, - [SMALL_STATE(1444)] = 38450, - [SMALL_STATE(1445)] = 38475, - [SMALL_STATE(1446)] = 38504, - [SMALL_STATE(1447)] = 38531, - [SMALL_STATE(1448)] = 38557, - [SMALL_STATE(1449)] = 38611, - [SMALL_STATE(1450)] = 38643, - [SMALL_STATE(1451)] = 38675, - [SMALL_STATE(1452)] = 38709, - [SMALL_STATE(1453)] = 38735, - [SMALL_STATE(1454)] = 38759, - [SMALL_STATE(1455)] = 38785, - [SMALL_STATE(1456)] = 38839, - [SMALL_STATE(1457)] = 38865, - [SMALL_STATE(1458)] = 38891, - [SMALL_STATE(1459)] = 38917, - [SMALL_STATE(1460)] = 38943, - [SMALL_STATE(1461)] = 38975, - [SMALL_STATE(1462)] = 39006, - [SMALL_STATE(1463)] = 39031, - [SMALL_STATE(1464)] = 39056, - [SMALL_STATE(1465)] = 39081, - [SMALL_STATE(1466)] = 39106, - [SMALL_STATE(1467)] = 39129, - [SMALL_STATE(1468)] = 39154, - [SMALL_STATE(1469)] = 39176, - [SMALL_STATE(1470)] = 39198, - [SMALL_STATE(1471)] = 39224, - [SMALL_STATE(1472)] = 39252, - [SMALL_STATE(1473)] = 39274, - [SMALL_STATE(1474)] = 39296, - [SMALL_STATE(1475)] = 39318, - [SMALL_STATE(1476)] = 39342, - [SMALL_STATE(1477)] = 39366, - [SMALL_STATE(1478)] = 39388, - [SMALL_STATE(1479)] = 39410, - [SMALL_STATE(1480)] = 39436, - [SMALL_STATE(1481)] = 39458, - [SMALL_STATE(1482)] = 39504, - [SMALL_STATE(1483)] = 39528, - [SMALL_STATE(1484)] = 39572, - [SMALL_STATE(1485)] = 39616, - [SMALL_STATE(1486)] = 39639, - [SMALL_STATE(1487)] = 39662, - [SMALL_STATE(1488)] = 39683, - [SMALL_STATE(1489)] = 39706, - [SMALL_STATE(1490)] = 39727, - [SMALL_STATE(1491)] = 39748, - [SMALL_STATE(1492)] = 39769, - [SMALL_STATE(1493)] = 39790, - [SMALL_STATE(1494)] = 39811, - [SMALL_STATE(1495)] = 39832, - [SMALL_STATE(1496)] = 39853, - [SMALL_STATE(1497)] = 39878, - [SMALL_STATE(1498)] = 39901, - [SMALL_STATE(1499)] = 39922, - [SMALL_STATE(1500)] = 39947, - [SMALL_STATE(1501)] = 39968, - [SMALL_STATE(1502)] = 39989, - [SMALL_STATE(1503)] = 40010, - [SMALL_STATE(1504)] = 40033, - [SMALL_STATE(1505)] = 40064, - [SMALL_STATE(1506)] = 40085, - [SMALL_STATE(1507)] = 40108, - [SMALL_STATE(1508)] = 40129, - [SMALL_STATE(1509)] = 40150, - [SMALL_STATE(1510)] = 40171, - [SMALL_STATE(1511)] = 40216, - [SMALL_STATE(1512)] = 40237, - [SMALL_STATE(1513)] = 40268, - [SMALL_STATE(1514)] = 40291, - [SMALL_STATE(1515)] = 40314, - [SMALL_STATE(1516)] = 40337, - [SMALL_STATE(1517)] = 40358, - [SMALL_STATE(1518)] = 40379, - [SMALL_STATE(1519)] = 40400, - [SMALL_STATE(1520)] = 40421, - [SMALL_STATE(1521)] = 40442, - [SMALL_STATE(1522)] = 40473, - [SMALL_STATE(1523)] = 40504, - [SMALL_STATE(1524)] = 40535, - [SMALL_STATE(1525)] = 40558, - [SMALL_STATE(1526)] = 40579, - [SMALL_STATE(1527)] = 40602, - [SMALL_STATE(1528)] = 40625, - [SMALL_STATE(1529)] = 40648, - [SMALL_STATE(1530)] = 40674, - [SMALL_STATE(1531)] = 40696, - [SMALL_STATE(1532)] = 40738, - [SMALL_STATE(1533)] = 40780, - [SMALL_STATE(1534)] = 40822, - [SMALL_STATE(1535)] = 40850, - [SMALL_STATE(1536)] = 40876, - [SMALL_STATE(1537)] = 40900, - [SMALL_STATE(1538)] = 40924, - [SMALL_STATE(1539)] = 40948, - [SMALL_STATE(1540)] = 40972, - [SMALL_STATE(1541)] = 40996, - [SMALL_STATE(1542)] = 41020, - [SMALL_STATE(1543)] = 41044, - [SMALL_STATE(1544)] = 41080, - [SMALL_STATE(1545)] = 41122, - [SMALL_STATE(1546)] = 41146, - [SMALL_STATE(1547)] = 41170, - [SMALL_STATE(1548)] = 41192, - [SMALL_STATE(1549)] = 41214, - [SMALL_STATE(1550)] = 41236, - [SMALL_STATE(1551)] = 41275, - [SMALL_STATE(1552)] = 41304, - [SMALL_STATE(1553)] = 41329, - [SMALL_STATE(1554)] = 41354, - [SMALL_STATE(1555)] = 41377, - [SMALL_STATE(1556)] = 41402, - [SMALL_STATE(1557)] = 41441, - [SMALL_STATE(1558)] = 41462, - [SMALL_STATE(1559)] = 41499, - [SMALL_STATE(1560)] = 41536, - [SMALL_STATE(1561)] = 41575, - [SMALL_STATE(1562)] = 41596, - [SMALL_STATE(1563)] = 41617, - [SMALL_STATE(1564)] = 41638, - [SMALL_STATE(1565)] = 41659, - [SMALL_STATE(1566)] = 41698, - [SMALL_STATE(1567)] = 41719, - [SMALL_STATE(1568)] = 41758, - [SMALL_STATE(1569)] = 41779, - [SMALL_STATE(1570)] = 41816, - [SMALL_STATE(1571)] = 41855, - [SMALL_STATE(1572)] = 41894, + [SMALL_STATE(813)] = 0, + [SMALL_STATE(814)] = 68, + [SMALL_STATE(815)] = 136, + [SMALL_STATE(816)] = 204, + [SMALL_STATE(817)] = 272, + [SMALL_STATE(818)] = 336, + [SMALL_STATE(819)] = 407, + [SMALL_STATE(820)] = 465, + [SMALL_STATE(821)] = 523, + [SMALL_STATE(822)] = 581, + [SMALL_STATE(823)] = 649, + [SMALL_STATE(824)] = 707, + [SMALL_STATE(825)] = 775, + [SMALL_STATE(826)] = 833, + [SMALL_STATE(827)] = 894, + [SMALL_STATE(828)] = 959, + [SMALL_STATE(829)] = 1016, + [SMALL_STATE(830)] = 1077, + [SMALL_STATE(831)] = 1176, + [SMALL_STATE(832)] = 1275, + [SMALL_STATE(833)] = 1336, + [SMALL_STATE(834)] = 1401, + [SMALL_STATE(835)] = 1462, + [SMALL_STATE(836)] = 1527, + [SMALL_STATE(837)] = 1592, + [SMALL_STATE(838)] = 1655, + [SMALL_STATE(839)] = 1711, + [SMALL_STATE(840)] = 1767, + [SMALL_STATE(841)] = 1823, + [SMALL_STATE(842)] = 1879, + [SMALL_STATE(843)] = 1935, + [SMALL_STATE(844)] = 1991, + [SMALL_STATE(845)] = 2047, + [SMALL_STATE(846)] = 2103, + [SMALL_STATE(847)] = 2159, + [SMALL_STATE(848)] = 2215, + [SMALL_STATE(849)] = 2271, + [SMALL_STATE(850)] = 2327, + [SMALL_STATE(851)] = 2383, + [SMALL_STATE(852)] = 2439, + [SMALL_STATE(853)] = 2495, + [SMALL_STATE(854)] = 2551, + [SMALL_STATE(855)] = 2607, + [SMALL_STATE(856)] = 2663, + [SMALL_STATE(857)] = 2719, + [SMALL_STATE(858)] = 2775, + [SMALL_STATE(859)] = 2831, + [SMALL_STATE(860)] = 2887, + [SMALL_STATE(861)] = 2943, + [SMALL_STATE(862)] = 2999, + [SMALL_STATE(863)] = 3055, + [SMALL_STATE(864)] = 3111, + [SMALL_STATE(865)] = 3167, + [SMALL_STATE(866)] = 3223, + [SMALL_STATE(867)] = 3279, + [SMALL_STATE(868)] = 3335, + [SMALL_STATE(869)] = 3391, + [SMALL_STATE(870)] = 3447, + [SMALL_STATE(871)] = 3503, + [SMALL_STATE(872)] = 3559, + [SMALL_STATE(873)] = 3615, + [SMALL_STATE(874)] = 3671, + [SMALL_STATE(875)] = 3727, + [SMALL_STATE(876)] = 3783, + [SMALL_STATE(877)] = 3839, + [SMALL_STATE(878)] = 3895, + [SMALL_STATE(879)] = 3951, + [SMALL_STATE(880)] = 4007, + [SMALL_STATE(881)] = 4063, + [SMALL_STATE(882)] = 4119, + [SMALL_STATE(883)] = 4175, + [SMALL_STATE(884)] = 4231, + [SMALL_STATE(885)] = 4287, + [SMALL_STATE(886)] = 4343, + [SMALL_STATE(887)] = 4399, + [SMALL_STATE(888)] = 4455, + [SMALL_STATE(889)] = 4511, + [SMALL_STATE(890)] = 4567, + [SMALL_STATE(891)] = 4623, + [SMALL_STATE(892)] = 4679, + [SMALL_STATE(893)] = 4735, + [SMALL_STATE(894)] = 4791, + [SMALL_STATE(895)] = 4847, + [SMALL_STATE(896)] = 4903, + [SMALL_STATE(897)] = 4959, + [SMALL_STATE(898)] = 5015, + [SMALL_STATE(899)] = 5071, + [SMALL_STATE(900)] = 5127, + [SMALL_STATE(901)] = 5183, + [SMALL_STATE(902)] = 5239, + [SMALL_STATE(903)] = 5295, + [SMALL_STATE(904)] = 5351, + [SMALL_STATE(905)] = 5407, + [SMALL_STATE(906)] = 5463, + [SMALL_STATE(907)] = 5519, + [SMALL_STATE(908)] = 5575, + [SMALL_STATE(909)] = 5631, + [SMALL_STATE(910)] = 5687, + [SMALL_STATE(911)] = 5743, + [SMALL_STATE(912)] = 5799, + [SMALL_STATE(913)] = 5855, + [SMALL_STATE(914)] = 5911, + [SMALL_STATE(915)] = 5967, + [SMALL_STATE(916)] = 6023, + [SMALL_STATE(917)] = 6079, + [SMALL_STATE(918)] = 6135, + [SMALL_STATE(919)] = 6191, + [SMALL_STATE(920)] = 6247, + [SMALL_STATE(921)] = 6303, + [SMALL_STATE(922)] = 6359, + [SMALL_STATE(923)] = 6415, + [SMALL_STATE(924)] = 6471, + [SMALL_STATE(925)] = 6527, + [SMALL_STATE(926)] = 6585, + [SMALL_STATE(927)] = 6641, + [SMALL_STATE(928)] = 6697, + [SMALL_STATE(929)] = 6753, + [SMALL_STATE(930)] = 6809, + [SMALL_STATE(931)] = 6865, + [SMALL_STATE(932)] = 6921, + [SMALL_STATE(933)] = 6981, + [SMALL_STATE(934)] = 7037, + [SMALL_STATE(935)] = 7093, + [SMALL_STATE(936)] = 7149, + [SMALL_STATE(937)] = 7205, + [SMALL_STATE(938)] = 7261, + [SMALL_STATE(939)] = 7317, + [SMALL_STATE(940)] = 7373, + [SMALL_STATE(941)] = 7429, + [SMALL_STATE(942)] = 7485, + [SMALL_STATE(943)] = 7543, + [SMALL_STATE(944)] = 7599, + [SMALL_STATE(945)] = 7655, + [SMALL_STATE(946)] = 7711, + [SMALL_STATE(947)] = 7767, + [SMALL_STATE(948)] = 7823, + [SMALL_STATE(949)] = 7879, + [SMALL_STATE(950)] = 7935, + [SMALL_STATE(951)] = 7991, + [SMALL_STATE(952)] = 8047, + [SMALL_STATE(953)] = 8103, + [SMALL_STATE(954)] = 8159, + [SMALL_STATE(955)] = 8215, + [SMALL_STATE(956)] = 8271, + [SMALL_STATE(957)] = 8327, + [SMALL_STATE(958)] = 8383, + [SMALL_STATE(959)] = 8439, + [SMALL_STATE(960)] = 8495, + [SMALL_STATE(961)] = 8551, + [SMALL_STATE(962)] = 8607, + [SMALL_STATE(963)] = 8663, + [SMALL_STATE(964)] = 8719, + [SMALL_STATE(965)] = 8775, + [SMALL_STATE(966)] = 8831, + [SMALL_STATE(967)] = 8887, + [SMALL_STATE(968)] = 8943, + [SMALL_STATE(969)] = 8999, + [SMALL_STATE(970)] = 9055, + [SMALL_STATE(971)] = 9111, + [SMALL_STATE(972)] = 9167, + [SMALL_STATE(973)] = 9223, + [SMALL_STATE(974)] = 9279, + [SMALL_STATE(975)] = 9335, + [SMALL_STATE(976)] = 9391, + [SMALL_STATE(977)] = 9447, + [SMALL_STATE(978)] = 9503, + [SMALL_STATE(979)] = 9559, + [SMALL_STATE(980)] = 9615, + [SMALL_STATE(981)] = 9671, + [SMALL_STATE(982)] = 9727, + [SMALL_STATE(983)] = 9783, + [SMALL_STATE(984)] = 9839, + [SMALL_STATE(985)] = 9895, + [SMALL_STATE(986)] = 9951, + [SMALL_STATE(987)] = 10007, + [SMALL_STATE(988)] = 10063, + [SMALL_STATE(989)] = 10119, + [SMALL_STATE(990)] = 10175, + [SMALL_STATE(991)] = 10231, + [SMALL_STATE(992)] = 10287, + [SMALL_STATE(993)] = 10343, + [SMALL_STATE(994)] = 10399, + [SMALL_STATE(995)] = 10455, + [SMALL_STATE(996)] = 10511, + [SMALL_STATE(997)] = 10567, + [SMALL_STATE(998)] = 10623, + [SMALL_STATE(999)] = 10679, + [SMALL_STATE(1000)] = 10735, + [SMALL_STATE(1001)] = 10791, + [SMALL_STATE(1002)] = 10847, + [SMALL_STATE(1003)] = 10903, + [SMALL_STATE(1004)] = 10959, + [SMALL_STATE(1005)] = 11015, + [SMALL_STATE(1006)] = 11071, + [SMALL_STATE(1007)] = 11127, + [SMALL_STATE(1008)] = 11183, + [SMALL_STATE(1009)] = 11245, + [SMALL_STATE(1010)] = 11301, + [SMALL_STATE(1011)] = 11357, + [SMALL_STATE(1012)] = 11413, + [SMALL_STATE(1013)] = 11469, + [SMALL_STATE(1014)] = 11525, + [SMALL_STATE(1015)] = 11581, + [SMALL_STATE(1016)] = 11637, + [SMALL_STATE(1017)] = 11693, + [SMALL_STATE(1018)] = 11749, + [SMALL_STATE(1019)] = 11805, + [SMALL_STATE(1020)] = 11861, + [SMALL_STATE(1021)] = 11917, + [SMALL_STATE(1022)] = 11973, + [SMALL_STATE(1023)] = 12029, + [SMALL_STATE(1024)] = 12085, + [SMALL_STATE(1025)] = 12141, + [SMALL_STATE(1026)] = 12197, + [SMALL_STATE(1027)] = 12253, + [SMALL_STATE(1028)] = 12309, + [SMALL_STATE(1029)] = 12365, + [SMALL_STATE(1030)] = 12421, + [SMALL_STATE(1031)] = 12481, + [SMALL_STATE(1032)] = 12537, + [SMALL_STATE(1033)] = 12593, + [SMALL_STATE(1034)] = 12649, + [SMALL_STATE(1035)] = 12705, + [SMALL_STATE(1036)] = 12761, + [SMALL_STATE(1037)] = 12817, + [SMALL_STATE(1038)] = 12875, + [SMALL_STATE(1039)] = 12931, + [SMALL_STATE(1040)] = 12987, + [SMALL_STATE(1041)] = 13043, + [SMALL_STATE(1042)] = 13099, + [SMALL_STATE(1043)] = 13155, + [SMALL_STATE(1044)] = 13211, + [SMALL_STATE(1045)] = 13267, + [SMALL_STATE(1046)] = 13323, + [SMALL_STATE(1047)] = 13379, + [SMALL_STATE(1048)] = 13435, + [SMALL_STATE(1049)] = 13491, + [SMALL_STATE(1050)] = 13547, + [SMALL_STATE(1051)] = 13603, + [SMALL_STATE(1052)] = 13659, + [SMALL_STATE(1053)] = 13715, + [SMALL_STATE(1054)] = 13771, + [SMALL_STATE(1055)] = 13827, + [SMALL_STATE(1056)] = 13883, + [SMALL_STATE(1057)] = 13939, + [SMALL_STATE(1058)] = 13995, + [SMALL_STATE(1059)] = 14051, + [SMALL_STATE(1060)] = 14107, + [SMALL_STATE(1061)] = 14163, + [SMALL_STATE(1062)] = 14219, + [SMALL_STATE(1063)] = 14275, + [SMALL_STATE(1064)] = 14331, + [SMALL_STATE(1065)] = 14387, + [SMALL_STATE(1066)] = 14443, + [SMALL_STATE(1067)] = 14499, + [SMALL_STATE(1068)] = 14555, + [SMALL_STATE(1069)] = 14611, + [SMALL_STATE(1070)] = 14667, + [SMALL_STATE(1071)] = 14723, + [SMALL_STATE(1072)] = 14779, + [SMALL_STATE(1073)] = 14835, + [SMALL_STATE(1074)] = 14891, + [SMALL_STATE(1075)] = 14947, + [SMALL_STATE(1076)] = 15003, + [SMALL_STATE(1077)] = 15059, + [SMALL_STATE(1078)] = 15115, + [SMALL_STATE(1079)] = 15171, + [SMALL_STATE(1080)] = 15227, + [SMALL_STATE(1081)] = 15283, + [SMALL_STATE(1082)] = 15339, + [SMALL_STATE(1083)] = 15395, + [SMALL_STATE(1084)] = 15451, + [SMALL_STATE(1085)] = 15507, + [SMALL_STATE(1086)] = 15563, + [SMALL_STATE(1087)] = 15619, + [SMALL_STATE(1088)] = 15675, + [SMALL_STATE(1089)] = 15731, + [SMALL_STATE(1090)] = 15787, + [SMALL_STATE(1091)] = 15843, + [SMALL_STATE(1092)] = 15899, + [SMALL_STATE(1093)] = 15955, + [SMALL_STATE(1094)] = 16011, + [SMALL_STATE(1095)] = 16067, + [SMALL_STATE(1096)] = 16123, + [SMALL_STATE(1097)] = 16179, + [SMALL_STATE(1098)] = 16235, + [SMALL_STATE(1099)] = 16291, + [SMALL_STATE(1100)] = 16347, + [SMALL_STATE(1101)] = 16403, + [SMALL_STATE(1102)] = 16459, + [SMALL_STATE(1103)] = 16517, + [SMALL_STATE(1104)] = 16573, + [SMALL_STATE(1105)] = 16629, + [SMALL_STATE(1106)] = 16685, + [SMALL_STATE(1107)] = 16741, + [SMALL_STATE(1108)] = 16800, + [SMALL_STATE(1109)] = 16857, + [SMALL_STATE(1110)] = 16914, + [SMALL_STATE(1111)] = 16973, + [SMALL_STATE(1112)] = 17030, + [SMALL_STATE(1113)] = 17087, + [SMALL_STATE(1114)] = 17144, + [SMALL_STATE(1115)] = 17239, + [SMALL_STATE(1116)] = 17294, + [SMALL_STATE(1117)] = 17351, + [SMALL_STATE(1118)] = 17408, + [SMALL_STATE(1119)] = 17463, + [SMALL_STATE(1120)] = 17518, + [SMALL_STATE(1121)] = 17573, + [SMALL_STATE(1122)] = 17628, + [SMALL_STATE(1123)] = 17683, + [SMALL_STATE(1124)] = 17738, + [SMALL_STATE(1125)] = 17793, + [SMALL_STATE(1126)] = 17848, + [SMALL_STATE(1127)] = 17903, + [SMALL_STATE(1128)] = 17962, + [SMALL_STATE(1129)] = 18019, + [SMALL_STATE(1130)] = 18074, + [SMALL_STATE(1131)] = 18129, + [SMALL_STATE(1132)] = 18184, + [SMALL_STATE(1133)] = 18243, + [SMALL_STATE(1134)] = 18298, + [SMALL_STATE(1135)] = 18353, + [SMALL_STATE(1136)] = 18410, + [SMALL_STATE(1137)] = 18467, + [SMALL_STATE(1138)] = 18524, + [SMALL_STATE(1139)] = 18579, + [SMALL_STATE(1140)] = 18636, + [SMALL_STATE(1141)] = 18691, + [SMALL_STATE(1142)] = 18748, + [SMALL_STATE(1143)] = 18803, + [SMALL_STATE(1144)] = 18858, + [SMALL_STATE(1145)] = 18953, + [SMALL_STATE(1146)] = 19008, + [SMALL_STATE(1147)] = 19065, + [SMALL_STATE(1148)] = 19122, + [SMALL_STATE(1149)] = 19177, + [SMALL_STATE(1150)] = 19236, + [SMALL_STATE(1151)] = 19291, + [SMALL_STATE(1152)] = 19346, + [SMALL_STATE(1153)] = 19445, + [SMALL_STATE(1154)] = 19502, + [SMALL_STATE(1155)] = 19601, + [SMALL_STATE(1156)] = 19700, + [SMALL_STATE(1157)] = 19799, + [SMALL_STATE(1158)] = 19898, + [SMALL_STATE(1159)] = 19997, + [SMALL_STATE(1160)] = 20056, + [SMALL_STATE(1161)] = 20113, + [SMALL_STATE(1162)] = 20168, + [SMALL_STATE(1163)] = 20222, + [SMALL_STATE(1164)] = 20276, + [SMALL_STATE(1165)] = 20330, + [SMALL_STATE(1166)] = 20384, + [SMALL_STATE(1167)] = 20438, + [SMALL_STATE(1168)] = 20492, + [SMALL_STATE(1169)] = 20546, + [SMALL_STATE(1170)] = 20600, + [SMALL_STATE(1171)] = 20654, + [SMALL_STATE(1172)] = 20708, + [SMALL_STATE(1173)] = 20762, + [SMALL_STATE(1174)] = 20816, + [SMALL_STATE(1175)] = 20870, + [SMALL_STATE(1176)] = 20924, + [SMALL_STATE(1177)] = 20978, + [SMALL_STATE(1178)] = 21032, + [SMALL_STATE(1179)] = 21086, + [SMALL_STATE(1180)] = 21140, + [SMALL_STATE(1181)] = 21194, + [SMALL_STATE(1182)] = 21248, + [SMALL_STATE(1183)] = 21302, + [SMALL_STATE(1184)] = 21356, + [SMALL_STATE(1185)] = 21410, + [SMALL_STATE(1186)] = 21464, + [SMALL_STATE(1187)] = 21518, + [SMALL_STATE(1188)] = 21572, + [SMALL_STATE(1189)] = 21626, + [SMALL_STATE(1190)] = 21682, + [SMALL_STATE(1191)] = 21736, + [SMALL_STATE(1192)] = 21790, + [SMALL_STATE(1193)] = 21844, + [SMALL_STATE(1194)] = 21898, + [SMALL_STATE(1195)] = 21952, + [SMALL_STATE(1196)] = 22006, + [SMALL_STATE(1197)] = 22060, + [SMALL_STATE(1198)] = 22114, + [SMALL_STATE(1199)] = 22168, + [SMALL_STATE(1200)] = 22222, + [SMALL_STATE(1201)] = 22276, + [SMALL_STATE(1202)] = 22330, + [SMALL_STATE(1203)] = 22384, + [SMALL_STATE(1204)] = 22438, + [SMALL_STATE(1205)] = 22492, + [SMALL_STATE(1206)] = 22546, + [SMALL_STATE(1207)] = 22600, + [SMALL_STATE(1208)] = 22654, + [SMALL_STATE(1209)] = 22708, + [SMALL_STATE(1210)] = 22762, + [SMALL_STATE(1211)] = 22816, + [SMALL_STATE(1212)] = 22870, + [SMALL_STATE(1213)] = 22924, + [SMALL_STATE(1214)] = 22978, + [SMALL_STATE(1215)] = 23032, + [SMALL_STATE(1216)] = 23086, + [SMALL_STATE(1217)] = 23140, + [SMALL_STATE(1218)] = 23194, + [SMALL_STATE(1219)] = 23248, + [SMALL_STATE(1220)] = 23302, + [SMALL_STATE(1221)] = 23356, + [SMALL_STATE(1222)] = 23410, + [SMALL_STATE(1223)] = 23466, + [SMALL_STATE(1224)] = 23520, + [SMALL_STATE(1225)] = 23574, + [SMALL_STATE(1226)] = 23628, + [SMALL_STATE(1227)] = 23682, + [SMALL_STATE(1228)] = 23736, + [SMALL_STATE(1229)] = 23790, + [SMALL_STATE(1230)] = 23844, + [SMALL_STATE(1231)] = 23932, + [SMALL_STATE(1232)] = 23986, + [SMALL_STATE(1233)] = 24040, + [SMALL_STATE(1234)] = 24094, + [SMALL_STATE(1235)] = 24148, + [SMALL_STATE(1236)] = 24202, + [SMALL_STATE(1237)] = 24256, + [SMALL_STATE(1238)] = 24310, + [SMALL_STATE(1239)] = 24364, + [SMALL_STATE(1240)] = 24418, + [SMALL_STATE(1241)] = 24472, + [SMALL_STATE(1242)] = 24526, + [SMALL_STATE(1243)] = 24580, + [SMALL_STATE(1244)] = 24634, + [SMALL_STATE(1245)] = 24688, + [SMALL_STATE(1246)] = 24752, + [SMALL_STATE(1247)] = 24840, + [SMALL_STATE(1248)] = 24894, + [SMALL_STATE(1249)] = 24948, + [SMALL_STATE(1250)] = 25002, + [SMALL_STATE(1251)] = 25056, + [SMALL_STATE(1252)] = 25110, + [SMALL_STATE(1253)] = 25164, + [SMALL_STATE(1254)] = 25218, + [SMALL_STATE(1255)] = 25272, + [SMALL_STATE(1256)] = 25326, + [SMALL_STATE(1257)] = 25380, + [SMALL_STATE(1258)] = 25434, + [SMALL_STATE(1259)] = 25488, + [SMALL_STATE(1260)] = 25549, + [SMALL_STATE(1261)] = 25636, + [SMALL_STATE(1262)] = 25723, + [SMALL_STATE(1263)] = 25786, + [SMALL_STATE(1264)] = 25867, + [SMALL_STATE(1265)] = 25950, + [SMALL_STATE(1266)] = 26033, + [SMALL_STATE(1267)] = 26106, + [SMALL_STATE(1268)] = 26189, + [SMALL_STATE(1269)] = 26250, + [SMALL_STATE(1270)] = 26317, + [SMALL_STATE(1271)] = 26400, + [SMALL_STATE(1272)] = 26453, + [SMALL_STATE(1273)] = 26506, + [SMALL_STATE(1274)] = 26589, + [SMALL_STATE(1275)] = 26664, + [SMALL_STATE(1276)] = 26747, + [SMALL_STATE(1277)] = 26816, + [SMALL_STATE(1278)] = 26877, + [SMALL_STATE(1279)] = 26942, + [SMALL_STATE(1280)] = 26995, + [SMALL_STATE(1281)] = 27066, + [SMALL_STATE(1282)] = 27145, + [SMALL_STATE(1283)] = 27235, + [SMALL_STATE(1284)] = 27295, + [SMALL_STATE(1285)] = 27385, + [SMALL_STATE(1286)] = 27475, + [SMALL_STATE(1287)] = 27526, + [SMALL_STATE(1288)] = 27577, + [SMALL_STATE(1289)] = 27660, + [SMALL_STATE(1290)] = 27713, + [SMALL_STATE(1291)] = 27764, + [SMALL_STATE(1292)] = 27817, + [SMALL_STATE(1293)] = 27868, + [SMALL_STATE(1294)] = 27919, + [SMALL_STATE(1295)] = 27999, + [SMALL_STATE(1296)] = 28055, + [SMALL_STATE(1297)] = 28135, + [SMALL_STATE(1298)] = 28189, + [SMALL_STATE(1299)] = 28266, + [SMALL_STATE(1300)] = 28343, + [SMALL_STATE(1301)] = 28392, + [SMALL_STATE(1302)] = 28481, + [SMALL_STATE(1303)] = 28534, + [SMALL_STATE(1304)] = 28583, + [SMALL_STATE(1305)] = 28660, + [SMALL_STATE(1306)] = 28713, + [SMALL_STATE(1307)] = 28790, + [SMALL_STATE(1308)] = 28839, + [SMALL_STATE(1309)] = 28892, + [SMALL_STATE(1310)] = 28941, + [SMALL_STATE(1311)] = 29030, + [SMALL_STATE(1312)] = 29107, + [SMALL_STATE(1313)] = 29193, + [SMALL_STATE(1314)] = 29243, + [SMALL_STATE(1315)] = 29293, + [SMALL_STATE(1316)] = 29343, + [SMALL_STATE(1317)] = 29429, + [SMALL_STATE(1318)] = 29479, + [SMALL_STATE(1319)] = 29562, + [SMALL_STATE(1320)] = 29621, + [SMALL_STATE(1321)] = 29704, + [SMALL_STATE(1322)] = 29787, + [SMALL_STATE(1323)] = 29868, + [SMALL_STATE(1324)] = 29951, + [SMALL_STATE(1325)] = 30034, + [SMALL_STATE(1326)] = 30115, + [SMALL_STATE(1327)] = 30196, + [SMALL_STATE(1328)] = 30273, + [SMALL_STATE(1329)] = 30356, + [SMALL_STATE(1330)] = 30439, + [SMALL_STATE(1331)] = 30522, + [SMALL_STATE(1332)] = 30605, + [SMALL_STATE(1333)] = 30686, + [SMALL_STATE(1334)] = 30769, + [SMALL_STATE(1335)] = 30824, + [SMALL_STATE(1336)] = 30907, + [SMALL_STATE(1337)] = 30990, + [SMALL_STATE(1338)] = 31073, + [SMALL_STATE(1339)] = 31154, + [SMALL_STATE(1340)] = 31237, + [SMALL_STATE(1341)] = 31318, + [SMALL_STATE(1342)] = 31399, + [SMALL_STATE(1343)] = 31480, + [SMALL_STATE(1344)] = 31561, + [SMALL_STATE(1345)] = 31644, + [SMALL_STATE(1346)] = 31727, + [SMALL_STATE(1347)] = 31808, + [SMALL_STATE(1348)] = 31891, + [SMALL_STATE(1349)] = 31974, + [SMALL_STATE(1350)] = 32057, + [SMALL_STATE(1351)] = 32140, + [SMALL_STATE(1352)] = 32195, + [SMALL_STATE(1353)] = 32272, + [SMALL_STATE(1354)] = 32349, + [SMALL_STATE(1355)] = 32432, + [SMALL_STATE(1356)] = 32515, + [SMALL_STATE(1357)] = 32570, + [SMALL_STATE(1358)] = 32653, + [SMALL_STATE(1359)] = 32730, + [SMALL_STATE(1360)] = 32813, + [SMALL_STATE(1361)] = 32896, + [SMALL_STATE(1362)] = 32979, + [SMALL_STATE(1363)] = 33040, + [SMALL_STATE(1364)] = 33109, + [SMALL_STATE(1365)] = 33190, + [SMALL_STATE(1366)] = 33273, + [SMALL_STATE(1367)] = 33356, + [SMALL_STATE(1368)] = 33413, + [SMALL_STATE(1369)] = 33496, + [SMALL_STATE(1370)] = 33579, + [SMALL_STATE(1371)] = 33642, + [SMALL_STATE(1372)] = 33719, + [SMALL_STATE(1373)] = 33802, + [SMALL_STATE(1374)] = 33867, + [SMALL_STATE(1375)] = 33950, + [SMALL_STATE(1376)] = 34031, + [SMALL_STATE(1377)] = 34114, + [SMALL_STATE(1378)] = 34181, + [SMALL_STATE(1379)] = 34264, + [SMALL_STATE(1380)] = 34341, + [SMALL_STATE(1381)] = 34424, + [SMALL_STATE(1382)] = 34499, + [SMALL_STATE(1383)] = 34572, + [SMALL_STATE(1384)] = 34652, + [SMALL_STATE(1385)] = 34732, + [SMALL_STATE(1386)] = 34812, + [SMALL_STATE(1387)] = 34892, + [SMALL_STATE(1388)] = 34972, + [SMALL_STATE(1389)] = 35050, + [SMALL_STATE(1390)] = 35130, + [SMALL_STATE(1391)] = 35208, + [SMALL_STATE(1392)] = 35288, + [SMALL_STATE(1393)] = 35368, + [SMALL_STATE(1394)] = 35448, + [SMALL_STATE(1395)] = 35528, + [SMALL_STATE(1396)] = 35608, + [SMALL_STATE(1397)] = 35688, + [SMALL_STATE(1398)] = 35768, + [SMALL_STATE(1399)] = 35848, + [SMALL_STATE(1400)] = 35928, + [SMALL_STATE(1401)] = 36008, + [SMALL_STATE(1402)] = 36088, + [SMALL_STATE(1403)] = 36168, + [SMALL_STATE(1404)] = 36248, + [SMALL_STATE(1405)] = 36328, + [SMALL_STATE(1406)] = 36408, + [SMALL_STATE(1407)] = 36488, + [SMALL_STATE(1408)] = 36568, + [SMALL_STATE(1409)] = 36646, + [SMALL_STATE(1410)] = 36726, + [SMALL_STATE(1411)] = 36806, + [SMALL_STATE(1412)] = 36884, + [SMALL_STATE(1413)] = 36964, + [SMALL_STATE(1414)] = 37044, + [SMALL_STATE(1415)] = 37124, + [SMALL_STATE(1416)] = 37204, + [SMALL_STATE(1417)] = 37284, + [SMALL_STATE(1418)] = 37351, + [SMALL_STATE(1419)] = 37418, + [SMALL_STATE(1420)] = 37485, + [SMALL_STATE(1421)] = 37552, + [SMALL_STATE(1422)] = 37619, + [SMALL_STATE(1423)] = 37686, + [SMALL_STATE(1424)] = 37753, + [SMALL_STATE(1425)] = 37795, + [SMALL_STATE(1426)] = 37859, + [SMALL_STATE(1427)] = 37901, + [SMALL_STATE(1428)] = 37943, + [SMALL_STATE(1429)] = 38007, + [SMALL_STATE(1430)] = 38041, + [SMALL_STATE(1431)] = 38072, + [SMALL_STATE(1432)] = 38103, + [SMALL_STATE(1433)] = 38149, + [SMALL_STATE(1434)] = 38181, + [SMALL_STATE(1435)] = 38210, + [SMALL_STATE(1436)] = 38240, + [SMALL_STATE(1437)] = 38270, + [SMALL_STATE(1438)] = 38308, + [SMALL_STATE(1439)] = 38338, + [SMALL_STATE(1440)] = 38368, + [SMALL_STATE(1441)] = 38398, + [SMALL_STATE(1442)] = 38428, + [SMALL_STATE(1443)] = 38458, + [SMALL_STATE(1444)] = 38488, + [SMALL_STATE(1445)] = 38513, + [SMALL_STATE(1446)] = 38542, + [SMALL_STATE(1447)] = 38569, + [SMALL_STATE(1448)] = 38596, + [SMALL_STATE(1449)] = 38631, + [SMALL_STATE(1450)] = 38658, + [SMALL_STATE(1451)] = 38693, + [SMALL_STATE(1452)] = 38725, + [SMALL_STATE(1453)] = 38751, + [SMALL_STATE(1454)] = 38777, + [SMALL_STATE(1455)] = 38831, + [SMALL_STATE(1456)] = 38857, + [SMALL_STATE(1457)] = 38889, + [SMALL_STATE(1458)] = 38915, + [SMALL_STATE(1459)] = 38941, + [SMALL_STATE(1460)] = 38965, + [SMALL_STATE(1461)] = 38991, + [SMALL_STATE(1462)] = 39025, + [SMALL_STATE(1463)] = 39051, + [SMALL_STATE(1464)] = 39083, + [SMALL_STATE(1465)] = 39137, + [SMALL_STATE(1466)] = 39162, + [SMALL_STATE(1467)] = 39187, + [SMALL_STATE(1468)] = 39212, + [SMALL_STATE(1469)] = 39237, + [SMALL_STATE(1470)] = 39262, + [SMALL_STATE(1471)] = 39293, + [SMALL_STATE(1472)] = 39316, + [SMALL_STATE(1473)] = 39360, + [SMALL_STATE(1474)] = 39382, + [SMALL_STATE(1475)] = 39406, + [SMALL_STATE(1476)] = 39428, + [SMALL_STATE(1477)] = 39454, + [SMALL_STATE(1478)] = 39500, + [SMALL_STATE(1479)] = 39522, + [SMALL_STATE(1480)] = 39550, + [SMALL_STATE(1481)] = 39594, + [SMALL_STATE(1482)] = 39616, + [SMALL_STATE(1483)] = 39638, + [SMALL_STATE(1484)] = 39664, + [SMALL_STATE(1485)] = 39686, + [SMALL_STATE(1486)] = 39710, + [SMALL_STATE(1487)] = 39732, + [SMALL_STATE(1488)] = 39754, + [SMALL_STATE(1489)] = 39778, + [SMALL_STATE(1490)] = 39809, + [SMALL_STATE(1491)] = 39832, + [SMALL_STATE(1492)] = 39853, + [SMALL_STATE(1493)] = 39878, + [SMALL_STATE(1494)] = 39899, + [SMALL_STATE(1495)] = 39920, + [SMALL_STATE(1496)] = 39941, + [SMALL_STATE(1497)] = 39972, + [SMALL_STATE(1498)] = 39993, + [SMALL_STATE(1499)] = 40014, + [SMALL_STATE(1500)] = 40037, + [SMALL_STATE(1501)] = 40060, + [SMALL_STATE(1502)] = 40081, + [SMALL_STATE(1503)] = 40102, + [SMALL_STATE(1504)] = 40123, + [SMALL_STATE(1505)] = 40146, + [SMALL_STATE(1506)] = 40167, + [SMALL_STATE(1507)] = 40190, + [SMALL_STATE(1508)] = 40213, + [SMALL_STATE(1509)] = 40234, + [SMALL_STATE(1510)] = 40265, + [SMALL_STATE(1511)] = 40288, + [SMALL_STATE(1512)] = 40309, + [SMALL_STATE(1513)] = 40330, + [SMALL_STATE(1514)] = 40353, + [SMALL_STATE(1515)] = 40374, + [SMALL_STATE(1516)] = 40397, + [SMALL_STATE(1517)] = 40422, + [SMALL_STATE(1518)] = 40445, + [SMALL_STATE(1519)] = 40466, + [SMALL_STATE(1520)] = 40497, + [SMALL_STATE(1521)] = 40518, + [SMALL_STATE(1522)] = 40541, + [SMALL_STATE(1523)] = 40572, + [SMALL_STATE(1524)] = 40593, + [SMALL_STATE(1525)] = 40614, + [SMALL_STATE(1526)] = 40635, + [SMALL_STATE(1527)] = 40656, + [SMALL_STATE(1528)] = 40679, + [SMALL_STATE(1529)] = 40702, + [SMALL_STATE(1530)] = 40723, + [SMALL_STATE(1531)] = 40744, + [SMALL_STATE(1532)] = 40765, + [SMALL_STATE(1533)] = 40810, + [SMALL_STATE(1534)] = 40834, + [SMALL_STATE(1535)] = 40858, + [SMALL_STATE(1536)] = 40882, + [SMALL_STATE(1537)] = 40918, + [SMALL_STATE(1538)] = 40942, + [SMALL_STATE(1539)] = 40964, + [SMALL_STATE(1540)] = 40988, + [SMALL_STATE(1541)] = 41030, + [SMALL_STATE(1542)] = 41052, + [SMALL_STATE(1543)] = 41076, + [SMALL_STATE(1544)] = 41100, + [SMALL_STATE(1545)] = 41126, + [SMALL_STATE(1546)] = 41168, + [SMALL_STATE(1547)] = 41210, + [SMALL_STATE(1548)] = 41234, + [SMALL_STATE(1549)] = 41258, + [SMALL_STATE(1550)] = 41280, + [SMALL_STATE(1551)] = 41308, + [SMALL_STATE(1552)] = 41330, + [SMALL_STATE(1553)] = 41356, + [SMALL_STATE(1554)] = 41398, + [SMALL_STATE(1555)] = 41423, + [SMALL_STATE(1556)] = 41444, + [SMALL_STATE(1557)] = 41481, + [SMALL_STATE(1558)] = 41502, + [SMALL_STATE(1559)] = 41539, + [SMALL_STATE(1560)] = 41578, + [SMALL_STATE(1561)] = 41617, + [SMALL_STATE(1562)] = 41642, + [SMALL_STATE(1563)] = 41675, + [SMALL_STATE(1564)] = 41700, + [SMALL_STATE(1565)] = 41739, + [SMALL_STATE(1566)] = 41760, + [SMALL_STATE(1567)] = 41785, + [SMALL_STATE(1568)] = 41806, + [SMALL_STATE(1569)] = 41827, + [SMALL_STATE(1570)] = 41866, + [SMALL_STATE(1571)] = 41887, + [SMALL_STATE(1572)] = 41910, [SMALL_STATE(1573)] = 41931, - [SMALL_STATE(1574)] = 41970, - [SMALL_STATE(1575)] = 41993, - [SMALL_STATE(1576)] = 42026, - [SMALL_STATE(1577)] = 42065, - [SMALL_STATE(1578)] = 42086, - [SMALL_STATE(1579)] = 42109, - [SMALL_STATE(1580)] = 42146, - [SMALL_STATE(1581)] = 42167, - [SMALL_STATE(1582)] = 42188, - [SMALL_STATE(1583)] = 42209, - [SMALL_STATE(1584)] = 42230, - [SMALL_STATE(1585)] = 42251, - [SMALL_STATE(1586)] = 42276, - [SMALL_STATE(1587)] = 42313, - [SMALL_STATE(1588)] = 42350, - [SMALL_STATE(1589)] = 42371, - [SMALL_STATE(1590)] = 42392, - [SMALL_STATE(1591)] = 42413, - [SMALL_STATE(1592)] = 42450, - [SMALL_STATE(1593)] = 42489, - [SMALL_STATE(1594)] = 42510, - [SMALL_STATE(1595)] = 42531, - [SMALL_STATE(1596)] = 42556, - [SMALL_STATE(1597)] = 42577, - [SMALL_STATE(1598)] = 42602, - [SMALL_STATE(1599)] = 42627, - [SMALL_STATE(1600)] = 42648, - [SMALL_STATE(1601)] = 42673, - [SMALL_STATE(1602)] = 42694, - [SMALL_STATE(1603)] = 42727, - [SMALL_STATE(1604)] = 42750, - [SMALL_STATE(1605)] = 42773, - [SMALL_STATE(1606)] = 42794, - [SMALL_STATE(1607)] = 42833, - [SMALL_STATE(1608)] = 42856, - [SMALL_STATE(1609)] = 42877, - [SMALL_STATE(1610)] = 42906, - [SMALL_STATE(1611)] = 42929, - [SMALL_STATE(1612)] = 42966, - [SMALL_STATE(1613)] = 43005, - [SMALL_STATE(1614)] = 43026, - [SMALL_STATE(1615)] = 43047, - [SMALL_STATE(1616)] = 43068, - [SMALL_STATE(1617)] = 43089, - [SMALL_STATE(1618)] = 43110, - [SMALL_STATE(1619)] = 43131, - [SMALL_STATE(1620)] = 43167, - [SMALL_STATE(1621)] = 43203, - [SMALL_STATE(1622)] = 43239, - [SMALL_STATE(1623)] = 43271, - [SMALL_STATE(1624)] = 43307, - [SMALL_STATE(1625)] = 43339, - [SMALL_STATE(1626)] = 43375, - [SMALL_STATE(1627)] = 43399, - [SMALL_STATE(1628)] = 43423, - [SMALL_STATE(1629)] = 43447, - [SMALL_STATE(1630)] = 43481, - [SMALL_STATE(1631)] = 43515, - [SMALL_STATE(1632)] = 43547, - [SMALL_STATE(1633)] = 43579, - [SMALL_STATE(1634)] = 43613, - [SMALL_STATE(1635)] = 43649, - [SMALL_STATE(1636)] = 43681, - [SMALL_STATE(1637)] = 43717, - [SMALL_STATE(1638)] = 43749, - [SMALL_STATE(1639)] = 43781, - [SMALL_STATE(1640)] = 43815, - [SMALL_STATE(1641)] = 43847, - [SMALL_STATE(1642)] = 43883, - [SMALL_STATE(1643)] = 43907, - [SMALL_STATE(1644)] = 43937, - [SMALL_STATE(1645)] = 43960, - [SMALL_STATE(1646)] = 43983, - [SMALL_STATE(1647)] = 44010, - [SMALL_STATE(1648)] = 44033, - [SMALL_STATE(1649)] = 44064, - [SMALL_STATE(1650)] = 44087, - [SMALL_STATE(1651)] = 44118, - [SMALL_STATE(1652)] = 44149, - [SMALL_STATE(1653)] = 44174, - [SMALL_STATE(1654)] = 44204, - [SMALL_STATE(1655)] = 44230, - [SMALL_STATE(1656)] = 44256, - [SMALL_STATE(1657)] = 44278, - [SMALL_STATE(1658)] = 44300, - [SMALL_STATE(1659)] = 44322, - [SMALL_STATE(1660)] = 44348, - [SMALL_STATE(1661)] = 44380, - [SMALL_STATE(1662)] = 44406, - [SMALL_STATE(1663)] = 44438, - [SMALL_STATE(1664)] = 44468, - [SMALL_STATE(1665)] = 44490, - [SMALL_STATE(1666)] = 44516, - [SMALL_STATE(1667)] = 44538, - [SMALL_STATE(1668)] = 44570, - [SMALL_STATE(1669)] = 44596, - [SMALL_STATE(1670)] = 44622, - [SMALL_STATE(1671)] = 44648, - [SMALL_STATE(1672)] = 44676, - [SMALL_STATE(1673)] = 44702, - [SMALL_STATE(1674)] = 44734, - [SMALL_STATE(1675)] = 44754, - [SMALL_STATE(1676)] = 44771, - [SMALL_STATE(1677)] = 44800, - [SMALL_STATE(1678)] = 44825, - [SMALL_STATE(1679)] = 44844, - [SMALL_STATE(1680)] = 44867, - [SMALL_STATE(1681)] = 44896, - [SMALL_STATE(1682)] = 44911, - [SMALL_STATE(1683)] = 44934, - [SMALL_STATE(1684)] = 44957, - [SMALL_STATE(1685)] = 44976, - [SMALL_STATE(1686)] = 45005, - [SMALL_STATE(1687)] = 45024, - [SMALL_STATE(1688)] = 45053, - [SMALL_STATE(1689)] = 45082, - [SMALL_STATE(1690)] = 45101, - [SMALL_STATE(1691)] = 45128, - [SMALL_STATE(1692)] = 45157, - [SMALL_STATE(1693)] = 45176, - [SMALL_STATE(1694)] = 45195, - [SMALL_STATE(1695)] = 45216, - [SMALL_STATE(1696)] = 45235, - [SMALL_STATE(1697)] = 45264, - [SMALL_STATE(1698)] = 45285, - [SMALL_STATE(1699)] = 45314, - [SMALL_STATE(1700)] = 45333, - [SMALL_STATE(1701)] = 45352, - [SMALL_STATE(1702)] = 45375, - [SMALL_STATE(1703)] = 45404, - [SMALL_STATE(1704)] = 45423, - [SMALL_STATE(1705)] = 45442, - [SMALL_STATE(1706)] = 45468, - [SMALL_STATE(1707)] = 45494, - [SMALL_STATE(1708)] = 45514, - [SMALL_STATE(1709)] = 45540, - [SMALL_STATE(1710)] = 45562, - [SMALL_STATE(1711)] = 45588, - [SMALL_STATE(1712)] = 45614, - [SMALL_STATE(1713)] = 45640, - [SMALL_STATE(1714)] = 45666, - [SMALL_STATE(1715)] = 45692, - [SMALL_STATE(1716)] = 45706, - [SMALL_STATE(1717)] = 45732, - [SMALL_STATE(1718)] = 45756, - [SMALL_STATE(1719)] = 45782, - [SMALL_STATE(1720)] = 45806, - [SMALL_STATE(1721)] = 45830, - [SMALL_STATE(1722)] = 45856, - [SMALL_STATE(1723)] = 45870, - [SMALL_STATE(1724)] = 45892, - [SMALL_STATE(1725)] = 45906, - [SMALL_STATE(1726)] = 45932, - [SMALL_STATE(1727)] = 45948, - [SMALL_STATE(1728)] = 45974, - [SMALL_STATE(1729)] = 46000, - [SMALL_STATE(1730)] = 46026, - [SMALL_STATE(1731)] = 46052, - [SMALL_STATE(1732)] = 46068, - [SMALL_STATE(1733)] = 46094, - [SMALL_STATE(1734)] = 46120, - [SMALL_STATE(1735)] = 46136, - [SMALL_STATE(1736)] = 46162, - [SMALL_STATE(1737)] = 46188, - [SMALL_STATE(1738)] = 46214, - [SMALL_STATE(1739)] = 46240, - [SMALL_STATE(1740)] = 46266, - [SMALL_STATE(1741)] = 46280, - [SMALL_STATE(1742)] = 46294, - [SMALL_STATE(1743)] = 46316, - [SMALL_STATE(1744)] = 46330, - [SMALL_STATE(1745)] = 46344, - [SMALL_STATE(1746)] = 46370, - [SMALL_STATE(1747)] = 46386, - [SMALL_STATE(1748)] = 46412, - [SMALL_STATE(1749)] = 46438, - [SMALL_STATE(1750)] = 46455, - [SMALL_STATE(1751)] = 46476, - [SMALL_STATE(1752)] = 46497, - [SMALL_STATE(1753)] = 46518, - [SMALL_STATE(1754)] = 46541, - [SMALL_STATE(1755)] = 46564, - [SMALL_STATE(1756)] = 46587, - [SMALL_STATE(1757)] = 46608, - [SMALL_STATE(1758)] = 46625, - [SMALL_STATE(1759)] = 46646, - [SMALL_STATE(1760)] = 46667, - [SMALL_STATE(1761)] = 46690, - [SMALL_STATE(1762)] = 46713, - [SMALL_STATE(1763)] = 46736, - [SMALL_STATE(1764)] = 46759, - [SMALL_STATE(1765)] = 46782, - [SMALL_STATE(1766)] = 46803, - [SMALL_STATE(1767)] = 46820, - [SMALL_STATE(1768)] = 46839, - [SMALL_STATE(1769)] = 46862, - [SMALL_STATE(1770)] = 46879, - [SMALL_STATE(1771)] = 46902, - [SMALL_STATE(1772)] = 46925, - [SMALL_STATE(1773)] = 46948, - [SMALL_STATE(1774)] = 46971, - [SMALL_STATE(1775)] = 46994, - [SMALL_STATE(1776)] = 47011, - [SMALL_STATE(1777)] = 47034, - [SMALL_STATE(1778)] = 47057, - [SMALL_STATE(1779)] = 47080, - [SMALL_STATE(1780)] = 47103, - [SMALL_STATE(1781)] = 47122, - [SMALL_STATE(1782)] = 47145, - [SMALL_STATE(1783)] = 47168, - [SMALL_STATE(1784)] = 47191, - [SMALL_STATE(1785)] = 47214, - [SMALL_STATE(1786)] = 47237, - [SMALL_STATE(1787)] = 47260, - [SMALL_STATE(1788)] = 47283, - [SMALL_STATE(1789)] = 47302, - [SMALL_STATE(1790)] = 47325, - [SMALL_STATE(1791)] = 47346, - [SMALL_STATE(1792)] = 47369, - [SMALL_STATE(1793)] = 47392, - [SMALL_STATE(1794)] = 47415, - [SMALL_STATE(1795)] = 47436, - [SMALL_STATE(1796)] = 47459, - [SMALL_STATE(1797)] = 47482, - [SMALL_STATE(1798)] = 47505, - [SMALL_STATE(1799)] = 47522, - [SMALL_STATE(1800)] = 47545, - [SMALL_STATE(1801)] = 47568, - [SMALL_STATE(1802)] = 47591, - [SMALL_STATE(1803)] = 47614, - [SMALL_STATE(1804)] = 47635, - [SMALL_STATE(1805)] = 47658, - [SMALL_STATE(1806)] = 47675, - [SMALL_STATE(1807)] = 47698, - [SMALL_STATE(1808)] = 47721, - [SMALL_STATE(1809)] = 47744, - [SMALL_STATE(1810)] = 47765, - [SMALL_STATE(1811)] = 47788, - [SMALL_STATE(1812)] = 47809, - [SMALL_STATE(1813)] = 47832, - [SMALL_STATE(1814)] = 47855, - [SMALL_STATE(1815)] = 47870, - [SMALL_STATE(1816)] = 47893, - [SMALL_STATE(1817)] = 47908, - [SMALL_STATE(1818)] = 47931, - [SMALL_STATE(1819)] = 47954, - [SMALL_STATE(1820)] = 47977, - [SMALL_STATE(1821)] = 47992, - [SMALL_STATE(1822)] = 48013, - [SMALL_STATE(1823)] = 48036, - [SMALL_STATE(1824)] = 48059, - [SMALL_STATE(1825)] = 48080, - [SMALL_STATE(1826)] = 48097, - [SMALL_STATE(1827)] = 48118, - [SMALL_STATE(1828)] = 48141, - [SMALL_STATE(1829)] = 48164, - [SMALL_STATE(1830)] = 48185, - [SMALL_STATE(1831)] = 48208, - [SMALL_STATE(1832)] = 48231, - [SMALL_STATE(1833)] = 48254, - [SMALL_STATE(1834)] = 48275, - [SMALL_STATE(1835)] = 48298, - [SMALL_STATE(1836)] = 48321, - [SMALL_STATE(1837)] = 48338, - [SMALL_STATE(1838)] = 48361, - [SMALL_STATE(1839)] = 48384, - [SMALL_STATE(1840)] = 48407, - [SMALL_STATE(1841)] = 48430, - [SMALL_STATE(1842)] = 48453, - [SMALL_STATE(1843)] = 48476, - [SMALL_STATE(1844)] = 48499, - [SMALL_STATE(1845)] = 48516, - [SMALL_STATE(1846)] = 48539, - [SMALL_STATE(1847)] = 48562, - [SMALL_STATE(1848)] = 48581, - [SMALL_STATE(1849)] = 48604, - [SMALL_STATE(1850)] = 48627, - [SMALL_STATE(1851)] = 48648, - [SMALL_STATE(1852)] = 48669, - [SMALL_STATE(1853)] = 48690, - [SMALL_STATE(1854)] = 48707, - [SMALL_STATE(1855)] = 48730, - [SMALL_STATE(1856)] = 48751, - [SMALL_STATE(1857)] = 48772, - [SMALL_STATE(1858)] = 48793, - [SMALL_STATE(1859)] = 48816, - [SMALL_STATE(1860)] = 48837, - [SMALL_STATE(1861)] = 48860, - [SMALL_STATE(1862)] = 48883, - [SMALL_STATE(1863)] = 48906, - [SMALL_STATE(1864)] = 48929, - [SMALL_STATE(1865)] = 48952, - [SMALL_STATE(1866)] = 48975, - [SMALL_STATE(1867)] = 48998, - [SMALL_STATE(1868)] = 49019, - [SMALL_STATE(1869)] = 49040, - [SMALL_STATE(1870)] = 49063, - [SMALL_STATE(1871)] = 49086, - [SMALL_STATE(1872)] = 49107, - [SMALL_STATE(1873)] = 49128, - [SMALL_STATE(1874)] = 49147, - [SMALL_STATE(1875)] = 49162, - [SMALL_STATE(1876)] = 49185, - [SMALL_STATE(1877)] = 49206, - [SMALL_STATE(1878)] = 49227, - [SMALL_STATE(1879)] = 49248, - [SMALL_STATE(1880)] = 49266, - [SMALL_STATE(1881)] = 49278, - [SMALL_STATE(1882)] = 49296, - [SMALL_STATE(1883)] = 49314, - [SMALL_STATE(1884)] = 49326, - [SMALL_STATE(1885)] = 49338, - [SMALL_STATE(1886)] = 49356, - [SMALL_STATE(1887)] = 49374, - [SMALL_STATE(1888)] = 49392, - [SMALL_STATE(1889)] = 49412, - [SMALL_STATE(1890)] = 49432, - [SMALL_STATE(1891)] = 49444, - [SMALL_STATE(1892)] = 49464, - [SMALL_STATE(1893)] = 49480, - [SMALL_STATE(1894)] = 49498, - [SMALL_STATE(1895)] = 49518, - [SMALL_STATE(1896)] = 49536, - [SMALL_STATE(1897)] = 49548, - [SMALL_STATE(1898)] = 49566, - [SMALL_STATE(1899)] = 49586, - [SMALL_STATE(1900)] = 49598, - [SMALL_STATE(1901)] = 49616, - [SMALL_STATE(1902)] = 49632, - [SMALL_STATE(1903)] = 49650, - [SMALL_STATE(1904)] = 49668, - [SMALL_STATE(1905)] = 49686, - [SMALL_STATE(1906)] = 49702, - [SMALL_STATE(1907)] = 49718, - [SMALL_STATE(1908)] = 49738, - [SMALL_STATE(1909)] = 49754, - [SMALL_STATE(1910)] = 49772, - [SMALL_STATE(1911)] = 49784, - [SMALL_STATE(1912)] = 49796, - [SMALL_STATE(1913)] = 49808, - [SMALL_STATE(1914)] = 49828, - [SMALL_STATE(1915)] = 49842, - [SMALL_STATE(1916)] = 49858, - [SMALL_STATE(1917)] = 49878, - [SMALL_STATE(1918)] = 49896, - [SMALL_STATE(1919)] = 49914, - [SMALL_STATE(1920)] = 49930, - [SMALL_STATE(1921)] = 49948, - [SMALL_STATE(1922)] = 49960, - [SMALL_STATE(1923)] = 49978, - [SMALL_STATE(1924)] = 49996, - [SMALL_STATE(1925)] = 50012, - [SMALL_STATE(1926)] = 50028, - [SMALL_STATE(1927)] = 50040, - [SMALL_STATE(1928)] = 50058, - [SMALL_STATE(1929)] = 50070, - [SMALL_STATE(1930)] = 50088, - [SMALL_STATE(1931)] = 50104, - [SMALL_STATE(1932)] = 50122, - [SMALL_STATE(1933)] = 50134, - [SMALL_STATE(1934)] = 50146, - [SMALL_STATE(1935)] = 50158, - [SMALL_STATE(1936)] = 50178, - [SMALL_STATE(1937)] = 50190, - [SMALL_STATE(1938)] = 50204, - [SMALL_STATE(1939)] = 50222, - [SMALL_STATE(1940)] = 50238, - [SMALL_STATE(1941)] = 50256, - [SMALL_STATE(1942)] = 50268, - [SMALL_STATE(1943)] = 50286, - [SMALL_STATE(1944)] = 50304, - [SMALL_STATE(1945)] = 50316, - [SMALL_STATE(1946)] = 50328, - [SMALL_STATE(1947)] = 50344, - [SMALL_STATE(1948)] = 50358, - [SMALL_STATE(1949)] = 50370, - [SMALL_STATE(1950)] = 50390, - [SMALL_STATE(1951)] = 50408, - [SMALL_STATE(1952)] = 50420, - [SMALL_STATE(1953)] = 50438, - [SMALL_STATE(1954)] = 50456, - [SMALL_STATE(1955)] = 50476, - [SMALL_STATE(1956)] = 50491, - [SMALL_STATE(1957)] = 50506, - [SMALL_STATE(1958)] = 50521, - [SMALL_STATE(1959)] = 50536, - [SMALL_STATE(1960)] = 50551, - [SMALL_STATE(1961)] = 50568, - [SMALL_STATE(1962)] = 50583, - [SMALL_STATE(1963)] = 50598, - [SMALL_STATE(1964)] = 50613, - [SMALL_STATE(1965)] = 50630, - [SMALL_STATE(1966)] = 50645, - [SMALL_STATE(1967)] = 50660, - [SMALL_STATE(1968)] = 50677, - [SMALL_STATE(1969)] = 50692, - [SMALL_STATE(1970)] = 50705, - [SMALL_STATE(1971)] = 50720, - [SMALL_STATE(1972)] = 50735, - [SMALL_STATE(1973)] = 50750, - [SMALL_STATE(1974)] = 50765, - [SMALL_STATE(1975)] = 50780, - [SMALL_STATE(1976)] = 50795, - [SMALL_STATE(1977)] = 50812, - [SMALL_STATE(1978)] = 50829, - [SMALL_STATE(1979)] = 50846, - [SMALL_STATE(1980)] = 50861, - [SMALL_STATE(1981)] = 50876, - [SMALL_STATE(1982)] = 50891, - [SMALL_STATE(1983)] = 50906, - [SMALL_STATE(1984)] = 50921, - [SMALL_STATE(1985)] = 50938, - [SMALL_STATE(1986)] = 50953, - [SMALL_STATE(1987)] = 50968, - [SMALL_STATE(1988)] = 50983, - [SMALL_STATE(1989)] = 50998, - [SMALL_STATE(1990)] = 51011, - [SMALL_STATE(1991)] = 51028, - [SMALL_STATE(1992)] = 51043, - [SMALL_STATE(1993)] = 51056, - [SMALL_STATE(1994)] = 51073, - [SMALL_STATE(1995)] = 51088, - [SMALL_STATE(1996)] = 51103, - [SMALL_STATE(1997)] = 51118, - [SMALL_STATE(1998)] = 51135, - [SMALL_STATE(1999)] = 51148, - [SMALL_STATE(2000)] = 51163, - [SMALL_STATE(2001)] = 51178, - [SMALL_STATE(2002)] = 51195, - [SMALL_STATE(2003)] = 51212, - [SMALL_STATE(2004)] = 51227, - [SMALL_STATE(2005)] = 51242, - [SMALL_STATE(2006)] = 51259, - [SMALL_STATE(2007)] = 51276, - [SMALL_STATE(2008)] = 51291, - [SMALL_STATE(2009)] = 51306, - [SMALL_STATE(2010)] = 51321, - [SMALL_STATE(2011)] = 51338, - [SMALL_STATE(2012)] = 51355, - [SMALL_STATE(2013)] = 51370, - [SMALL_STATE(2014)] = 51385, - [SMALL_STATE(2015)] = 51402, - [SMALL_STATE(2016)] = 51417, - [SMALL_STATE(2017)] = 51432, - [SMALL_STATE(2018)] = 51449, - [SMALL_STATE(2019)] = 51464, - [SMALL_STATE(2020)] = 51481, - [SMALL_STATE(2021)] = 51496, - [SMALL_STATE(2022)] = 51511, - [SMALL_STATE(2023)] = 51526, - [SMALL_STATE(2024)] = 51541, - [SMALL_STATE(2025)] = 51556, - [SMALL_STATE(2026)] = 51569, - [SMALL_STATE(2027)] = 51584, - [SMALL_STATE(2028)] = 51601, - [SMALL_STATE(2029)] = 51616, - [SMALL_STATE(2030)] = 51631, - [SMALL_STATE(2031)] = 51648, - [SMALL_STATE(2032)] = 51663, - [SMALL_STATE(2033)] = 51680, - [SMALL_STATE(2034)] = 51695, - [SMALL_STATE(2035)] = 51710, - [SMALL_STATE(2036)] = 51727, - [SMALL_STATE(2037)] = 51742, - [SMALL_STATE(2038)] = 51757, - [SMALL_STATE(2039)] = 51772, - [SMALL_STATE(2040)] = 51787, - [SMALL_STATE(2041)] = 51804, - [SMALL_STATE(2042)] = 51819, - [SMALL_STATE(2043)] = 51834, - [SMALL_STATE(2044)] = 51851, - [SMALL_STATE(2045)] = 51868, - [SMALL_STATE(2046)] = 51885, - [SMALL_STATE(2047)] = 51900, - [SMALL_STATE(2048)] = 51917, - [SMALL_STATE(2049)] = 51934, - [SMALL_STATE(2050)] = 51949, - [SMALL_STATE(2051)] = 51966, - [SMALL_STATE(2052)] = 51981, - [SMALL_STATE(2053)] = 51996, - [SMALL_STATE(2054)] = 52011, - [SMALL_STATE(2055)] = 52026, - [SMALL_STATE(2056)] = 52043, - [SMALL_STATE(2057)] = 52060, - [SMALL_STATE(2058)] = 52077, - [SMALL_STATE(2059)] = 52092, - [SMALL_STATE(2060)] = 52107, - [SMALL_STATE(2061)] = 52122, - [SMALL_STATE(2062)] = 52137, - [SMALL_STATE(2063)] = 52152, - [SMALL_STATE(2064)] = 52167, - [SMALL_STATE(2065)] = 52184, - [SMALL_STATE(2066)] = 52201, - [SMALL_STATE(2067)] = 52218, - [SMALL_STATE(2068)] = 52235, - [SMALL_STATE(2069)] = 52250, - [SMALL_STATE(2070)] = 52265, - [SMALL_STATE(2071)] = 52280, - [SMALL_STATE(2072)] = 52295, - [SMALL_STATE(2073)] = 52310, - [SMALL_STATE(2074)] = 52325, - [SMALL_STATE(2075)] = 52342, - [SMALL_STATE(2076)] = 52353, - [SMALL_STATE(2077)] = 52370, - [SMALL_STATE(2078)] = 52385, - [SMALL_STATE(2079)] = 52400, - [SMALL_STATE(2080)] = 52417, - [SMALL_STATE(2081)] = 52432, - [SMALL_STATE(2082)] = 52449, - [SMALL_STATE(2083)] = 52464, - [SMALL_STATE(2084)] = 52481, - [SMALL_STATE(2085)] = 52498, - [SMALL_STATE(2086)] = 52515, - [SMALL_STATE(2087)] = 52528, - [SMALL_STATE(2088)] = 52545, - [SMALL_STATE(2089)] = 52560, - [SMALL_STATE(2090)] = 52577, - [SMALL_STATE(2091)] = 52594, - [SMALL_STATE(2092)] = 52611, - [SMALL_STATE(2093)] = 52628, - [SMALL_STATE(2094)] = 52645, - [SMALL_STATE(2095)] = 52660, - [SMALL_STATE(2096)] = 52677, - [SMALL_STATE(2097)] = 52692, - [SMALL_STATE(2098)] = 52709, - [SMALL_STATE(2099)] = 52724, - [SMALL_STATE(2100)] = 52741, - [SMALL_STATE(2101)] = 52758, - [SMALL_STATE(2102)] = 52775, - [SMALL_STATE(2103)] = 52792, - [SMALL_STATE(2104)] = 52807, - [SMALL_STATE(2105)] = 52824, - [SMALL_STATE(2106)] = 52837, - [SMALL_STATE(2107)] = 52852, - [SMALL_STATE(2108)] = 52867, - [SMALL_STATE(2109)] = 52882, - [SMALL_STATE(2110)] = 52899, - [SMALL_STATE(2111)] = 52914, - [SMALL_STATE(2112)] = 52929, - [SMALL_STATE(2113)] = 52944, - [SMALL_STATE(2114)] = 52959, - [SMALL_STATE(2115)] = 52976, - [SMALL_STATE(2116)] = 52991, - [SMALL_STATE(2117)] = 53008, - [SMALL_STATE(2118)] = 53025, - [SMALL_STATE(2119)] = 53040, - [SMALL_STATE(2120)] = 53055, - [SMALL_STATE(2121)] = 53072, - [SMALL_STATE(2122)] = 53087, - [SMALL_STATE(2123)] = 53102, - [SMALL_STATE(2124)] = 53117, - [SMALL_STATE(2125)] = 53132, - [SMALL_STATE(2126)] = 53147, - [SMALL_STATE(2127)] = 53162, - [SMALL_STATE(2128)] = 53177, - [SMALL_STATE(2129)] = 53194, - [SMALL_STATE(2130)] = 53211, - [SMALL_STATE(2131)] = 53226, - [SMALL_STATE(2132)] = 53241, - [SMALL_STATE(2133)] = 53256, - [SMALL_STATE(2134)] = 53273, - [SMALL_STATE(2135)] = 53286, - [SMALL_STATE(2136)] = 53301, - [SMALL_STATE(2137)] = 53316, - [SMALL_STATE(2138)] = 53333, - [SMALL_STATE(2139)] = 53348, - [SMALL_STATE(2140)] = 53363, - [SMALL_STATE(2141)] = 53378, - [SMALL_STATE(2142)] = 53393, - [SMALL_STATE(2143)] = 53408, - [SMALL_STATE(2144)] = 53425, - [SMALL_STATE(2145)] = 53442, - [SMALL_STATE(2146)] = 53459, - [SMALL_STATE(2147)] = 53476, - [SMALL_STATE(2148)] = 53486, - [SMALL_STATE(2149)] = 53500, - [SMALL_STATE(2150)] = 53514, - [SMALL_STATE(2151)] = 53528, - [SMALL_STATE(2152)] = 53542, - [SMALL_STATE(2153)] = 53556, - [SMALL_STATE(2154)] = 53570, - [SMALL_STATE(2155)] = 53580, - [SMALL_STATE(2156)] = 53594, - [SMALL_STATE(2157)] = 53604, - [SMALL_STATE(2158)] = 53618, - [SMALL_STATE(2159)] = 53632, - [SMALL_STATE(2160)] = 53644, - [SMALL_STATE(2161)] = 53658, - [SMALL_STATE(2162)] = 53668, - [SMALL_STATE(2163)] = 53678, - [SMALL_STATE(2164)] = 53692, - [SMALL_STATE(2165)] = 53706, - [SMALL_STATE(2166)] = 53720, - [SMALL_STATE(2167)] = 53734, - [SMALL_STATE(2168)] = 53748, - [SMALL_STATE(2169)] = 53762, - [SMALL_STATE(2170)] = 53776, - [SMALL_STATE(2171)] = 53788, - [SMALL_STATE(2172)] = 53802, - [SMALL_STATE(2173)] = 53814, - [SMALL_STATE(2174)] = 53826, - [SMALL_STATE(2175)] = 53836, - [SMALL_STATE(2176)] = 53848, - [SMALL_STATE(2177)] = 53860, - [SMALL_STATE(2178)] = 53872, - [SMALL_STATE(2179)] = 53886, - [SMALL_STATE(2180)] = 53900, - [SMALL_STATE(2181)] = 53910, - [SMALL_STATE(2182)] = 53924, - [SMALL_STATE(2183)] = 53936, - [SMALL_STATE(2184)] = 53948, - [SMALL_STATE(2185)] = 53962, - [SMALL_STATE(2186)] = 53976, - [SMALL_STATE(2187)] = 53990, - [SMALL_STATE(2188)] = 54002, - [SMALL_STATE(2189)] = 54016, - [SMALL_STATE(2190)] = 54030, - [SMALL_STATE(2191)] = 54044, - [SMALL_STATE(2192)] = 54058, - [SMALL_STATE(2193)] = 54072, - [SMALL_STATE(2194)] = 54084, - [SMALL_STATE(2195)] = 54098, - [SMALL_STATE(2196)] = 54110, - [SMALL_STATE(2197)] = 54124, - [SMALL_STATE(2198)] = 54136, - [SMALL_STATE(2199)] = 54148, - [SMALL_STATE(2200)] = 54158, - [SMALL_STATE(2201)] = 54172, - [SMALL_STATE(2202)] = 54184, - [SMALL_STATE(2203)] = 54198, - [SMALL_STATE(2204)] = 54210, - [SMALL_STATE(2205)] = 54224, - [SMALL_STATE(2206)] = 54238, - [SMALL_STATE(2207)] = 54252, - [SMALL_STATE(2208)] = 54264, - [SMALL_STATE(2209)] = 54276, - [SMALL_STATE(2210)] = 54288, - [SMALL_STATE(2211)] = 54302, - [SMALL_STATE(2212)] = 54316, - [SMALL_STATE(2213)] = 54330, - [SMALL_STATE(2214)] = 54344, - [SMALL_STATE(2215)] = 54358, - [SMALL_STATE(2216)] = 54368, - [SMALL_STATE(2217)] = 54382, - [SMALL_STATE(2218)] = 54396, - [SMALL_STATE(2219)] = 54410, - [SMALL_STATE(2220)] = 54424, - [SMALL_STATE(2221)] = 54438, - [SMALL_STATE(2222)] = 54450, - [SMALL_STATE(2223)] = 54464, - [SMALL_STATE(2224)] = 54478, - [SMALL_STATE(2225)] = 54492, - [SMALL_STATE(2226)] = 54506, - [SMALL_STATE(2227)] = 54520, - [SMALL_STATE(2228)] = 54534, - [SMALL_STATE(2229)] = 54548, - [SMALL_STATE(2230)] = 54562, - [SMALL_STATE(2231)] = 54572, - [SMALL_STATE(2232)] = 54586, - [SMALL_STATE(2233)] = 54600, - [SMALL_STATE(2234)] = 54614, - [SMALL_STATE(2235)] = 54628, - [SMALL_STATE(2236)] = 54642, - [SMALL_STATE(2237)] = 54654, - [SMALL_STATE(2238)] = 54668, - [SMALL_STATE(2239)] = 54680, - [SMALL_STATE(2240)] = 54694, - [SMALL_STATE(2241)] = 54708, - [SMALL_STATE(2242)] = 54720, - [SMALL_STATE(2243)] = 54734, - [SMALL_STATE(2244)] = 54748, - [SMALL_STATE(2245)] = 54762, - [SMALL_STATE(2246)] = 54776, - [SMALL_STATE(2247)] = 54786, - [SMALL_STATE(2248)] = 54800, - [SMALL_STATE(2249)] = 54814, - [SMALL_STATE(2250)] = 54828, - [SMALL_STATE(2251)] = 54842, - [SMALL_STATE(2252)] = 54856, - [SMALL_STATE(2253)] = 54870, - [SMALL_STATE(2254)] = 54880, - [SMALL_STATE(2255)] = 54894, - [SMALL_STATE(2256)] = 54904, - [SMALL_STATE(2257)] = 54918, - [SMALL_STATE(2258)] = 54932, - [SMALL_STATE(2259)] = 54946, - [SMALL_STATE(2260)] = 54960, - [SMALL_STATE(2261)] = 54972, - [SMALL_STATE(2262)] = 54986, - [SMALL_STATE(2263)] = 55000, - [SMALL_STATE(2264)] = 55012, - [SMALL_STATE(2265)] = 55026, - [SMALL_STATE(2266)] = 55040, - [SMALL_STATE(2267)] = 55052, - [SMALL_STATE(2268)] = 55064, - [SMALL_STATE(2269)] = 55078, - [SMALL_STATE(2270)] = 55090, - [SMALL_STATE(2271)] = 55104, - [SMALL_STATE(2272)] = 55116, - [SMALL_STATE(2273)] = 55130, - [SMALL_STATE(2274)] = 55144, - [SMALL_STATE(2275)] = 55158, - [SMALL_STATE(2276)] = 55170, - [SMALL_STATE(2277)] = 55180, - [SMALL_STATE(2278)] = 55194, - [SMALL_STATE(2279)] = 55208, - [SMALL_STATE(2280)] = 55222, - [SMALL_STATE(2281)] = 55234, - [SMALL_STATE(2282)] = 55246, - [SMALL_STATE(2283)] = 55260, - [SMALL_STATE(2284)] = 55274, - [SMALL_STATE(2285)] = 55288, - [SMALL_STATE(2286)] = 55302, - [SMALL_STATE(2287)] = 55316, - [SMALL_STATE(2288)] = 55326, - [SMALL_STATE(2289)] = 55340, - [SMALL_STATE(2290)] = 55354, - [SMALL_STATE(2291)] = 55368, - [SMALL_STATE(2292)] = 55382, - [SMALL_STATE(2293)] = 55394, - [SMALL_STATE(2294)] = 55408, - [SMALL_STATE(2295)] = 55422, - [SMALL_STATE(2296)] = 55436, - [SMALL_STATE(2297)] = 55450, - [SMALL_STATE(2298)] = 55464, - [SMALL_STATE(2299)] = 55478, - [SMALL_STATE(2300)] = 55488, - [SMALL_STATE(2301)] = 55502, - [SMALL_STATE(2302)] = 55516, - [SMALL_STATE(2303)] = 55528, - [SMALL_STATE(2304)] = 55542, - [SMALL_STATE(2305)] = 55556, - [SMALL_STATE(2306)] = 55570, - [SMALL_STATE(2307)] = 55580, - [SMALL_STATE(2308)] = 55590, - [SMALL_STATE(2309)] = 55604, - [SMALL_STATE(2310)] = 55618, - [SMALL_STATE(2311)] = 55632, - [SMALL_STATE(2312)] = 55642, - [SMALL_STATE(2313)] = 55656, - [SMALL_STATE(2314)] = 55670, - [SMALL_STATE(2315)] = 55684, - [SMALL_STATE(2316)] = 55698, - [SMALL_STATE(2317)] = 55712, - [SMALL_STATE(2318)] = 55726, - [SMALL_STATE(2319)] = 55740, - [SMALL_STATE(2320)] = 55754, - [SMALL_STATE(2321)] = 55768, - [SMALL_STATE(2322)] = 55782, - [SMALL_STATE(2323)] = 55796, - [SMALL_STATE(2324)] = 55810, - [SMALL_STATE(2325)] = 55824, - [SMALL_STATE(2326)] = 55838, - [SMALL_STATE(2327)] = 55852, - [SMALL_STATE(2328)] = 55866, - [SMALL_STATE(2329)] = 55880, - [SMALL_STATE(2330)] = 55894, - [SMALL_STATE(2331)] = 55908, - [SMALL_STATE(2332)] = 55922, - [SMALL_STATE(2333)] = 55936, - [SMALL_STATE(2334)] = 55946, - [SMALL_STATE(2335)] = 55960, - [SMALL_STATE(2336)] = 55974, - [SMALL_STATE(2337)] = 55988, - [SMALL_STATE(2338)] = 56002, - [SMALL_STATE(2339)] = 56016, - [SMALL_STATE(2340)] = 56030, - [SMALL_STATE(2341)] = 56044, - [SMALL_STATE(2342)] = 56058, - [SMALL_STATE(2343)] = 56072, - [SMALL_STATE(2344)] = 56082, - [SMALL_STATE(2345)] = 56092, - [SMALL_STATE(2346)] = 56102, - [SMALL_STATE(2347)] = 56116, - [SMALL_STATE(2348)] = 56130, - [SMALL_STATE(2349)] = 56140, - [SMALL_STATE(2350)] = 56154, - [SMALL_STATE(2351)] = 56168, - [SMALL_STATE(2352)] = 56182, - [SMALL_STATE(2353)] = 56196, - [SMALL_STATE(2354)] = 56210, - [SMALL_STATE(2355)] = 56222, - [SMALL_STATE(2356)] = 56236, - [SMALL_STATE(2357)] = 56246, - [SMALL_STATE(2358)] = 56260, - [SMALL_STATE(2359)] = 56274, - [SMALL_STATE(2360)] = 56288, - [SMALL_STATE(2361)] = 56302, - [SMALL_STATE(2362)] = 56316, - [SMALL_STATE(2363)] = 56330, - [SMALL_STATE(2364)] = 56340, - [SMALL_STATE(2365)] = 56354, - [SMALL_STATE(2366)] = 56368, - [SMALL_STATE(2367)] = 56382, - [SMALL_STATE(2368)] = 56396, - [SMALL_STATE(2369)] = 56410, - [SMALL_STATE(2370)] = 56424, - [SMALL_STATE(2371)] = 56438, - [SMALL_STATE(2372)] = 56452, - [SMALL_STATE(2373)] = 56464, - [SMALL_STATE(2374)] = 56478, - [SMALL_STATE(2375)] = 56492, - [SMALL_STATE(2376)] = 56506, - [SMALL_STATE(2377)] = 56518, - [SMALL_STATE(2378)] = 56532, - [SMALL_STATE(2379)] = 56546, - [SMALL_STATE(2380)] = 56560, - [SMALL_STATE(2381)] = 56574, - [SMALL_STATE(2382)] = 56588, - [SMALL_STATE(2383)] = 56600, - [SMALL_STATE(2384)] = 56614, - [SMALL_STATE(2385)] = 56628, - [SMALL_STATE(2386)] = 56642, - [SMALL_STATE(2387)] = 56654, - [SMALL_STATE(2388)] = 56668, - [SMALL_STATE(2389)] = 56682, - [SMALL_STATE(2390)] = 56694, - [SMALL_STATE(2391)] = 56708, - [SMALL_STATE(2392)] = 56722, - [SMALL_STATE(2393)] = 56736, - [SMALL_STATE(2394)] = 56748, - [SMALL_STATE(2395)] = 56759, - [SMALL_STATE(2396)] = 56770, - [SMALL_STATE(2397)] = 56779, - [SMALL_STATE(2398)] = 56790, - [SMALL_STATE(2399)] = 56801, - [SMALL_STATE(2400)] = 56812, - [SMALL_STATE(2401)] = 56823, - [SMALL_STATE(2402)] = 56834, - [SMALL_STATE(2403)] = 56845, - [SMALL_STATE(2404)] = 56856, - [SMALL_STATE(2405)] = 56867, - [SMALL_STATE(2406)] = 56878, - [SMALL_STATE(2407)] = 56889, - [SMALL_STATE(2408)] = 56900, - [SMALL_STATE(2409)] = 56911, - [SMALL_STATE(2410)] = 56922, - [SMALL_STATE(2411)] = 56933, - [SMALL_STATE(2412)] = 56944, - [SMALL_STATE(2413)] = 56955, - [SMALL_STATE(2414)] = 56966, - [SMALL_STATE(2415)] = 56977, - [SMALL_STATE(2416)] = 56988, - [SMALL_STATE(2417)] = 56999, - [SMALL_STATE(2418)] = 57010, - [SMALL_STATE(2419)] = 57021, - [SMALL_STATE(2420)] = 57032, - [SMALL_STATE(2421)] = 57043, - [SMALL_STATE(2422)] = 57054, - [SMALL_STATE(2423)] = 57065, - [SMALL_STATE(2424)] = 57076, - [SMALL_STATE(2425)] = 57087, - [SMALL_STATE(2426)] = 57098, - [SMALL_STATE(2427)] = 57109, - [SMALL_STATE(2428)] = 57120, - [SMALL_STATE(2429)] = 57131, - [SMALL_STATE(2430)] = 57142, - [SMALL_STATE(2431)] = 57151, - [SMALL_STATE(2432)] = 57162, - [SMALL_STATE(2433)] = 57173, - [SMALL_STATE(2434)] = 57182, - [SMALL_STATE(2435)] = 57193, - [SMALL_STATE(2436)] = 57204, - [SMALL_STATE(2437)] = 57215, - [SMALL_STATE(2438)] = 57226, - [SMALL_STATE(2439)] = 57237, - [SMALL_STATE(2440)] = 57248, - [SMALL_STATE(2441)] = 57259, - [SMALL_STATE(2442)] = 57270, - [SMALL_STATE(2443)] = 57281, - [SMALL_STATE(2444)] = 57290, - [SMALL_STATE(2445)] = 57301, - [SMALL_STATE(2446)] = 57312, - [SMALL_STATE(2447)] = 57323, - [SMALL_STATE(2448)] = 57334, - [SMALL_STATE(2449)] = 57345, - [SMALL_STATE(2450)] = 57356, - [SMALL_STATE(2451)] = 57367, - [SMALL_STATE(2452)] = 57378, - [SMALL_STATE(2453)] = 57389, - [SMALL_STATE(2454)] = 57400, - [SMALL_STATE(2455)] = 57411, - [SMALL_STATE(2456)] = 57422, - [SMALL_STATE(2457)] = 57433, - [SMALL_STATE(2458)] = 57444, - [SMALL_STATE(2459)] = 57455, - [SMALL_STATE(2460)] = 57466, - [SMALL_STATE(2461)] = 57477, - [SMALL_STATE(2462)] = 57488, - [SMALL_STATE(2463)] = 57499, - [SMALL_STATE(2464)] = 57510, - [SMALL_STATE(2465)] = 57521, - [SMALL_STATE(2466)] = 57530, - [SMALL_STATE(2467)] = 57541, - [SMALL_STATE(2468)] = 57552, - [SMALL_STATE(2469)] = 57563, - [SMALL_STATE(2470)] = 57572, - [SMALL_STATE(2471)] = 57583, - [SMALL_STATE(2472)] = 57594, - [SMALL_STATE(2473)] = 57605, - [SMALL_STATE(2474)] = 57614, - [SMALL_STATE(2475)] = 57625, - [SMALL_STATE(2476)] = 57634, - [SMALL_STATE(2477)] = 57645, - [SMALL_STATE(2478)] = 57656, - [SMALL_STATE(2479)] = 57667, - [SMALL_STATE(2480)] = 57678, - [SMALL_STATE(2481)] = 57689, - [SMALL_STATE(2482)] = 57700, - [SMALL_STATE(2483)] = 57711, - [SMALL_STATE(2484)] = 57722, - [SMALL_STATE(2485)] = 57733, - [SMALL_STATE(2486)] = 57742, - [SMALL_STATE(2487)] = 57753, - [SMALL_STATE(2488)] = 57764, - [SMALL_STATE(2489)] = 57775, - [SMALL_STATE(2490)] = 57786, - [SMALL_STATE(2491)] = 57797, - [SMALL_STATE(2492)] = 57808, - [SMALL_STATE(2493)] = 57819, - [SMALL_STATE(2494)] = 57830, - [SMALL_STATE(2495)] = 57841, - [SMALL_STATE(2496)] = 57852, - [SMALL_STATE(2497)] = 57863, - [SMALL_STATE(2498)] = 57874, - [SMALL_STATE(2499)] = 57885, - [SMALL_STATE(2500)] = 57896, - [SMALL_STATE(2501)] = 57907, - [SMALL_STATE(2502)] = 57918, - [SMALL_STATE(2503)] = 57929, - [SMALL_STATE(2504)] = 57938, - [SMALL_STATE(2505)] = 57949, - [SMALL_STATE(2506)] = 57960, - [SMALL_STATE(2507)] = 57971, - [SMALL_STATE(2508)] = 57982, - [SMALL_STATE(2509)] = 57993, - [SMALL_STATE(2510)] = 58004, - [SMALL_STATE(2511)] = 58013, - [SMALL_STATE(2512)] = 58022, - [SMALL_STATE(2513)] = 58033, - [SMALL_STATE(2514)] = 58044, - [SMALL_STATE(2515)] = 58055, - [SMALL_STATE(2516)] = 58066, - [SMALL_STATE(2517)] = 58077, - [SMALL_STATE(2518)] = 58088, - [SMALL_STATE(2519)] = 58099, - [SMALL_STATE(2520)] = 58110, - [SMALL_STATE(2521)] = 58121, - [SMALL_STATE(2522)] = 58132, - [SMALL_STATE(2523)] = 58143, - [SMALL_STATE(2524)] = 58154, - [SMALL_STATE(2525)] = 58165, - [SMALL_STATE(2526)] = 58176, - [SMALL_STATE(2527)] = 58187, - [SMALL_STATE(2528)] = 58196, - [SMALL_STATE(2529)] = 58207, - [SMALL_STATE(2530)] = 58218, - [SMALL_STATE(2531)] = 58229, - [SMALL_STATE(2532)] = 58240, - [SMALL_STATE(2533)] = 58249, - [SMALL_STATE(2534)] = 58260, - [SMALL_STATE(2535)] = 58271, - [SMALL_STATE(2536)] = 58280, - [SMALL_STATE(2537)] = 58291, - [SMALL_STATE(2538)] = 58302, - [SMALL_STATE(2539)] = 58313, - [SMALL_STATE(2540)] = 58324, - [SMALL_STATE(2541)] = 58335, - [SMALL_STATE(2542)] = 58346, - [SMALL_STATE(2543)] = 58357, - [SMALL_STATE(2544)] = 58366, - [SMALL_STATE(2545)] = 58377, - [SMALL_STATE(2546)] = 58388, - [SMALL_STATE(2547)] = 58399, - [SMALL_STATE(2548)] = 58410, - [SMALL_STATE(2549)] = 58421, - [SMALL_STATE(2550)] = 58432, - [SMALL_STATE(2551)] = 58441, - [SMALL_STATE(2552)] = 58452, - [SMALL_STATE(2553)] = 58463, - [SMALL_STATE(2554)] = 58474, - [SMALL_STATE(2555)] = 58485, - [SMALL_STATE(2556)] = 58494, - [SMALL_STATE(2557)] = 58505, - [SMALL_STATE(2558)] = 58516, - [SMALL_STATE(2559)] = 58527, - [SMALL_STATE(2560)] = 58538, - [SMALL_STATE(2561)] = 58549, - [SMALL_STATE(2562)] = 58560, - [SMALL_STATE(2563)] = 58569, - [SMALL_STATE(2564)] = 58580, - [SMALL_STATE(2565)] = 58591, - [SMALL_STATE(2566)] = 58602, - [SMALL_STATE(2567)] = 58613, - [SMALL_STATE(2568)] = 58622, - [SMALL_STATE(2569)] = 58633, - [SMALL_STATE(2570)] = 58644, - [SMALL_STATE(2571)] = 58655, - [SMALL_STATE(2572)] = 58666, - [SMALL_STATE(2573)] = 58677, - [SMALL_STATE(2574)] = 58688, - [SMALL_STATE(2575)] = 58699, - [SMALL_STATE(2576)] = 58710, - [SMALL_STATE(2577)] = 58721, - [SMALL_STATE(2578)] = 58730, - [SMALL_STATE(2579)] = 58741, - [SMALL_STATE(2580)] = 58752, - [SMALL_STATE(2581)] = 58763, - [SMALL_STATE(2582)] = 58774, - [SMALL_STATE(2583)] = 58785, - [SMALL_STATE(2584)] = 58796, - [SMALL_STATE(2585)] = 58807, - [SMALL_STATE(2586)] = 58818, - [SMALL_STATE(2587)] = 58829, - [SMALL_STATE(2588)] = 58840, - [SMALL_STATE(2589)] = 58851, - [SMALL_STATE(2590)] = 58862, - [SMALL_STATE(2591)] = 58873, - [SMALL_STATE(2592)] = 58884, - [SMALL_STATE(2593)] = 58895, - [SMALL_STATE(2594)] = 58906, - [SMALL_STATE(2595)] = 58917, - [SMALL_STATE(2596)] = 58926, - [SMALL_STATE(2597)] = 58937, - [SMALL_STATE(2598)] = 58948, - [SMALL_STATE(2599)] = 58959, - [SMALL_STATE(2600)] = 58970, - [SMALL_STATE(2601)] = 58981, - [SMALL_STATE(2602)] = 58992, - [SMALL_STATE(2603)] = 59003, - [SMALL_STATE(2604)] = 59014, - [SMALL_STATE(2605)] = 59022, - [SMALL_STATE(2606)] = 59030, - [SMALL_STATE(2607)] = 59038, - [SMALL_STATE(2608)] = 59046, - [SMALL_STATE(2609)] = 59054, - [SMALL_STATE(2610)] = 59062, - [SMALL_STATE(2611)] = 59070, - [SMALL_STATE(2612)] = 59078, - [SMALL_STATE(2613)] = 59086, - [SMALL_STATE(2614)] = 59094, - [SMALL_STATE(2615)] = 59102, - [SMALL_STATE(2616)] = 59110, - [SMALL_STATE(2617)] = 59118, - [SMALL_STATE(2618)] = 59126, - [SMALL_STATE(2619)] = 59134, - [SMALL_STATE(2620)] = 59142, - [SMALL_STATE(2621)] = 59150, - [SMALL_STATE(2622)] = 59158, - [SMALL_STATE(2623)] = 59166, - [SMALL_STATE(2624)] = 59174, - [SMALL_STATE(2625)] = 59182, - [SMALL_STATE(2626)] = 59190, - [SMALL_STATE(2627)] = 59198, - [SMALL_STATE(2628)] = 59206, - [SMALL_STATE(2629)] = 59214, - [SMALL_STATE(2630)] = 59222, - [SMALL_STATE(2631)] = 59230, - [SMALL_STATE(2632)] = 59238, - [SMALL_STATE(2633)] = 59246, - [SMALL_STATE(2634)] = 59254, - [SMALL_STATE(2635)] = 59262, - [SMALL_STATE(2636)] = 59270, - [SMALL_STATE(2637)] = 59278, - [SMALL_STATE(2638)] = 59286, - [SMALL_STATE(2639)] = 59294, - [SMALL_STATE(2640)] = 59302, - [SMALL_STATE(2641)] = 59310, - [SMALL_STATE(2642)] = 59318, - [SMALL_STATE(2643)] = 59326, - [SMALL_STATE(2644)] = 59334, - [SMALL_STATE(2645)] = 59342, - [SMALL_STATE(2646)] = 59350, - [SMALL_STATE(2647)] = 59358, - [SMALL_STATE(2648)] = 59366, - [SMALL_STATE(2649)] = 59374, - [SMALL_STATE(2650)] = 59382, - [SMALL_STATE(2651)] = 59390, - [SMALL_STATE(2652)] = 59398, - [SMALL_STATE(2653)] = 59406, - [SMALL_STATE(2654)] = 59414, - [SMALL_STATE(2655)] = 59422, - [SMALL_STATE(2656)] = 59430, - [SMALL_STATE(2657)] = 59438, - [SMALL_STATE(2658)] = 59446, - [SMALL_STATE(2659)] = 59454, - [SMALL_STATE(2660)] = 59462, - [SMALL_STATE(2661)] = 59470, - [SMALL_STATE(2662)] = 59478, - [SMALL_STATE(2663)] = 59486, - [SMALL_STATE(2664)] = 59494, - [SMALL_STATE(2665)] = 59502, - [SMALL_STATE(2666)] = 59510, - [SMALL_STATE(2667)] = 59518, - [SMALL_STATE(2668)] = 59526, - [SMALL_STATE(2669)] = 59534, - [SMALL_STATE(2670)] = 59542, - [SMALL_STATE(2671)] = 59550, - [SMALL_STATE(2672)] = 59558, - [SMALL_STATE(2673)] = 59566, - [SMALL_STATE(2674)] = 59574, - [SMALL_STATE(2675)] = 59582, - [SMALL_STATE(2676)] = 59590, - [SMALL_STATE(2677)] = 59598, - [SMALL_STATE(2678)] = 59606, - [SMALL_STATE(2679)] = 59614, - [SMALL_STATE(2680)] = 59622, - [SMALL_STATE(2681)] = 59630, - [SMALL_STATE(2682)] = 59638, - [SMALL_STATE(2683)] = 59646, - [SMALL_STATE(2684)] = 59654, - [SMALL_STATE(2685)] = 59662, - [SMALL_STATE(2686)] = 59670, - [SMALL_STATE(2687)] = 59678, - [SMALL_STATE(2688)] = 59686, - [SMALL_STATE(2689)] = 59694, - [SMALL_STATE(2690)] = 59702, - [SMALL_STATE(2691)] = 59710, - [SMALL_STATE(2692)] = 59718, - [SMALL_STATE(2693)] = 59726, - [SMALL_STATE(2694)] = 59734, - [SMALL_STATE(2695)] = 59742, - [SMALL_STATE(2696)] = 59750, - [SMALL_STATE(2697)] = 59758, - [SMALL_STATE(2698)] = 59766, - [SMALL_STATE(2699)] = 59774, - [SMALL_STATE(2700)] = 59782, - [SMALL_STATE(2701)] = 59790, - [SMALL_STATE(2702)] = 59798, - [SMALL_STATE(2703)] = 59806, - [SMALL_STATE(2704)] = 59814, - [SMALL_STATE(2705)] = 59822, - [SMALL_STATE(2706)] = 59830, - [SMALL_STATE(2707)] = 59838, - [SMALL_STATE(2708)] = 59846, - [SMALL_STATE(2709)] = 59854, - [SMALL_STATE(2710)] = 59862, - [SMALL_STATE(2711)] = 59870, - [SMALL_STATE(2712)] = 59878, - [SMALL_STATE(2713)] = 59886, - [SMALL_STATE(2714)] = 59894, - [SMALL_STATE(2715)] = 59902, - [SMALL_STATE(2716)] = 59910, - [SMALL_STATE(2717)] = 59918, - [SMALL_STATE(2718)] = 59926, - [SMALL_STATE(2719)] = 59934, - [SMALL_STATE(2720)] = 59942, - [SMALL_STATE(2721)] = 59950, - [SMALL_STATE(2722)] = 59958, - [SMALL_STATE(2723)] = 59966, - [SMALL_STATE(2724)] = 59974, - [SMALL_STATE(2725)] = 59982, - [SMALL_STATE(2726)] = 59990, - [SMALL_STATE(2727)] = 59998, - [SMALL_STATE(2728)] = 60006, - [SMALL_STATE(2729)] = 60014, - [SMALL_STATE(2730)] = 60022, - [SMALL_STATE(2731)] = 60030, - [SMALL_STATE(2732)] = 60038, - [SMALL_STATE(2733)] = 60046, - [SMALL_STATE(2734)] = 60054, - [SMALL_STATE(2735)] = 60062, - [SMALL_STATE(2736)] = 60070, - [SMALL_STATE(2737)] = 60078, - [SMALL_STATE(2738)] = 60086, - [SMALL_STATE(2739)] = 60094, - [SMALL_STATE(2740)] = 60102, - [SMALL_STATE(2741)] = 60110, - [SMALL_STATE(2742)] = 60118, - [SMALL_STATE(2743)] = 60126, - [SMALL_STATE(2744)] = 60134, - [SMALL_STATE(2745)] = 60142, - [SMALL_STATE(2746)] = 60150, - [SMALL_STATE(2747)] = 60158, - [SMALL_STATE(2748)] = 60166, - [SMALL_STATE(2749)] = 60174, - [SMALL_STATE(2750)] = 60182, - [SMALL_STATE(2751)] = 60190, - [SMALL_STATE(2752)] = 60198, - [SMALL_STATE(2753)] = 60206, - [SMALL_STATE(2754)] = 60214, - [SMALL_STATE(2755)] = 60222, - [SMALL_STATE(2756)] = 60230, - [SMALL_STATE(2757)] = 60238, - [SMALL_STATE(2758)] = 60246, - [SMALL_STATE(2759)] = 60254, - [SMALL_STATE(2760)] = 60262, - [SMALL_STATE(2761)] = 60270, - [SMALL_STATE(2762)] = 60278, - [SMALL_STATE(2763)] = 60286, - [SMALL_STATE(2764)] = 60294, - [SMALL_STATE(2765)] = 60302, - [SMALL_STATE(2766)] = 60310, - [SMALL_STATE(2767)] = 60318, - [SMALL_STATE(2768)] = 60326, - [SMALL_STATE(2769)] = 60334, + [SMALL_STATE(1574)] = 41952, + [SMALL_STATE(1575)] = 41975, + [SMALL_STATE(1576)] = 42004, + [SMALL_STATE(1577)] = 42043, + [SMALL_STATE(1578)] = 42068, + [SMALL_STATE(1579)] = 42105, + [SMALL_STATE(1580)] = 42144, + [SMALL_STATE(1581)] = 42181, + [SMALL_STATE(1582)] = 42202, + [SMALL_STATE(1583)] = 42241, + [SMALL_STATE(1584)] = 42266, + [SMALL_STATE(1585)] = 42291, + [SMALL_STATE(1586)] = 42316, + [SMALL_STATE(1587)] = 42337, + [SMALL_STATE(1588)] = 42376, + [SMALL_STATE(1589)] = 42399, + [SMALL_STATE(1590)] = 42428, + [SMALL_STATE(1591)] = 42449, + [SMALL_STATE(1592)] = 42472, + [SMALL_STATE(1593)] = 42509, + [SMALL_STATE(1594)] = 42532, + [SMALL_STATE(1595)] = 42555, + [SMALL_STATE(1596)] = 42594, + [SMALL_STATE(1597)] = 42631, + [SMALL_STATE(1598)] = 42668, + [SMALL_STATE(1599)] = 42689, + [SMALL_STATE(1600)] = 42710, + [SMALL_STATE(1601)] = 42747, + [SMALL_STATE(1602)] = 42768, + [SMALL_STATE(1603)] = 42791, + [SMALL_STATE(1604)] = 42830, + [SMALL_STATE(1605)] = 42851, + [SMALL_STATE(1606)] = 42890, + [SMALL_STATE(1607)] = 42911, + [SMALL_STATE(1608)] = 42932, + [SMALL_STATE(1609)] = 42953, + [SMALL_STATE(1610)] = 42974, + [SMALL_STATE(1611)] = 42995, + [SMALL_STATE(1612)] = 43016, + [SMALL_STATE(1613)] = 43037, + [SMALL_STATE(1614)] = 43058, + [SMALL_STATE(1615)] = 43079, + [SMALL_STATE(1616)] = 43100, + [SMALL_STATE(1617)] = 43121, + [SMALL_STATE(1618)] = 43142, + [SMALL_STATE(1619)] = 43163, + [SMALL_STATE(1620)] = 43202, + [SMALL_STATE(1621)] = 43223, + [SMALL_STATE(1622)] = 43256, + [SMALL_STATE(1623)] = 43293, + [SMALL_STATE(1624)] = 43329, + [SMALL_STATE(1625)] = 43365, + [SMALL_STATE(1626)] = 43397, + [SMALL_STATE(1627)] = 43429, + [SMALL_STATE(1628)] = 43465, + [SMALL_STATE(1629)] = 43499, + [SMALL_STATE(1630)] = 43535, + [SMALL_STATE(1631)] = 43569, + [SMALL_STATE(1632)] = 43605, + [SMALL_STATE(1633)] = 43629, + [SMALL_STATE(1634)] = 43665, + [SMALL_STATE(1635)] = 43697, + [SMALL_STATE(1636)] = 43733, + [SMALL_STATE(1637)] = 43765, + [SMALL_STATE(1638)] = 43789, + [SMALL_STATE(1639)] = 43821, + [SMALL_STATE(1640)] = 43857, + [SMALL_STATE(1641)] = 43887, + [SMALL_STATE(1642)] = 43921, + [SMALL_STATE(1643)] = 43953, + [SMALL_STATE(1644)] = 43977, + [SMALL_STATE(1645)] = 44001, + [SMALL_STATE(1646)] = 44033, + [SMALL_STATE(1647)] = 44067, + [SMALL_STATE(1648)] = 44099, + [SMALL_STATE(1649)] = 44122, + [SMALL_STATE(1650)] = 44153, + [SMALL_STATE(1651)] = 44178, + [SMALL_STATE(1652)] = 44201, + [SMALL_STATE(1653)] = 44224, + [SMALL_STATE(1654)] = 44247, + [SMALL_STATE(1655)] = 44274, + [SMALL_STATE(1656)] = 44305, + [SMALL_STATE(1657)] = 44336, + [SMALL_STATE(1658)] = 44362, + [SMALL_STATE(1659)] = 44388, + [SMALL_STATE(1660)] = 44408, + [SMALL_STATE(1661)] = 44440, + [SMALL_STATE(1662)] = 44472, + [SMALL_STATE(1663)] = 44494, + [SMALL_STATE(1664)] = 44516, + [SMALL_STATE(1665)] = 44538, + [SMALL_STATE(1666)] = 44570, + [SMALL_STATE(1667)] = 44596, + [SMALL_STATE(1668)] = 44622, + [SMALL_STATE(1669)] = 44644, + [SMALL_STATE(1670)] = 44670, + [SMALL_STATE(1671)] = 44696, + [SMALL_STATE(1672)] = 44722, + [SMALL_STATE(1673)] = 44750, + [SMALL_STATE(1674)] = 44782, + [SMALL_STATE(1675)] = 44808, + [SMALL_STATE(1676)] = 44834, + [SMALL_STATE(1677)] = 44856, + [SMALL_STATE(1678)] = 44886, + [SMALL_STATE(1679)] = 44916, + [SMALL_STATE(1680)] = 44935, + [SMALL_STATE(1681)] = 44952, + [SMALL_STATE(1682)] = 44973, + [SMALL_STATE(1683)] = 44992, + [SMALL_STATE(1684)] = 45011, + [SMALL_STATE(1685)] = 45040, + [SMALL_STATE(1686)] = 45069, + [SMALL_STATE(1687)] = 45092, + [SMALL_STATE(1688)] = 45121, + [SMALL_STATE(1689)] = 45144, + [SMALL_STATE(1690)] = 45173, + [SMALL_STATE(1691)] = 45192, + [SMALL_STATE(1692)] = 45215, + [SMALL_STATE(1693)] = 45240, + [SMALL_STATE(1694)] = 45261, + [SMALL_STATE(1695)] = 45276, + [SMALL_STATE(1696)] = 45303, + [SMALL_STATE(1697)] = 45322, + [SMALL_STATE(1698)] = 45341, + [SMALL_STATE(1699)] = 45360, + [SMALL_STATE(1700)] = 45389, + [SMALL_STATE(1701)] = 45418, + [SMALL_STATE(1702)] = 45447, + [SMALL_STATE(1703)] = 45466, + [SMALL_STATE(1704)] = 45489, + [SMALL_STATE(1705)] = 45518, + [SMALL_STATE(1706)] = 45547, + [SMALL_STATE(1707)] = 45566, + [SMALL_STATE(1708)] = 45585, + [SMALL_STATE(1709)] = 45604, + [SMALL_STATE(1710)] = 45618, + [SMALL_STATE(1711)] = 45644, + [SMALL_STATE(1712)] = 45670, + [SMALL_STATE(1713)] = 45692, + [SMALL_STATE(1714)] = 45718, + [SMALL_STATE(1715)] = 45742, + [SMALL_STATE(1716)] = 45764, + [SMALL_STATE(1717)] = 45790, + [SMALL_STATE(1718)] = 45816, + [SMALL_STATE(1719)] = 45830, + [SMALL_STATE(1720)] = 45854, + [SMALL_STATE(1721)] = 45870, + [SMALL_STATE(1722)] = 45892, + [SMALL_STATE(1723)] = 45918, + [SMALL_STATE(1724)] = 45934, + [SMALL_STATE(1725)] = 45960, + [SMALL_STATE(1726)] = 45986, + [SMALL_STATE(1727)] = 46010, + [SMALL_STATE(1728)] = 46024, + [SMALL_STATE(1729)] = 46050, + [SMALL_STATE(1730)] = 46076, + [SMALL_STATE(1731)] = 46102, + [SMALL_STATE(1732)] = 46128, + [SMALL_STATE(1733)] = 46154, + [SMALL_STATE(1734)] = 46180, + [SMALL_STATE(1735)] = 46206, + [SMALL_STATE(1736)] = 46222, + [SMALL_STATE(1737)] = 46236, + [SMALL_STATE(1738)] = 46262, + [SMALL_STATE(1739)] = 46288, + [SMALL_STATE(1740)] = 46314, + [SMALL_STATE(1741)] = 46340, + [SMALL_STATE(1742)] = 46366, + [SMALL_STATE(1743)] = 46392, + [SMALL_STATE(1744)] = 46418, + [SMALL_STATE(1745)] = 46434, + [SMALL_STATE(1746)] = 46460, + [SMALL_STATE(1747)] = 46486, + [SMALL_STATE(1748)] = 46512, + [SMALL_STATE(1749)] = 46526, + [SMALL_STATE(1750)] = 46552, + [SMALL_STATE(1751)] = 46566, + [SMALL_STATE(1752)] = 46586, + [SMALL_STATE(1753)] = 46600, + [SMALL_STATE(1754)] = 46617, + [SMALL_STATE(1755)] = 46640, + [SMALL_STATE(1756)] = 46663, + [SMALL_STATE(1757)] = 46680, + [SMALL_STATE(1758)] = 46697, + [SMALL_STATE(1759)] = 46720, + [SMALL_STATE(1760)] = 46737, + [SMALL_STATE(1761)] = 46760, + [SMALL_STATE(1762)] = 46783, + [SMALL_STATE(1763)] = 46804, + [SMALL_STATE(1764)] = 46827, + [SMALL_STATE(1765)] = 46850, + [SMALL_STATE(1766)] = 46873, + [SMALL_STATE(1767)] = 46896, + [SMALL_STATE(1768)] = 46917, + [SMALL_STATE(1769)] = 46938, + [SMALL_STATE(1770)] = 46959, + [SMALL_STATE(1771)] = 46974, + [SMALL_STATE(1772)] = 46997, + [SMALL_STATE(1773)] = 47018, + [SMALL_STATE(1774)] = 47041, + [SMALL_STATE(1775)] = 47062, + [SMALL_STATE(1776)] = 47085, + [SMALL_STATE(1777)] = 47100, + [SMALL_STATE(1778)] = 47123, + [SMALL_STATE(1779)] = 47146, + [SMALL_STATE(1780)] = 47169, + [SMALL_STATE(1781)] = 47192, + [SMALL_STATE(1782)] = 47215, + [SMALL_STATE(1783)] = 47238, + [SMALL_STATE(1784)] = 47261, + [SMALL_STATE(1785)] = 47280, + [SMALL_STATE(1786)] = 47303, + [SMALL_STATE(1787)] = 47326, + [SMALL_STATE(1788)] = 47349, + [SMALL_STATE(1789)] = 47372, + [SMALL_STATE(1790)] = 47393, + [SMALL_STATE(1791)] = 47410, + [SMALL_STATE(1792)] = 47427, + [SMALL_STATE(1793)] = 47450, + [SMALL_STATE(1794)] = 47473, + [SMALL_STATE(1795)] = 47494, + [SMALL_STATE(1796)] = 47517, + [SMALL_STATE(1797)] = 47540, + [SMALL_STATE(1798)] = 47563, + [SMALL_STATE(1799)] = 47586, + [SMALL_STATE(1800)] = 47609, + [SMALL_STATE(1801)] = 47632, + [SMALL_STATE(1802)] = 47653, + [SMALL_STATE(1803)] = 47676, + [SMALL_STATE(1804)] = 47699, + [SMALL_STATE(1805)] = 47722, + [SMALL_STATE(1806)] = 47745, + [SMALL_STATE(1807)] = 47768, + [SMALL_STATE(1808)] = 47791, + [SMALL_STATE(1809)] = 47814, + [SMALL_STATE(1810)] = 47837, + [SMALL_STATE(1811)] = 47860, + [SMALL_STATE(1812)] = 47883, + [SMALL_STATE(1813)] = 47906, + [SMALL_STATE(1814)] = 47929, + [SMALL_STATE(1815)] = 47950, + [SMALL_STATE(1816)] = 47973, + [SMALL_STATE(1817)] = 47996, + [SMALL_STATE(1818)] = 48019, + [SMALL_STATE(1819)] = 48042, + [SMALL_STATE(1820)] = 48061, + [SMALL_STATE(1821)] = 48076, + [SMALL_STATE(1822)] = 48099, + [SMALL_STATE(1823)] = 48120, + [SMALL_STATE(1824)] = 48143, + [SMALL_STATE(1825)] = 48160, + [SMALL_STATE(1826)] = 48183, + [SMALL_STATE(1827)] = 48204, + [SMALL_STATE(1828)] = 48225, + [SMALL_STATE(1829)] = 48248, + [SMALL_STATE(1830)] = 48271, + [SMALL_STATE(1831)] = 48292, + [SMALL_STATE(1832)] = 48313, + [SMALL_STATE(1833)] = 48334, + [SMALL_STATE(1834)] = 48357, + [SMALL_STATE(1835)] = 48380, + [SMALL_STATE(1836)] = 48399, + [SMALL_STATE(1837)] = 48422, + [SMALL_STATE(1838)] = 48445, + [SMALL_STATE(1839)] = 48468, + [SMALL_STATE(1840)] = 48491, + [SMALL_STATE(1841)] = 48514, + [SMALL_STATE(1842)] = 48537, + [SMALL_STATE(1843)] = 48560, + [SMALL_STATE(1844)] = 48583, + [SMALL_STATE(1845)] = 48600, + [SMALL_STATE(1846)] = 48623, + [SMALL_STATE(1847)] = 48642, + [SMALL_STATE(1848)] = 48663, + [SMALL_STATE(1849)] = 48684, + [SMALL_STATE(1850)] = 48707, + [SMALL_STATE(1851)] = 48730, + [SMALL_STATE(1852)] = 48747, + [SMALL_STATE(1853)] = 48768, + [SMALL_STATE(1854)] = 48789, + [SMALL_STATE(1855)] = 48812, + [SMALL_STATE(1856)] = 48833, + [SMALL_STATE(1857)] = 48856, + [SMALL_STATE(1858)] = 48877, + [SMALL_STATE(1859)] = 48900, + [SMALL_STATE(1860)] = 48921, + [SMALL_STATE(1861)] = 48942, + [SMALL_STATE(1862)] = 48965, + [SMALL_STATE(1863)] = 48986, + [SMALL_STATE(1864)] = 49009, + [SMALL_STATE(1865)] = 49032, + [SMALL_STATE(1866)] = 49053, + [SMALL_STATE(1867)] = 49076, + [SMALL_STATE(1868)] = 49099, + [SMALL_STATE(1869)] = 49122, + [SMALL_STATE(1870)] = 49143, + [SMALL_STATE(1871)] = 49164, + [SMALL_STATE(1872)] = 49183, + [SMALL_STATE(1873)] = 49206, + [SMALL_STATE(1874)] = 49227, + [SMALL_STATE(1875)] = 49248, + [SMALL_STATE(1876)] = 49271, + [SMALL_STATE(1877)] = 49294, + [SMALL_STATE(1878)] = 49309, + [SMALL_STATE(1879)] = 49330, + [SMALL_STATE(1880)] = 49347, + [SMALL_STATE(1881)] = 49370, + [SMALL_STATE(1882)] = 49387, + [SMALL_STATE(1883)] = 49410, + [SMALL_STATE(1884)] = 49422, + [SMALL_STATE(1885)] = 49438, + [SMALL_STATE(1886)] = 49450, + [SMALL_STATE(1887)] = 49462, + [SMALL_STATE(1888)] = 49474, + [SMALL_STATE(1889)] = 49486, + [SMALL_STATE(1890)] = 49502, + [SMALL_STATE(1891)] = 49522, + [SMALL_STATE(1892)] = 49534, + [SMALL_STATE(1893)] = 49554, + [SMALL_STATE(1894)] = 49570, + [SMALL_STATE(1895)] = 49582, + [SMALL_STATE(1896)] = 49596, + [SMALL_STATE(1897)] = 49612, + [SMALL_STATE(1898)] = 49630, + [SMALL_STATE(1899)] = 49648, + [SMALL_STATE(1900)] = 49668, + [SMALL_STATE(1901)] = 49686, + [SMALL_STATE(1902)] = 49704, + [SMALL_STATE(1903)] = 49716, + [SMALL_STATE(1904)] = 49736, + [SMALL_STATE(1905)] = 49750, + [SMALL_STATE(1906)] = 49768, + [SMALL_STATE(1907)] = 49786, + [SMALL_STATE(1908)] = 49806, + [SMALL_STATE(1909)] = 49818, + [SMALL_STATE(1910)] = 49836, + [SMALL_STATE(1911)] = 49848, + [SMALL_STATE(1912)] = 49860, + [SMALL_STATE(1913)] = 49878, + [SMALL_STATE(1914)] = 49890, + [SMALL_STATE(1915)] = 49908, + [SMALL_STATE(1916)] = 49926, + [SMALL_STATE(1917)] = 49938, + [SMALL_STATE(1918)] = 49956, + [SMALL_STATE(1919)] = 49974, + [SMALL_STATE(1920)] = 49992, + [SMALL_STATE(1921)] = 50004, + [SMALL_STATE(1922)] = 50022, + [SMALL_STATE(1923)] = 50040, + [SMALL_STATE(1924)] = 50058, + [SMALL_STATE(1925)] = 50076, + [SMALL_STATE(1926)] = 50088, + [SMALL_STATE(1927)] = 50102, + [SMALL_STATE(1928)] = 50120, + [SMALL_STATE(1929)] = 50138, + [SMALL_STATE(1930)] = 50156, + [SMALL_STATE(1931)] = 50168, + [SMALL_STATE(1932)] = 50180, + [SMALL_STATE(1933)] = 50200, + [SMALL_STATE(1934)] = 50212, + [SMALL_STATE(1935)] = 50232, + [SMALL_STATE(1936)] = 50252, + [SMALL_STATE(1937)] = 50270, + [SMALL_STATE(1938)] = 50288, + [SMALL_STATE(1939)] = 50306, + [SMALL_STATE(1940)] = 50324, + [SMALL_STATE(1941)] = 50340, + [SMALL_STATE(1942)] = 50356, + [SMALL_STATE(1943)] = 50372, + [SMALL_STATE(1944)] = 50388, + [SMALL_STATE(1945)] = 50404, + [SMALL_STATE(1946)] = 50422, + [SMALL_STATE(1947)] = 50438, + [SMALL_STATE(1948)] = 50450, + [SMALL_STATE(1949)] = 50470, + [SMALL_STATE(1950)] = 50482, + [SMALL_STATE(1951)] = 50500, + [SMALL_STATE(1952)] = 50520, + [SMALL_STATE(1953)] = 50532, + [SMALL_STATE(1954)] = 50548, + [SMALL_STATE(1955)] = 50566, + [SMALL_STATE(1956)] = 50586, + [SMALL_STATE(1957)] = 50602, + [SMALL_STATE(1958)] = 50620, + [SMALL_STATE(1959)] = 50638, + [SMALL_STATE(1960)] = 50653, + [SMALL_STATE(1961)] = 50668, + [SMALL_STATE(1962)] = 50683, + [SMALL_STATE(1963)] = 50700, + [SMALL_STATE(1964)] = 50715, + [SMALL_STATE(1965)] = 50730, + [SMALL_STATE(1966)] = 50747, + [SMALL_STATE(1967)] = 50764, + [SMALL_STATE(1968)] = 50779, + [SMALL_STATE(1969)] = 50794, + [SMALL_STATE(1970)] = 50809, + [SMALL_STATE(1971)] = 50824, + [SMALL_STATE(1972)] = 50839, + [SMALL_STATE(1973)] = 50854, + [SMALL_STATE(1974)] = 50869, + [SMALL_STATE(1975)] = 50884, + [SMALL_STATE(1976)] = 50899, + [SMALL_STATE(1977)] = 50916, + [SMALL_STATE(1978)] = 50933, + [SMALL_STATE(1979)] = 50950, + [SMALL_STATE(1980)] = 50967, + [SMALL_STATE(1981)] = 50984, + [SMALL_STATE(1982)] = 50999, + [SMALL_STATE(1983)] = 51014, + [SMALL_STATE(1984)] = 51029, + [SMALL_STATE(1985)] = 51044, + [SMALL_STATE(1986)] = 51059, + [SMALL_STATE(1987)] = 51074, + [SMALL_STATE(1988)] = 51091, + [SMALL_STATE(1989)] = 51108, + [SMALL_STATE(1990)] = 51125, + [SMALL_STATE(1991)] = 51142, + [SMALL_STATE(1992)] = 51159, + [SMALL_STATE(1993)] = 51174, + [SMALL_STATE(1994)] = 51191, + [SMALL_STATE(1995)] = 51206, + [SMALL_STATE(1996)] = 51221, + [SMALL_STATE(1997)] = 51236, + [SMALL_STATE(1998)] = 51251, + [SMALL_STATE(1999)] = 51266, + [SMALL_STATE(2000)] = 51281, + [SMALL_STATE(2001)] = 51298, + [SMALL_STATE(2002)] = 51313, + [SMALL_STATE(2003)] = 51326, + [SMALL_STATE(2004)] = 51343, + [SMALL_STATE(2005)] = 51358, + [SMALL_STATE(2006)] = 51373, + [SMALL_STATE(2007)] = 51388, + [SMALL_STATE(2008)] = 51403, + [SMALL_STATE(2009)] = 51420, + [SMALL_STATE(2010)] = 51435, + [SMALL_STATE(2011)] = 51448, + [SMALL_STATE(2012)] = 51461, + [SMALL_STATE(2013)] = 51476, + [SMALL_STATE(2014)] = 51493, + [SMALL_STATE(2015)] = 51508, + [SMALL_STATE(2016)] = 51523, + [SMALL_STATE(2017)] = 51540, + [SMALL_STATE(2018)] = 51555, + [SMALL_STATE(2019)] = 51572, + [SMALL_STATE(2020)] = 51587, + [SMALL_STATE(2021)] = 51602, + [SMALL_STATE(2022)] = 51617, + [SMALL_STATE(2023)] = 51632, + [SMALL_STATE(2024)] = 51647, + [SMALL_STATE(2025)] = 51662, + [SMALL_STATE(2026)] = 51675, + [SMALL_STATE(2027)] = 51690, + [SMALL_STATE(2028)] = 51705, + [SMALL_STATE(2029)] = 51720, + [SMALL_STATE(2030)] = 51735, + [SMALL_STATE(2031)] = 51750, + [SMALL_STATE(2032)] = 51765, + [SMALL_STATE(2033)] = 51780, + [SMALL_STATE(2034)] = 51795, + [SMALL_STATE(2035)] = 51812, + [SMALL_STATE(2036)] = 51827, + [SMALL_STATE(2037)] = 51842, + [SMALL_STATE(2038)] = 51857, + [SMALL_STATE(2039)] = 51874, + [SMALL_STATE(2040)] = 51889, + [SMALL_STATE(2041)] = 51906, + [SMALL_STATE(2042)] = 51921, + [SMALL_STATE(2043)] = 51936, + [SMALL_STATE(2044)] = 51953, + [SMALL_STATE(2045)] = 51968, + [SMALL_STATE(2046)] = 51983, + [SMALL_STATE(2047)] = 51998, + [SMALL_STATE(2048)] = 52013, + [SMALL_STATE(2049)] = 52030, + [SMALL_STATE(2050)] = 52043, + [SMALL_STATE(2051)] = 52056, + [SMALL_STATE(2052)] = 52071, + [SMALL_STATE(2053)] = 52086, + [SMALL_STATE(2054)] = 52101, + [SMALL_STATE(2055)] = 52116, + [SMALL_STATE(2056)] = 52133, + [SMALL_STATE(2057)] = 52148, + [SMALL_STATE(2058)] = 52163, + [SMALL_STATE(2059)] = 52178, + [SMALL_STATE(2060)] = 52193, + [SMALL_STATE(2061)] = 52210, + [SMALL_STATE(2062)] = 52227, + [SMALL_STATE(2063)] = 52242, + [SMALL_STATE(2064)] = 52259, + [SMALL_STATE(2065)] = 52274, + [SMALL_STATE(2066)] = 52291, + [SMALL_STATE(2067)] = 52306, + [SMALL_STATE(2068)] = 52323, + [SMALL_STATE(2069)] = 52340, + [SMALL_STATE(2070)] = 52355, + [SMALL_STATE(2071)] = 52370, + [SMALL_STATE(2072)] = 52387, + [SMALL_STATE(2073)] = 52402, + [SMALL_STATE(2074)] = 52417, + [SMALL_STATE(2075)] = 52434, + [SMALL_STATE(2076)] = 52451, + [SMALL_STATE(2077)] = 52468, + [SMALL_STATE(2078)] = 52483, + [SMALL_STATE(2079)] = 52500, + [SMALL_STATE(2080)] = 52511, + [SMALL_STATE(2081)] = 52528, + [SMALL_STATE(2082)] = 52545, + [SMALL_STATE(2083)] = 52560, + [SMALL_STATE(2084)] = 52577, + [SMALL_STATE(2085)] = 52592, + [SMALL_STATE(2086)] = 52607, + [SMALL_STATE(2087)] = 52622, + [SMALL_STATE(2088)] = 52637, + [SMALL_STATE(2089)] = 52654, + [SMALL_STATE(2090)] = 52671, + [SMALL_STATE(2091)] = 52686, + [SMALL_STATE(2092)] = 52703, + [SMALL_STATE(2093)] = 52718, + [SMALL_STATE(2094)] = 52733, + [SMALL_STATE(2095)] = 52750, + [SMALL_STATE(2096)] = 52767, + [SMALL_STATE(2097)] = 52782, + [SMALL_STATE(2098)] = 52799, + [SMALL_STATE(2099)] = 52814, + [SMALL_STATE(2100)] = 52831, + [SMALL_STATE(2101)] = 52846, + [SMALL_STATE(2102)] = 52863, + [SMALL_STATE(2103)] = 52880, + [SMALL_STATE(2104)] = 52897, + [SMALL_STATE(2105)] = 52914, + [SMALL_STATE(2106)] = 52929, + [SMALL_STATE(2107)] = 52946, + [SMALL_STATE(2108)] = 52961, + [SMALL_STATE(2109)] = 52978, + [SMALL_STATE(2110)] = 52993, + [SMALL_STATE(2111)] = 53008, + [SMALL_STATE(2112)] = 53025, + [SMALL_STATE(2113)] = 53038, + [SMALL_STATE(2114)] = 53053, + [SMALL_STATE(2115)] = 53068, + [SMALL_STATE(2116)] = 53085, + [SMALL_STATE(2117)] = 53102, + [SMALL_STATE(2118)] = 53117, + [SMALL_STATE(2119)] = 53134, + [SMALL_STATE(2120)] = 53149, + [SMALL_STATE(2121)] = 53162, + [SMALL_STATE(2122)] = 53177, + [SMALL_STATE(2123)] = 53192, + [SMALL_STATE(2124)] = 53209, + [SMALL_STATE(2125)] = 53224, + [SMALL_STATE(2126)] = 53241, + [SMALL_STATE(2127)] = 53258, + [SMALL_STATE(2128)] = 53273, + [SMALL_STATE(2129)] = 53288, + [SMALL_STATE(2130)] = 53305, + [SMALL_STATE(2131)] = 53322, + [SMALL_STATE(2132)] = 53337, + [SMALL_STATE(2133)] = 53354, + [SMALL_STATE(2134)] = 53369, + [SMALL_STATE(2135)] = 53384, + [SMALL_STATE(2136)] = 53399, + [SMALL_STATE(2137)] = 53416, + [SMALL_STATE(2138)] = 53433, + [SMALL_STATE(2139)] = 53450, + [SMALL_STATE(2140)] = 53465, + [SMALL_STATE(2141)] = 53480, + [SMALL_STATE(2142)] = 53495, + [SMALL_STATE(2143)] = 53510, + [SMALL_STATE(2144)] = 53527, + [SMALL_STATE(2145)] = 53544, + [SMALL_STATE(2146)] = 53561, + [SMALL_STATE(2147)] = 53576, + [SMALL_STATE(2148)] = 53591, + [SMALL_STATE(2149)] = 53606, + [SMALL_STATE(2150)] = 53621, + [SMALL_STATE(2151)] = 53638, + [SMALL_STATE(2152)] = 53650, + [SMALL_STATE(2153)] = 53664, + [SMALL_STATE(2154)] = 53674, + [SMALL_STATE(2155)] = 53688, + [SMALL_STATE(2156)] = 53698, + [SMALL_STATE(2157)] = 53712, + [SMALL_STATE(2158)] = 53726, + [SMALL_STATE(2159)] = 53740, + [SMALL_STATE(2160)] = 53750, + [SMALL_STATE(2161)] = 53764, + [SMALL_STATE(2162)] = 53778, + [SMALL_STATE(2163)] = 53792, + [SMALL_STATE(2164)] = 53806, + [SMALL_STATE(2165)] = 53820, + [SMALL_STATE(2166)] = 53832, + [SMALL_STATE(2167)] = 53846, + [SMALL_STATE(2168)] = 53858, + [SMALL_STATE(2169)] = 53870, + [SMALL_STATE(2170)] = 53880, + [SMALL_STATE(2171)] = 53890, + [SMALL_STATE(2172)] = 53904, + [SMALL_STATE(2173)] = 53918, + [SMALL_STATE(2174)] = 53932, + [SMALL_STATE(2175)] = 53944, + [SMALL_STATE(2176)] = 53958, + [SMALL_STATE(2177)] = 53972, + [SMALL_STATE(2178)] = 53984, + [SMALL_STATE(2179)] = 53994, + [SMALL_STATE(2180)] = 54006, + [SMALL_STATE(2181)] = 54016, + [SMALL_STATE(2182)] = 54028, + [SMALL_STATE(2183)] = 54042, + [SMALL_STATE(2184)] = 54056, + [SMALL_STATE(2185)] = 54070, + [SMALL_STATE(2186)] = 54082, + [SMALL_STATE(2187)] = 54096, + [SMALL_STATE(2188)] = 54110, + [SMALL_STATE(2189)] = 54124, + [SMALL_STATE(2190)] = 54136, + [SMALL_STATE(2191)] = 54150, + [SMALL_STATE(2192)] = 54162, + [SMALL_STATE(2193)] = 54176, + [SMALL_STATE(2194)] = 54188, + [SMALL_STATE(2195)] = 54202, + [SMALL_STATE(2196)] = 54216, + [SMALL_STATE(2197)] = 54228, + [SMALL_STATE(2198)] = 54242, + [SMALL_STATE(2199)] = 54254, + [SMALL_STATE(2200)] = 54266, + [SMALL_STATE(2201)] = 54280, + [SMALL_STATE(2202)] = 54292, + [SMALL_STATE(2203)] = 54306, + [SMALL_STATE(2204)] = 54320, + [SMALL_STATE(2205)] = 54334, + [SMALL_STATE(2206)] = 54346, + [SMALL_STATE(2207)] = 54360, + [SMALL_STATE(2208)] = 54372, + [SMALL_STATE(2209)] = 54384, + [SMALL_STATE(2210)] = 54398, + [SMALL_STATE(2211)] = 54408, + [SMALL_STATE(2212)] = 54422, + [SMALL_STATE(2213)] = 54434, + [SMALL_STATE(2214)] = 54446, + [SMALL_STATE(2215)] = 54460, + [SMALL_STATE(2216)] = 54474, + [SMALL_STATE(2217)] = 54488, + [SMALL_STATE(2218)] = 54502, + [SMALL_STATE(2219)] = 54516, + [SMALL_STATE(2220)] = 54530, + [SMALL_STATE(2221)] = 54544, + [SMALL_STATE(2222)] = 54558, + [SMALL_STATE(2223)] = 54572, + [SMALL_STATE(2224)] = 54586, + [SMALL_STATE(2225)] = 54598, + [SMALL_STATE(2226)] = 54610, + [SMALL_STATE(2227)] = 54620, + [SMALL_STATE(2228)] = 54634, + [SMALL_STATE(2229)] = 54648, + [SMALL_STATE(2230)] = 54662, + [SMALL_STATE(2231)] = 54676, + [SMALL_STATE(2232)] = 54690, + [SMALL_STATE(2233)] = 54700, + [SMALL_STATE(2234)] = 54714, + [SMALL_STATE(2235)] = 54724, + [SMALL_STATE(2236)] = 54736, + [SMALL_STATE(2237)] = 54750, + [SMALL_STATE(2238)] = 54764, + [SMALL_STATE(2239)] = 54778, + [SMALL_STATE(2240)] = 54792, + [SMALL_STATE(2241)] = 54806, + [SMALL_STATE(2242)] = 54816, + [SMALL_STATE(2243)] = 54830, + [SMALL_STATE(2244)] = 54844, + [SMALL_STATE(2245)] = 54858, + [SMALL_STATE(2246)] = 54870, + [SMALL_STATE(2247)] = 54884, + [SMALL_STATE(2248)] = 54898, + [SMALL_STATE(2249)] = 54912, + [SMALL_STATE(2250)] = 54926, + [SMALL_STATE(2251)] = 54940, + [SMALL_STATE(2252)] = 54954, + [SMALL_STATE(2253)] = 54968, + [SMALL_STATE(2254)] = 54980, + [SMALL_STATE(2255)] = 54994, + [SMALL_STATE(2256)] = 55008, + [SMALL_STATE(2257)] = 55022, + [SMALL_STATE(2258)] = 55036, + [SMALL_STATE(2259)] = 55050, + [SMALL_STATE(2260)] = 55060, + [SMALL_STATE(2261)] = 55074, + [SMALL_STATE(2262)] = 55088, + [SMALL_STATE(2263)] = 55100, + [SMALL_STATE(2264)] = 55114, + [SMALL_STATE(2265)] = 55126, + [SMALL_STATE(2266)] = 55136, + [SMALL_STATE(2267)] = 55150, + [SMALL_STATE(2268)] = 55164, + [SMALL_STATE(2269)] = 55174, + [SMALL_STATE(2270)] = 55188, + [SMALL_STATE(2271)] = 55202, + [SMALL_STATE(2272)] = 55212, + [SMALL_STATE(2273)] = 55226, + [SMALL_STATE(2274)] = 55238, + [SMALL_STATE(2275)] = 55248, + [SMALL_STATE(2276)] = 55262, + [SMALL_STATE(2277)] = 55276, + [SMALL_STATE(2278)] = 55290, + [SMALL_STATE(2279)] = 55302, + [SMALL_STATE(2280)] = 55314, + [SMALL_STATE(2281)] = 55324, + [SMALL_STATE(2282)] = 55338, + [SMALL_STATE(2283)] = 55350, + [SMALL_STATE(2284)] = 55364, + [SMALL_STATE(2285)] = 55378, + [SMALL_STATE(2286)] = 55392, + [SMALL_STATE(2287)] = 55402, + [SMALL_STATE(2288)] = 55416, + [SMALL_STATE(2289)] = 55430, + [SMALL_STATE(2290)] = 55444, + [SMALL_STATE(2291)] = 55458, + [SMALL_STATE(2292)] = 55472, + [SMALL_STATE(2293)] = 55486, + [SMALL_STATE(2294)] = 55500, + [SMALL_STATE(2295)] = 55510, + [SMALL_STATE(2296)] = 55524, + [SMALL_STATE(2297)] = 55538, + [SMALL_STATE(2298)] = 55550, + [SMALL_STATE(2299)] = 55564, + [SMALL_STATE(2300)] = 55576, + [SMALL_STATE(2301)] = 55590, + [SMALL_STATE(2302)] = 55604, + [SMALL_STATE(2303)] = 55616, + [SMALL_STATE(2304)] = 55630, + [SMALL_STATE(2305)] = 55644, + [SMALL_STATE(2306)] = 55658, + [SMALL_STATE(2307)] = 55668, + [SMALL_STATE(2308)] = 55682, + [SMALL_STATE(2309)] = 55696, + [SMALL_STATE(2310)] = 55710, + [SMALL_STATE(2311)] = 55722, + [SMALL_STATE(2312)] = 55736, + [SMALL_STATE(2313)] = 55750, + [SMALL_STATE(2314)] = 55764, + [SMALL_STATE(2315)] = 55778, + [SMALL_STATE(2316)] = 55788, + [SMALL_STATE(2317)] = 55802, + [SMALL_STATE(2318)] = 55816, + [SMALL_STATE(2319)] = 55828, + [SMALL_STATE(2320)] = 55842, + [SMALL_STATE(2321)] = 55856, + [SMALL_STATE(2322)] = 55870, + [SMALL_STATE(2323)] = 55884, + [SMALL_STATE(2324)] = 55898, + [SMALL_STATE(2325)] = 55912, + [SMALL_STATE(2326)] = 55924, + [SMALL_STATE(2327)] = 55938, + [SMALL_STATE(2328)] = 55952, + [SMALL_STATE(2329)] = 55966, + [SMALL_STATE(2330)] = 55980, + [SMALL_STATE(2331)] = 55994, + [SMALL_STATE(2332)] = 56008, + [SMALL_STATE(2333)] = 56022, + [SMALL_STATE(2334)] = 56036, + [SMALL_STATE(2335)] = 56050, + [SMALL_STATE(2336)] = 56062, + [SMALL_STATE(2337)] = 56076, + [SMALL_STATE(2338)] = 56090, + [SMALL_STATE(2339)] = 56104, + [SMALL_STATE(2340)] = 56118, + [SMALL_STATE(2341)] = 56132, + [SMALL_STATE(2342)] = 56146, + [SMALL_STATE(2343)] = 56160, + [SMALL_STATE(2344)] = 56174, + [SMALL_STATE(2345)] = 56188, + [SMALL_STATE(2346)] = 56202, + [SMALL_STATE(2347)] = 56216, + [SMALL_STATE(2348)] = 56226, + [SMALL_STATE(2349)] = 56240, + [SMALL_STATE(2350)] = 56254, + [SMALL_STATE(2351)] = 56268, + [SMALL_STATE(2352)] = 56282, + [SMALL_STATE(2353)] = 56296, + [SMALL_STATE(2354)] = 56310, + [SMALL_STATE(2355)] = 56324, + [SMALL_STATE(2356)] = 56338, + [SMALL_STATE(2357)] = 56352, + [SMALL_STATE(2358)] = 56366, + [SMALL_STATE(2359)] = 56380, + [SMALL_STATE(2360)] = 56394, + [SMALL_STATE(2361)] = 56408, + [SMALL_STATE(2362)] = 56422, + [SMALL_STATE(2363)] = 56436, + [SMALL_STATE(2364)] = 56450, + [SMALL_STATE(2365)] = 56464, + [SMALL_STATE(2366)] = 56478, + [SMALL_STATE(2367)] = 56492, + [SMALL_STATE(2368)] = 56506, + [SMALL_STATE(2369)] = 56520, + [SMALL_STATE(2370)] = 56534, + [SMALL_STATE(2371)] = 56548, + [SMALL_STATE(2372)] = 56562, + [SMALL_STATE(2373)] = 56576, + [SMALL_STATE(2374)] = 56590, + [SMALL_STATE(2375)] = 56604, + [SMALL_STATE(2376)] = 56618, + [SMALL_STATE(2377)] = 56628, + [SMALL_STATE(2378)] = 56642, + [SMALL_STATE(2379)] = 56652, + [SMALL_STATE(2380)] = 56666, + [SMALL_STATE(2381)] = 56680, + [SMALL_STATE(2382)] = 56694, + [SMALL_STATE(2383)] = 56708, + [SMALL_STATE(2384)] = 56722, + [SMALL_STATE(2385)] = 56736, + [SMALL_STATE(2386)] = 56748, + [SMALL_STATE(2387)] = 56762, + [SMALL_STATE(2388)] = 56776, + [SMALL_STATE(2389)] = 56790, + [SMALL_STATE(2390)] = 56804, + [SMALL_STATE(2391)] = 56818, + [SMALL_STATE(2392)] = 56832, + [SMALL_STATE(2393)] = 56844, + [SMALL_STATE(2394)] = 56854, + [SMALL_STATE(2395)] = 56868, + [SMALL_STATE(2396)] = 56882, + [SMALL_STATE(2397)] = 56896, + [SMALL_STATE(2398)] = 56910, + [SMALL_STATE(2399)] = 56919, + [SMALL_STATE(2400)] = 56930, + [SMALL_STATE(2401)] = 56941, + [SMALL_STATE(2402)] = 56952, + [SMALL_STATE(2403)] = 56963, + [SMALL_STATE(2404)] = 56974, + [SMALL_STATE(2405)] = 56985, + [SMALL_STATE(2406)] = 56996, + [SMALL_STATE(2407)] = 57007, + [SMALL_STATE(2408)] = 57018, + [SMALL_STATE(2409)] = 57029, + [SMALL_STATE(2410)] = 57040, + [SMALL_STATE(2411)] = 57051, + [SMALL_STATE(2412)] = 57062, + [SMALL_STATE(2413)] = 57073, + [SMALL_STATE(2414)] = 57084, + [SMALL_STATE(2415)] = 57095, + [SMALL_STATE(2416)] = 57106, + [SMALL_STATE(2417)] = 57117, + [SMALL_STATE(2418)] = 57128, + [SMALL_STATE(2419)] = 57139, + [SMALL_STATE(2420)] = 57150, + [SMALL_STATE(2421)] = 57161, + [SMALL_STATE(2422)] = 57172, + [SMALL_STATE(2423)] = 57183, + [SMALL_STATE(2424)] = 57194, + [SMALL_STATE(2425)] = 57205, + [SMALL_STATE(2426)] = 57216, + [SMALL_STATE(2427)] = 57227, + [SMALL_STATE(2428)] = 57238, + [SMALL_STATE(2429)] = 57249, + [SMALL_STATE(2430)] = 57260, + [SMALL_STATE(2431)] = 57271, + [SMALL_STATE(2432)] = 57282, + [SMALL_STATE(2433)] = 57293, + [SMALL_STATE(2434)] = 57304, + [SMALL_STATE(2435)] = 57315, + [SMALL_STATE(2436)] = 57326, + [SMALL_STATE(2437)] = 57337, + [SMALL_STATE(2438)] = 57348, + [SMALL_STATE(2439)] = 57359, + [SMALL_STATE(2440)] = 57370, + [SMALL_STATE(2441)] = 57381, + [SMALL_STATE(2442)] = 57390, + [SMALL_STATE(2443)] = 57401, + [SMALL_STATE(2444)] = 57412, + [SMALL_STATE(2445)] = 57423, + [SMALL_STATE(2446)] = 57434, + [SMALL_STATE(2447)] = 57445, + [SMALL_STATE(2448)] = 57456, + [SMALL_STATE(2449)] = 57467, + [SMALL_STATE(2450)] = 57478, + [SMALL_STATE(2451)] = 57489, + [SMALL_STATE(2452)] = 57500, + [SMALL_STATE(2453)] = 57511, + [SMALL_STATE(2454)] = 57522, + [SMALL_STATE(2455)] = 57533, + [SMALL_STATE(2456)] = 57544, + [SMALL_STATE(2457)] = 57555, + [SMALL_STATE(2458)] = 57566, + [SMALL_STATE(2459)] = 57577, + [SMALL_STATE(2460)] = 57588, + [SMALL_STATE(2461)] = 57599, + [SMALL_STATE(2462)] = 57610, + [SMALL_STATE(2463)] = 57621, + [SMALL_STATE(2464)] = 57632, + [SMALL_STATE(2465)] = 57643, + [SMALL_STATE(2466)] = 57654, + [SMALL_STATE(2467)] = 57665, + [SMALL_STATE(2468)] = 57676, + [SMALL_STATE(2469)] = 57687, + [SMALL_STATE(2470)] = 57698, + [SMALL_STATE(2471)] = 57709, + [SMALL_STATE(2472)] = 57720, + [SMALL_STATE(2473)] = 57729, + [SMALL_STATE(2474)] = 57740, + [SMALL_STATE(2475)] = 57751, + [SMALL_STATE(2476)] = 57762, + [SMALL_STATE(2477)] = 57773, + [SMALL_STATE(2478)] = 57784, + [SMALL_STATE(2479)] = 57795, + [SMALL_STATE(2480)] = 57806, + [SMALL_STATE(2481)] = 57817, + [SMALL_STATE(2482)] = 57828, + [SMALL_STATE(2483)] = 57837, + [SMALL_STATE(2484)] = 57848, + [SMALL_STATE(2485)] = 57859, + [SMALL_STATE(2486)] = 57870, + [SMALL_STATE(2487)] = 57881, + [SMALL_STATE(2488)] = 57890, + [SMALL_STATE(2489)] = 57901, + [SMALL_STATE(2490)] = 57912, + [SMALL_STATE(2491)] = 57923, + [SMALL_STATE(2492)] = 57934, + [SMALL_STATE(2493)] = 57945, + [SMALL_STATE(2494)] = 57954, + [SMALL_STATE(2495)] = 57965, + [SMALL_STATE(2496)] = 57976, + [SMALL_STATE(2497)] = 57987, + [SMALL_STATE(2498)] = 57996, + [SMALL_STATE(2499)] = 58007, + [SMALL_STATE(2500)] = 58018, + [SMALL_STATE(2501)] = 58029, + [SMALL_STATE(2502)] = 58040, + [SMALL_STATE(2503)] = 58049, + [SMALL_STATE(2504)] = 58060, + [SMALL_STATE(2505)] = 58071, + [SMALL_STATE(2506)] = 58082, + [SMALL_STATE(2507)] = 58093, + [SMALL_STATE(2508)] = 58104, + [SMALL_STATE(2509)] = 58115, + [SMALL_STATE(2510)] = 58126, + [SMALL_STATE(2511)] = 58137, + [SMALL_STATE(2512)] = 58148, + [SMALL_STATE(2513)] = 58159, + [SMALL_STATE(2514)] = 58170, + [SMALL_STATE(2515)] = 58181, + [SMALL_STATE(2516)] = 58190, + [SMALL_STATE(2517)] = 58201, + [SMALL_STATE(2518)] = 58210, + [SMALL_STATE(2519)] = 58221, + [SMALL_STATE(2520)] = 58232, + [SMALL_STATE(2521)] = 58243, + [SMALL_STATE(2522)] = 58254, + [SMALL_STATE(2523)] = 58265, + [SMALL_STATE(2524)] = 58276, + [SMALL_STATE(2525)] = 58287, + [SMALL_STATE(2526)] = 58298, + [SMALL_STATE(2527)] = 58307, + [SMALL_STATE(2528)] = 58318, + [SMALL_STATE(2529)] = 58329, + [SMALL_STATE(2530)] = 58340, + [SMALL_STATE(2531)] = 58351, + [SMALL_STATE(2532)] = 58362, + [SMALL_STATE(2533)] = 58373, + [SMALL_STATE(2534)] = 58384, + [SMALL_STATE(2535)] = 58395, + [SMALL_STATE(2536)] = 58406, + [SMALL_STATE(2537)] = 58417, + [SMALL_STATE(2538)] = 58426, + [SMALL_STATE(2539)] = 58437, + [SMALL_STATE(2540)] = 58446, + [SMALL_STATE(2541)] = 58457, + [SMALL_STATE(2542)] = 58468, + [SMALL_STATE(2543)] = 58479, + [SMALL_STATE(2544)] = 58490, + [SMALL_STATE(2545)] = 58499, + [SMALL_STATE(2546)] = 58510, + [SMALL_STATE(2547)] = 58519, + [SMALL_STATE(2548)] = 58530, + [SMALL_STATE(2549)] = 58541, + [SMALL_STATE(2550)] = 58550, + [SMALL_STATE(2551)] = 58561, + [SMALL_STATE(2552)] = 58572, + [SMALL_STATE(2553)] = 58583, + [SMALL_STATE(2554)] = 58592, + [SMALL_STATE(2555)] = 58601, + [SMALL_STATE(2556)] = 58612, + [SMALL_STATE(2557)] = 58623, + [SMALL_STATE(2558)] = 58634, + [SMALL_STATE(2559)] = 58645, + [SMALL_STATE(2560)] = 58654, + [SMALL_STATE(2561)] = 58665, + [SMALL_STATE(2562)] = 58676, + [SMALL_STATE(2563)] = 58687, + [SMALL_STATE(2564)] = 58698, + [SMALL_STATE(2565)] = 58709, + [SMALL_STATE(2566)] = 58720, + [SMALL_STATE(2567)] = 58731, + [SMALL_STATE(2568)] = 58742, + [SMALL_STATE(2569)] = 58753, + [SMALL_STATE(2570)] = 58762, + [SMALL_STATE(2571)] = 58773, + [SMALL_STATE(2572)] = 58784, + [SMALL_STATE(2573)] = 58795, + [SMALL_STATE(2574)] = 58806, + [SMALL_STATE(2575)] = 58817, + [SMALL_STATE(2576)] = 58828, + [SMALL_STATE(2577)] = 58839, + [SMALL_STATE(2578)] = 58850, + [SMALL_STATE(2579)] = 58861, + [SMALL_STATE(2580)] = 58872, + [SMALL_STATE(2581)] = 58883, + [SMALL_STATE(2582)] = 58894, + [SMALL_STATE(2583)] = 58905, + [SMALL_STATE(2584)] = 58916, + [SMALL_STATE(2585)] = 58927, + [SMALL_STATE(2586)] = 58938, + [SMALL_STATE(2587)] = 58949, + [SMALL_STATE(2588)] = 58960, + [SMALL_STATE(2589)] = 58969, + [SMALL_STATE(2590)] = 58980, + [SMALL_STATE(2591)] = 58991, + [SMALL_STATE(2592)] = 59002, + [SMALL_STATE(2593)] = 59013, + [SMALL_STATE(2594)] = 59024, + [SMALL_STATE(2595)] = 59035, + [SMALL_STATE(2596)] = 59046, + [SMALL_STATE(2597)] = 59057, + [SMALL_STATE(2598)] = 59068, + [SMALL_STATE(2599)] = 59079, + [SMALL_STATE(2600)] = 59090, + [SMALL_STATE(2601)] = 59101, + [SMALL_STATE(2602)] = 59112, + [SMALL_STATE(2603)] = 59123, + [SMALL_STATE(2604)] = 59134, + [SMALL_STATE(2605)] = 59145, + [SMALL_STATE(2606)] = 59156, + [SMALL_STATE(2607)] = 59167, + [SMALL_STATE(2608)] = 59176, + [SMALL_STATE(2609)] = 59184, + [SMALL_STATE(2610)] = 59192, + [SMALL_STATE(2611)] = 59200, + [SMALL_STATE(2612)] = 59208, + [SMALL_STATE(2613)] = 59216, + [SMALL_STATE(2614)] = 59224, + [SMALL_STATE(2615)] = 59232, + [SMALL_STATE(2616)] = 59240, + [SMALL_STATE(2617)] = 59248, + [SMALL_STATE(2618)] = 59256, + [SMALL_STATE(2619)] = 59264, + [SMALL_STATE(2620)] = 59272, + [SMALL_STATE(2621)] = 59280, + [SMALL_STATE(2622)] = 59288, + [SMALL_STATE(2623)] = 59296, + [SMALL_STATE(2624)] = 59304, + [SMALL_STATE(2625)] = 59312, + [SMALL_STATE(2626)] = 59320, + [SMALL_STATE(2627)] = 59328, + [SMALL_STATE(2628)] = 59336, + [SMALL_STATE(2629)] = 59344, + [SMALL_STATE(2630)] = 59352, + [SMALL_STATE(2631)] = 59360, + [SMALL_STATE(2632)] = 59368, + [SMALL_STATE(2633)] = 59376, + [SMALL_STATE(2634)] = 59384, + [SMALL_STATE(2635)] = 59392, + [SMALL_STATE(2636)] = 59400, + [SMALL_STATE(2637)] = 59408, + [SMALL_STATE(2638)] = 59416, + [SMALL_STATE(2639)] = 59424, + [SMALL_STATE(2640)] = 59432, + [SMALL_STATE(2641)] = 59440, + [SMALL_STATE(2642)] = 59448, + [SMALL_STATE(2643)] = 59456, + [SMALL_STATE(2644)] = 59464, + [SMALL_STATE(2645)] = 59472, + [SMALL_STATE(2646)] = 59480, + [SMALL_STATE(2647)] = 59488, + [SMALL_STATE(2648)] = 59496, + [SMALL_STATE(2649)] = 59504, + [SMALL_STATE(2650)] = 59512, + [SMALL_STATE(2651)] = 59520, + [SMALL_STATE(2652)] = 59528, + [SMALL_STATE(2653)] = 59536, + [SMALL_STATE(2654)] = 59544, + [SMALL_STATE(2655)] = 59552, + [SMALL_STATE(2656)] = 59560, + [SMALL_STATE(2657)] = 59568, + [SMALL_STATE(2658)] = 59576, + [SMALL_STATE(2659)] = 59584, + [SMALL_STATE(2660)] = 59592, + [SMALL_STATE(2661)] = 59600, + [SMALL_STATE(2662)] = 59608, + [SMALL_STATE(2663)] = 59616, + [SMALL_STATE(2664)] = 59624, + [SMALL_STATE(2665)] = 59632, + [SMALL_STATE(2666)] = 59640, + [SMALL_STATE(2667)] = 59648, + [SMALL_STATE(2668)] = 59656, + [SMALL_STATE(2669)] = 59664, + [SMALL_STATE(2670)] = 59672, + [SMALL_STATE(2671)] = 59680, + [SMALL_STATE(2672)] = 59688, + [SMALL_STATE(2673)] = 59696, + [SMALL_STATE(2674)] = 59704, + [SMALL_STATE(2675)] = 59712, + [SMALL_STATE(2676)] = 59720, + [SMALL_STATE(2677)] = 59728, + [SMALL_STATE(2678)] = 59736, + [SMALL_STATE(2679)] = 59744, + [SMALL_STATE(2680)] = 59752, + [SMALL_STATE(2681)] = 59760, + [SMALL_STATE(2682)] = 59768, + [SMALL_STATE(2683)] = 59776, + [SMALL_STATE(2684)] = 59784, + [SMALL_STATE(2685)] = 59792, + [SMALL_STATE(2686)] = 59800, + [SMALL_STATE(2687)] = 59808, + [SMALL_STATE(2688)] = 59816, + [SMALL_STATE(2689)] = 59824, + [SMALL_STATE(2690)] = 59832, + [SMALL_STATE(2691)] = 59840, + [SMALL_STATE(2692)] = 59848, + [SMALL_STATE(2693)] = 59856, + [SMALL_STATE(2694)] = 59864, + [SMALL_STATE(2695)] = 59872, + [SMALL_STATE(2696)] = 59880, + [SMALL_STATE(2697)] = 59888, + [SMALL_STATE(2698)] = 59896, + [SMALL_STATE(2699)] = 59904, + [SMALL_STATE(2700)] = 59912, + [SMALL_STATE(2701)] = 59920, + [SMALL_STATE(2702)] = 59928, + [SMALL_STATE(2703)] = 59936, + [SMALL_STATE(2704)] = 59944, + [SMALL_STATE(2705)] = 59952, + [SMALL_STATE(2706)] = 59960, + [SMALL_STATE(2707)] = 59968, + [SMALL_STATE(2708)] = 59976, + [SMALL_STATE(2709)] = 59984, + [SMALL_STATE(2710)] = 59992, + [SMALL_STATE(2711)] = 60000, + [SMALL_STATE(2712)] = 60008, + [SMALL_STATE(2713)] = 60016, + [SMALL_STATE(2714)] = 60024, + [SMALL_STATE(2715)] = 60032, + [SMALL_STATE(2716)] = 60040, + [SMALL_STATE(2717)] = 60048, + [SMALL_STATE(2718)] = 60056, + [SMALL_STATE(2719)] = 60064, + [SMALL_STATE(2720)] = 60072, + [SMALL_STATE(2721)] = 60080, + [SMALL_STATE(2722)] = 60088, + [SMALL_STATE(2723)] = 60096, + [SMALL_STATE(2724)] = 60104, + [SMALL_STATE(2725)] = 60112, + [SMALL_STATE(2726)] = 60120, + [SMALL_STATE(2727)] = 60128, + [SMALL_STATE(2728)] = 60136, + [SMALL_STATE(2729)] = 60144, + [SMALL_STATE(2730)] = 60152, + [SMALL_STATE(2731)] = 60160, + [SMALL_STATE(2732)] = 60168, + [SMALL_STATE(2733)] = 60176, + [SMALL_STATE(2734)] = 60184, + [SMALL_STATE(2735)] = 60192, + [SMALL_STATE(2736)] = 60200, + [SMALL_STATE(2737)] = 60208, + [SMALL_STATE(2738)] = 60216, + [SMALL_STATE(2739)] = 60224, + [SMALL_STATE(2740)] = 60232, + [SMALL_STATE(2741)] = 60240, + [SMALL_STATE(2742)] = 60248, + [SMALL_STATE(2743)] = 60256, + [SMALL_STATE(2744)] = 60264, + [SMALL_STATE(2745)] = 60272, + [SMALL_STATE(2746)] = 60280, + [SMALL_STATE(2747)] = 60288, + [SMALL_STATE(2748)] = 60296, + [SMALL_STATE(2749)] = 60304, + [SMALL_STATE(2750)] = 60312, + [SMALL_STATE(2751)] = 60320, + [SMALL_STATE(2752)] = 60328, + [SMALL_STATE(2753)] = 60336, + [SMALL_STATE(2754)] = 60344, + [SMALL_STATE(2755)] = 60352, + [SMALL_STATE(2756)] = 60360, + [SMALL_STATE(2757)] = 60368, + [SMALL_STATE(2758)] = 60376, + [SMALL_STATE(2759)] = 60384, + [SMALL_STATE(2760)] = 60392, + [SMALL_STATE(2761)] = 60400, + [SMALL_STATE(2762)] = 60408, + [SMALL_STATE(2763)] = 60416, + [SMALL_STATE(2764)] = 60424, + [SMALL_STATE(2765)] = 60432, + [SMALL_STATE(2766)] = 60440, + [SMALL_STATE(2767)] = 60448, + [SMALL_STATE(2768)] = 60456, + [SMALL_STATE(2769)] = 60464, + [SMALL_STATE(2770)] = 60472, + [SMALL_STATE(2771)] = 60480, + [SMALL_STATE(2772)] = 60488, + [SMALL_STATE(2773)] = 60496, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -142259,2850 +142562,2860 @@ static const TSParseActionEntry ts_parse_actions[] = { [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 0), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1664), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2521), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2052), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1662), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1898), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2405), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2121), [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1652), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2516), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2678), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1, .production_id = 4), - [115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1048), - [118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(502), - [121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1788), - [124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(44), - [127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(7), - [130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), - [132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(34), - [135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(121), - [138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2049), - [141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1664), - [144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(23), - [147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1609), - [150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(842), - [153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(843), - [156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1985), - [159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1879), - [162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(605), - [165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(39), - [168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(664), - [171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(610), - [174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2521), - [177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(166), - [180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2063), - [183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1445), - [186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(22), - [189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1868), - [192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1994), - [195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2013), - [198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2115), - [201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1253), - [204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1652), - [207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1303), - [210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(36), - [213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2598), - [216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1626), - [219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(680), - [222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2073), - [225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(72), - [228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(18), - [231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(592), - [234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(24), - [237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2516), - [240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1167), - [243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1953), - [246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1226), - [249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(894), - [252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1048), - [255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1247), - [258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2678), - [261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1476), - [264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1247), - [267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(184), - [270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, .production_id = 18), - [278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, .production_id = 18), SHIFT_REPEAT(1048), - [281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, .production_id = 18), SHIFT_REPEAT(502), - [284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, .production_id = 18), SHIFT_REPEAT(1788), - [287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, .production_id = 18), SHIFT_REPEAT(44), - [290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, .production_id = 18), SHIFT_REPEAT(7), - [293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, .production_id = 18), SHIFT_REPEAT(34), - [296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, .production_id = 18), SHIFT_REPEAT(121), - [299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, .production_id = 18), SHIFT_REPEAT(2049), - [302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, .production_id = 18), SHIFT_REPEAT(1664), - [305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, .production_id = 18), SHIFT_REPEAT(23), - [308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, .production_id = 18), SHIFT_REPEAT(1609), - [311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, .production_id = 18), SHIFT_REPEAT(842), - [314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, .production_id = 18), SHIFT_REPEAT(843), - [317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, .production_id = 18), SHIFT_REPEAT(1985), - [320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, .production_id = 18), SHIFT_REPEAT(1879), - [323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, .production_id = 18), SHIFT_REPEAT(605), - [326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, .production_id = 18), SHIFT_REPEAT(39), - [329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, .production_id = 18), SHIFT_REPEAT(664), - [332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, .production_id = 18), SHIFT_REPEAT(610), - [335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, .production_id = 18), SHIFT_REPEAT(2521), - [338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, .production_id = 18), SHIFT_REPEAT(166), - [341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, .production_id = 18), SHIFT_REPEAT(2063), - [344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, .production_id = 18), SHIFT_REPEAT(1445), - [347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, .production_id = 18), SHIFT_REPEAT(22), - [350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, .production_id = 18), SHIFT_REPEAT(1868), - [353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, .production_id = 18), SHIFT_REPEAT(1994), - [356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, .production_id = 18), SHIFT_REPEAT(2013), - [359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, .production_id = 18), SHIFT_REPEAT(2115), - [362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, .production_id = 18), SHIFT_REPEAT(1253), - [365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, .production_id = 18), SHIFT_REPEAT(1652), - [368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, .production_id = 18), SHIFT_REPEAT(1303), - [371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, .production_id = 18), SHIFT_REPEAT(36), - [374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, .production_id = 18), SHIFT_REPEAT(2598), - [377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, .production_id = 18), SHIFT_REPEAT(1626), - [380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, .production_id = 18), SHIFT_REPEAT(680), - [383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, .production_id = 18), SHIFT_REPEAT(2073), - [386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, .production_id = 18), SHIFT_REPEAT(72), - [389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, .production_id = 18), SHIFT_REPEAT(18), - [392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, .production_id = 18), SHIFT_REPEAT(592), - [395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, .production_id = 18), SHIFT_REPEAT(24), - [398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, .production_id = 18), SHIFT_REPEAT(2516), - [401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, .production_id = 18), SHIFT_REPEAT(1167), - [404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, .production_id = 18), SHIFT_REPEAT(1953), - [407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, .production_id = 18), SHIFT_REPEAT(1226), - [410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, .production_id = 18), SHIFT_REPEAT(894), - [413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, .production_id = 18), SHIFT_REPEAT(1048), - [416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, .production_id = 18), SHIFT_REPEAT(1247), - [419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, .production_id = 18), SHIFT_REPEAT(2678), - [422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, .production_id = 18), SHIFT_REPEAT(1476), - [425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, .production_id = 18), SHIFT_REPEAT(1247), - [428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, .production_id = 18), SHIFT_REPEAT(103), - [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2096), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2090), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2087), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), + [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2422), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2750), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1488), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, .production_id = 18), + [113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, .production_id = 18), SHIFT_REPEAT(1041), + [116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, .production_id = 18), SHIFT_REPEAT(534), + [119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, .production_id = 18), SHIFT_REPEAT(1819), + [122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, .production_id = 18), SHIFT_REPEAT(39), + [125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, .production_id = 18), SHIFT_REPEAT(6), + [128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, .production_id = 18), SHIFT_REPEAT(35), + [131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, .production_id = 18), SHIFT_REPEAT(82), + [134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, .production_id = 18), SHIFT_REPEAT(2052), + [137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, .production_id = 18), SHIFT_REPEAT(1662), + [140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, .production_id = 18), SHIFT_REPEAT(21), + [143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, .production_id = 18), SHIFT_REPEAT(1575), + [146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, .production_id = 18), SHIFT_REPEAT(1030), + [149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, .production_id = 18), SHIFT_REPEAT(1008), + [152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, .production_id = 18), SHIFT_REPEAT(2134), + [155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, .production_id = 18), SHIFT_REPEAT(1898), + [158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, .production_id = 18), SHIFT_REPEAT(611), + [161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, .production_id = 18), SHIFT_REPEAT(41), + [164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, .production_id = 18), SHIFT_REPEAT(679), + [167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, .production_id = 18), SHIFT_REPEAT(617), + [170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, .production_id = 18), SHIFT_REPEAT(2405), + [173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, .production_id = 18), SHIFT_REPEAT(124), + [176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, .production_id = 18), SHIFT_REPEAT(2121), + [179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, .production_id = 18), SHIFT_REPEAT(1445), + [182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, .production_id = 18), SHIFT_REPEAT(24), + [185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, .production_id = 18), SHIFT_REPEAT(1878), + [188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, .production_id = 18), SHIFT_REPEAT(2096), + [191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, .production_id = 18), SHIFT_REPEAT(2090), + [194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, .production_id = 18), SHIFT_REPEAT(2087), + [197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, .production_id = 18), SHIFT_REPEAT(1245), + [200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, .production_id = 18), SHIFT_REPEAT(1650), + [203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, .production_id = 18), SHIFT_REPEAT(1304), + [206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, .production_id = 18), SHIFT_REPEAT(37), + [209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, .production_id = 18), SHIFT_REPEAT(2418), + [212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, .production_id = 18), SHIFT_REPEAT(1637), + [215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, .production_id = 18), SHIFT_REPEAT(683), + [218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, .production_id = 18), SHIFT_REPEAT(2085), + [221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, .production_id = 18), SHIFT_REPEAT(64), + [224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, .production_id = 18), SHIFT_REPEAT(20), + [227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, .production_id = 18), SHIFT_REPEAT(594), + [230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, .production_id = 18), SHIFT_REPEAT(18), + [233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, .production_id = 18), SHIFT_REPEAT(2422), + [236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, .production_id = 18), SHIFT_REPEAT(1221), + [239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, .production_id = 18), SHIFT_REPEAT(1919), + [242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, .production_id = 18), SHIFT_REPEAT(1242), + [245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, .production_id = 18), SHIFT_REPEAT(1045), + [248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, .production_id = 18), SHIFT_REPEAT(1041), + [251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, .production_id = 18), SHIFT_REPEAT(1222), + [254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, .production_id = 18), SHIFT_REPEAT(2750), + [257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, .production_id = 18), SHIFT_REPEAT(1488), + [260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, .production_id = 18), SHIFT_REPEAT(1222), + [263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, .production_id = 18), SHIFT_REPEAT(100), + [266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1, .production_id = 4), + [268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1041), + [277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(534), + [280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1819), + [283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(39), + [286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(6), + [289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), + [291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(35), + [294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(82), + [297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2052), + [300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1662), + [303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(21), + [306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1575), + [309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1030), + [312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1008), + [315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2134), + [318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1898), + [321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(611), + [324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(41), + [327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(679), + [330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(617), + [333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2405), + [336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(124), + [339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2121), + [342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1445), + [345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(24), + [348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1878), + [351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2096), + [354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2090), + [357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2087), + [360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1245), + [363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1650), + [366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1304), + [369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(37), + [372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2418), + [375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1637), + [378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(683), + [381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2085), + [384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(64), + [387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(20), + [390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(594), + [393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(18), + [396] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2422), + [399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1221), + [402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1919), + [405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1242), + [408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1045), + [411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1041), + [414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1222), + [417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2750), + [420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1488), + [423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1222), + [426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(184), + [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), [445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 2), - [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2268), + [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2275), [451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 2), - [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2339), - [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2435), - [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), - [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), - [461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(43), - [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2509), - [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), - [467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2419), - [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), - [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), - [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 1), - [477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 1), - [479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 2, .production_id = 15), - [481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 2, .production_id = 15), - [483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 1), - [485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 1), - [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), - [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), - [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19), - [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), - [495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 1), - [497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 1), - [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), - [501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1), - [503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1), + [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2192), + [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2458), + [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), + [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), + [461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), + [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2455), + [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), + [467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2460), + [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), + [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), + [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1), + [477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1), + [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), + [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), + [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19), + [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), + [487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 1), + [489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 1), + [491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 1), + [493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 1), + [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), + [497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 2, .production_id = 15), + [499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 2, .production_id = 15), + [501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 1), + [503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 1), [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), - [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), - [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(26), - [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), - [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), - [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), - [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2506), - [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), - [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2654), - [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), - [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), - [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), - [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), - [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), - [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), - [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), - [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), - [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, .production_id = 27), - [567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, .production_id = 27), - [569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2122), - [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1048), - [578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(44), - [581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), - [583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2), - [586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(34), - [589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(121), - [592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2049), - [595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2339), - [598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(23), - [601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2435), - [604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(842), - [607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1154), - [610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(632), - [613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(43), - [616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2509), - [619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(116), - [622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(22), - [625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2419), - [628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(40), - [631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(680), - [634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2073), - [637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(72), - [640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(18), - [643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(592), - [646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(24), - [649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2516), - [652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1167), - [655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1953), - [658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1226), - [661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(894), - [664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1048), - [667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1247), - [670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2678), - [673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1247), - [676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1037), - [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), - [687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), - [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, .production_id = 19), - [695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3, .production_id = 19), - [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4, .production_id = 60), - [701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4, .production_id = 60), - [703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), - [705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), - [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, .production_id = 20), - [711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, .production_id = 20), - [713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, .production_id = 35), - [715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, .production_id = 35), - [717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 2), - [719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 2), - [721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1), - [723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1), - [725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1), - [727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1), - [729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, .production_id = 3), - [731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1, .production_id = 3), - [733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 4, .production_id = 113), - [735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 4, .production_id = 113), - [737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 3, .production_id = 39), - [739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 3, .production_id = 39), - [741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 5, .production_id = 175), - [743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 5, .production_id = 175), - [745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 2), - [747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 2), - [749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_block, 2, .production_id = 6), - [751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_block, 2, .production_id = 6), - [753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 7, .production_id = 290), - [755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 7, .production_id = 290), - [757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 3), - [759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 3), - [761] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__statement, 1), REDUCE(sym__literal, 1), REDUCE(sym_identifier, 1), - [765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__statement, 1), REDUCE(sym_identifier, 1), - [768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__literal, 1), REDUCE(sym_identifier, 1), - [771] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__statement, 1), REDUCE(sym__literal, 1), REDUCE(sym_identifier, 1), - [775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__literal, 1), REDUCE(sym_identifier, 1), - [778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__statement, 1), REDUCE(sym_visibility_modifier, 1), - [781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__statement, 1), REDUCE(sym_identifier, 1), - [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2206), - [788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2423), - [790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), - [792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), - [794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2421), - [796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), - [798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2500), - [800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), - [802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, .production_id = 75), - [804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, .production_id = 75), - [806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, .production_id = 55), - [808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, .production_id = 55), - [810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 2), - [812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 2), - [814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4, .production_id = 207), - [816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4, .production_id = 207), - [818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 2, .production_id = 6), - [820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 2, .production_id = 6), - [822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsafe_block, 2), - [824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsafe_block, 2), - [826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3, .production_id = 146), - [828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3, .production_id = 146), - [830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 3, .production_id = 116), - [832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 3, .production_id = 116), - [834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 5, .production_id = 129), - [836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 5, .production_id = 129), - [838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), - [840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), - [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), - [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1903), - [846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), - [850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), - [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), - [856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), - [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), - [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504), - [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2520), - [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2659), - [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), - [868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1682), - [870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), - [872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), - [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), - [878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), - [880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), - [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), - [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), - [890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), - [892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), - [894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), - [900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), - [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), - [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2207), - [908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), - [918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1826), - [920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), - [922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), - [924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873), - [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2281), - [930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), - [934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), - [938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), - [942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), - [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1989), - [946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), - [962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1938), - [966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), - [970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), - [974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), - [976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), - [978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), - [982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1534), - [992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), - [994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), - [996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), - [998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [1000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2197), - [1002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [1004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [1006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), - [1008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), - [1010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), - [1012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), - [1014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), - [1016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1901), - [1018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [1020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [1022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), + [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), + [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), + [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), + [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), + [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), + [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2466), + [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), + [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2659), + [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), + [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), + [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), + [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), + [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), + [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), + [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), + [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), + [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1041), + [570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(39), + [573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), + [575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(12), + [578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(35), + [581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(82), + [584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2052), + [587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2192), + [590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(21), + [593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2458), + [596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1030), + [599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1149), + [602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(614), + [605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(42), + [608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2455), + [611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(135), + [614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(24), + [617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2460), + [620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(45), + [623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(683), + [626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2085), + [629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(64), + [632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(20), + [635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(594), + [638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(18), + [641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2422), + [644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1221), + [647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1919), + [650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1242), + [653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1045), + [656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1041), + [659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1222), + [662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2750), + [665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1222), + [668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(932), + [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, .production_id = 28), + [679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, .production_id = 28), + [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2077), + [683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), + [691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), + [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, .production_id = 19), + [697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3, .production_id = 19), + [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), + [705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4, .production_id = 61), + [707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4, .production_id = 61), + [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 2), + [713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 2), + [715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 3), + [717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 3), + [719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1), + [721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1), + [723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1), + [725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1), + [727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, .production_id = 21), + [729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, .production_id = 21), + [731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 2), + [733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 2), + [735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_block, 2, .production_id = 6), + [737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_block, 2, .production_id = 6), + [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2326), + [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2427), + [745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), + [747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), + [749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2425), + [751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), + [753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2511), + [755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), + [757] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__statement, 1), REDUCE(sym__literal, 1), REDUCE(sym_identifier, 1), + [761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__statement, 1), REDUCE(sym_identifier, 1), + [764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__literal, 1), REDUCE(sym_identifier, 1), + [767] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__statement, 1), REDUCE(sym__literal, 1), REDUCE(sym_identifier, 1), + [771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__literal, 1), REDUCE(sym_identifier, 1), + [774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__statement, 1), REDUCE(sym_visibility_modifier, 1), + [777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__statement, 1), REDUCE(sym_identifier, 1), + [780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, .production_id = 56), + [782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, .production_id = 56), + [784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 7, .production_id = 296), + [786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 7, .production_id = 296), + [788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, .production_id = 78), + [790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, .production_id = 78), + [792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 2), + [794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 2), + [796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, .production_id = 36), + [798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, .production_id = 36), + [800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4, .production_id = 213), + [802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4, .production_id = 213), + [804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 5, .production_id = 180), + [806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 5, .production_id = 180), + [808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 4, .production_id = 116), + [810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 4, .production_id = 116), + [812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 2, .production_id = 6), + [814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 2, .production_id = 6), + [816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 3, .production_id = 40), + [818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 3, .production_id = 40), + [820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 3, .production_id = 121), + [822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 3, .production_id = 121), + [824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsafe_block, 2), + [826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsafe_block, 2), + [828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, .production_id = 3), + [830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1, .production_id = 3), + [832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3, .production_id = 151), + [834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3, .production_id = 151), + [836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 5, .production_id = 134), + [838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 5, .production_id = 134), + [840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), + [842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), + [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), + [846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1929), + [848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), + [856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960), + [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1681), + [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), + [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), + [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2506), + [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2669), + [868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), + [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), + [872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), + [874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), + [878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), + [880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), + [882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), + [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), + [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), + [890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), + [892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), + [894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), + [896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), + [900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), + [902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), + [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), + [908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2205), + [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), + [912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), + [916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), + [922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), + [924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), + [926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), + [928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1784), + [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2299), + [934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), + [942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), + [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2011), + [948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), + [964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), + [968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1901), + [972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), + [976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), + [980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), + [984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), + [994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1751), + [996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), + [998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), + [1000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [1002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2201), + [1004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [1006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [1008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), + [1010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [1012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2107), + [1014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [1016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), + [1018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [1020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), + [1022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), [1024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_label, 2), [1026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_label, 2), - [1028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), - [1030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1946), - [1032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), - [1034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), - [1036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), - [1038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier, 1), - [1040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier, 1), - [1042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 3, .production_id = 28), - [1044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 3, .production_id = 28), - [1046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [1048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [1050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [1052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), - [1054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2513), - [1056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [1058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), - [1060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [1062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), - [1064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2646), - [1066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), - [1068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [1070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [1072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [1074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), - [1076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [1078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [1080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), - [1082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [1084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), - [1086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), - [1088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), - [1090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1893), - [1092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), - [1094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), - [1096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), - [1098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), - [1100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), - [1102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), - [1104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), - [1106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1867), - [1108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), - [1110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), - [1112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), - [1114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), - [1116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), - [1118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2668), - [1120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), - [1122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), - [1124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [1126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, .production_id = 205), - [1128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, .production_id = 205), - [1130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [1132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [1134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, .production_id = 131), - [1136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, .production_id = 131), - [1138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [1140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(653), - [1143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(272), - [1146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), - [1148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(271), - [1151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(269), - [1154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(2613), - [1157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(247), - [1160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(656), - [1163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(1902), - [1166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(657), - [1169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(649), - [1172] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [1174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(653), - [1177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(627), - [1180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(642), - [1183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1425), - [1186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(839), - [1189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1780), - [1192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), - [1194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1694), - [1197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1644), - [1200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1700), - [1203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1956), - [1206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1893), - [1209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(659), - [1212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(630), - [1215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1970), - [1218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1445), - [1221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1765), - [1224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1972), - [1227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1979), - [1230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1980), - [1233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1867), - [1236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1699), - [1239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1305), - [1242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2479), - [1245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1642), - [1248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(680), - [1251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2106), - [1254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(894), - [1257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1425), - [1260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2668), - [1263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1475), - [1266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2668), - [1269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(828), - [1272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [1274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [1276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [1278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2504), - [1280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), - [1282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), - [1284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [1286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), - [1288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), - [1290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [1292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [1294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [1296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [1298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [1300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), - [1302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [1304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), - [1308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [1310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2613), - [1312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), - [1314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [1316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [1318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), - [1320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), - [1322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [1324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [1326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), - [1332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), - [1334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), - [1336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), - [1338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(653), - [1341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(552), - [1344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), - [1346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(551), - [1349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(550), - [1352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(2656), - [1355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(263), - [1358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(656), - [1361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(1902), - [1364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(657), - [1367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(649), - [1370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(653), - [1373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(263), - [1376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(655), - [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), - [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), - [1383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), - [1385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(668), - [1388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(543), - [1391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), - [1393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(538), - [1396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(558), - [1399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(268), - [1402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(268), - [1405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(662), - [1408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(1940), - [1411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(675), - [1414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(671), - [1417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(668), - [1420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(663), - [1423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [1425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), - [1427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), - [1429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), - [1431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 218), - [1433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 218), - [1435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 8, .production_id = 311), - [1437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 8, .production_id = 311), - [1439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 276), - [1441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 276), - [1443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 280), - [1445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 280), - [1447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 228), - [1449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 228), - [1451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 275), - [1453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 275), - [1455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 4, .production_id = 64), - [1457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 4, .production_id = 64), - [1459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 4, .production_id = 65), - [1461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 4, .production_id = 65), - [1463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 82), - [1465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 82), - [1467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 7, .production_id = 165), - [1469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 7, .production_id = 165), - [1471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 274), - [1473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 274), - [1475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 273), - [1477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 273), - [1479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 224), - [1481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 224), - [1483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 272), - [1485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 272), - [1487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 3, .production_id = 23), - [1489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 3, .production_id = 23), - [1491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 271), - [1493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 271), - [1495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 284), - [1497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 284), - [1499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 283), - [1501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 283), - [1503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 270), - [1505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 270), - [1507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 216), - [1509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 216), - [1511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 269), - [1513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 269), - [1515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 268), - [1517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 268), - [1519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 267), - [1521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 267), - [1523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 266), - [1525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 266), - [1527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 5, .production_id = 264), - [1529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 5, .production_id = 264), - [1531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, .production_id = 244), - [1533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, .production_id = 244), - [1535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 282), - [1537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 282), - [1539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, .production_id = 262), - [1541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, .production_id = 262), - [1543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, .production_id = 279), - [1545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, .production_id = 279), - [1547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, .production_id = 281), - [1549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, .production_id = 281), - [1551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, .production_id = 261), - [1553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, .production_id = 261), - [1555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, .production_id = 260), - [1557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, .production_id = 260), - [1559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, .production_id = 259), - [1561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, .production_id = 259), - [1563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 257), - [1565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 257), - [1567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 196), - [1569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 196), - [1571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 256), - [1573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 256), - [1575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 194), - [1577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 194), - [1579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 7, .production_id = 285), - [1581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 7, .production_id = 285), - [1583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 251), - [1585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 251), - [1587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 182), - [1589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 182), - [1591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 250), - [1593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 250), - [1595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 278), - [1597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 278), - [1599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 249), - [1601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 249), - [1603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 6, .production_id = 292), - [1605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 6, .production_id = 292), - [1607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 286), - [1609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 286), - [1611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 287), - [1613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 287), - [1615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 238), - [1617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 238), - [1619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 5, .production_id = 245), - [1621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 5, .production_id = 245), - [1623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 7, .production_id = 244), - [1625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 7, .production_id = 244), - [1627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, .production_id = 10), - [1629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, .production_id = 10), - [1631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 288), - [1633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 288), - [1635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 83), - [1637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 83), - [1639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 313), - [1641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 313), - [1643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, .production_id = 59), - [1645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, .production_id = 59), - [1647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 31), - [1649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 31), - [1651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 84), - [1653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 84), - [1655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 4, .production_id = 69), - [1657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 4, .production_id = 69), - [1659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 249), - [1661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 249), - [1663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 293), - [1665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 293), - [1667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, .production_id = 295), - [1669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, .production_id = 295), - [1671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 239), - [1673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 239), - [1675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 238), - [1677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 238), - [1679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 237), - [1681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 237), - [1683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 236), - [1685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 236), - [1687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 235), - [1689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 235), - [1691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 6, .production_id = 227), - [1693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 6, .production_id = 227), - [1695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, .production_id = 234), - [1697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, .production_id = 234), - [1699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 233), - [1701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 233), - [1703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 227), - [1705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 227), - [1707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 232), - [1709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 232), - [1711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 227), - [1713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 227), - [1715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 165), - [1717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 165), - [1719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 105), - [1721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 105), - [1723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, .production_id = 296), - [1725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, .production_id = 296), - [1727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 6, .production_id = 231), - [1729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 6, .production_id = 231), - [1731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 230), - [1733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 230), - [1735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 166), - [1737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 166), - [1739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 229), - [1741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 229), - [1743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 228), - [1745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 228), - [1747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 6, .production_id = 227), - [1749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 6, .production_id = 227), - [1751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, .production_id = 3), - [1753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, .production_id = 3), - [1755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 6, .production_id = 208), - [1757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 6, .production_id = 208), - [1759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 226), - [1761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 226), - [1763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 162), - [1765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 162), - [1767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 225), - [1769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 225), - [1771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, .production_id = 31), - [1773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, .production_id = 31), - [1775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 224), - [1777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 224), - [1779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, .production_id = 32), - [1781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, .production_id = 32), - [1783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 6, .production_id = 223), - [1785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 6, .production_id = 223), - [1787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 222), - [1789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 222), - [1791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 221), - [1793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 221), - [1795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 220), - [1797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 220), - [1799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 219), - [1801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 219), - [1803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 218), - [1805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 218), - [1807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 217), - [1809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 217), - [1811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 216), - [1813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 216), - [1815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 215), - [1817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 215), - [1819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 153), - [1821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 153), - [1823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 3, .production_id = 24), - [1825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 3, .production_id = 24), - [1827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, .production_id = 214), - [1829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, .production_id = 214), - [1831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, .production_id = 297), - [1833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, .production_id = 297), - [1835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 213), - [1837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 213), - [1839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, .production_id = 298), - [1841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, .production_id = 298), - [1843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 6, .production_id = 300), - [1845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 6, .production_id = 300), - [1847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, .production_id = 10), - [1849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, .production_id = 10), - [1851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, .production_id = 36), - [1853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, .production_id = 36), - [1855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 63), - [1857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 63), - [1859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 4, .production_id = 211), - [1861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 4, .production_id = 211), - [1863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 266), - [1865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 266), - [1867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 6, .production_id = 208), - [1869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 6, .production_id = 208), - [1871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 301), - [1873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 301), - [1875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, .production_id = 11), - [1877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, .production_id = 11), - [1879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 268), - [1881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 268), - [1883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 302), - [1885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 302), - [1887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, .production_id = 23), - [1889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, .production_id = 23), - [1891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 204), - [1893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 204), - [1895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 203), - [1897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 203), - [1899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 303), - [1901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 303), - [1903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 202), - [1905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 202), - [1907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 3, .production_id = 23), - [1909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 3, .production_id = 23), - [1911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 201), - [1913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 201), - [1915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 141), - [1917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 141), - [1919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 200), - [1921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 200), - [1923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 3, .production_id = 11), - [1925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 3, .production_id = 11), - [1927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 138), - [1929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 138), - [1931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 197), - [1933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 197), - [1935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 196), - [1937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 196), - [1939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 3, .production_id = 23), - [1941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 3, .production_id = 23), - [1943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 195), - [1945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 195), - [1947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 194), - [1949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 194), - [1951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 304), - [1953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 304), - [1955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 183), - [1957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 183), - [1959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 182), - [1961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 182), - [1963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 181), - [1965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 181), - [1967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 121), - [1969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 121), - [1971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 274), - [1973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 274), - [1975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 305), - [1977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 305), - [1979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 8, .production_id = 298), - [1981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 8, .production_id = 298), - [1983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 306), - [1985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 306), - [1987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 307), - [1989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 307), - [1991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 4, .production_id = 177), - [1993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 4, .production_id = 177), - [1995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, .production_id = 10), - [1997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, .production_id = 10), - [1999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 63), - [2001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 63), - [2003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 62), - [2005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 62), - [2007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2), - [2009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2), - [2011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3, .production_id = 38), - [2013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 3, .production_id = 38), - [2015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, .production_id = 59), - [2017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, .production_id = 59), - [2019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 277), - [2021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 277), - [2023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 308), - [2025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 308), - [2027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, .production_id = 309), - [2029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, .production_id = 309), - [2031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, .production_id = 6), - [2033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, .production_id = 6), - [2035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2), - [2037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2), - [2039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, .production_id = 310), - [2041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, .production_id = 310), - [2043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 277), - [2045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 277), - [2047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 286), - [2049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 286), - [2051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 5, .production_id = 171), - [2053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 5, .production_id = 171), - [2055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 170), - [2057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 170), - [2059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 165), - [2061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 165), - [2063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 164), - [2065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 164), - [2067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 165), - [2069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 165), - [2071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 169), - [2073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 169), - [2075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 164), - [2077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 164), - [2079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 165), - [2081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 165), - [2083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 168), - [2085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 168), - [2087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 164), - [2089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 164), - [2091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 105), - [2093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 105), - [2095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 167), - [2097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 167), - [2099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 312), - [2101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 312), - [2103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 166), - [2105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 166), - [2107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 165), - [2109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 165), - [2111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 164), - [2113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 164), - [2115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 163), - [2117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 163), - [2119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 162), - [2121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 162), - [2123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inner_attribute_item, 5), - [2125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inner_attribute_item, 5), - [2127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), - [2129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), - [2131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 158), - [2133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 158), - [2135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 157), - [2137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 157), - [2139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 156), - [2141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 156), - [2143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 155), - [2145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 155), - [2147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 77), - [2149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 77), - [2151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 154), - [2153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 154), - [2155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 153), - [2157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 153), - [2159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 119), - [2161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 119), - [2163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, .production_id = 152), - [2165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, .production_id = 152), - [2167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 10, .production_id = 325), - [2169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 10, .production_id = 325), - [2171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 5, .production_id = 151), - [2173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 5, .production_id = 151), - [2175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 150), - [2177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 150), - [2179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 119), - [2181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 119), - [2183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 149), - [2185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 149), - [2187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 119), - [2189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 119), - [2191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 63), - [2193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 63), - [2195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 23), - [2197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 23), - [2199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3, .production_id = 148), - [2201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3, .production_id = 148), - [2203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 314), - [2205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 314), - [2207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 5, .production_id = 115), - [2209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 5, .production_id = 115), - [2211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1425), - [2214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1616), - [2217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(594), - [2220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(595), - [2223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2504), - [2226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1461), - [2229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2768), - [2232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(609), - [2235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(680), - [2238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2113), - [2241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(616), - [2244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(615), - [2247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1577), - [2250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2396), - [2253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1513), - [2256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1900), - [2259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1482), - [2262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1430), - [2265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1425), - [2268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2159), - [2271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2159), - [2274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1429), - [2277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 23), - [2279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 23), - [2281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 9, .production_id = 315), - [2283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 9, .production_id = 315), - [2285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 9, .production_id = 316), - [2287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 9, .production_id = 316), - [2289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 145), - [2291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 145), - [2293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, .production_id = 46), - [2295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, .production_id = 46), - [2297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, .production_id = 47), - [2299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, .production_id = 47), - [2301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 131), - [2303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 131), - [2305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 303), - [2307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 303), - [2309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 144), - [2311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 144), - [2313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 317), - [2315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 317), - [2317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 142), - [2319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 142), - [2321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 141), - [2323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 141), - [2325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 139), - [2327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 139), - [2329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 138), - [2331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 138), - [2333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 136), - [2335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 136), - [2337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 82), - [2339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 82), - [2341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 306), - [2343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 306), - [2345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 318), - [2347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 318), - [2349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 9, .production_id = 319), - [2351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 9, .production_id = 319), - [2353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 320), - [2355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 320), - [2357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 123), - [2359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 123), - [2361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 64), - [2363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 64), - [2365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 122), - [2367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 122), - [2369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 121), - [2371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 121), - [2373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 321), - [2375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 321), - [2377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 313), - [2379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 313), - [2381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 322), - [2383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 322), - [2385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 62), - [2387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 62), - [2389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 119), - [2391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 119), - [2393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 10, .production_id = 323), - [2395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 10, .production_id = 323), - [2397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 3, .production_id = 117), - [2399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 3, .production_id = 117), - [2401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 10, .production_id = 324), - [2403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 10, .production_id = 324), - [2405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 10, .production_id = 320), - [2407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 10, .production_id = 320), - [2409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1), - [2411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1), - [2413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 5, .production_id = 115), - [2415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 5, .production_id = 115), - [2417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 88), - [2419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 88), - [2421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 63), - [2423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 63), - [2425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, .production_id = 10), - [2427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, .production_id = 10), - [2429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 62), - [2431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 62), - [2433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 89), - [2435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 89), - [2437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 63), - [2439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 63), - [2441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, .production_id = 90), - [2443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, .production_id = 90), - [2445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, .production_id = 59), - [2447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, .production_id = 59), - [2449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, .production_id = 88), - [2451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, .production_id = 88), - [2453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 62), - [2455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 62), - [2457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 63), - [2459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 63), - [2461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 77), - [2463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 77), - [2465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 91), - [2467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 91), - [2469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, .production_id = 59), - [2471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, .production_id = 59), - [2473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 2), - [2475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 2), - [2477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4, .production_id = 109), - [2479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 4, .production_id = 109), - [2481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 105), - [2483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 105), - [2485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 105), - [2487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 105), - [2489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 105), - [2491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 105), - [2493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, .production_id = 10), - [2495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, .production_id = 10), - [2497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 108), - [2499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 108), - [2501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, .production_id = 107), - [2503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, .production_id = 107), - [2505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, .production_id = 106), - [2507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, .production_id = 106), - [2509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 105), - [2511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 105), - [2513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 92), - [2515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 92), - [2517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_item, 4, .production_id = 99), - [2519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_item, 4, .production_id = 99), - [2521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 4, .production_id = 100), - [2523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 4, .production_id = 100), - [2525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3, .production_id = 104), - [2527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3, .production_id = 104), - [2529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), - [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [2541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), - [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), - [2547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), - [2549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), - [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [2559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), - [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [2565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), - [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [2571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), - [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [2575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), - [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [2579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), - [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [2583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), - [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [2587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), - [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [2599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2656), - [2601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), - [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [2609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), - [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [2613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), - [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [2617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), - [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [2625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), - [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [2631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), - [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [2635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), - [2637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1, .production_id = 2), - [2639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1, .production_id = 2), - [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), - [2643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), - [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), - [2649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), - [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [2659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), - [2661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), - [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [2665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), - [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), - [2671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_repetition_repeat1, 2), SHIFT_REPEAT(653), - [2674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_repetition_repeat1, 2), SHIFT_REPEAT(552), - [2677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_repetition_repeat1, 2), - [2679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_repetition_repeat1, 2), SHIFT_REPEAT(551), - [2682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_repetition_repeat1, 2), SHIFT_REPEAT(550), - [2685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_repetition_repeat1, 2), SHIFT_REPEAT(2656), - [2688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_repetition_repeat1, 2), SHIFT_REPEAT(570), - [2691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_repetition_repeat1, 2), SHIFT_REPEAT(656), - [2694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_repetition_repeat1, 2), SHIFT_REPEAT(1902), - [2697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_repetition_repeat1, 2), SHIFT_REPEAT(657), - [2700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_repetition_repeat1, 2), SHIFT_REPEAT(649), - [2703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_repetition_repeat1, 2), SHIFT_REPEAT(653), - [2706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_repetition_repeat1, 2), SHIFT_REPEAT(570), - [2709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_repetition_repeat1, 2), SHIFT_REPEAT(642), - [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [2714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), - [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), - [2718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), - [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [2724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), - [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [2728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), - [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [2734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), - [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), - [2740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), - [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), - [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), - [2746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), - [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), - [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), - [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), - [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), - [2762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), - [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [2766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), - [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), - [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), - [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), - [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), - [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), - [2782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), - [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), - [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [2790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), + [1028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1942), + [1030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), + [1032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), + [1034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1896), + [1036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier, 1), + [1038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier, 1), + [1040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1884), + [1042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), + [1044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 3, .production_id = 29), + [1046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 3, .production_id = 29), + [1048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [1050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [1052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [1054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), + [1056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2545), + [1058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [1060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), + [1062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [1064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), + [1066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2652), + [1068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [1070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [1072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [1074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [1076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [1078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2047), + [1080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(641), + [1083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(263), + [1086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), + [1088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(257), + [1091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(261), + [1094] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(2754), + [1097] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(231), + [1100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(652), + [1103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(1936), + [1106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(635), + [1109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(654), + [1112] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [1114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(641), + [1117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(608), + [1120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(655), + [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [1129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), + [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), + [1133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2019), + [1135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), + [1137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), + [1139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), + [1141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), + [1143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), + [1145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1959), + [1147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), + [1149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), + [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1826), + [1153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1696), + [1155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), + [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), + [1159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), + [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), + [1163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2698), + [1165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), + [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), + [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [1173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, .production_id = 136), + [1175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, .production_id = 136), + [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [1179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1429), + [1182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1031), + [1185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1835), + [1188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), + [1190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1681), + [1193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1651), + [1196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1698), + [1199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2019), + [1202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1927), + [1205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(661), + [1208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(630), + [1211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2017), + [1214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1445), + [1217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1801), + [1220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1959), + [1223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2015), + [1226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2014), + [1229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1826), + [1232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1696), + [1235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1306), + [1238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2479), + [1241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1632), + [1244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(683), + [1247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2141), + [1250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1045), + [1253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1429), + [1256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2698), + [1259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1485), + [1262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2698), + [1265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(837), + [1268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [1270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, .production_id = 211), + [1272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, .production_id = 211), + [1274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [1276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [1278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [1280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2501), + [1282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), + [1284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [1286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [1288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2199), + [1290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), + [1292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [1294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [1296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [1298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [1300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [1302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), + [1304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [1308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), + [1310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [1312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2754), + [1314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), + [1316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), + [1320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), + [1322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), + [1324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [1326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [1332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), + [1334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [1336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(641), + [1339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(573), + [1342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), + [1344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(574), + [1347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(575), + [1350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(2641), + [1353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(259), + [1356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(652), + [1359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(1936), + [1362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(635), + [1365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(654), + [1368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(641), + [1371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(259), + [1374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(642), + [1377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), + [1379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), + [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), + [1383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), + [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), + [1387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), + [1389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), + [1391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(665), + [1394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(580), + [1397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), + [1399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(579), + [1402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(577), + [1405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(271), + [1408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(271), + [1411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(682), + [1414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(1918), + [1417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(680), + [1420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(671), + [1423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(665), + [1426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(662), + [1429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), + [1431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), + [1433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 233), + [1435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 233), + [1437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 6, .production_id = 233), + [1439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 6, .production_id = 233), + [1441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 323), + [1443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 323), + [1445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 312), + [1447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 312), + [1449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 324), + [1451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 324), + [1453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 189), + [1455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 189), + [1457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 188), + [1459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 188), + [1461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 187), + [1463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 187), + [1465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 126), + [1467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 126), + [1469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2), + [1471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2), + [1473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 201), + [1475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 201), + [1477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 309), + [1479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 309), + [1481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 202), + [1483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 202), + [1485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 203), + [1487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 203), + [1489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 3, .production_id = 24), + [1491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 3, .production_id = 24), + [1493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 143), + [1495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 143), + [1497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 206), + [1499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 206), + [1501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 146), + [1503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 146), + [1505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 207), + [1507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 207), + [1509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 9, .production_id = 322), + [1511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 9, .production_id = 322), + [1513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 208), + [1515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 208), + [1517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 209), + [1519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 209), + [1521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 210), + [1523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 210), + [1525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 4, .production_id = 183), + [1527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 4, .production_id = 183), + [1529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 6, .production_id = 214), + [1531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 6, .production_id = 214), + [1533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, .production_id = 10), + [1535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, .production_id = 10), + [1537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 9, .production_id = 321), + [1539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 9, .production_id = 321), + [1541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 4, .production_id = 217), + [1543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 4, .production_id = 217), + [1545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, .production_id = 60), + [1547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, .production_id = 60), + [1549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 66), + [1551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 66), + [1553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, .production_id = 3), + [1555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, .production_id = 3), + [1557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 219), + [1559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 219), + [1561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, .production_id = 220), + [1563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, .production_id = 220), + [1565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 158), + [1567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 158), + [1569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 221), + [1571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 221), + [1573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 326), + [1575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 326), + [1577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 327), + [1579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 327), + [1581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 319), + [1583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 319), + [1585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 222), + [1587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 222), + [1589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 223), + [1591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 223), + [1593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 224), + [1595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 224), + [1597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 225), + [1599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 225), + [1601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 226), + [1603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 226), + [1605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 227), + [1607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 227), + [1609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 228), + [1611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 228), + [1613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 5, .production_id = 176), + [1615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 5, .production_id = 176), + [1617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 6, .production_id = 229), + [1619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 6, .production_id = 229), + [1621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 230), + [1623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 230), + [1625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 175), + [1627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 175), + [1629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 170), + [1631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 170), + [1633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 328), + [1635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 328), + [1637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 10, .production_id = 329), + [1639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 10, .production_id = 329), + [1641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 231), + [1643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 231), + [1645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 169), + [1647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 169), + [1649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 10, .production_id = 330), + [1651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 10, .production_id = 330), + [1653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 170), + [1655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 170), + [1657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 167), + [1659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 167), + [1661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 174), + [1663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 174), + [1665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 169), + [1667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 169), + [1669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 170), + [1671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 170), + [1673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 173), + [1675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 173), + [1677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 169), + [1679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 169), + [1681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 232), + [1683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 232), + [1685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 6, .production_id = 214), + [1687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 6, .production_id = 214), + [1689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 108), + [1691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 108), + [1693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, .production_id = 6), + [1695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, .production_id = 6), + [1697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 172), + [1699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 172), + [1701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 10, .production_id = 326), + [1703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 10, .production_id = 326), + [1705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 171), + [1707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 171), + [1709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 170), + [1711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 170), + [1713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 169), + [1715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 169), + [1717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 168), + [1719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 168), + [1721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 167), + [1723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 167), + [1725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inner_attribute_item, 5), + [1727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inner_attribute_item, 5), + [1729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 163), + [1731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 163), + [1733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 162), + [1735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 162), + [1737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 161), + [1739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 161), + [1741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 160), + [1743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 160), + [1745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 80), + [1747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 80), + [1749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 159), + [1751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 159), + [1753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 158), + [1755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 158), + [1757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 124), + [1759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 124), + [1761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, .production_id = 32), + [1763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, .production_id = 32), + [1765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, .production_id = 157), + [1767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, .production_id = 157), + [1769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, .production_id = 33), + [1771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, .production_id = 33), + [1773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 5, .production_id = 156), + [1775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 5, .production_id = 156), + [1777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 243), + [1779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 243), + [1781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 155), + [1783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 155), + [1785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 124), + [1787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 124), + [1789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 154), + [1791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 154), + [1793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 124), + [1795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 124), + [1797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 6, .production_id = 233), + [1799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 6, .production_id = 233), + [1801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 66), + [1803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 66), + [1805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 24), + [1807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 24), + [1809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 234), + [1811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 234), + [1813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 3, .production_id = 25), + [1815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 3, .production_id = 25), + [1817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3, .production_id = 153), + [1819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3, .production_id = 153), + [1821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 235), + [1823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 235), + [1825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 320), + [1827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 320), + [1829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 171), + [1831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 171), + [1833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 236), + [1835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 236), + [1837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, .production_id = 10), + [1839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, .production_id = 10), + [1841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, .production_id = 37), + [1843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, .production_id = 37), + [1845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 5, .production_id = 120), + [1847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 5, .production_id = 120), + [1849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 6, .production_id = 237), + [1851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 6, .production_id = 237), + [1853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 108), + [1855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 108), + [1857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1429), + [1860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1615), + [1863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(592), + [1866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(593), + [1869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2501), + [1872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1470), + [1875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2713), + [1878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(622), + [1881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(683), + [1884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2062), + [1887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(606), + [1890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(625), + [1893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1620), + [1896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2487), + [1899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1521), + [1902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1915), + [1905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1474), + [1908] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1434), + [1911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1429), + [1914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2199), + [1917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2199), + [1920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1433), + [1923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 10, .production_id = 331), + [1925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 10, .production_id = 331), + [1927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, .production_id = 11), + [1929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, .production_id = 11), + [1931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 170), + [1933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 170), + [1935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 233), + [1937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 233), + [1939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, .production_id = 24), + [1941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, .production_id = 24), + [1943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 150), + [1945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 150), + [1947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 136), + [1949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 136), + [1951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 238), + [1953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 238), + [1955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 149), + [1957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 149), + [1959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 3, .production_id = 24), + [1961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 3, .production_id = 24), + [1963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 147), + [1965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 147), + [1967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 146), + [1969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 146), + [1971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 144), + [1973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 144), + [1975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 3, .production_id = 11), + [1977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 3, .production_id = 11), + [1979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 143), + [1981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 143), + [1983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 141), + [1985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 141), + [1987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 85), + [1989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 85), + [1991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 3, .production_id = 24), + [1993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 3, .production_id = 24), + [1995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, .production_id = 316), + [1997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, .production_id = 316), + [1999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 239), + [2001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 239), + [2003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, .production_id = 240), + [2005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, .production_id = 240), + [2007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 200), + [2009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 200), + [2011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 241), + [2013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 241), + [2015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 242), + [2017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 242), + [2019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 128), + [2021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 128), + [2023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 67), + [2025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 67), + [2027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 127), + [2029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 127), + [2031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 126), + [2033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 126), + [2035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, .production_id = 315), + [2037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, .production_id = 315), + [2039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 244), + [2041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 244), + [2043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 245), + [2045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 245), + [2047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 319), + [2049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 319), + [2051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 9, .production_id = 325), + [2053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 9, .production_id = 325), + [2055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 124), + [2057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 124), + [2059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, .production_id = 60), + [2061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, .production_id = 60), + [2063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3, .production_id = 39), + [2065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 3, .production_id = 39), + [2067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 3, .production_id = 122), + [2069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 3, .production_id = 122), + [2071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, .production_id = 10), + [2073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, .production_id = 10), + [2075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 7, .production_id = 250), + [2077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 7, .production_id = 250), + [2079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 5, .production_id = 251), + [2081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 5, .production_id = 251), + [2083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 255), + [2085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 255), + [2087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 5, .production_id = 120), + [2089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 5, .production_id = 120), + [2091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 256), + [2093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 256), + [2095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 188), + [2097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 188), + [2099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 257), + [2101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 257), + [2103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 200), + [2105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 200), + [2107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 262), + [2109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 262), + [2111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, .production_id = 10), + [2113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, .production_id = 10), + [2115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 202), + [2117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 202), + [2119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 263), + [2121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 263), + [2123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, .production_id = 60), + [2125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, .production_id = 60), + [2127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, .production_id = 265), + [2129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, .production_id = 265), + [2131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, .production_id = 266), + [2133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, .production_id = 266), + [2135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, .production_id = 267), + [2137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, .production_id = 267), + [2139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, .production_id = 268), + [2141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, .production_id = 268), + [2143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, .production_id = 250), + [2145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, .production_id = 250), + [2147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 292), + [2149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 292), + [2151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 5, .production_id = 270), + [2153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 5, .production_id = 270), + [2155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4, .production_id = 112), + [2157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 4, .production_id = 112), + [2159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 108), + [2161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 108), + [2163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 272), + [2165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 272), + [2167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 108), + [2169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 108), + [2171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 273), + [2173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 273), + [2175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 274), + [2177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 274), + [2179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), + [2181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), + [2183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 275), + [2185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 275), + [2187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 108), + [2189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 108), + [2191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 111), + [2193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 111), + [2195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, .production_id = 110), + [2197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, .production_id = 110), + [2199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, .production_id = 109), + [2201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, .production_id = 109), + [2203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 108), + [2205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 108), + [2207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 8, .production_id = 317), + [2209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 8, .production_id = 317), + [2211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 222), + [2213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 222), + [2215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3, .production_id = 107), + [2217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3, .production_id = 107), + [2219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 318), + [2221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 318), + [2223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 276), + [2225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 276), + [2227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 4, .production_id = 103), + [2229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 4, .production_id = 103), + [2231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 224), + [2233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 224), + [2235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_item, 4, .production_id = 102), + [2237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_item, 4, .production_id = 102), + [2239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 277), + [2241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 277), + [2243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 278), + [2245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 278), + [2247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 230), + [2249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 230), + [2251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 279), + [2253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 279), + [2255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 280), + [2257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 280), + [2259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 95), + [2261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 95), + [2263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 281), + [2265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 281), + [2267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 234), + [2269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 234), + [2271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 94), + [2273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 94), + [2275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 80), + [2277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 80), + [2279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 66), + [2281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 66), + [2283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, .production_id = 47), + [2285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, .production_id = 47), + [2287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, .production_id = 48), + [2289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, .production_id = 48), + [2291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 65), + [2293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 65), + [2295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, .production_id = 91), + [2297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, .production_id = 91), + [2299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, .production_id = 93), + [2301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, .production_id = 93), + [2303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 282), + [2305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 282), + [2307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 283), + [2309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 283), + [2311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 284), + [2313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 284), + [2315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 66), + [2317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 66), + [2319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 92), + [2321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 92), + [2323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 65), + [2325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 65), + [2327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, .production_id = 285), + [2329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, .production_id = 285), + [2331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 66), + [2333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 66), + [2335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 7, .production_id = 170), + [2337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 7, .production_id = 170), + [2339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 91), + [2341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 91), + [2343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 65), + [2345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 65), + [2347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 24), + [2349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 24), + [2351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2), + [2353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2), + [2355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 286), + [2357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 286), + [2359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, .production_id = 287), + [2361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, .production_id = 287), + [2363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 288), + [2365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 288), + [2367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 289), + [2369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 289), + [2371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 290), + [2373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 290), + [2375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 4, .production_id = 72), + [2377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 4, .production_id = 72), + [2379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 87), + [2381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 87), + [2383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 32), + [2385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 32), + [2387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 86), + [2389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 86), + [2391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 85), + [2393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 85), + [2395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 7, .production_id = 291), + [2397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 7, .production_id = 291), + [2399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 292), + [2401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 292), + [2403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 293), + [2405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 293), + [2407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 244), + [2409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 244), + [2411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 294), + [2413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 294), + [2415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 4, .production_id = 68), + [2417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 4, .production_id = 68), + [2419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 6, .production_id = 298), + [2421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 6, .production_id = 298), + [2423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 4, .production_id = 67), + [2425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 4, .production_id = 67), + [2427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 255), + [2429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 255), + [2431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 299), + [2433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 299), + [2435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, .production_id = 301), + [2437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, .production_id = 301), + [2439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, .production_id = 302), + [2441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, .production_id = 302), + [2443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, .production_id = 303), + [2445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, .production_id = 303), + [2447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, .production_id = 304), + [2449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, .production_id = 304), + [2451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 6, .production_id = 306), + [2453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 6, .production_id = 306), + [2455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 272), + [2457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 272), + [2459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 307), + [2461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 307), + [2463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 274), + [2465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 274), + [2467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 308), + [2469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 308), + [2471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, .production_id = 60), + [2473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, .production_id = 60), + [2475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 66), + [2477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 66), + [2479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 65), + [2481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 65), + [2483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 309), + [2485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 309), + [2487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 310), + [2489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 310), + [2491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 280), + [2493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 280), + [2495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, .production_id = 10), + [2497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, .production_id = 10), + [2499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 311), + [2501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 311), + [2503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 2), + [2505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 2), + [2507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 8, .production_id = 304), + [2509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 8, .production_id = 304), + [2511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 312), + [2513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 312), + [2515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 313), + [2517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 313), + [2519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 283), + [2521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 283), + [2523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1), + [2525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1), + [2527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 314), + [2529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 314), + [2531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), + [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [2543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), + [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [2549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), + [2551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), + [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [2561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), + [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [2567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), + [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), + [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [2577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2641), + [2579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), + [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [2587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), + [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [2591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), + [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), + [2595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), + [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [2599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [2603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), + [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [2607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), + [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [2611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_repetition_repeat1, 2), SHIFT_REPEAT(641), + [2614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_repetition_repeat1, 2), SHIFT_REPEAT(573), + [2617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_repetition_repeat1, 2), + [2619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_repetition_repeat1, 2), SHIFT_REPEAT(574), + [2622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_repetition_repeat1, 2), SHIFT_REPEAT(575), + [2625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_repetition_repeat1, 2), SHIFT_REPEAT(2641), + [2628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_repetition_repeat1, 2), SHIFT_REPEAT(546), + [2631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_repetition_repeat1, 2), SHIFT_REPEAT(652), + [2634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_repetition_repeat1, 2), SHIFT_REPEAT(1936), + [2637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_repetition_repeat1, 2), SHIFT_REPEAT(635), + [2640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_repetition_repeat1, 2), SHIFT_REPEAT(654), + [2643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_repetition_repeat1, 2), SHIFT_REPEAT(641), + [2646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_repetition_repeat1, 2), SHIFT_REPEAT(546), + [2649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_repetition_repeat1, 2), SHIFT_REPEAT(655), + [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [2658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), + [2660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1, .production_id = 2), + [2662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1, .production_id = 2), + [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [2668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), + [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [2672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), + [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), + [2676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), + [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [2682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), + [2684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), + [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [2688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), + [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [2698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), + [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [2702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), + [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [2706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), + [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [2710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), + [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [2714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), + [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [2722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), + [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [2726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), + [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [2730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), + [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), + [2734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), + [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), + [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), + [2742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), + [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), + [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), + [2748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), + [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), + [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), + [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), + [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [2766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), + [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [2770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), + [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), + [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [2780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1652), + [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), + [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [2790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), [2792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), - [2794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), - [2796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1847), - [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [2800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2477), - [2802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__token_pattern, 1), - [2804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__token_pattern, 1), - [2806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), - [2808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), - [2810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fragment_specifier, 1), - [2812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fragment_specifier, 1), - [2814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 4), - [2816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 4), - [2818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 5), - [2820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 5), - [2822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 6), - [2824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 6), - [2826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 6), - [2828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 6), - [2830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 2), - [2832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 2), - [2834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [2836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), - [2838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [2840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), - [2842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2415), - [2844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), - [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [2848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), - [2850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), - [2852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2), - [2854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2), - [2856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 2), - [2858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 2), - [2860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 4), - [2862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 4), - [2864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_binding_pattern, 3, .production_id = 243), - [2866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_binding_pattern, 3, .production_id = 243), - [2868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 5), - [2870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 5), - [2872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 3), - [2874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 3), - [2876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primitive_type, 1), - [2878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primitive_type, 1), - [2880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), - [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), - [2890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), - [2892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2432), - [2894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), - [2896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2538), - [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [2904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), - [2906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), - [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [2910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2669), - [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [2914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 3, .production_id = 116), - [2916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 3, .production_id = 116), - [2918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), - [2920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), - [2922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2275), - [2924] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__literal, 1), REDUCE(sym_identifier, 1), REDUCE(aux_sym_token_tree_repeat1, 1), - [2928] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__literal, 1), REDUCE(sym_identifier, 1), REDUCE(aux_sym_token_tree_repeat1, 1), - [2932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1), - [2934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1), - [2936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1), - [2938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1), + [2794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__token_pattern, 1), + [2796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__token_pattern, 1), + [2798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), + [2800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), + [2802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), + [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [2806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2531), + [2808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), + [2810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), + [2812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1), + [2814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1), + [2816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 4), + [2818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 4), + [2820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 3, .production_id = 121), + [2822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 3, .production_id = 121), + [2824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 6), + [2826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 6), + [2828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 5), + [2830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 5), + [2832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), + [2834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [2836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [2838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [2840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), + [2842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), + [2844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2600), + [2846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), + [2848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2542), + [2850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [2852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [2854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [2856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), + [2858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), + [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [2862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2673), + [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [2866] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__literal, 1), REDUCE(sym_identifier, 1), REDUCE(aux_sym_token_tree_repeat1, 1), + [2870] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__literal, 1), REDUCE(sym_identifier, 1), REDUCE(aux_sym_token_tree_repeat1, 1), + [2874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_binding_pattern, 3, .production_id = 249), + [2876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_binding_pattern, 3, .production_id = 249), + [2878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fragment_specifier, 1), + [2880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fragment_specifier, 1), + [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [2884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), + [2886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2297), + [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), + [2892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2426), + [2894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), + [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [2898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), + [2900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), + [2902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 2), + [2904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 2), + [2906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 6), + [2908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 6), + [2910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 5), + [2912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 5), + [2914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 2), + [2916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 2), + [2918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 4), + [2920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 4), + [2922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1), + [2924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1), + [2926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 3), + [2928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 3), + [2930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primitive_type, 1), + [2932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primitive_type, 1), + [2934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2), + [2936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2), + [2938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), [2940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3, .production_id = 19), [2942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3, .production_id = 19), - [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), - [2948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), - [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [2952] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__literal, 1), REDUCE(sym_identifier, 1), REDUCE(aux_sym_delim_token_tree_repeat1, 1), - [2956] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__literal, 1), REDUCE(sym_identifier, 1), REDUCE(aux_sym_delim_token_tree_repeat1, 1), - [2960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), - [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [2964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), - [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [2974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), - [2976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2208), + [2944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), + [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [2950] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__literal, 1), REDUCE(sym_identifier, 1), REDUCE(aux_sym_delim_token_tree_repeat1, 1), + [2954] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__literal, 1), REDUCE(sym_identifier, 1), REDUCE(aux_sym_delim_token_tree_repeat1, 1), + [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), + [2960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), + [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [2964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), + [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [2970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), + [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [2974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), + [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), [2978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), [2980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), - [2982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT_REPEAT(2768), - [2985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 2), - [2987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 2), - [2989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 4, .production_id = 103), - [2991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 4, .production_id = 103), - [2993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), - [2995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 8), - [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [2999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, .production_id = 8), - [3001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), - [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), - [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [3007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, .production_id = 30), - [3009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, .production_id = 30), - [3011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, .production_id = 30), - [3013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, .production_id = 30), - [3015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 49), - [3017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 49), - [3019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 48), - [3021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 48), - [3023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 4), - [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), - [3029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2653), - [3031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2460), - [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), - [3037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 1), - [3039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 1), - [3041] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_visibility_modifier, 1), REDUCE(aux_sym_declaration_list_repeat1, 1), - [3044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_identifier, 1), REDUCE(aux_sym_declaration_list_repeat1, 1), - [3047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, .production_id = 29), - [3049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, .production_id = 29), - [3051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), - [3053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1), - [3055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 2, .production_id = 11), - [3057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 2, .production_id = 11), - [3059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 2, .production_id = 10), - [3061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, .production_id = 10), - [3063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 45), - [3065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 45), - [3067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 44), - [3069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 44), - [3071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 3), - [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [3077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 22), - [3079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 22), - [3081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 21), - [3083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 21), - [3085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, .production_id = 29), - [3087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, .production_id = 29), - [3089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 2, .production_id = 11), - [3091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 1), - [3093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 1), - [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), - [3097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, .production_id = 1), - [3099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, .production_id = 1), - [3101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 1), - [3103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2027), - [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), - [3107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 22), - [3109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 49), - [3111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 45), - [3113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, .production_id = 79), - [3115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, .production_id = 79), - [3117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5), - [3119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5), - [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), - [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), - [3125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT_REPEAT(2696), - [3128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 25), - [3130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 25), - [3132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 26), - [3134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 26), - [3136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, .production_id = 131), - [3138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, .production_id = 131), - [3140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 5, .production_id = 131), - [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), - [3144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 28), - [3146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 28), - [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), - [3152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3), - [3154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), - [3156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, .production_id = 79), - [3158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, .production_id = 79), - [3160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 33), - [3162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 33), - [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [3166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 34), - [3168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 34), - [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [3172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_function, 3, .production_id = 56), - [3174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, .production_id = 57), - [3176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_function, 3, .production_id = 56), - [3178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 54), - [3180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 54), - [3182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 53), - [3184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 53), - [3186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), - [3188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, .production_id = 58), - [3190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, .production_id = 205), - [3192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, .production_id = 205), - [3194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, .production_id = 205), - [3196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1), - [3198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_visibility_modifier, 1), REDUCE(sym_identifier, 1), - [3201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1), - [3203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2), - [3205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 2), - [3207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, .production_id = 189), - [3209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, .production_id = 189), - [3211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 81), - [3213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 81), - [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [3219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 85), - [3221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 85), - [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [3225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 86), - [3227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 86), - [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [3231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4, .production_id = 180), - [3233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 4, .production_id = 180), - [3235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4, .production_id = 120), - [3237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 4, .production_id = 120), - [3239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), - [3241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2628), - [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), - [3245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), - [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [3249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), - [3251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3, .production_id = 120), - [3253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 3, .production_id = 120), - [3255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3), - [3257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 3), - [3259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 5, .production_id = 180), - [3261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 5, .production_id = 180), - [3263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 5, .production_id = 248), - [3265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 5, .production_id = 248), - [3267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, .production_id = 128), - [3269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, .production_id = 128), - [3271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), - [3273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, .production_id = 254), - [3275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, .production_id = 254), - [3277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, .production_id = 79), - [3279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, .production_id = 79), - [3281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 6, .production_id = 248), - [3283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 6, .production_id = 248), - [3285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 137), - [3287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 137), - [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [3291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4), - [3293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), - [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), - [3297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 143), - [3299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 143), - [3301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bounded_type, 3), - [3303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bounded_type, 3), - [3305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1536), - [3307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), - [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [3311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6, .production_id = 258), - [3313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 6, .production_id = 258), - [3315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2), - [3317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2), - [3319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_type, 1), - [3321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_type, 1), - [3323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 2), - [3325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 2), - [3327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 193), - [3329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 193), - [3331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3, .production_id = 110), - [3333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3, .production_id = 110), - [3335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1540), - [3337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), - [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), - [3341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, .production_id = 192), - [3343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, .production_id = 192), - [3345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 6), - [3347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 6), - [3349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5), - [3351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5), - [3353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 5, .production_id = 161), - [3355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 5, .production_id = 161), - [3357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3, .production_id = 52), - [3359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3, .production_id = 52), - [3361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 2, .production_id = 12), - [3363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 2, .production_id = 12), - [3365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2), - [3367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 2), - [3369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3), - [3371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3), - [3373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, .production_id = 76), - [3375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, .production_id = 76), - [3377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 3, .production_id = 77), - [3379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 3, .production_id = 77), - [3381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 3, .production_id = 77), - [3383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 3, .production_id = 77), - [3385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 5), - [3387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 5), - [3389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 3, .production_id = 3), - [3391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 3, .production_id = 3), - [3393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), - [3395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), - [3397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 7), - [3399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 7), - [3401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 4), - [3403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 4), - [3405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 4, .production_id = 172), - [3407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 4, .production_id = 172), - [3409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 198), - [3411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 198), - [3413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4, .production_id = 111), - [3415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4, .production_id = 111), - [3417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5), - [3419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5), - [3421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, .production_id = 114), - [3423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, .production_id = 114), - [3425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5, .production_id = 242), - [3427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5, .production_id = 242), - [3429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 5, .production_id = 240), - [3431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 5, .production_id = 240), - [3433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, .production_id = 112), - [3435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, .production_id = 112), - [3437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_expression, 2), - [3439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_expression, 2), - [3441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3, .production_id = 37), - [3443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 3, .production_id = 37), - [3445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, .production_id = 176), - [3447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, .production_id = 176), - [3449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 140), - [3451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 140), - [3453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 199), - [3455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 199), - [3457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3), - [3459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3), - [3461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, .production_id = 5), - [3463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, .production_id = 5), - [3465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4, .production_id = 174), - [3467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4, .production_id = 174), - [3469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 4, .production_id = 135), - [3471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 4, .production_id = 135), - [3473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 132), - [3475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 132), - [3477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, .production_id = 17), - [3479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, .production_id = 17), - [3481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4), - [3483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4), - [3485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 2, .production_id = 31), - [3487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 2, .production_id = 31), - [3489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4), - [3491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4), - [3493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 6, .production_id = 289), - [3495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 6, .production_id = 289), - [3497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_cast_expression, 3, .production_id = 51), - [3499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_cast_expression, 3, .production_id = 51), - [3501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6), - [3503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6), - [3505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, .production_id = 13), - [3507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, .production_id = 13), - [3509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 14), - [3511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 14), - [3513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), - [3515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime, 2), - [3517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lifetime, 2), - [3519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 2, .production_id = 3), - [3521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 2, .production_id = 3), - [3523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), - [3525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [3527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_type, 2), - [3529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_type, 2), - [3531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 50), - [3533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [3535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), - [3537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), - [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [3541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 50), - [3543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), - [3545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [3547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), - [3549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), - [3551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1860), - [3553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2, .production_id = 9), - [3555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2, .production_id = 9), - [3557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), - [3559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [3561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [3563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), - [3565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), - [3567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [3569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 3, .production_id = 43), - [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [3573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), - [3575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [3577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_assignment_expr, 3, .production_id = 50), - [3579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_assignment_expr, 3, .production_id = 50), - [3581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 2, .production_id = 9), - [3583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 2, .production_id = 9), - [3585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 2, .production_id = 9), - [3587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 2, .production_id = 9), - [3589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 3, .production_id = 42), - [3591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 3, .production_id = 42), - [3593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 2, .production_id = 16), - [3595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 5), - [3597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 5), - [3599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 52), - [3601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 52), - [3603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 3), - [3605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 3), - [3607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2395), - [3609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), - [3611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2409), - [3613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2597), - [3615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5), - [3617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5), - [3619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [3621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), - [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), - [3625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1919), - [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), - [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), - [3631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), - [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), - [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), - [3637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 4), - [3639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 4), - [3641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, .production_id = 147), - [3643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, .production_id = 147), - [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), - [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), - [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), - [3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), - [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [3661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20), - [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [3665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), - [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), - [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [3681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), - [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [3685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_field_initializer, 2, .production_id = 5), - [3687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, .production_id = 241), - [3689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 3), - [3691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 3, .production_id = 205), - [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [3695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), - [3697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), - [3699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), - [3701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), - [3703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), - [3705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [3707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(28), - [3709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [3713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), - [3715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), - [3717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [3719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), - [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), - [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [3731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, .production_id = 246), - [3733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, .production_id = 247), - [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), - [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), - [3743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 5, .production_id = 291), - [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [3747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, .production_id = 179), - [3749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [3755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, .production_id = 173), - [3757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2), - [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), - [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), - [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), - [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [3781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [3783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, .production_id = 131), - [3785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [3787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), - [3789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [3791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), - [3793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), - [3797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__let_chain, 3), - [3799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [3801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [3803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [3811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1), - [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [3817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [3821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [3823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 159), - [3825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [3829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 160), - [3831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [3833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [3835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [3847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_condition, 4, .production_id = 131), - [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [3851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [3853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [3857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [3859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1714), - [3861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), - [3863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1713), - [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [3867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 5), - [3869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 5), - [3871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2585), - [3873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2591), - [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), - [3877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2539), - [3879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2537), - [3881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), - [3883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 6), - [3885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 6), - [3887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 4), - [3889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 4), - [3891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1), - [3893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [3895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [3897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1), - [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), - [3901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), - [3903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [3905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [3907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [3909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1), REDUCE(sym_identifier, 1), - [3912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1), REDUCE(sym_identifier, 1), - [3915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [3917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), - [3919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), - [3921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), - [3923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), - [3925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), - [3927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), - [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), - [3931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), - [3933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), - [3935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), - [3937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), - [3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), - [3941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), - [3943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), - [3947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), - [3949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), - [3951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), - [3953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), - [3955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), - [3957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [3959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), - [3961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), - [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), - [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), - [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), - [3973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, .production_id = 1), - [3975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, .production_id = 1), - [3977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), - [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), - [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), - [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [3989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 8), REDUCE(sym_pattern, 1), - [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), - [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [3996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), - [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), - [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [4004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [4008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [4010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), - [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), - [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), - [4016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), - [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [4020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [4028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_pattern, 1), - [4030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal_pattern, 1), - [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [4036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [4038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [4040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [4042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [4044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [4050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negative_literal, 2), - [4052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negative_literal, 2), - [4054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_identifier, 1), REDUCE(aux_sym_parameters_repeat1, 2), - [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), - [4061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2393), - [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), - [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), - [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), - [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), - [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), - [4077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_identifier, 1), REDUCE(aux_sym_parameters_repeat1, 3), - [4080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 67), - [4082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 67), - [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), - [4086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 68), - [4088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 68), - [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), - [4094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 70), - [4096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 70), - [4098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 52), - [4100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 52), - [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), - [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), - [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), - [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), - [4118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 44), REDUCE(sym_scoped_type_identifier, 3, .production_id = 45), - [4121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 21), REDUCE(sym_scoped_type_identifier, 3, .production_id = 22), - [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [4126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, .production_id = 10), REDUCE(sym_scoped_type_identifier, 2, .production_id = 11), - [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [4131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2), - [4133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 2), - [4135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), - [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), - [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), - [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), - [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [4145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4, .production_id = 124), - [4147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 4, .production_id = 124), - [4149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 4, .production_id = 124), - [4151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 4, .production_id = 124), - [4153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, .production_id = 125), - [4155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 4, .production_id = 125), - [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [4159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, .production_id = 127), - [4161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 4, .production_id = 127), - [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [4165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, .production_id = 130), - [4167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 4, .production_id = 130), - [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [4185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remaining_field_pattern, 1), - [4187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remaining_field_pattern, 1), - [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), - [4193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5, .production_id = 184), - [4195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 5, .production_id = 184), - [4197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 5, .production_id = 184), - [4199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 5, .production_id = 184), - [4201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, .production_id = 185), - [4203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 5, .production_id = 185), - [4205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, .production_id = 187), - [4207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 5, .production_id = 187), - [4209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, .production_id = 191), - [4211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 5, .production_id = 191), - [4213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 48), REDUCE(sym_scoped_type_identifier, 3, .production_id = 49), - [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [4220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_captured_pattern, 3, .production_id = 74), - [4222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_captured_pattern, 3, .production_id = 74), - [4224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, .production_id = 73), - [4226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 3, .production_id = 73), - [4228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3, .production_id = 52), - [4230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or_pattern, 3, .production_id = 52), - [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), - [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [4236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, .production_id = 71), - [4238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 3, .production_id = 71), - [4240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, .production_id = 71), - [4242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 3, .production_id = 71), - [4244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 3, .production_id = 69), - [4246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_pattern, 3, .production_id = 69), - [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [4250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 3, .production_id = 66), - [4252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 3, .production_id = 66), - [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [4256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, .production_id = 66), - [4258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 3, .production_id = 66), - [4260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_modifiers_repeat1, 1), - [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [4266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mut_pattern, 2, .production_id = 24), - [4268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mut_pattern, 2, .production_id = 24), - [4270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 2, .production_id = 24), - [4272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_pattern, 2, .production_id = 24), - [4274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 2), - [4276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 2), - [4278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, .production_id = 252), - [4280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 6, .production_id = 252), - [4282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_pattern, 2, .production_id = 24), - [4284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ref_pattern, 2, .production_id = 24), - [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [4290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 1), - [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), - [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), - [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), - [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), - [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), - [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), - [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), - [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), - [4322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), - [4324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), - [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), - [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), - [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), - [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), - [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), - [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), - [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [4388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1), REDUCE(sym_pattern, 1, .production_id = 1), - [4391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 2), - [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [4395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2), - [4397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2), SHIFT_REPEAT(623), - [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), - [4402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(257), - [4405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), - [4407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(258), - [4410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(259), - [4413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 3), - [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [4419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_modifiers, 1), - [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), - [4423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 2), - [4425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), SHIFT_REPEAT(1697), - [4428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), - [4430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), SHIFT_REPEAT(1678), - [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), - [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), - [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [4449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, .production_id = 41), - [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [4453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), - [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [4463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, .production_id = 118), - [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), - [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), - [4473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, .production_id = 40), - [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), - [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), - [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), - [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [4489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_removed_trait_bound, 2), - [4491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 1, .production_id = 61), - [4493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [4495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_higher_ranked_trait_bound, 3, .production_id = 82), - [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), - [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), - [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), - [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), - [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), - [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), - [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), - [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), - [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), - [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), - [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [4567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), - [4569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), - [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), - [4573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 1), - [4575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), - [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [4593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2524), - [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), - [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [4609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2447), - [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [4617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), - [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [4659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), - [4661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), - [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [4673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1918), - [4675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), - [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [4707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 2), - [4709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), - [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), - [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [4715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), - [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [4735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1929), - [4737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), - [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), - [4749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 7, .production_id = 299), - [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), - [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), - [4759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 31), - [4761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 77), - [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), - [4767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), - [4769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1887), - [4772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(2154), - [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), - [4783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 209), - [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), - [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [4795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_unit_type, 2), REDUCE(sym_tuple_pattern, 2), - [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [4802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), - [4808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2061), - [4810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 135), - [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), - [4818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 209), - [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [4824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 3), - [4826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), - [4830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1), - [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), - [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), - [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), - [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [4846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), - [4848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 263), - [4850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 77), - [4852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 263), - [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), - [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), - [4858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), - [4860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, .production_id = 1), - [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), - [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [4868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), - [4870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1), REDUCE(sym_pattern, 1), - [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), - [4875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 299), - [4877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), - [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [4881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, .production_id = 31), - [4883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3), - [4885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 135), - [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), - [4893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, .production_id = 79), - [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), - [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [4905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 2), - [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), - [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), - [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), - [4929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), - [4931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), - [4933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 3), - [4935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), - [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), - [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [4943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), - [4945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), SHIFT_REPEAT(1134), - [4948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), - [4950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2), - [4952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2), SHIFT_REPEAT(629), - [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), - [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [4965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2199), - [4967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), - [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), - [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), - [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [4991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2075), - [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), - [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [4999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2180), - [5001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), - [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), - [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [5013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), - [5015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), - [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), - [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [5031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), - [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [5041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 102), - [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [5051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2), - [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [5055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), - [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [5063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 144), - [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [5071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), REDUCE(aux_sym_for_lifetimes_repeat1, 2), - [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), - [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [5078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [5084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 2, .production_id = 37), - [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), - [5094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_content, 1), - [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), - [5098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), - [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [5106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 1), - [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), - [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [5126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 4, .production_id = 135), - [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [5132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 5, .production_id = 294), - [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), - [5144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [5148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [5164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [5168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2), SHIFT_REPEAT(599), - [5171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2), - [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [5177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 265), - [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [5183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 3, .production_id = 77), - [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [5191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 4, .production_id = 255), - [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), - [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [5199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 4, .production_id = 253), - [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), - [5209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 4), - [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [5223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), - [5231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 2), - [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [5235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2), SHIFT_REPEAT(112), - [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [5240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [5244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [5246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [5252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 5), - [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [5258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [5260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), - [5262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 1, .production_id = 72), - [5264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [5266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), - [5268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 212), - [5270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), - [5272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1636), - [5275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 210), - [5277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 210), SHIFT_REPEAT(593), - [5280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 31), - [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [5284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), - [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), - [5294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [5296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), - [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [5310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, .production_id = 78), - [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [5314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, .production_id = 80), - [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), - [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [5324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 4, .production_id = 115), - [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [5328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 3, .production_id = 190), - [5330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), SHIFT_REPEAT(226), - [5333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), - [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), - [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [5343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, .production_id = 188), - [5345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2), - [5347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2), SHIFT_REPEAT(1671), - [5350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, .production_id = 186), - [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [5360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2), - [5362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, .production_id = 87), - [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [5366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), SHIFT_REPEAT(195), - [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), - [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), - [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [5385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, .production_id = 178), - [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), - [5397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2), - [5399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2), SHIFT_REPEAT(1634), - [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [5404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2), SHIFT_REPEAT(2496), - [5407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2), - [5409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_rule, 3, .production_id = 52), - [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), - [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [5415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, .production_id = 13), - [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [5423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, .production_id = 78), - [5425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, .production_id = 96), - [5427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), SHIFT_REPEAT(53), - [5430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), - [5432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), SHIFT_REPEAT(1643), - [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [5439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, .production_id = 80), - [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), - [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), - [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [5477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), - [5479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1299), - [5482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [5484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 4), - [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [5490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), - [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), - [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [5502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [5506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3), - [5508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, .production_id = 95), - [5510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, .production_id = 94), - [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [5518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, .production_id = 1), - [5520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [5524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [5526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [5530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [5532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), - [5534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 2, .production_id = 126), - [5536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [5538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [5540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, .production_id = 93), - [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [5548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [5552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [5556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3), - [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [5560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), - [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [5564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [5570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [5572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [5574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), - [5576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [5578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), SHIFT_REPEAT(741), - [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [5585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 1), - [5587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [5589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [5595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [5597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [5599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [5601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, .production_id = 134), - [5603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), - [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [5607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [5609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, .production_id = 133), - [5611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [5613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [5615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(1629), - [5618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [5620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [5622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), - [5624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [5626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [5628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [5630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [5632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [5634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [5636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [5638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), - [5640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [5642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), - [5644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), - [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), - [5648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), - [5650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [5652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [5654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), - [5656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1, .production_id = 7), - [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [5660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), - [5666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [5668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), - [5670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [5674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 3), - [5676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [5680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), - [5682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 3), - [5684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [5686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, .production_id = 101), - [5688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [5692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [5696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1), - [5698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [5700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [5702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [5704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [5706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [5708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [5710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [5712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), - [5714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), - [5718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), - [5720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [5722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), - [5724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), - [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [5734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), - [5738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), - [5740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), - [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [5746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [5748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [5750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [5752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [5754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), - [5756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [5758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [5760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [5762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [5764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 3, .production_id = 206), - [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [5768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [5770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [5772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [5774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [5776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), - [5778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [5780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [5782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [5784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), - [5786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [5788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [5790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), - [5792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [5794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), - [5796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [5798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [5800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), - [5802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [5804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), - [5806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), - [5808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [5810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [5812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [5814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), - [5816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [5818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, .production_id = 98), - [5820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), - [5822] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [5824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, .production_id = 97), - [5826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [5828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [5830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [5832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [5834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), - [5836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [5838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [5840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [5842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [5844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_type, 3), - [5846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [5848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [5850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), - [5852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [5854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [5856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [5858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [5860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [5862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), - [5864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [5866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [5868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), - [5870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [5872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [5874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [5876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [5878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), - [5880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [5882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [5884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [5886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [5888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), - [5892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [5894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [5896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [5898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [5900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [5902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [5904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [5906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [5908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [5910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [5912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [5914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), - [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [5918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [5920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), - [5922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [5924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [5926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [5928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [5934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), - [5936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [5938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [5940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [5942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [5944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [5946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), - [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), - [5950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [5954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [5956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [5958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [5960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), - [5962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), - [5964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [5966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [5968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [5970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [5972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [5974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [5976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), - [5978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), - [5980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [5982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [5984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [5986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [5988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [5990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), + [2982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT_REPEAT(2713), + [2985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2212), + [2987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 4, .production_id = 106), + [2989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 4, .production_id = 106), + [2991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 2), + [2993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 2), + [2995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), + [2997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 8), + [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [3001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, .production_id = 8), + [3003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), + [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), + [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [3009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, .production_id = 31), + [3011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, .production_id = 31), + [3013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, .production_id = 31), + [3015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, .production_id = 31), + [3017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 46), + [3019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 46), + [3021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 45), + [3023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 45), + [3025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), + [3027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1), + [3029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 23), + [3031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 23), + [3033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 22), + [3035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 22), + [3037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 4), + [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), + [3043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2619), + [3045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2464), + [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), + [3051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 3), + [3053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 2, .production_id = 11), + [3055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 2, .production_id = 11), + [3057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 2, .production_id = 10), + [3059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, .production_id = 10), + [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [3065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 50), + [3067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 50), + [3069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 49), + [3071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 49), + [3073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, .production_id = 30), + [3075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, .production_id = 30), + [3077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, .production_id = 30), + [3079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, .production_id = 30), + [3081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 1), + [3083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 1), + [3085] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_visibility_modifier, 1), REDUCE(aux_sym_declaration_list_repeat1, 1), + [3088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_identifier, 1), REDUCE(aux_sym_declaration_list_repeat1, 1), + [3091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 23), + [3093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 46), + [3095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, .production_id = 1), + [3097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, .production_id = 1), + [3099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 1), + [3101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), + [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), + [3105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 1), + [3107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 1), + [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), + [3111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 2, .production_id = 11), + [3113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 50), + [3115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), + [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [3119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), + [3121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, .production_id = 211), + [3123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, .production_id = 211), + [3125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, .production_id = 211), + [3127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 84), + [3129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 84), + [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [3133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT_REPEAT(2700), + [3136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_function, 3, .production_id = 57), + [3138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, .production_id = 59), + [3140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_function, 3, .production_id = 57), + [3142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 88), + [3144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 88), + [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [3148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 89), + [3150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 89), + [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [3154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 26), + [3156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 26), + [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), + [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), + [3162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, .production_id = 82), + [3164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, .production_id = 82), + [3166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3, .production_id = 125), + [3168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 3, .production_id = 125), + [3170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3), + [3172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 3), + [3174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2), + [3176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 2), + [3178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, .production_id = 260), + [3180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, .production_id = 260), + [3182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 27), + [3184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 27), + [3186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, .production_id = 133), + [3188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, .production_id = 133), + [3190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3), + [3192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), + [3194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1), + [3196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_visibility_modifier, 1), REDUCE(sym_identifier, 1), + [3199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1), + [3201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 142), + [3203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 142), + [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [3207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 54), + [3209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 54), + [3211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 55), + [3213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 55), + [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), + [3217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 5, .production_id = 186), + [3219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 5, .production_id = 186), + [3221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 5, .production_id = 254), + [3223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 5, .production_id = 254), + [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), + [3227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 29), + [3229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 29), + [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [3233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, .production_id = 82), + [3235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, .production_id = 82), + [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), + [3239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, .production_id = 82), + [3241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, .production_id = 82), + [3243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5), + [3245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5), + [3247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 6, .production_id = 254), + [3249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 6, .production_id = 254), + [3251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4, .production_id = 125), + [3253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 4, .production_id = 125), + [3255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 34), + [3257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 34), + [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [3261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 35), + [3263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 35), + [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [3267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4), + [3269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), + [3271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2097), + [3273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4, .production_id = 186), + [3275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 4, .production_id = 186), + [3277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, .production_id = 195), + [3279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, .production_id = 195), + [3281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), + [3283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2630), + [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), + [3287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, .production_id = 58), + [3289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), + [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [3293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, .production_id = 136), + [3295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, .production_id = 136), + [3297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 5, .production_id = 136), + [3299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 4, .production_id = 177), + [3301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 4, .production_id = 177), + [3303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3, .production_id = 38), + [3305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 3, .production_id = 38), + [3307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3, .production_id = 113), + [3309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3, .production_id = 113), + [3311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 2), + [3313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 2), + [3315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4, .production_id = 114), + [3317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4, .production_id = 114), + [3319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, .production_id = 115), + [3321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, .production_id = 115), + [3323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3), + [3325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3), + [3327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 5), + [3329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 5), + [3331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 6, .production_id = 295), + [3333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 6, .production_id = 295), + [3335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, .production_id = 117), + [3337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, .production_id = 117), + [3339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, .production_id = 118), + [3341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, .production_id = 118), + [3343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, .production_id = 119), + [3345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, .production_id = 119), + [3347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 205), + [3349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 205), + [3351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 204), + [3353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 204), + [3355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 4, .production_id = 63), + [3357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 4, .production_id = 63), + [3359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 199), + [3361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 199), + [3363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, .production_id = 198), + [3365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, .production_id = 198), + [3367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5), + [3369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5), + [3371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_cast_expression, 3, .production_id = 52), + [3373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_cast_expression, 3, .production_id = 52), + [3375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2), + [3377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2), + [3379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_expression, 2), + [3381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_expression, 2), + [3383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, .production_id = 5), + [3385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, .production_id = 5), + [3387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6, .production_id = 264), + [3389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 6, .production_id = 264), + [3391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 2, .production_id = 32), + [3393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 2, .production_id = 32), + [3395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime, 2), + [3397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lifetime, 2), + [3399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_type, 2), + [3401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_type, 2), + [3403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 7), + [3405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 7), + [3407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, .production_id = 17), + [3409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, .production_id = 17), + [3411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 148), + [3413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 148), + [3415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 145), + [3417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 145), + [3419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4), + [3421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4), + [3423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 4, .production_id = 140), + [3425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 4, .production_id = 140), + [3427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 4, .production_id = 62), + [3429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 4, .production_id = 62), + [3431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5, .production_id = 248), + [3433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5, .production_id = 248), + [3435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 3, .production_id = 3), + [3437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 3, .production_id = 3), + [3439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 5, .production_id = 246), + [3441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 5, .production_id = 246), + [3443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 137), + [3445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 137), + [3447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4), + [3449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4), + [3451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3, .production_id = 53), + [3453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3, .production_id = 53), + [3455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, .production_id = 182), + [3457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, .production_id = 182), + [3459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, .production_id = 181), + [3461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, .production_id = 181), + [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [3465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 6), + [3467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 6), + [3469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 2, .production_id = 12), + [3471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 2, .production_id = 12), + [3473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), + [3475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), + [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [3479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3), + [3481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3), + [3483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3, .production_id = 20), + [3485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3, .production_id = 20), + [3487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, .production_id = 79), + [3489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, .production_id = 79), + [3491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), + [3493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), + [3495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 3, .production_id = 80), + [3497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 3, .production_id = 80), + [3499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 3, .production_id = 80), + [3501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 3, .production_id = 80), + [3503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), + [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [3507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), + [3509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1539), + [3511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [3513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bounded_type, 3), + [3515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bounded_type, 3), + [3517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 2, .production_id = 3), + [3519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 2, .production_id = 3), + [3521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 14), + [3523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 14), + [3525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, .production_id = 13), + [3527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, .production_id = 13), + [3529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2), + [3531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 2), + [3533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 5, .production_id = 166), + [3535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 5, .production_id = 166), + [3537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_type, 1), + [3539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_type, 1), + [3541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4, .production_id = 179), + [3543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4, .production_id = 179), + [3545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 2, .production_id = 9), + [3547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [3549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 2, .production_id = 9), + [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [3553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), + [3555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1777), + [3557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 2, .production_id = 16), + [3559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), + [3561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [3563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [3565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [3567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), + [3569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), + [3571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), + [3573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [3575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [3577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), + [3579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), + [3581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [3583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), + [3585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [3587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 3, .production_id = 44), + [3589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 51), + [3591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 51), + [3593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 3), + [3595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 3), + [3597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 53), + [3599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 53), + [3601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 3, .production_id = 43), + [3603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 3, .production_id = 43), + [3605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2, .production_id = 9), + [3607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2, .production_id = 9), + [3609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 2, .production_id = 9), + [3611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 2, .production_id = 9), + [3613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_assignment_expr, 3, .production_id = 51), + [3615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_assignment_expr, 3, .production_id = 51), + [3617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 5), + [3619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 5), + [3621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2409), + [3623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), + [3625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2414), + [3627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2580), + [3629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 4), + [3631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 4), + [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), + [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), + [3639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1940), + [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), + [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [3645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), + [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), + [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), + [3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), + [3653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, .production_id = 152), + [3655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, .production_id = 152), + [3657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5), + [3659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5), + [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), + [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [3665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), + [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [3675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22), + [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), + [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), + [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), + [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [3699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), + [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [3703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), + [3705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [3707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), + [3709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [3711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, .production_id = 185), + [3713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), + [3715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), + [3717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), + [3719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), + [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [3723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(28), + [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [3729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), + [3731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), + [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [3735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), + [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [3739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, .production_id = 247), + [3741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 3), + [3743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 3, .production_id = 211), + [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [3749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), + [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [3753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_field_initializer, 2, .production_id = 5), + [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), + [3761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2), + [3763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, .production_id = 252), + [3765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, .production_id = 253), + [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), + [3773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 5, .production_id = 297), + [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), + [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [3781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), + [3783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [3785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), + [3787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [3789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [3791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [3793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [3795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, .production_id = 178), + [3797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [3799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [3801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [3803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), + [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [3807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, .production_id = 136), + [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [3811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), + [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [3815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1), + [3817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [3821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [3823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [3825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [3827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_condition, 4, .production_id = 136), + [3829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [3831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [3833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [3835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [3847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [3851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [3853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [3857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 164), + [3859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [3861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [3863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__let_chain, 3), + [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [3867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 165), + [3869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [3871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [3873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [3877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), + [3879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), + [3881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), + [3883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [3885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 6), + [3887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 6), + [3889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2437), + [3891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2444), + [3893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), + [3895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 5), + [3897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 5), + [3899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 4), + [3901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 4), + [3903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2585), + [3905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2592), + [3907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), + [3909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1), + [3911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [3913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), + [3915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1), + [3917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), + [3919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [3921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [3923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [3925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [3927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1), REDUCE(sym_identifier, 1), + [3930] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1), REDUCE(sym_identifier, 1), + [3933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [3935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [3937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), + [3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [3941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [3943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), + [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), + [3947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), + [3949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [3951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), + [3953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), + [3955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [3957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [3959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [3961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), + [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), + [3977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), + [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), + [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), + [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [3991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, .production_id = 1), + [3993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, .production_id = 1), + [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), + [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), + [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [4005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 8), REDUCE(sym_pattern, 1), + [4008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [4010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), + [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), + [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), + [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [4020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [4036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [4038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), + [4040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negative_literal, 2), + [4042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negative_literal, 2), + [4044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), + [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [4048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), + [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [4056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_pattern, 1), + [4058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal_pattern, 1), + [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [4064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), + [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [4072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 71), + [4074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 71), + [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), + [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [4086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 73), + [4088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 73), + [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), + [4092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 53), + [4094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 53), + [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), + [4100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2335), + [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [4104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_identifier, 1), REDUCE(aux_sym_parameters_repeat1, 3), + [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), + [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), + [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), + [4117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 70), + [4119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 70), + [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), + [4123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_identifier, 1), REDUCE(aux_sym_parameters_repeat1, 2), + [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), + [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), + [4132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 45), REDUCE(sym_scoped_type_identifier, 3, .production_id = 46), + [4135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, .production_id = 69), + [4137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 3, .production_id = 69), + [4139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), + [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), + [4145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 3, .production_id = 69), + [4147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 3, .production_id = 69), + [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [4155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, .production_id = 10), REDUCE(sym_scoped_type_identifier, 2, .production_id = 11), + [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [4160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 22), REDUCE(sym_scoped_type_identifier, 3, .production_id = 23), + [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [4165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mut_pattern, 2, .production_id = 25), + [4167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mut_pattern, 2, .production_id = 25), + [4169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 49), REDUCE(sym_scoped_type_identifier, 3, .production_id = 50), + [4172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 2, .production_id = 25), + [4174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_pattern, 2, .production_id = 25), + [4176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_captured_pattern, 3, .production_id = 77), + [4178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_captured_pattern, 3, .production_id = 77), + [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [4182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, .production_id = 76), + [4184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 3, .production_id = 76), + [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [4188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_pattern, 2, .production_id = 25), + [4190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ref_pattern, 2, .production_id = 25), + [4192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3, .production_id = 53), + [4194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or_pattern, 3, .production_id = 53), + [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [4198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_modifiers_repeat1, 1), + [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [4208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 2), + [4210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 2), + [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [4214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, .production_id = 258), + [4216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 6, .production_id = 258), + [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), + [4222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2), + [4224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 2), + [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), + [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [4234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, .production_id = 74), + [4236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 3, .production_id = 74), + [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [4240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5, .production_id = 190), + [4242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 5, .production_id = 190), + [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [4248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, .production_id = 135), + [4250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 4, .production_id = 135), + [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [4254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 5, .production_id = 190), + [4256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 5, .production_id = 190), + [4258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, .production_id = 191), + [4260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 5, .production_id = 191), + [4262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, .production_id = 132), + [4264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 4, .production_id = 132), + [4266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, .production_id = 193), + [4268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 5, .production_id = 193), + [4270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, .production_id = 130), + [4272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 4, .production_id = 130), + [4274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, .production_id = 74), + [4276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 3, .production_id = 74), + [4278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 4, .production_id = 129), + [4280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 4, .production_id = 129), + [4282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4, .production_id = 129), + [4284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 4, .production_id = 129), + [4286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 3, .production_id = 72), + [4288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_pattern, 3, .production_id = 72), + [4290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, .production_id = 197), + [4292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 5, .production_id = 197), + [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [4296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remaining_field_pattern, 1), + [4298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remaining_field_pattern, 1), + [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), + [4310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 1), + [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), + [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), + [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), + [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), + [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), + [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), + [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [4344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1917), + [4346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), + [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), + [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), + [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), + [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [4404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_modifiers, 1), + [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [4408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 3), + [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [4412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2), + [4414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2), SHIFT_REPEAT(629), + [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [4421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1), REDUCE(sym_pattern, 1, .production_id = 1), + [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [4426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 2), + [4428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), SHIFT_REPEAT(1693), + [4431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), + [4433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), SHIFT_REPEAT(1707), + [4436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 2), + [4438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(265), + [4441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), + [4443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(267), + [4446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(268), + [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), + [4453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), + [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), + [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), + [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), + [4471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, .production_id = 123), + [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [4477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 1, .production_id = 64), + [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), + [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), + [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), + [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [4491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [4493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [4495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, .production_id = 41), + [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), + [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), + [4507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_higher_ranked_trait_bound, 3, .production_id = 85), + [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [4511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, .production_id = 42), + [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), + [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), + [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), + [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), + [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), + [4547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_removed_trait_bound, 2), + [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), + [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [4579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), + [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [4605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 1), + [4607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), + [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), + [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [4617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [4641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), + [4643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), + [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [4685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2449), + [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [4697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2528), + [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [4715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 2), + [4717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), + [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), + [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [4731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), + [4733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), + [4735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), + [4737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), + [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), + [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [4761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), + [4763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), + [4765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 80), + [4767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 3), + [4769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_unit_type, 2), REDUCE(sym_tuple_pattern, 2), + [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), + [4780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1), REDUCE(sym_pattern, 1), + [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), + [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), + [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), + [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), + [4795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 7, .production_id = 305), + [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), + [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [4809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2122), + [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [4813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 305), + [4815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 140), + [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [4819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 269), + [4821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, .production_id = 82), + [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), + [4827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 2), + [4829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), + [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), + [4839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3), + [4841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), + [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), + [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), + [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), + [4849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, .production_id = 32), + [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [4855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 140), + [4857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 215), + [4859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 269), + [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), + [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), + [4873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1992), + [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), + [4879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, .production_id = 1), + [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), + [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [4885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1), + [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), + [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [4893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), + [4895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 215), + [4897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 32), + [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), + [4909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 80), + [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), + [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), + [4923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), + [4925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1958), + [4928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(2234), + [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [4935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2170), + [4937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), + [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), + [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), + [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [4973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), + [4975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), + [4977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), SHIFT_REPEAT(1114), + [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [4984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 3), + [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [4990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [4992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2), + [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), + [5002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 149), + [5004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2), + [5006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2), SHIFT_REPEAT(612), + [5009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2079), + [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), + [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [5023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), + [5025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), + [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), + [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), + [5045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), + [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), + [5059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), + [5061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), REDUCE(aux_sym_for_lifetimes_repeat1, 2), + [5064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), + [5066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), + [5074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 105), + [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [5078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2155), + [5080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), + [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [5086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), + [5088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), + [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [5098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [5102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), + [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), + [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [5130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 4, .production_id = 140), + [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [5134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 5, .production_id = 300), + [5136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, .production_id = 13), + [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [5144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [5148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), + [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [5156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, .production_id = 81), + [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [5160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, .production_id = 83), + [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [5164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [5168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 2), + [5170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [5172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [5174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [5180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), + [5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [5188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 271), + [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), + [5192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [5194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 3, .production_id = 80), + [5196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), + [5202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [5204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [5206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [5208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [5210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 4, .production_id = 261), + [5212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 4, .production_id = 259), + [5214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [5218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 1), + [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [5222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 4), + [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [5228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), + [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [5232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2), SHIFT_REPEAT(600), + [5235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2), + [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [5243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 2, .production_id = 131), + [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [5257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3), + [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [5261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_content, 1), + [5263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, .production_id = 192), + [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [5281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 5), + [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [5289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 218), + [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [5295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), + [5297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1639), + [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), + [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [5312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 216), + [5314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 216), SHIFT_REPEAT(597), + [5317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 32), + [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), + [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [5333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, .production_id = 99), + [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [5339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, .production_id = 139), + [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [5343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 4, .production_id = 120), + [5345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, .production_id = 98), + [5347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2), SHIFT_REPEAT(2522), + [5350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2), + [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [5354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, .production_id = 97), + [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [5360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, .production_id = 1), + [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [5364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 3, .production_id = 196), + [5366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, .production_id = 96), + [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), + [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [5374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), SHIFT_REPEAT(224), + [5377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), + [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [5381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3), + [5383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), SHIFT_REPEAT(706), + [5386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, .production_id = 194), + [5388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2), + [5390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2), SHIFT_REPEAT(1672), + [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [5395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2), + [5397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), + [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [5411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 2, .production_id = 38), + [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), + [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [5417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), SHIFT_REPEAT(196), + [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), + [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [5436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2), + [5438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2), SHIFT_REPEAT(1633), + [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [5447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_rule, 3, .production_id = 53), + [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [5451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, .production_id = 184), + [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [5461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), SHIFT_REPEAT(52), + [5464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), + [5466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), SHIFT_REPEAT(1640), + [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [5473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 1), + [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), + [5479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2), SHIFT_REPEAT(163), + [5482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [5490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [5502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [5508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [5520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [5524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), + [5526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1299), + [5529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 4), + [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), + [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), + [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [5539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, .production_id = 90), + [5541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), + [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [5551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [5553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [5565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [5567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(1628), + [5570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [5572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [5574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [5576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [5578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [5580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [5582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [5586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [5588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [5590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [5592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [5594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [5596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, .production_id = 83), + [5598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [5600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, .production_id = 81), + [5602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [5604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [5606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [5608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [5610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [5612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [5614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, .production_id = 138), + [5616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [5618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [5620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [5622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), + [5624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [5626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [5628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [5630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 1, .production_id = 75), + [5632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [5634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [5636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [5638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [5640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [5642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1, .production_id = 7), + [5644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [5648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [5650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [5652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), + [5654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), + [5656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [5660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), + [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [5666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [5668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [5670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [5676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1), + [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [5680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [5682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [5684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), + [5686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [5688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), + [5692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [5698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [5700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [5702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [5704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), + [5706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 3), + [5708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [5710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [5712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [5714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [5718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [5720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [5722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [5724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [5734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), + [5738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [5740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [5744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 3), + [5746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), + [5748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [5750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [5752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [5754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [5756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), + [5758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, .production_id = 104), + [5760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [5762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [5764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), + [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), + [5768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [5770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [5772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [5774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [5776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [5778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [5780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [5782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 3, .production_id = 212), + [5784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), + [5786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [5788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [5790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [5792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [5794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [5796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, .production_id = 100), + [5798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, .production_id = 101), + [5800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [5802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), + [5804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), + [5806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [5808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [5810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [5812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [5814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [5816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [5818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [5820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [5822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [5824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), + [5826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [5828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [5830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), + [5832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), + [5834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [5836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [5838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_type, 3), + [5840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [5842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [5844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), + [5846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [5848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [5850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [5852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [5854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [5856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [5858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), + [5860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [5862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), + [5864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [5866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [5868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), + [5870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [5872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [5874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [5876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [5878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), + [5880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [5882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), + [5884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [5886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), + [5888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [5892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), + [5894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [5896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [5898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [5900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [5902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [5904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [5906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [5908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), + [5910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [5912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [5914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [5918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [5920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [5922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [5924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [5926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [5928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), + [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [5934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [5936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [5938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [5940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [5942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [5944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [5946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [5950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [5954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [5956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [5958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), + [5960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [5962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), + [5964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [5966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [5968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [5970] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [5972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), + [5974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [5976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [5978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [5980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [5982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [5984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [5986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [5988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [5990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [5992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [5994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [5996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [5998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [6000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [6002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [6004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [6006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), + [6008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [6010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), }; #ifdef __cplusplus diff --git a/resources/node-types/rust-node-types.json b/resources/node-types/rust-node-types.json index 78ad6f00e..1f6a4b055 100644 --- a/resources/node-types/rust-node-types.json +++ b/resources/node-types/rust-node-types.json @@ -523,6 +523,16 @@ "type": "array_expression", "named": true, "fields": { + "repeat": { + "multiple": false, + "required": false, + "types": [ + { + "type": "_expression", + "named": true + } + ] + }, "length": { "multiple": false, "required": false, @@ -532,6 +542,20 @@ "named": true } ] + }, + "elements": { + "multiple": true, + "required": false, + "types": [ + { + "type": ",", + "named": false + }, + { + "type": "_expression", + "named": true + } + ] } }, "children": {